mirror of
https://github.com/tomfong/simple-qr.git
synced 2025-06-28 12:09:58 +00:00
chore: version bump
This commit is contained in:
parent
1291878921
commit
b4e42d1528
12 changed files with 34 additions and 34 deletions
20
README.md
20
README.md
|
@ -120,20 +120,20 @@ Thank you the following contributors who have made the app better!
|
|||
## Framework
|
||||
|
||||
```sh
|
||||
Ionic CLI : 6.20.1
|
||||
Ionic Framework : @ionic/angular 6.3.2
|
||||
@angular-devkit/build-angular : 14.2.6
|
||||
@angular-devkit/schematics : 14.2.6
|
||||
@angular/cli : 14.2.6
|
||||
Ionic CLI : 6.20.4
|
||||
Ionic Framework : @ionic/angular 6.3.7
|
||||
@angular-devkit/build-angular : 14.2.10
|
||||
@angular-devkit/schematics : 14.2.10
|
||||
@angular/cli : 14.2.10
|
||||
@ionic/angular-toolkit : 6.1.0
|
||||
|
||||
Capacitor CLI : 4.3.0
|
||||
@capacitor/android : 4.3.0
|
||||
@capacitor/core : 4.3.0
|
||||
@capacitor/ios : 4.3.0
|
||||
Capacitor CLI : 4.5.0
|
||||
@capacitor/android : 4.5.0
|
||||
@capacitor/core : 4.5.0
|
||||
@capacitor/ios : 4.5.0
|
||||
|
||||
NodeJS : v16.15.1
|
||||
npm : 8.19.2
|
||||
npm : 9.1.1
|
||||
```
|
||||
|
||||
## Privacy Policy
|
||||
|
|
|
@ -6,8 +6,8 @@ android {
|
|||
applicationId "com.tomfong.simpleqr"
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
versionCode 3010000
|
||||
versionName "3.1.0"
|
||||
versionCode 3020000
|
||||
versionName "3.2.0"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
aaptOptions {
|
||||
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
|
||||
|
|
|
@ -396,7 +396,7 @@
|
|||
INFOPLIST_FILE = App/Info.plist;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
||||
MARKETING_VERSION = 3.1.0;
|
||||
MARKETING_VERSION = 3.2.0;
|
||||
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 = 13.0;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
||||
MARKETING_VERSION = 3.1.0;
|
||||
MARKETING_VERSION = 3.2.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tomfong.simpleqr;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
PROVISIONING_PROFILE_SPECIFIER = "Simple QR";
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "simple-qr",
|
||||
"version": "3.1.0",
|
||||
"version": "3.2.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "simple-qr",
|
||||
"version": "3.1.0",
|
||||
"version": "3.2.0",
|
||||
"dependencies": {
|
||||
"@angular/animations": "^14.2.3",
|
||||
"@angular/cdk": "^14.2.2",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "simple-qr",
|
||||
"version": "3.1.0",
|
||||
"version": "3.2.0",
|
||||
"author": "Tom Fong",
|
||||
"homepage": "https://tomfong.github.io",
|
||||
"scripts": {
|
||||
|
|
|
@ -31,7 +31,7 @@ export declare type ResultPageButtonsType = 'detailed' | 'icon-only';
|
|||
})
|
||||
export class EnvService {
|
||||
|
||||
public appVersionNumber: string = '3.1.0';
|
||||
public appVersionNumber: string = '3.2.0';
|
||||
|
||||
public startPage: TabPageType = "/tabs/scan";
|
||||
public historyPageStartSegment: HistoryPageSegmentType = 'history';
|
||||
|
@ -121,10 +121,10 @@ export class EnvService {
|
|||
public readonly KEY_SHOW_OPEN_FOOD_FACTS_BUTTON = "showOpenFoodFactsButton";
|
||||
public readonly KEY_AUTO_EXIT_MIN = "autoExitAppMin";
|
||||
|
||||
public readonly KEY_ANDROID_NOT_SHOW_UPDATE_NOTES = "not-show-update-notes-v30100";
|
||||
public readonly KEY_IOS_NOT_SHOW_UPDATE_NOTES = "not-show-update-notes-v30100";
|
||||
public readonly KEY_ANDROID_PREV_NOT_SHOW_UPDATE_NOTES = "not-show-update-notes-v30001";
|
||||
public readonly KEY_IOS_PREV_NOT_SHOW_UPDATE_NOTES = "not-show-update-notes-v30001";
|
||||
public readonly KEY_ANDROID_NOT_SHOW_UPDATE_NOTES = "not-show-update-notes-v30200";
|
||||
public readonly KEY_IOS_NOT_SHOW_UPDATE_NOTES = "not-show-update-notes-v30200";
|
||||
public readonly KEY_ANDROID_PREV_NOT_SHOW_UPDATE_NOTES = "not-show-update-notes-v30100";
|
||||
public readonly KEY_IOS_PREV_NOT_SHOW_UPDATE_NOTES = "not-show-update-notes-v30100";
|
||||
|
||||
public readonly APP_FOLDER_NAME: string = 'SimpleQR';
|
||||
|
||||
|
|
|
@ -308,7 +308,7 @@
|
|||
"UPC": "Universeller Produktcode "
|
||||
},
|
||||
"UPDATE": {
|
||||
"UPDATE_NOTES_ANDROID": "<p>Diese Version bringt Ihnen mehrere Updates und neue Funktionen. Bitte überprüfen Sie GitHub für Details.</p><p>Starting from this version, you can use Ecosia as search engine, export records to CSV and enjoy more reliable data logging.</p>",
|
||||
"UPDATE_NOTES_IOS": "<p>Diese Version bringt Ihnen mehrere Updates und neue Funktionen. Bitte überprüfen Sie GitHub für Details.</p><p>Starting from this version, you can use Ecosia as search engine, export records to CSV and enjoy more reliable data logging.</p>"
|
||||
"UPDATE_NOTES_ANDROID": "<p>Diese Version bringt Ihnen mehrere Updates und neue Funktionen. Bitte überprüfen Sie GitHub für Details.</p>",
|
||||
"UPDATE_NOTES_IOS": "<p>Diese Version bringt Ihnen mehrere Updates und neue Funktionen. Bitte überprüfen Sie GitHub für Details.</p>"
|
||||
}
|
||||
}
|
|
@ -308,7 +308,7 @@
|
|||
"UPC": "Universal Product Code "
|
||||
},
|
||||
"UPDATE": {
|
||||
"UPDATE_NOTES_ANDROID": "<p>This release brings you several updates and new features. Please check GitHub for details.</p><p>Starting from this version, you can use Ecosia as search engine, export records to CSV and enjoy more reliable data logging.</p>",
|
||||
"UPDATE_NOTES_IOS": "<p>This release brings you several updates and new features. Please check GitHub for details.</p><p>Starting from this version, you can use Ecosia as search engine, export records to CSV and enjoy more reliable data logging.</p>"
|
||||
"UPDATE_NOTES_ANDROID": "<p>This release brings you several updates and new features. Please check GitHub for details.</p>",
|
||||
"UPDATE_NOTES_IOS": "<p>This release brings you several updates and new features. Please check GitHub for details.</p>"
|
||||
}
|
||||
}
|
|
@ -308,7 +308,7 @@
|
|||
"UPC": "Code produit universel"
|
||||
},
|
||||
"UPDATE": {
|
||||
"UPDATE_NOTES_ANDROID": "<p>Cette version vous apporte plusieurs mises à jour et nouvelles fonctionnalités. Veuillez consulter GitHub pour plus de détails.</p><p>Starting from this version, you can use Ecosia as search engine, export records to CSV and enjoy more reliable data logging.</p>",
|
||||
"UPDATE_NOTES_IOS": "<p>Cette version vous apporte plusieurs mises à jour et nouvelles fonctionnalités. Veuillez consulter GitHub pour plus de détails.</p><p>Starting from this version, you can use Ecosia as search engine, export records to CSV and enjoy more reliable data logging.</p>"
|
||||
"UPDATE_NOTES_ANDROID": "<p>Cette version vous apporte plusieurs mises à jour et nouvelles fonctionnalités. Veuillez consulter GitHub pour plus de détails.</p>",
|
||||
"UPDATE_NOTES_IOS": "<p>Cette version vous apporte plusieurs mises à jour et nouvelles fonctionnalités. Veuillez consulter GitHub pour plus de détails.</p>"
|
||||
}
|
||||
}
|
|
@ -308,7 +308,7 @@
|
|||
"UPC": "Codice Prodotto Universale "
|
||||
},
|
||||
"UPDATE": {
|
||||
"UPDATE_NOTES_ANDROID": "<p>Questa versione offre numerosi aggiornamenti e nuove funzionalità. Si prega di controllare GitHub per i dettagli.</p><p>Starting from this version, you can use Ecosia as search engine, export records to CSV and enjoy more reliable data logging.</p>",
|
||||
"UPDATE_NOTES_IOS": "<p>Questa versione offre numerosi aggiornamenti e nuove funzionalità. Si prega di controllare GitHub per i dettagli.</p><p>Starting from this version, you can use Ecosia as search engine, export records to CSV and enjoy more reliable data logging.</p>"
|
||||
"UPDATE_NOTES_ANDROID": "<p>Questa versione offre numerosi aggiornamenti e nuove funzionalità. Si prega di controllare GitHub per i dettagli.</p>",
|
||||
"UPDATE_NOTES_IOS": "<p>Questa versione offre numerosi aggiornamenti e nuove funzionalità. Si prega di controllare GitHub per i dettagli.</p>"
|
||||
}
|
||||
}
|
|
@ -308,7 +308,7 @@
|
|||
"UPC": "通用产品代码"
|
||||
},
|
||||
"UPDATE": {
|
||||
"UPDATE_NOTES_ANDROID": "<p>此版本为您带来多项更新和新功能,详情请查看 GitHub。</p><p>Starting from this version, you can use Ecosia as search engine, export records to CSV and enjoy more reliable data logging.</p>",
|
||||
"UPDATE_NOTES_IOS": "<p>此版本为您带来多项更新和新功能,详情请查看 GitHub。</p><p>Starting from this version, you can use Ecosia as search engine, export records to CSV and enjoy more reliable data logging.</p>"
|
||||
"UPDATE_NOTES_ANDROID": "<p>此版本为您带来多项更新和新功能,详情请查看 GitHub。</p>",
|
||||
"UPDATE_NOTES_IOS": "<p>此版本为您带来多项更新和新功能,详情请查看 GitHub。</p>"
|
||||
}
|
||||
}
|
|
@ -308,7 +308,7 @@
|
|||
"UPC": "通用產品代碼"
|
||||
},
|
||||
"UPDATE": {
|
||||
"UPDATE_NOTES_ANDROID": "<p>此版本為您帶來多項更新和新功能,詳情請查看 GitHub。</p><p>Starting from this version, you can use Ecosia as search engine, export records to CSV and enjoy more reliable data logging.</p>",
|
||||
"UPDATE_NOTES_IOS": "<p>此版本為您帶來多項更新和新功能,詳情請查看 GitHub。</p><p>Starting from this version, you can use Ecosia as search engine, export records to CSV and enjoy more reliable data logging.</p>"
|
||||
"UPDATE_NOTES_ANDROID": "<p>此版本為您帶來多項更新和新功能,詳情請查看 GitHub。</p>",
|
||||
"UPDATE_NOTES_IOS": "<p>此版本為您帶來多項更新和新功能,詳情請查看 GitHub。</p>"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue