diff --git a/CHANGELOG.md b/CHANGELOG.md index 019b090f7..2b4be9a76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.60.2 - 2022-07-07 + +### Changed + +- Hide deposit button on wallets page for iOS + +### Fixed + +- Fix withdraw page the text color + ## 0.60.1 - 2022-07-06 ### Fixed diff --git a/android/app/build.gradle b/android/app/build.gradle index 3629d74e1..07c85a749 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -6,8 +6,8 @@ android { applicationId "io.numbersprotocol.capturelite" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 421 - versionName "0.60.1" + versionCode 422 + versionName "0.60.2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildFeatures { diff --git a/package-lock.json b/package-lock.json index 74c26f40a..5b2129103 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "capture-lite", - "version": "0.60.1", + "version": "0.60.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "capture-lite", - "version": "0.60.1", + "version": "0.60.2", "dependencies": { "@angular/animations": "^12.2.4", "@angular/cdk": "^12.2.4", diff --git a/package.json b/package.json index aa5d46640..434af9dda 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "capture-lite", - "version": "0.60.1", + "version": "0.60.2", "author": "numbersprotocol", "homepage": "https://numbersprotocol.io/", "scripts": { diff --git a/src/app/features/wallets/transfer/transfer.page.html b/src/app/features/wallets/transfer/transfer.page.html index 3d4c80fc8..cfaf87429 100644 --- a/src/app/features/wallets/transfer/transfer.page.html +++ b/src/app/features/wallets/transfer/transfer.page.html @@ -6,7 +6,7 @@ -
+
{{ t('wallets.myAssetWalletQRCode') }} @@ -47,9 +47,9 @@ -
+
-
+ @@ -167,5 +167,5 @@

-

+ diff --git a/src/app/features/wallets/wallets.page.html b/src/app/features/wallets/wallets.page.html index 822d520dd..cb4cec135 100644 --- a/src/app/features/wallets/wallets.page.html +++ b/src/app/features/wallets/wallets.page.html @@ -57,6 +57,7 @@

NUM

>{{ t('buy') }} NUM this.totalBalance$.next(totalBalance)); + + this.shouldHideDepositButton = this.platform.is('ios'); } // eslint-disable-next-line class-methods-use-this