Skip to content

Commit

Permalink
Release version 1.0.11 (202)
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenduythuc committed Jul 20, 2023
1 parent 1cb8627 commit b868900
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.0.11 (202)
- Update camera request permission flow

## 1.0.11 (201)
- Update New SelectModal for PoolSelector and ValidatorSelector (#777)
- Config universal deeplink (#779)
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ android {
applicationId "app.subwallet.mobile"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 201
versionCode 202
versionName "1.0.11"
missingDimensionStrategy 'react-native-camera', 'general'
}
Expand Down
8 changes: 4 additions & 4 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ PODS:
- GCDWebServer/Core (= 3.5.4)
- GCDWebServer/Core (3.5.4)
- glog (0.3.5)
- hermes-engine (0.71.11):
- hermes-engine/Pre-built (= 0.71.11)
- hermes-engine/Pre-built (0.71.11)
- hermes-engine (0.71.12):
- hermes-engine/Pre-built (= 0.71.12)
- hermes-engine/Pre-built (0.71.12)
- libevent (2.1.12)
- libwebp (1.2.4):
- libwebp/demux (= 1.2.4)
Expand Down Expand Up @@ -842,7 +842,7 @@ SPEC CHECKSUMS:
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
GCDWebServer: 2c156a56c8226e2d5c0c3f208a3621ccffbe3ce4
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
hermes-engine: 34c863b446d0135b85a6536fa5fd89f48196f848
hermes-engine: b60ebc812e0179a612d8146ac54730d533c804a2
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
libwebp: f62cb61d0a484ba548448a4bd52aabf150ff6eef
MMKV: 784471ce430a2e2d16afef9053d63fab1b357d9e
Expand Down
4 changes: 2 additions & 2 deletions ios/SubWalletMobile.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = NO;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = SubWalletMobile/SubWalletMobile.entitlements;
CURRENT_PROJECT_VERSION = 201;
CURRENT_PROJECT_VERSION = 202;
DEVELOPMENT_TEAM = ZUZ7T3GQMT;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = SubWalletMobile/Info.plist;
Expand Down Expand Up @@ -546,7 +546,7 @@
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = NO;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = SubWalletMobile/SubWalletMobile.entitlements;
CURRENT_PROJECT_VERSION = 201;
CURRENT_PROJECT_VERSION = 202;
DEVELOPMENT_TEAM = ZUZ7T3GQMT;
INFOPLIST_FILE = SubWalletMobile/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = SubWallet;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "SubWalletMobile",
"version": "1.0.11",
"build": "201",
"build": "202",
"private": true,
"license": "Apache-2.0",
"reactNativePermissionsIOS": [
Expand Down
2 changes: 1 addition & 1 deletion src/utils/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function isValidURL(str: string): boolean {
'^(https?:\\/\\/)?' + // protocol
'((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|' + // domain name
'((\\d{1,3}\\.){3}\\d{1,3}))' + // OR ip (v4) address
'(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*' + // port and path
'(\\:\\d+)?(\\/[-a-z\\d%_.~+#]*)*' + // port and path
'(\\?[;&a-z\\d%_.~+=-]*)?' + // query string
'(\\#[-a-z\\d_]*)?$',
'i',
Expand Down

0 comments on commit b868900

Please sign in to comment.