diff --git a/CHANGELOG.md b/CHANGELOG.md index 797de260f..ab28209ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [13.0.7](https://github.com/johannesjo/super-productivity/compare/v13.0.6...v13.0.7) (2025-05-15) + +### Bug Fixes + +- actual sync provider state in sync button [#4374](https://github.com/johannesjo/super-productivity/issues/4374) ([3c759d9](https://github.com/johannesjo/super-productivity/commit/3c759d9b8366841dd1ad66e263aa81b45f7e1b1c)) +- prevent sync provider being set wrong initially ([f88d5a1](https://github.com/johannesjo/super-productivity/commit/f88d5a19564e3c419fafc9a1af0b350e65417819)) +- sidebar opens when toggling any misc setting on mobile [#4379](https://github.com/johannesjo/super-productivity/issues/4379) ([5f41722](https://github.com/johannesjo/super-productivity/commit/5f41722d33d0d58656e533296adc302730c8fdf1)) + ## [13.0.6](https://github.com/johannesjo/super-productivity/compare/v13.0.5...v13.0.6) (2025-05-15) ### Bug Fixes diff --git a/android/app/build.gradle b/android/app/build.gradle index d9cb866e0..dd142d294 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -20,8 +20,8 @@ android { minSdkVersion 24 targetSdkVersion 35 compileSdk 35 - versionCode 13_00_06_0000 - versionName "13.0.6" + versionCode 13_00_07_0000 + versionName "13.0.7" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" manifestPlaceholders = [ hostName : "app.super-productivity.com", diff --git a/fastlane/metadata/android/en-US/changelogs/1300070000.txt b/fastlane/metadata/android/en-US/changelogs/1300070000.txt new file mode 100644 index 000000000..c81791ea2 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/1300070000.txt @@ -0,0 +1,6 @@ + +### Bug Fixes + +* actual sync provider state in sync button #4374 +* prevent sync provider being set wrong initially +* sidebar opens when toggling any misc setting on mobile #4379 \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 06f89d136..622a3ce44 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "superProductivity", - "version": "13.0.6", + "version": "13.0.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "superProductivity", - "version": "13.0.6", + "version": "13.0.7", "license": "MIT", "dependencies": { "electron-dl": "^3.5.2", diff --git a/package.json b/package.json index 2998e00fc..1c7cd66b8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "superProductivity", - "version": "13.0.6", + "version": "13.0.7", "description": "ToDo list and Time Tracking", "keywords": [ "ToDo", diff --git a/src/environments/versions.ts b/src/environments/versions.ts index ba6f0317b..4864674f5 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: '13.0.6', + version: '13.0.7', revision: 'NO_REV', branch: 'NO_BRANCH', };