From a3dfd22ed7053795986de0ad3c59a4f1cbeaab3b Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Thu, 13 Nov 2025 19:36:56 +0100 Subject: [PATCH] 16.3.3 --- CHANGELOG.md | 24 +++++++++++++++++++ android/app/build.gradle | 4 ++-- .../android/en-US/changelogs/1603030000.txt | 21 ++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/environments/versions.ts | 2 +- 6 files changed, 51 insertions(+), 6 deletions(-) create mode 100644 android/fastlane/metadata/android/en-US/changelogs/1603030000.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e5ad1731..141ee048f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +## [16.3.3](https://github.com/johannesjo/super-productivity/compare/v16.3.1...v16.3.3) (2025-11-13) + +### Bug Fixes + +- add task bar search mode not adding to the correct day from planner ([c0db68f](https://github.com/johannesjo/super-productivity/commit/c0db68f003227fe63cc8b92e32ec773e372f23e4)) +- day change not always detected [#5464](https://github.com/johannesjo/super-productivity/issues/5464) ([57c1db5](https://github.com/johannesjo/super-productivity/commit/57c1db50055be371d8eddf4f3f739e48c6347ea3)) +- ensure unique subTaskIds when merging task data ([3dda668](https://github.com/johannesjo/super-productivity/commit/3dda668ac8a6e54f8f64f10110efe48eebc35d11)) +- focus mode flow time counter ([277d77f](https://github.com/johannesjo/super-productivity/commit/277d77fd5f77312bed389216762554a0b266f7cb)) +- **focusMode:** flowtime timer stopping at 25 ([d15e6d1](https://github.com/johannesjo/super-productivity/commit/d15e6d1197b890af2613d8111e44d4ed73e62ce5)), closes [#5117](https://github.com/johannesjo/super-productivity/issues/5117) +- **focusMode:** skip preparation screen not working ([7817a10](https://github.com/johannesjo/super-productivity/commit/7817a10ae8d995ae5e394f676b490b7ea4bd65f0)), closes [#5497](https://github.com/johannesjo/super-productivity/issues/5497) +- inconsistent state on dragging tasks onto project [#5489](https://github.com/johannesjo/super-productivity/issues/5489) ([f69a7ac](https://github.com/johannesjo/super-productivity/commit/f69a7ac5f66e4c6a8d8b4d522cb4f1017a20f70a)) +- mac mas build ([c2d9335](https://github.com/johannesjo/super-productivity/commit/c2d93354d47c731d3c7e28c9114ab888e423dfc7)) +- **mobile-nav:** check history.state for null before access the key ([d6d5867](https://github.com/johannesjo/super-productivity/commit/d6d58671e0a369c6717514d62308cea057d22ce1)) +- type error [#5472](https://github.com/johannesjo/super-productivity/issues/5472) ([4aa592f](https://github.com/johannesjo/super-productivity/commit/4aa592f8cfa251fac29a3b0c0d09f27fcba7822d)) +- type error on race condition ([3d4b7fe](https://github.com/johannesjo/super-productivity/commit/3d4b7fe2e90771b303e288de4bb7fd209a426e3e)), closes [#5491](https://github.com/johannesjo/super-productivity/issues/5491) +- unable to set due date of new task in add task bar [#5495](https://github.com/johannesjo/super-productivity/issues/5495) ([68cfe28](https://github.com/johannesjo/super-productivity/commit/68cfe28bbca01601185247a809c809b30258aa35)) +- **worklog:** revise comparators for key-value pipe ([#5465](https://github.com/johannesjo/super-productivity/issues/5465)) ([7725599](https://github.com/johannesjo/super-productivity/commit/772559960345a21c2498d23046e2b2a03eebe947)) + +### Features + +- **focusMode:** add dialog to edit focus sessions ([86e0d1b](https://github.com/johannesjo/super-productivity/commit/86e0d1bbc5e81e76728604d47f1d7fa61100e125)) +- **focusMode:** show auto-complete suggestions right away ([877cf29](https://github.com/johannesjo/super-productivity/commit/877cf29a03fd8a26950de7f06261443ad9401e38)), closes [#5498](https://github.com/johannesjo/super-productivity/issues/5498) +- **simpleCounter:** allow to edit settings directly from context dialog ([6b6f815](https://github.com/johannesjo/super-productivity/commit/6b6f8155a8f9477ac675f3baea3bf55434bdd57e)) + ## [16.3.2](https://github.com/johannesjo/super-productivity/compare/v16.3.1...v16.3.2) (2025-11-10) ## [16.3.1](https://github.com/johannesjo/super-productivity/compare/v16.3.0...v16.3.1) (2025-11-10) diff --git a/android/app/build.gradle b/android/app/build.gradle index b01657f95..c584c8f1d 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -20,8 +20,8 @@ android { minSdkVersion 24 targetSdkVersion 35 compileSdk 35 - versionCode 16_03_02_0000 - versionName "16.3.2" + versionCode 16_03_03_0000 + versionName "16.3.3" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" manifestPlaceholders = [ hostName : "app.super-productivity.com", diff --git a/android/fastlane/metadata/android/en-US/changelogs/1603030000.txt b/android/fastlane/metadata/android/en-US/changelogs/1603030000.txt new file mode 100644 index 000000000..fec17770e --- /dev/null +++ b/android/fastlane/metadata/android/en-US/changelogs/1603030000.txt @@ -0,0 +1,21 @@ + +### Bug Fixes + +* add task bar search mode not adding to the correct day from planner +* day change not always detected #5464 +* ensure unique subTaskIds when merging task data +* focus mode flow time counter +* **focusMode:** flowtime timer stopping at 25 (d15e6d1), closes #5117 +* **focusMode:** skip preparation screen not working (7817a10), closes #5497 +* inconsistent state on dragging tasks onto project #5489 +* mac mas build +* **mobile-nav:** check history.state for null before access the key +* type error #5472 +* type error on race condition (3d4b7fe), closes #5491 +* unable to set due date of new task in add task bar #5495 +* **worklog:** revise comparators for key-value pipe (#5465) +### Features + +* **focusMode:** add dialog to edit focus sessions +* **focusMode:** show auto-complete suggestions right away (877cf29), closes #5498 +* **simpleCounter:** allow to edit settings directly from context dialog \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 32daa07bb..8ae7f51a3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "superProductivity", - "version": "16.3.2", + "version": "16.3.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "superProductivity", - "version": "16.3.2", + "version": "16.3.3", "license": "MIT", "workspaces": [ "packages/*" diff --git a/package.json b/package.json index 831227317..63e8d05a2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "superProductivity", - "version": "16.3.2", + "version": "16.3.3", "description": "ToDo list and Time Tracking", "keywords": [ "ToDo", diff --git a/src/environments/versions.ts b/src/environments/versions.ts index 89a9b8022..62c2153a5 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.3.2', + version: '16.3.3', revision: 'NO_REV', branch: 'NO_BRANCH', };