diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d23f8434..35a8875ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 To check the difference between the last releaes and the latest dev status, click the link above. +## [0.72.2] - 2023-01-04 + +### Fixed + +1. Change qr code text color to white in deposite page (#2448) +2. Fix wallet page mainnet text vertical allignment to center (#2449) + ## [0.72.1] - 2022-12-23 ### Fixed @@ -1987,7 +1994,9 @@ This is the first release! _Capture Lite_ is a cross-platform app adapted from [ - Web - see the demo [here](https://github.com/numbersprotocol/capture-lite#demo-app) - Android - the APK file `app-debug.apk` is attached to this release -[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.72.0...HEAD +[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.72.2...HEAD +[0.72.2]: https://github.com/numbersprotocol/capture-lite/compare/0.72.1...0.72.2 +[0.72.1]: https://github.com/numbersprotocol/capture-lite/compare/0.72.0...0.72.1 [0.72.0]: https://github.com/numbersprotocol/capture-lite/compare/0.71.2...0.72.0 [0.71.2]: https://github.com/numbersprotocol/capture-lite/compare/0.71.1...0.71.2 [0.71.1]: https://github.com/numbersprotocol/capture-lite/compare/0.71.0...0.71.1 diff --git a/android/app/build.gradle b/android/app/build.gradle index 12221dc86..a2cca1c9b 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 459 - versionName "0.72.1" + versionCode 460 + versionName "0.72.2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildFeatures { diff --git a/ios/App/App.xcodeproj/project.pbxproj b/ios/App/App.xcodeproj/project.pbxproj index 0e4688ef7..694f3c9bc 100644 --- a/ios/App/App.xcodeproj/project.pbxproj +++ b/ios/App/App.xcodeproj/project.pbxproj @@ -374,7 +374,7 @@ INFOPLIST_FILE = App/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 0.72.1; + MARKETING_VERSION = 0.72.2; OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\""; PRODUCT_BUNDLE_IDENTIFIER = io.numbersprotocol.capturelite; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -401,7 +401,7 @@ INFOPLIST_FILE = App/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 0.72.1; + MARKETING_VERSION = 0.72.2; PRODUCT_BUNDLE_IDENTIFIER = io.numbersprotocol.capturelite; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = NumbersAppDistributionV4; diff --git a/package-lock.json b/package-lock.json index 3d61a830e..c8b32c01e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "capture-lite", - "version": "0.72.1", + "version": "0.72.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "capture-lite", - "version": "0.72.1", + "version": "0.72.2", "dependencies": { "packages": "^0.0.8", "@angular/animations": "^14.2.0", diff --git a/package.json b/package.json index 9df250576..b5db37637 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "capture-lite", - "version": "0.72.1", + "version": "0.72.2", "author": "numbersprotocol", "homepage": "https://numbersprotocol.io/", "scripts": { diff --git a/src/app/features/wallets/transfer/transfer.page.scss b/src/app/features/wallets/transfer/transfer.page.scss index bec8d93aa..1e9e303a7 100644 --- a/src/app/features/wallets/transfer/transfer.page.scss +++ b/src/app/features/wallets/transfer/transfer.page.scss @@ -177,6 +177,7 @@ ion-card { } .asset-wallet-qr-code-container { + color: white !important; /* stylelint-disable-line declaration-no-important */ max-width: 300px; margin: 0 auto; display: flex; diff --git a/src/app/features/wallets/wallets.page.scss b/src/app/features/wallets/wallets.page.scss index c57816891..0c67b9487 100644 --- a/src/app/features/wallets/wallets.page.scss +++ b/src/app/features/wallets/wallets.page.scss @@ -65,6 +65,7 @@ ion-card { #mainnet-points-row { margin-top: 5%; padding-left: 2%; + align-items: center; .mainnet-points { letter-spacing: 0.05em;