Skip to content

Commit

Permalink
Merge pull request #2 from remcoros/wasabi-2.0.7.2
Browse files Browse the repository at this point in the history
Update to wasabi 2.0.7.2
  • Loading branch information
remcoros authored May 17, 2024
2 parents 1700c5e + 4b595aa commit f724726
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildService.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: Start9Labs/sdk@v1

- name: Checkout services repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build the service package
id: build
Expand All @@ -30,7 +30,7 @@ jobs:
shell: bash
#
# - name: Upload .s9pk
# uses: actions/upload-artifact@v3
# uses: actions/upload-artifact@v4
# with:
# name: ${{ env.package_id }}.s9pk
# path: ./${{ env.package_id }}.s9pk
4 changes: 2 additions & 2 deletions .github/workflows/releaseService.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: Start9Labs/sdk@v1

- name: Checkout services repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build the service package
run: |
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
shell: bash

- name: Create GitHub Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
name: ${{ env.package_title }} ${{ github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-kasmvnc:debianbookworm-d274027d-ls53 AS buildstage
FROM ghcr.io/linuxserver/baseimage-kasmvnc:debianbookworm-36987b11-ls57 AS buildstage

# these are specified in Makefile
ARG ARCH
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
WASABI_VERSION := 2.0.7.1
WASABI_VERSION := 2.0.7.2
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
2 changes: 1 addition & 1 deletion docker_entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ cp /defaults/.backupignore /config/.backupignore
# always overwrite autostart in case we change it
mkdir -p /config/.config/openbox
cp /defaults/autostart /config/.config/openbox/autostart
chown -R abc:abc /config/.config/openbox
chown -R $PUID:$PGID /config/.config/openbox

if [ ! -f /config/.walletwasabi/client/Config.json ]; then
echo "No Wasabi config file found, creating default"
Expand Down
5 changes: 3 additions & 2 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
id: wasabi-webtop
title: "Wasabi"
version: 2.0.7.1
version: 2.0.7.2
release-notes: |
* Initial release of Wasabi 2.0.7.1 for StartOS
* Update to Wasabi 2.0.7.2 - See [full changelog](https://github.com/zkSNACKs/WalletWasabi/releases/tag/v2.0.7.2)
license: MIT
wrapper-repo: "https://github.com/remcoros/wasabi-webtop-startos"
upstream-repo: "https://github.com/zkSNACKs/WalletWasabi"
Expand All @@ -28,6 +28,7 @@ main:
main: /root/data
userdir: /config
gpu-acceleration: false
shm-size-mb: 1024
hardware-requirements:
arch:
- x86_64
Expand Down
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({}, "2.0.7.1" );
.fromMapping({}, "2.0.7.2" );

0 comments on commit f724726

Please sign in to comment.