Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update-1.9.18 #11

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt update && \

WORKDIR /opt

ARG BISQ_VERSION=1.9.17
ARG BISQ_VERSION=1.9.18
ENV BISQ_DEBFILE Bisq-64bit-$BISQ_VERSION.deb
ENV BISQ_DEB_URL https://bisq.network/downloads/v$BISQ_VERSION/$BISQ_DEBFILE
ENV BISQ_ASC_URL https://bisq.network/downloads/v$BISQ_VERSION/$BISQ_DEBFILE.asc
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ clean:
rm -f scripts/*.js

scripts/embassy.js: $(TS_FILES)
deno bundle scripts/embassy.ts scripts/embassy.js
deno run --allow-read --allow-write --allow-env --allow-net scripts/bundle.ts


docker-images/aarch64.tar: Dockerfile
ifeq ($(ARCH),x86_64)
Expand Down
4 changes: 2 additions & 2 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

id: bisq
title: "Bisq"
version: 1.9.17
version: 1.9.18
release-notes: |
- Upstream Bisq update to version 1.9.17 - [click here for more info](https://github.com/bisq-network/bisq/releases/tag/v1.9.17)
- Upstream Bisq update to version 1.9.18 - [click here for more info](https://github.com/bisq-network/bisq/releases/tag/v1.9.18)
license: GPLv3
wrapper-repo: "https://github.com/Start9Labs/bisq-startos"
upstream-repo: "https://github.com/bisq-network/bisq"
Expand Down
3 changes: 3 additions & 0 deletions scripts/bundle.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { bundle } from "https://deno.land/x/[email protected]/mod.ts";
const result = await bundle("scripts/embassy.ts");
await Deno.writeTextFile("scripts/embassy.js", result.code);
2 changes: 1 addition & 1 deletion scripts/procedures/migrations.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { compat, types as T } from "../deps.ts";

export const migration: T.ExpectedExports.migration = compat.migrations
.fromMapping({}, "1.9.17" );
.fromMapping({}, "1.9.18" );
Loading