Skip to content

Commit

Permalink
Merge pull request #10 from remcoros/wasabi-2.3.0.0
Browse files Browse the repository at this point in the history
update Wasabi to 2.3.0.0
  • Loading branch information
remcoros authored Oct 24, 2024
2 parents d0ae795 + c6c885b commit aea6d15
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN \
cp index.html vnc.html && \
mkdir Downloads

FROM ghcr.io/linuxserver/baseimage-kasmvnc:debianbookworm-f7a8978f-ls89 AS buildstage
FROM ghcr.io/linuxserver/baseimage-kasmvnc:debianbookworm-8e2585df-ls92 AS buildstage

# these are specified in Makefile
ARG ARCH
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
WASABI_VERSION := 2.2.1.0 # version used to construct download filename
WASABI_VERSION_TAG := 2.2.1.0 # Github tag
WASABI_VERSION := 2.3.0.0 # version used to construct download filename
WASABI_VERSION_TAG := 2.3.0.0 # Github tag
WASABI_PGP_SIG := 856348328949861E
# sha256 hashes can be found in https://github.com/mikefarah/yq/releases/download/v4.40.7/checksums-bsd
YQ_VERSION := 4.40.7
Expand Down Expand Up @@ -36,7 +36,7 @@ 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/x86_64.tar: manifest.yaml Dockerfile docker_entrypoint.sh $(ROOT_FILES) $(PATCH_FILES)
mkdir -p docker-images
Expand Down
5 changes: 2 additions & 3 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
id: wasabi-webtop
title: "Wasabi"
version: 2.2.1.1
version: 2.3.0.0
release-notes: |
* Add 'Automatically reconnect' option. Enable this to reconnect to the desktop when the connection is lost or the browser tab has been idle for too long.
* fix a minor issue when browser tab becomes idle (Cannot read properties of undefined (reading 'lastActiveAt'))
* Update to Wasabi 2.3.0.0 - See [full changelog](https://github.com/WalletWasabi/WalletWasabi/releases/tag/v2.3.0.0)
license: MIT
wrapper-repo: "https://github.com/remcoros/wasabi-webtop-startos"
upstream-repo: "https://github.com/WalletWasabi/WalletWasabi"
Expand Down
4 changes: 2 additions & 2 deletions root/defaults/.walletwasabi/client/Config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"MainNetBackendUri": "https://api.wasabiwallet.io/",
"TestNetBackendUri": "https://api.wasabiwallet.co/",
"RegTestBackendUri": "http://localhost:37127/",
"MainNetCoordinatorUri": "https://api.wasabiwallet.io/",
"TestNetCoordinatorUri": "https://api.wasabiwallet.co/",
"MainNetCoordinatorUri": "",
"TestNetCoordinatorUri": "",
"RegTestCoordinatorUri": "http://localhost:37127/",
"UseTor": "Enabled",
"TerminateTorOnExit": false,
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/emit@0.40.0/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
Expand Up @@ -20,4 +20,4 @@ export const migration: T.ExpectedExports.migration = compat.migrations
{ version: "2.2.1.1", type: "down" },
),
},
}, "2.2.1.1");
}, "2.3.0.0");

0 comments on commit aea6d15

Please sign in to comment.