diff --git a/CHANGELOG.md b/CHANGELOG.md index 47f0d21e1..a741300cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [12.0.4](https://github.com/johannesjo/super-productivity/compare/v12.0.3...v12.0.4) (2025-04-12) + +### Bug Fixes + +- **android:** status bar for android sdk 30 ([ab9d2a3](https://github.com/johannesjo/super-productivity/commit/ab9d2a35f2b4a8b169d87cc250240cf92037e731)) + ## [12.0.3](https://github.com/johannesjo/super-productivity/compare/v12.0.2...v12.0.3) (2025-04-05) ### Bug Fixes diff --git a/android/app/build.gradle b/android/app/build.gradle index c91df53bf..61fd68f74 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -20,8 +20,8 @@ android { minSdkVersion 24 targetSdkVersion 35 compileSdk 35 - versionCode 12_00_03_0000 - versionName "12.0.3" + versionCode 12_00_04_0000 + versionName "12.0.4" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" manifestPlaceholders = [ hostName : "app.super-productivity.com", diff --git a/fastlane/metadata/android/en-US/changelogs/1200040000.txt b/fastlane/metadata/android/en-US/changelogs/1200040000.txt new file mode 100644 index 000000000..8cfdcc3d5 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/1200040000.txt @@ -0,0 +1,4 @@ + +### Bug Fixes + +* **android:** status bar for android sdk 30 \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index f6fbc9f7f..6a04e0021 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "superProductivity", - "version": "12.0.3", + "version": "12.0.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "superProductivity", - "version": "12.0.3", + "version": "12.0.4", "license": "MIT", "dependencies": { "electron-dl": "^3.5.2", diff --git a/package.json b/package.json index eafe178ae..c18233101 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "superProductivity", - "version": "12.0.3", + "version": "12.0.4", "description": "ToDo list and Time Tracking", "keywords": [ "ToDo", diff --git a/src/environments/environment.js b/src/environments/environment.js new file mode 100644 index 000000000..b255a575a --- /dev/null +++ b/src/environments/environment.js @@ -0,0 +1,20 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +exports.environment = void 0; +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build ---prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. +var package_json_1 = require('../../package.json'); +exports.environment = { + production: false, + stage: false, + version: package_json_1.default.version, +}; +/* + * In development mode, for easier debugging, you can ignore zone related error + * stack frames such as `zone.run`/`zoneDelegate.invokeTask` by importing the + * below file. Don't forget to comment it out in production mode + * because it will have a performance impact when errors are thrown + */ +// import 'zone.js/plugins/zone-error'; // Included with Angular CLI. +//# sourceMappingURL=environment.js.map diff --git a/src/environments/environment.js.map b/src/environments/environment.js.map new file mode 100644 index 000000000..bb22363c1 --- /dev/null +++ b/src/environments/environment.js.map @@ -0,0 +1 @@ +{"version":3,"file":"environment.js","sourceRoot":"","sources":["environment.ts"],"names":[],"mappings":";;;AAAA,gFAAgF;AAChF,2EAA2E;AAC3E,gEAAgE;AAChE,mDAAqC;AAExB,QAAA,WAAW,GAAG;IACzB,UAAU,EAAE,KAAK;IACjB,KAAK,EAAE,KAAK;IACZ,OAAO,EAAE,sBAAG,CAAC,OAAO;CACrB,CAAC;AAEF;;;;;GAKG;AACH,sEAAsE"} \ No newline at end of file diff --git a/src/environments/versions.ts b/src/environments/versions.ts index 27d67134c..e5ba691bf 100644 --- a/src/environments/versions.ts +++ b/src/environments/versions.ts @@ -1,6 +1,6 @@ // this file is automatically generated by git.version.ts script export const versions = { - version: '12.0.3', + version: '12.0.4', revision: 'NO_REV', branch: 'NO_BRANCH', };