File tree Expand file tree Collapse file tree 12 files changed +19
-16
lines changed Expand file tree Collapse file tree 12 files changed +19
-16
lines changed Original file line number Diff line number Diff line change 2525 # https://docs.github.com/en/packages/guides/pushing-and-pulling-docker-images
2626 #
2727 # Keep this in sync with default in scripts/github-ci.sh.
28- CI_IMAGE : ghcr.io/bitboxswiss/bitbox-wallet-app-ci:25
28+ CI_IMAGE : ghcr.io/bitboxswiss/bitbox-wallet-app-ci:26
2929 GITHUB_BUILD_DIR : ${{github.workspace}}
3030
3131jobs :
Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ # 4.46.1
6+ - Fix Android app crash on old Android versions
7+
58# 4.46.0
69- Android: enable export logs feature
710- Label change UTXOs as "change" in coin control
Original file line number Diff line number Diff line change 2222envinit :
2323 # Keep golangci-lint version in sync with what's in .github/workflows/ci.yml.
2424 curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOPATH ) /bin v1.61.0
25- go install github.com/vektra/mockery/v2@latest
26- go install github.com/matryer/moq@latest
25+ go install github.com/vektra/mockery/v2@v2.46.0
26+ go install github.com/matryer/moq@v0.4.0
2727 go install golang.org/x/tools/cmd/goimports@latest
2828 $(MAKE ) gomobileinit
2929gomobileinit :
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ const updateFileURL = "https://bitboxapp.shiftcrypto.io/desktop.json"
2727
2828var (
2929 // Version of the backend as displayed to the user.
30- Version = semver .NewSemVer (4 , 46 , 0 )
30+ Version = semver .NewSemVer (4 , 46 , 1 )
3131)
3232
3333// UpdateFile is retrieved from the server.
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ android {
77 applicationId " ch.shiftcrypto.bitboxapp"
88 minSdkVersion 21
99 targetSdkVersion 34
10- versionCode 55
11- versionName " android-4.46.0 "
10+ versionCode 56
11+ versionName " android-4.46.1 "
1212 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1313 }
1414 buildTypes {
Original file line number Diff line number Diff line change 22// https://help.apple.com/xcode/#/dev745c5c974
33
44// App version
5- MARKETING_VERSION = 4.46.0
5+ MARKETING_VERSION = 4.46.1
66
77// Build number, increment this for every separate publication,
88// even if the app version is the same.
9- CURRENT_PROJECT_VERSION = 3
9+ CURRENT_PROJECT_VERSION = 4
Original file line number Diff line number Diff line change 3737 cp resources/linux/usr/share/icons/hicolor/128x128/apps/bitbox.png build/linux-tmp
3838 mkdir build/tmp-deb/opt/
3939 cp -aR build/linux-tmp build/tmp-deb/opt/bitbox
40- cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t deb -n bitbox -v 4.46.0 -C ../tmp-deb/
41- cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t rpm -n bitbox -v 4.46.0 -C ../tmp-deb/
40+ cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t deb -n bitbox -v 4.46.1 -C ../tmp-deb/
41+ cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t rpm -n bitbox -v 4.46.1 -C ../tmp-deb/
4242 # create AppImage
4343 cd build/linux-tmp && /opt/linuxdeployqt-continuous-x86_64.AppImage BitBox -appimage -unsupported-allow-new-glibc
4444 mv build/linux-tmp/BitBoxApp-* -x86_64.AppImage build/linux/
Original file line number Diff line number Diff line change 2121 <string >APPL </string >
2222
2323 <key >CFBundleVersion </key >
24- <string >4.46.0 </string >
24+ <string >4.46.1 </string >
2525
2626 <key >CFBundleShortVersionString </key >
27- <string >4.46.0 </string >
27+ <string >4.46.1 </string >
2828
2929 <key >CFBundleSignature </key >
3030 <string >???? </string >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ SetCompressor /SOLID lzma
2222
2323# General Symbol Definitions
2424!define REGKEY " SOFTWARE\$(^Name)"
25- !define VERSION 4.46 .0 .0
25+ !define VERSION 4.46 .1 .0
2626!define COMPANY " Shift Crypto AG"
2727!define URL https://github.com/BitBoxSwiss/bitbox-wallet-app/releases/
2828!define BINDIR " build\windows"
Original file line number Diff line number Diff line change 11module github.com/BitBoxSwiss/bitbox-wallet-app
22
3- go 1.23
3+ go 1.22
44
55require (
66 github.com/BitBoxSwiss/bitbox02-api-go v0.0.0-20240925080402-a2115fee878e
You can’t perform that action at this time.
0 commit comments