Skip to content

Commit b98b73e

Browse files
Merge branch 'staging' into cl_coinselect
2 parents 7e3fcb0 + 6a75856 commit b98b73e

118 files changed

Lines changed: 5621 additions & 3084 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yaml

Lines changed: 1003 additions & 47 deletions
Large diffs are not rendered by default.

Dockerfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,14 @@ RUN mkdir -p "$ANDROID_SDK_ROOT/cmdline-tools" \
6363
&& sdkmanager \
6464
"platform-tools" \
6565
"build-tools;35.0.0" \
66+
"platforms;android-32" \
67+
"platforms;android-33" \
68+
"platforms;android-34" \
6669
"platforms;android-35" \
70+
"platforms;android-36" \
71+
"ndk;28.0.13004108" \
6772
"ndk;28.2.13676358" \
73+
"cmake;3.22.1" \
6874
&& chmod -R a+rwX "$ANDROID_SDK_ROOT"
6975

7076
ENV PATH=/usr/local/go/bin:$PATH
@@ -142,8 +148,14 @@ RUN mkdir -p "$ANDROID_SDK_ROOT/cmdline-tools" \
142148
&& sdkmanager \
143149
"platform-tools" \
144150
"build-tools;35.0.0" \
151+
"platforms;android-32" \
152+
"platforms;android-33" \
153+
"platforms;android-34" \
145154
"platforms;android-35" \
155+
"platforms;android-36" \
156+
"ndk;28.0.13004108" \
146157
"ndk;28.2.13676358" \
158+
"cmake;3.22.1" \
147159
&& chmod -R a+rwX "$ANDROID_SDK_ROOT"
148160

149161
ENV PATH=/usr/local/go/bin:$PATH

appimage/campfire/AppRun

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
SELF=$(readlink -f "$0")
3+
HERE=${SELF%/*}
4+
export LD_LIBRARY_PATH="${HERE}/lib:${LD_LIBRARY_PATH}"
5+
exec "${HERE}/campfire" "$@"

appimage/campfire/campfire.desktop

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[Desktop Entry]
2+
Name=Campfire
3+
Comment=Your privacy. Your wallet. Your Firo.
4+
Exec=campfire
5+
Icon=campfire
6+
Type=Application
7+
Categories=Finance;

appimage/stack_duo/AppRun

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
SELF=$(readlink -f "$0")
3+
HERE=${SELF%/*}
4+
export LD_LIBRARY_PATH="${HERE}/lib:${LD_LIBRARY_PATH}"
5+
exec "${HERE}/stack_duo" "$@"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[Desktop Entry]
2+
Name=Stack Duo
3+
Comment=An open-source, multicoin wallet for everyone
4+
Exec=stack_duo
5+
Icon=stack_duo
6+
Type=Application
7+
Categories=Finance;

appimage/stack_wallet/AppRun

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
SELF=$(readlink -f "$0")
3+
HERE=${SELF%/*}
4+
export LD_LIBRARY_PATH="${HERE}/lib:${LD_LIBRARY_PATH}"
5+
exec "${HERE}/stack_wallet" "$@"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[Desktop Entry]
2+
Name=Stack Wallet
3+
Comment=Open-source non-custodial cryptocurrency wallet
4+
Exec=stack_wallet
5+
Icon=stack_wallet
6+
Type=Application
7+
Categories=Finance;
-24 KB
Loading

crypto_plugins/flutter_libmwc

0 commit comments

Comments
 (0)