File tree 12 files changed +19
-16
lines changed 12 files changed +19
-16
lines changed Original file line number Diff line number Diff line change 25
25
# https://docs.github.com/en/packages/guides/pushing-and-pulling-docker-images
26
26
#
27
27
# 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
29
29
GITHUB_BUILD_DIR : ${{github.workspace}}
30
30
31
31
jobs :
Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ # 4.46.1
6
+ - Fix Android app crash on old Android versions
7
+
5
8
# 4.46.0
6
9
- Android: enable export logs feature
7
10
- Label change UTXOs as "change" in coin control
Original file line number Diff line number Diff line change 22
22
envinit :
23
23
# Keep golangci-lint version in sync with what's in .github/workflows/ci.yml.
24
24
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
27
27
go install golang.org/x/tools/cmd/goimports@latest
28
28
$(MAKE ) gomobileinit
29
29
gomobileinit :
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ const updateFileURL = "https://bitboxapp.shiftcrypto.io/desktop.json"
27
27
28
28
var (
29
29
// Version of the backend as displayed to the user.
30
- Version = semver .NewSemVer (4 , 46 , 0 )
30
+ Version = semver .NewSemVer (4 , 46 , 1 )
31
31
)
32
32
33
33
// UpdateFile is retrieved from the server.
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ android {
7
7
applicationId " ch.shiftcrypto.bitboxapp"
8
8
minSdkVersion 21
9
9
targetSdkVersion 34
10
- versionCode 55
11
- versionName " android-4.46.0 "
10
+ versionCode 56
11
+ versionName " android-4.46.1 "
12
12
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
13
13
}
14
14
buildTypes {
Original file line number Diff line number Diff line change 2
2
// https://help.apple.com/xcode/#/dev745c5c974
3
3
4
4
// App version
5
- MARKETING_VERSION = 4.46.0
5
+ MARKETING_VERSION = 4.46.1
6
6
7
7
// Build number, increment this for every separate publication,
8
8
// 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 37
37
cp resources/linux/usr/share/icons/hicolor/128x128/apps/bitbox.png build/linux-tmp
38
38
mkdir build/tmp-deb/opt/
39
39
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/
42
42
# create AppImage
43
43
cd build/linux-tmp && /opt/linuxdeployqt-continuous-x86_64.AppImage BitBox -appimage -unsupported-allow-new-glibc
44
44
mv build/linux-tmp/BitBoxApp-* -x86_64.AppImage build/linux/
Original file line number Diff line number Diff line change 21
21
<string >APPL </string >
22
22
23
23
<key >CFBundleVersion </key >
24
- <string >4.46.0 </string >
24
+ <string >4.46.1 </string >
25
25
26
26
<key >CFBundleShortVersionString </key >
27
- <string >4.46.0 </string >
27
+ <string >4.46.1 </string >
28
28
29
29
<key >CFBundleSignature </key >
30
30
<string >???? </string >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ SetCompressor /SOLID lzma
22
22
23
23
# General Symbol Definitions
24
24
!define REGKEY " SOFTWARE\$(^Name)"
25
- !define VERSION 4.46 .0 .0
25
+ !define VERSION 4.46 .1 .0
26
26
!define COMPANY " Shift Crypto AG"
27
27
!define URL https://github.com/BitBoxSwiss/bitbox-wallet-app/releases/
28
28
!define BINDIR " build\windows"
Original file line number Diff line number Diff line change 1
1
module github.com/BitBoxSwiss/bitbox-wallet-app
2
2
3
- go 1.23
3
+ go 1.22
4
4
5
5
require (
6
6
github.com/BitBoxSwiss/bitbox02-api-go v0.0.0-20240925080402-a2115fee878e
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ npm install -g npm@10
81
81
npm install -g locize-cli
82
82
83
83
mkdir -p /opt/go_dist
84
- curl https://dl.google.com/go/go1.23.2 .linux-amd64.tar.gz | tar -xz -C /opt/go_dist
84
+ curl https://dl.google.com/go/go1.22.4 .linux-amd64.tar.gz | tar -xz -C /opt/go_dist
85
85
86
86
# fuse is needed to run the linuxdeployqt appimage.
87
87
apt-get install -y --no-install-recommends fuse
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ if [ "$OS_NAME" == "linux" ]; then
12
12
# Which docker image to use to run the CI. Defaults to Docker Hub.
13
13
# Overwrite with CI_IMAGE=docker/image/path environment variable.
14
14
# Keep this in sync with .github/workflows/ci.yml.
15
- : " ${CI_IMAGE:= shiftcrypto/ bitbox-wallet-app: 25 } "
15
+ : " ${CI_IMAGE:= shiftcrypto/ bitbox-wallet-app: 26 } "
16
16
# Time image pull to compare in the future.
17
17
time docker pull " $CI_IMAGE "
18
18
You can’t perform that action at this time.
0 commit comments