-
-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* OnchainSwippeableRow: fix animation render for receive and send actions depends on supportsCoinControl and not supportsRouting * SwipeableRow: fix animation width for middle action if supported The actual value of 100 does not match with any other width animated value. The value should be 200 because if present, the width of others is 200. * SwipeableRow: add opacity transition for actions Since the routing and coins width animations are correct, the button can appear on the right at the beginning of the swap. Adding opacity transition hide this buttons. * GitHub Actions: add prettier * GitHub Actions: add lint * GitHub Actions: Remove old main workflow * Fix branches * Add checks:write permission * Fix link to 'Zeus over Tor guide for RaspiBolt' * AndroidManifest.xml: Don't make NFC a requirement Existing config leads to Google Play prevented users without NFC from being able to download the app * Update README.md w/ new node solution Add link to Citadel (https://runcitadel.space/) to Full Node Solutions * Add lint workflow * Update prettier workflow * Bug fix: Custom block explorer url force prefixed with https:/ (#1053) * attempted fix of issue 1051 #1051 if a custom instance of mempool.space is used 'block-height' -> 'block' translation will fail! could we hint in the url, that it must happen? * Handle <schema>://<ip>:<port>#mempool.space We can now hint in a custom url to use mempool.space type path convention. Anything behind the first # will get cut off from host, and any other value than mempool.space gets ignored. * Handle <scheme>://<ip>:<port>#mempool.space fix typo: schema -> scheme * Clarifying url host convention hint behavior Translate 'block-height' to 'block' if: a) host is 'mempool.space' b) host is in url form ending in convention hint '#mempool.space' Everything from the first '#' is stripped from host, other convention hints are currently completely ignored * after prettier * UrlUtils.ts: remove inferred type Co-authored-by: Evan Kaloudis <[email protected]> * Update Mortals display (#1058) * Update splash images (#1057) * Android: new splash screen * Update intro splash image * Bump nth-check and react-native-svg Bumps [nth-check](https://github.com/fb55/nth-check) and [react-native-svg](https://github.com/react-native-community/react-native-svg). These dependencies needed to be updated together. Updates `nth-check` from 1.0.2 to 2.1.1 - [Release notes](https://github.com/fb55/nth-check/releases) - [Commits](fb55/nth-check@v1.0.2...v2.1.1) Updates `react-native-svg` from 9.13.6 to 13.0.0 - [Release notes](https://github.com/react-native-community/react-native-svg/releases) - [Commits](software-mansion/react-native-svg@v9.13.6...v13.0.0) --- updated-dependencies: - dependency-name: nth-check dependency-type: indirect - dependency-name: react-native-svg dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Reproducible builds (#1055) * Simplre reproducible builds * clone the branch you're reproducing * fix branch/tag argument taking + use master as default * be able to execute build.sh more than once * Simplifiying process * Updating rn-nodeify to 10.3.0 to avoid issue * Deleting compile and Dockerfile as they're not used anymore * Updated simplified build script and README file with instructions to build * Simplify / beautify build script * Commenting out the singning process for release in build.gradle * Build and sign every apk * Cut apk location up to current location for easy location of files * Remove signing code * Delete unused variables * Updated instructions * README: update reproducible instructions * build.sh: lock in Docker image version reactnativecommunity/react-native-android:5.4 Co-authored-by: Evan Kaloudis <[email protected]> * Version bump: v0.6.6 (#1060) * package.json: version bump to v0.6.6 * Android: version bump to v0.6.6 * iOS: version bump to v0.6.6 * package-lock.json: update (#1061) * F-Droid: update metadata (#1062) * F-Droid: update metadata * Update featureGraphic * Locales: v0.6.6 (#1063) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Louis Aussedat <[email protected]> Co-authored-by: Andrei <[email protected]> Co-authored-by: sz3k <[email protected]> Co-authored-by: moonsettler <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Luis Miguel <[email protected]>
- Loading branch information
1 parent
f2a5fde
commit 51077ab
Showing
39 changed files
with
498 additions
and
401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Lint | ||
on: [push] | ||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '12.x' | ||
- run: npm ci | ||
- run: npm run lint |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Prettier | ||
on: [push] | ||
jobs: | ||
prettier: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '12.x' | ||
- run: npm ci | ||
- run: npm run prettier |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
BUILDER_IMAGE="reactnativecommunity/react-native-android:5.4" | ||
CONTAINER_NAME="zeus_builder_container" | ||
ZEUS_PATH=/olympus/zeus | ||
|
||
docker run --rm --name $CONTAINER_NAME -v `pwd`:$ZEUS_PATH $BUILDER_IMAGE bash -c \ | ||
'echo -e "\n\n********************************\n*** Building Zeus...\n********************************\n" && \ | ||
cd /olympus/zeus ; yarn install && \ | ||
cd /olympus/zeus/android ; ./gradlew assembleRelease && \ | ||
echo -e "\n\n********************************\n**** APKs and MD5\n********************************\n" && \ | ||
cd /olympus/zeus && \ | ||
for f in android/app/build/outputs/apk/release/*.apk; | ||
do | ||
RENAMED_FILENAME=$(echo $f | sed -e "s/app-/zeus-/" | sed -e "s/-release-unsigned//") | ||
mv $f $RENAMED_FILENAME | ||
md5sum $RENAMED_FILENAME | ||
done && \ | ||
echo -e "\n" '; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.