diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fd52256c..18a55ebb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# [15.1.0](https://github.com/johannesjo/super-productivity/compare/v15.1.0-rc.0...v15.1.0) (2025-10-07) + +### Bug Fixes + +- **boards:** not correctly navigating to the newly created board [#5211](https://github.com/johannesjo/super-productivity/issues/5211) ([6dc1922](https://github.com/johannesjo/super-productivity/commit/6dc1922fb9ee3c941985049e443a4a9749d93c80)) +- day of week header missing [#5168](https://github.com/johannesjo/super-productivity/issues/5168) ([699e244](https://github.com/johannesjo/super-productivity/commit/699e24402638547255a7fa9438c410da60958618)) +- **focusMode:** issue link styling ([eeb8faf](https://github.com/johannesjo/super-productivity/commit/eeb8faf365e74d9d6afe9cc346038820220fe11f)) +- snacks showing forever ([239dec5](https://github.com/johannesjo/super-productivity/commit/239dec5b194fddf8d488bb8b75275d9f7731def2)) + +### Features + +- **projectFolders:** add data validation and repair ([beb29db](https://github.com/johannesjo/super-productivity/commit/beb29db05f23061d621013fbe7fca3c2ffa3fa15)) +- **projectFolders:** make it also work for tags ([5c0c944](https://github.com/johannesjo/super-productivity/commit/5c0c944f17eddce908f767bf10631636bca8c76f)) +- **projectFolders:** prepare to make it work for tags too ([3e98ca9](https://github.com/johannesjo/super-productivity/commit/3e98ca93b336c4a86a796bf7e478eb974cf814a5)) +- **projectFolders:** reduce size ([aa17eac](https://github.com/johannesjo/super-productivity/commit/aa17eac846a5ba75f886db999ef0cf2a680b3e19)) +- **schedule:** improve styling ([fa1482f](https://github.com/johannesjo/super-productivity/commit/fa1482ffe408f0f29fcae19b6a6b90b863a7e105)) +- show done tasks section only if there are done tasks ([61d03a8](https://github.com/johannesjo/super-productivity/commit/61d03a8ebf0196483ea3dafd2dcb08d3230244d9)) + # [15.1.0-rc.0](https://github.com/johannesjo/super-productivity/compare/v15.0.3...v15.1.0-rc.0) (2025-09-20) ### Bug Fixes diff --git a/android/app/build.gradle b/android/app/build.gradle index ac2e0f7df..91506d4c5 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -20,8 +20,8 @@ android { minSdkVersion 24 targetSdkVersion 35 compileSdk 35 - versionCode 15_00_03_0000 - versionName "15.0.3" + versionCode 15_01_00_0000 + versionName "15.1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" manifestPlaceholders = [ hostName : "app.super-productivity.com", diff --git a/android/fastlane/metadata/android/en-US/changelogs/1501000000.txt b/android/fastlane/metadata/android/en-US/changelogs/1501000000.txt new file mode 100644 index 000000000..ea59b034f --- /dev/null +++ b/android/fastlane/metadata/android/en-US/changelogs/1501000000.txt @@ -0,0 +1,15 @@ + +### Bug Fixes + +* **boards:** not correctly navigating to the newly created board #5211 +* day of week header missing #5168 +* **focusMode:** issue link styling +* snacks showing forever +### Features + +* **projectFolders:** add data validation and repair +* **projectFolders:** make it also work for tags +* **projectFolders:** prepare to make it work for tags too +* **projectFolders:** reduce size +* **schedule:** improve styling +* show done tasks section only if there are done tasks \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 61e17a156..57c780a6c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,18 +1,17 @@ { "name": "superProductivity", - "version": "15.1.0-rc.0", + "version": "15.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "superProductivity", - "version": "15.1.0-rc.0", + "version": "15.1.0", "license": "MIT", "workspaces": [ "packages/*" ], "dependencies": { - "@rollup/rollup-win32-x64-msvc": "4.52.3", "electron-dl": "^3.5.2", "electron-localshortcut": "^3.2.1", "electron-log": "^5.4.1", diff --git a/package.json b/package.json index ed7e8bd53..e8f909231 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "superProductivity", - "version": "15.1.0-rc.0", + "version": "15.1.0", "description": "ToDo list and Time Tracking", "keywords": [ "ToDo", diff --git a/src/environments/versions.ts b/src/environments/versions.ts index 2f3f46a59..bb253e05b 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: '15.1.0-rc.0', + version: '15.1.0', revision: 'NO_REV', branch: 'NO_BRANCH', };