chore: regular modules update

This commit is contained in:
Tom Fong 2022-07-16 13:16:37 +08:00
parent 4d3e5454e0
commit c2d7226901
5 changed files with 1728 additions and 1368 deletions

View file

@ -6,8 +6,8 @@ android {
applicationId "com.tomfong.simpleqr"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 2070001
versionName "2.7.0"
versionCode 2070100
versionName "2.7.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

View file

@ -396,7 +396,7 @@
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 2.7.0;
MARKETING_VERSION = 2.7.1;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = com.tomfong.simpleqr;
PRODUCT_NAME = "$(TARGET_NAME)";
@ -419,7 +419,7 @@
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 2.7.0;
MARKETING_VERSION = 2.7.1;
PRODUCT_BUNDLE_IDENTIFIER = com.tomfong.simpleqr;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "Simple QR";

3050
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{
"name": "simple-qr",
"version": "2.7.0",
"version": "2.7.1",
"author": "Tom Fong",
"homepage": "https://tomfong.github.io",
"scripts": {
@ -27,30 +27,30 @@
"@angular/platform-browser": "^13.3.5",
"@angular/platform-browser-dynamic": "^13.3.11",
"@angular/router": "^13.3.11",
"@awesome-cordova-plugins/aes-256": "^5.43.0",
"@awesome-cordova-plugins/chooser": "^5.43.0",
"@awesome-cordova-plugins/core": "^5.43.0",
"@awesome-cordova-plugins/screen-orientation": "^5.43.0",
"@awesome-cordova-plugins/sms": "^5.43.0",
"@awesome-cordova-plugins/social-sharing": "^5.43.0",
"@awesome-cordova-plugins/theme-detection": "^5.43.0",
"@awesome-cordova-plugins/aes-256": "^5.44.0",
"@awesome-cordova-plugins/chooser": "^5.44.0",
"@awesome-cordova-plugins/core": "^5.44.0",
"@awesome-cordova-plugins/screen-orientation": "^5.44.0",
"@awesome-cordova-plugins/sms": "^5.44.0",
"@awesome-cordova-plugins/social-sharing": "^5.44.0",
"@awesome-cordova-plugins/theme-detection": "^5.44.0",
"@capacitor-community/barcode-scanner": "^2.1.1",
"@capacitor-community/contacts": "^1.1.3",
"@capacitor-community/screen-brightness": "^1.0.1",
"@capacitor/android": "^3.5.1",
"@capacitor/android": "^3.6.0",
"@capacitor/app": "^1.1.1",
"@capacitor/camera": "^1.3.1",
"@capacitor/clipboard": "^1.0.8",
"@capacitor/core": "^3.5.1",
"@capacitor/core": "^3.6.0",
"@capacitor/device": "^1.1.2",
"@capacitor/filesystem": "^1.1.0",
"@capacitor/haptics": "^1.1.4",
"@capacitor/ios": "^3.5.1",
"@capacitor/keyboard": "^1.2.2",
"@capacitor/ios": "^3.6.0",
"@capacitor/keyboard": "^1.2.3",
"@capacitor/splash-screen": "^1.2.2",
"@capacitor/status-bar": "^1.0.8",
"@capacitor/toast": "^1.0.8",
"@ionic/angular": "^6.1.9",
"@ionic/angular": "^6.1.14",
"@ionic/storage": "^3.0.6",
"@ionic/storage-angular": "^3.0.6",
"@ng-bootstrap/ng-bootstrap": "^11.0.1",
@ -68,22 +68,22 @@
"human-signals": "^2.1.0",
"jsqr": "^1.4.0",
"material-design-icons": "^3.0.1",
"moment": "^2.29.3",
"moment": "^2.29.4",
"osenv": "^0.1.5",
"properties-parser": "^0.3.1",
"rxjs": "^6.6.7",
"strip-final-newline": "^2.0.0",
"tslib": "^2.4.0",
"uuid": "^8.3.2",
"zone.js": "^0.11.5"
"zone.js": "^0.11.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.3.7",
"@angular/cli": "^13.3.7",
"@angular-devkit/build-angular": "^13.3.8",
"@angular/cli": "^13.3.8",
"@angular/compiler": "^13.3.5",
"@angular/compiler-cli": "^13.3.5",
"@angular/language-service": "^13.3.11",
"@capacitor/cli": "^3.5.1",
"@capacitor/cli": "^3.6.0",
"@ionic/angular-toolkit": "^6.1.0",
"@types/jasmine": "^3.10.6",
"@types/jasminewd2": "^2.0.10",

View file

@ -20,7 +20,7 @@ export declare type LanguageType = 'de' | 'en' | 'fr' | 'it' | 'zh-CN' | 'zh-HK'
})
export class EnvService {
public appVersionNumber: string = '2.7.0';
public appVersionNumber: string = '2.7.1';
public startPage: "/tabs/scan" | "/tabs/generate" | "/tabs/import-image" | "/tabs/history" | "/tabs/setting" = "/tabs/scan";
public historyPageStartSegment: 'history' | 'bookmarks' = 'history';