diff --git a/CHANGELOG.md b/CHANGELOG.md index 902694983..025d9903e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 1.0.14 (211) +- Update request camera permission message ## 1.0.14 (210) - Upgrade UI - Update sorting modal & remove console log (#935) - The of the staking item is displayed incorrectly (#955) diff --git a/android/app/build.gradle b/android/app/build.gradle index 11a87aedd..973f4ef65 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -93,7 +93,7 @@ android { applicationId "app.subwallet.mobile" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 210 + versionCode 211 versionName "1.0.15" missingDimensionStrategy 'react-native-camera', 'general' } diff --git a/ios/SubWalletMobile.xcodeproj/project.pbxproj b/ios/SubWalletMobile.xcodeproj/project.pbxproj index 72fc896c3..67ce95ce6 100644 --- a/ios/SubWalletMobile.xcodeproj/project.pbxproj +++ b/ios/SubWalletMobile.xcodeproj/project.pbxproj @@ -535,7 +535,7 @@ ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = NO; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = SubWalletMobile/SubWalletMobile.entitlements; - CURRENT_PROJECT_VERSION = 210; + CURRENT_PROJECT_VERSION = 211; DEVELOPMENT_TEAM = ZUZ7T3GQMT; ENABLE_BITCODE = NO; INFOPLIST_FILE = SubWalletMobile/Info.plist; @@ -568,7 +568,7 @@ ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = NO; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = SubWalletMobile/SubWalletMobile.entitlements; - CURRENT_PROJECT_VERSION = 210; + CURRENT_PROJECT_VERSION = 211; DEVELOPMENT_TEAM = ZUZ7T3GQMT; INFOPLIST_FILE = SubWalletMobile/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = SubWallet; diff --git a/package.json b/package.json index 75fb83d4d..ffdadb46b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "SubWalletMobile", "version": "1.0.15", - "build": "210", + "build": "211", "private": true, "license": "Apache-2.0", "reactNativePermissionsIOS": [ diff --git a/src/utils/i18n/en_US.ts b/src/utils/i18n/en_US.ts index 41fcb5f27..5d64715f6 100644 --- a/src/utils/i18n/en_US.ts +++ b/src/utils/i18n/en_US.ts @@ -9,7 +9,8 @@ export const en = { transferFailMessage1: 'There was a problem with your request. You can track its progress on the History page.', transferFailMessage2: 'There was a problem with your request.', notify: 'Notification!', - cannotScanQRCodeWithoutPermission: 'Please grant Camera access to scan QR code', + cannotScanQRCodeWithoutPermission: + 'SubWallet needs access to camera on your device to scan QR code for actions such as account creation, data verification or dApp connection.', goToSetting: 'Go to setting', scan: 'Scan', toSendFund: 'to send fund', diff --git a/src/utils/i18n/vi_VN.ts b/src/utils/i18n/vi_VN.ts index 842df614c..4422f6eec 100644 --- a/src/utils/i18n/vi_VN.ts +++ b/src/utils/i18n/vi_VN.ts @@ -9,7 +9,8 @@ export const vi = { transferFailMessage1: 'Yêu cầu của bạn có vấn đề. Bạn có thể theo dõi tiến trình của nó trên trang Lịch sử.', transferFailMessage2: 'Có vấn đề xảy ra với yêu cầu của bạn.', notify: 'Thông báo', - cannotScanQRCodeWithoutPermission: 'Vui lòng cấp quyền truy cập máy ảnh để quét mã QR', + cannotScanQRCodeWithoutPermission: + 'SubWallet cần sử dụng máy ảnh trên thiết bị của bạn để quét mã QR nhằm thực hiện các hành động như tạo tài khoản, xác thực dữ liệu hoặc kết nối dApp', goToSetting: 'Đi đến Cài đặt', scan: 'Quét', toSendFund: 'để gửi tài sản ', diff --git a/src/utils/i18n/zh_CN.ts b/src/utils/i18n/zh_CN.ts index 4f06c157b..9bb378e05 100644 --- a/src/utils/i18n/zh_CN.ts +++ b/src/utils/i18n/zh_CN.ts @@ -9,7 +9,8 @@ export const zh = { transferFailMessage1: '你的请求存在问题。你可以在记录页面上跟踪其进度。', transferFailMessage2: '你的请求存在问题。', notify: '通知!', - cannotScanQRCodeWithoutPermission: '请授予相机访问权限以扫描二维码', + cannotScanQRCodeWithoutPermission: + 'SubWallet 需要访问您设备上的摄像头来扫描二维码以执行帐户创建、数据验证或 dApp 连接等操作。', goToSetting: '前往设置', scan: '扫描', toSendFund: '以发送资金',