mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
* v4.23.0 release candidate * - Fix restoring zano from QR - Fix Zano confirmations count - Fix birdpay - Fix balance display * Fix Zano assets showing amount before they are added * - handle fetching token data while the API is busy - potential fix for duplicate transactions * fix receive confirmations, maybe * revert onChangeWallet cleanup * Fix confirmations not updating * improve zano wallet opening, fix CI commands and messages on slack (#1979) Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> * Cache wallet when creating/restoring as well * - hardcode Trocador Maximum limit for Zano temporarily - Configure Cake Zano node to use SSL * reformatting [skip ci] * revert to non-ssl * update build numbers [skip ci] * disable zano for desktop [skip ci] --------- Co-authored-by: cyan <cyjan@mrcyjanek.net>
35 lines
650 B
Bash
Executable file
35 lines
650 B
Bash
Executable file
#!/bin/sh
|
|
|
|
APP_LINUX_NAME=""
|
|
APP_LINUX_VERSION=""
|
|
APP_LINUX_BUILD_VERSION=""
|
|
|
|
CAKEWALLET="cakewallet"
|
|
|
|
TYPES=($CAKEWALLET)
|
|
APP_LINUX_TYPE=$CAKEWALLET
|
|
|
|
if [ -n "$1" ]; then
|
|
APP_LINUX_TYPE=$1
|
|
fi
|
|
|
|
CAKEWALLET_NAME="Cake Wallet"
|
|
CAKEWALLET_VERSION="1.13.0"
|
|
CAKEWALLET_BUILD_NUMBER=44
|
|
|
|
if ! [[ " ${TYPES[*]} " =~ " ${APP_LINUX_TYPE} " ]]; then
|
|
echo "Wrong app type."
|
|
exit 1
|
|
fi
|
|
|
|
case $APP_LINUX_TYPE in
|
|
$CAKEWALLET)
|
|
APP_LINUX_NAME=$CAKEWALLET_NAME
|
|
APP_LINUX_VERSION=$CAKEWALLET_VERSION
|
|
APP_LINUX_BUILD_NUMBER=$CAKEWALLET_BUILD_NUMBER;;
|
|
esac
|
|
|
|
export APP_LINUX_TYPE
|
|
export APP_LINUX_NAME
|
|
export APP_LINUX_VERSION
|
|
export APP_LINUX_BUILD_NUMBER
|