From eb9b48b6146a644f6ebd5deb4e3db512ee9fa463 Mon Sep 17 00:00:00 2001 From: H0mer <108570942+13Homer13@users.noreply.github.com> Date: Tue, 3 Dec 2024 10:52:38 +0100 Subject: [PATCH] update-1.9.18 (#11) --- Dockerfile | 2 +- Makefile | 3 ++- manifest.yaml | 4 ++-- scripts/bundle.ts | 3 +++ scripts/procedures/migrations.ts | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) create mode 100644 scripts/bundle.ts diff --git a/Dockerfile b/Dockerfile index ce5c248..ef543b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/Makefile b/Makefile index b0fd4f3..9ed39eb 100644 --- a/Makefile +++ b/Makefile @@ -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) diff --git a/manifest.yaml b/manifest.yaml index 168232c..63981a4 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -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" diff --git a/scripts/bundle.ts b/scripts/bundle.ts new file mode 100644 index 0000000..3c042d2 --- /dev/null +++ b/scripts/bundle.ts @@ -0,0 +1,3 @@ +import { bundle } from "https://deno.land/x/emit@0.40.0/mod.ts"; +const result = await bundle("scripts/embassy.ts"); +await Deno.writeTextFile("scripts/embassy.js", result.code); \ No newline at end of file diff --git a/scripts/procedures/migrations.ts b/scripts/procedures/migrations.ts index 01130b9..19f06e4 100644 --- a/scripts/procedures/migrations.ts +++ b/scripts/procedures/migrations.ts @@ -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" );