Skip to content

Commit

Permalink
Merge pull request #2452 from numbersprotocol/release-0.72.2
Browse files Browse the repository at this point in the history
Release 0.72.2
  • Loading branch information
bafu committed Jan 4, 2023
2 parents a6faf67 + e236ac5 commit 25de87b
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 8 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions ios/App/App.xcodeproj/project.pbxproj
Expand Up @@ -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)";
Expand All @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "capture-lite",
"version": "0.72.1",
"version": "0.72.2",
"author": "numbersprotocol",
"homepage": "https://numbersprotocol.io/",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions src/app/features/wallets/transfer/transfer.page.scss
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions src/app/features/wallets/wallets.page.scss
Expand Up @@ -65,6 +65,7 @@ ion-card {
#mainnet-points-row {
margin-top: 5%;
padding-left: 2%;
align-items: center;

.mainnet-points {
letter-spacing: 0.05em;
Expand Down

0 comments on commit 25de87b

Please sign in to comment.