diff --git a/CHANGELOG.md b/CHANGELOG.md index 85e03cadf..da2e2b45a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# [17.0.0-RC.7](https://github.com/super-productivity/super-productivity/compare/v17.0.0-RC.5...v17.0.0-RC.7) (2026-01-17) + +### Bug Fixes + +- **ci:** add memory allocation to Mac test step to prevent OOM ([7a7cb03](https://github.com/super-productivity/super-productivity/commit/7a7cb031b9f6de7f99fa6075ec69f79889a108e9)) +- **ci:** grant write permissions for Claude code review to post comments ([a11257e](https://github.com/super-productivity/super-productivity/commit/a11257e70bac6f7696ef29b881cbdd24c60115c3)) +- **config:** add missing MatTabLabel import to config page component ([9e3e622](https://github.com/super-productivity/super-productivity/commit/9e3e622a9b87dd176089676252705a9559f2019a)) +- **config:** rename 'Plugins & Shortcuts' to 'Plugins' for consistency in UI and translations ([c64485b](https://github.com/super-productivity/super-productivity/commit/c64485b888471cab786a81401669110f26943040)) +- **i18n:** update Russian translations and make alphabetical order for en and ru. ([4c7875c](https://github.com/super-productivity/super-productivity/commit/4c7875c8dd58ccfb09282fef77f4162b92d110d0)) +- **snap:** add filesystem and desktop integration plugs ([1c0581b](https://github.com/super-productivity/super-productivity/commit/1c0581bca83ca4e28a7a4d271c2e3aecd5dc6404)), closes [#6031](https://github.com/super-productivity/super-productivity/issues/6031) +- **tags:** show subtasks in tag lists only when parent is not in same list ([0c5bc46](https://github.com/super-productivity/super-productivity/commit/0c5bc46e6799eb11f494e98d38b17bc408a0876c)) + +### Features + +- **config:** implement tabbed configuration UI with language and tracking settings ([b8e0683](https://github.com/super-productivity/super-productivity/commit/b8e0683f070fc97c12874cf9577e6159e3caca4b)) + # [17.0.0-RC.6](https://github.com/super-productivity/super-productivity/compare/v17.0.0-RC.5...v17.0.0-RC.6) (2026-01-17) ### Bug Fixes diff --git a/android/app/build.gradle b/android/app/build.gradle index 5d4d6f12b..4d8839ce1 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -20,8 +20,8 @@ android { minSdkVersion 24 targetSdkVersion 35 compileSdk 35 - versionCode 17_00_00_0006 - versionName "17.0.0-RC.6" + versionCode 17_00_00_0007 + versionName "17.0.0-RC.7" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" manifestPlaceholders = [ hostName : "app.super-productivity.com", diff --git a/package-lock.json b/package-lock.json index 59ebcfe9a..5558ace63 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "superProductivity", - "version": "17.0.0-RC.6", + "version": "17.0.0-RC.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "superProductivity", - "version": "17.0.0-RC.6", + "version": "17.0.0-RC.7", "license": "MIT", "workspaces": [ "packages/*" diff --git a/package.json b/package.json index aa2d84734..195718299 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "superProductivity", - "version": "17.0.0-RC.6", + "version": "17.0.0-RC.7", "description": "ToDo list and Time Tracking", "keywords": [ "ToDo", diff --git a/src/environments/versions.ts b/src/environments/versions.ts index fa31b4188..f421fad0d 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: '17.0.0-RC.6', + version: '17.0.0-RC.7', revision: 'NO_REV', branch: 'NO_BRANCH', };