From 1d4605621e1c2d7c240e12f6f96746186a742c3b Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Sun, 30 Nov 2025 13:32:39 +0100 Subject: [PATCH] 16.4.2 --- CHANGELOG.md | 14 ++++++++++++++ android/app/build.gradle | 4 ++-- .../android/en-US/changelogs/1604020000.txt | 11 +++++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/environments/versions.ts | 2 +- 6 files changed, 31 insertions(+), 6 deletions(-) create mode 100644 android/fastlane/metadata/android/en-US/changelogs/1604020000.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index 30cf09ff1..1d10914a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## [16.4.2](https://github.com/johannesjo/super-productivity/compare/v16.4.1...v16.4.2) (2025-11-30) + +### Bug Fixes + +- **android:** correctly handle export cancellation to avoid misleading success toast ([06d9e49](https://github.com/johannesjo/super-productivity/commit/06d9e49466f189cf02d111b178ef3036459c6154)) +- **android:** prevent crash by making share plugin detection synchronous ([292cdc7](https://github.com/johannesjo/super-productivity/commit/292cdc72164d1b7bdaacf993adbca22d25143fa3)) +- **android:** restore broken metric sharing ([75ec726](https://github.com/johannesjo/super-productivity/commit/75ec72630c4c60d827d6ec6431267a9445e49968)) +- **android:** use Share API for export to avoid permission issues [#5607](https://github.com/johannesjo/super-productivity/issues/5607) ([a248587](https://github.com/johannesjo/super-productivity/commit/a2485872bebba74a65ffb8a68c3c9e78a7d93b03)) +- evaluate day string on daily summary ([9604d36](https://github.com/johannesjo/super-productivity/commit/9604d364756eefbcce167788f8e2b18a57d81926)) + +### Features + +- add error handling for download operations ([e781bc8](https://github.com/johannesjo/super-productivity/commit/e781bc814158198b5d54e47f314b9c99cbaa89e3)) + ## [16.4.1](https://github.com/johannesjo/super-productivity/compare/v16.4.0...v16.4.1) (2025-11-28) ### Bug Fixes diff --git a/android/app/build.gradle b/android/app/build.gradle index df996b7b2..f55852469 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -20,8 +20,8 @@ android { minSdkVersion 24 targetSdkVersion 35 compileSdk 35 - versionCode 16_04_01_0000 - versionName "16.4.1" + versionCode 16_04_02_0000 + versionName "16.4.2" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" manifestPlaceholders = [ hostName : "app.super-productivity.com", diff --git a/android/fastlane/metadata/android/en-US/changelogs/1604020000.txt b/android/fastlane/metadata/android/en-US/changelogs/1604020000.txt new file mode 100644 index 000000000..6b3914fed --- /dev/null +++ b/android/fastlane/metadata/android/en-US/changelogs/1604020000.txt @@ -0,0 +1,11 @@ + +### Bug Fixes + +* **android:** correctly handle export cancellation to avoid misleading success toast +* **android:** prevent crash by making share plugin detection synchronous +* **android:** restore broken metric sharing +* **android:** use Share API for export to avoid permission issues #5607 +* evaluate day string on daily summary +### Features + +* add error handling for download operations \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index a47225e13..f6be6917b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "superProductivity", - "version": "16.4.1", + "version": "16.4.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "superProductivity", - "version": "16.4.1", + "version": "16.4.2", "license": "MIT", "workspaces": [ "packages/*" diff --git a/package.json b/package.json index 565f91c90..535fba654 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "superProductivity", - "version": "16.4.1", + "version": "16.4.2", "description": "ToDo list and Time Tracking", "keywords": [ "ToDo", diff --git a/src/environments/versions.ts b/src/environments/versions.ts index 493ca5092..b2e9918cb 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: '16.4.1', + version: '16.4.2', revision: 'NO_REV', branch: 'NO_BRANCH', };