diff --git a/CHANGELOG.md b/CHANGELOG.md index 35a8875ce..ba63f145f 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.3] - 2023-01-06 + +### Fixed + +1. Revert workaround for forcing webview dark mode on Android (#2457) +2. Revert qr code text color to white in Transfer page (#2460) + ## [0.72.2] - 2023-01-04 ### Fixed @@ -1994,7 +2001,8 @@ 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.2...HEAD +[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.72.3...HEAD +[0.72.3]: https://github.com/numbersprotocol/capture-lite/compare/0.72.2...0.72.3 [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 diff --git a/android/app/build.gradle b/android/app/build.gradle index 1e7b80d9a..ba9df40c4 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 461 - versionName "0.72.2" + versionCode 462 + versionName "0.72.3" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildFeatures { diff --git a/android/app/src/main/java/io/numbersprotocol/capturelite/MainActivity.java b/android/app/src/main/java/io/numbersprotocol/capturelite/MainActivity.java index d0e41bf97..844de95da 100644 --- a/android/app/src/main/java/io/numbersprotocol/capturelite/MainActivity.java +++ b/android/app/src/main/java/io/numbersprotocol/capturelite/MainActivity.java @@ -14,7 +14,7 @@ public class MainActivity extends BridgeActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); - forceWebViewDarkMode(); + // forceWebViewDarkMode(); } private void forceWebViewDarkMode() { diff --git a/ios/App/App.xcodeproj/project.pbxproj b/ios/App/App.xcodeproj/project.pbxproj index 694f3c9bc..2c4c037f7 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.2; + MARKETING_VERSION = 0.72.3; 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.2; + MARKETING_VERSION = 0.72.3; 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 c8b32c01e..7c02ba3d4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "capture-lite", - "version": "0.72.2", + "version": "0.72.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "capture-lite", - "version": "0.72.2", + "version": "0.72.3", "dependencies": { "packages": "^0.0.8", "@angular/animations": "^14.2.0", diff --git a/package.json b/package.json index b5db37637..6ae5a6d1f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "capture-lite", - "version": "0.72.2", + "version": "0.72.3", "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 1e9e303a7..bec8d93aa 100644 --- a/src/app/features/wallets/transfer/transfer.page.scss +++ b/src/app/features/wallets/transfer/transfer.page.scss @@ -177,7 +177,6 @@ ion-card { } .asset-wallet-qr-code-container { - color: white !important; /* stylelint-disable-line declaration-no-important */ max-width: 300px; margin: 0 auto; display: flex;