Browse Source

Moved installation instructions for Shango Mobile Wallet and display QR-Code to App-Store

Users chose if they want Shango for iOS or Android and get the correct url including qr-code for their device
dev
Raumi 6 years ago
parent
commit
8e649c8282
  1. 31
      home.admin/97addMobileWallet.sh
  2. 5
      home.admin/97addMobileWalletShango.sh

31
home.admin/97addMobileWallet.sh

@ -25,16 +25,39 @@ fi
# Basic Options
OPTIONS=(ZAP "Zap Wallet (iOS)" \
SHANGO "Shango Wallet (iOS/Android)")
SHANGO_IOS "Shango Wallet for iOS"
SHANGO_ANDROID "Shango Wallet for Android"
)
CHOICE=$(dialog --clear --title "Choose Mobile Wallet" --menu "" 10 40 6 "${OPTIONS[@]}" 2>&1 >/dev/tty)
CHOICE=$(dialog --clear --title "Choose Mobile Wallet" --menu "" 10 50 6 "${OPTIONS[@]}" 2>&1 >/dev/tty)
clear
case $CHOICE in
CLOSE)
exit 1;
;;
SHANGO)
SHANGO_IOS)
echo "************************************"
echo "Install Testflight and Shango-Wallet"
echo "************************************"
echo "At the moment this app is in public beta testing:"
echo
echo "https://testflight.apple.com/join/WwCjFnS8"
echo "https://testflight.apple.com/join/WwCjFnS8" > qr.txt
echo
./XXdisplayQR.sh
./97addMobileWalletShango.sh
exit 1;
;;
SHANGO_ANDROID)
echo "*******************************************"
echo "Install Shango-Wallet on your Android Phone"
echo "*******************************************"
echo
echo "At the moment this app is in public beta testing:"
echo "https://play.google.com/apps/testing/com.shango" >qr.txt
echo "https://play.google.com/apps/testing/com.shango"
./XXdisplayQR.sh
./97addMobileWalletShango.sh
exit 1;
;;
@ -42,4 +65,4 @@ case $CHOICE in
./97addMobileWalletZap.sh
exit 1;
;;
esac
esac

5
home.admin/97addMobileWalletShango.sh

@ -19,11 +19,6 @@ echo "******************************"
echo "Connect Shango Mobile Wallet"
echo "******************************"
echo ""
echo "GETTING THE APP"
echo "At the moment this app is in public beta testing:"
echo "iOS: Read https://testflight.apple.com/join/WwCjFnS8 (open on device)"
echo "Android: https://play.google.com/apps/testing/com.shango (open on device)"
echo ""
echo "*** STEP 1 ***"
if [ ${#dynDomain} -eq 0 ]; then
echo "Once you have the app is running make sure you are on the same local network (WLAN same as LAN)."

Loading…
Cancel
Save