Skip to content

Commit d71bc09

Browse files
committed
11.1.2
1 parent 4a50cb3 commit d71bc09

File tree

6 files changed

+61
-6
lines changed

6 files changed

+61
-6
lines changed

Diff for: CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## [11.1.2](https://github.com/johannesjo/super-productivity/compare/v11.1.1...v11.1.2) (2025-01-10)
2+
3+
### Bug Fixes
4+
5+
- add proper fallback for missing locales [#3842](https://github.com/johannesjo/super-productivity/issues/3842) ([3f1e0ca](https://github.com/johannesjo/super-productivity/commit/3f1e0ca8d05d54cbc3c09a7e59a8fb9bd0d3eb57))
6+
- also display value for RepeatedCountdownTimer on daily summary and quick history ([f72a2ce](https://github.com/johannesjo/super-productivity/commit/f72a2ce6968f2d73ca0249ba50fdbb689adfae74))
7+
- autofix data for problem [#3848](https://github.com/johannesjo/super-productivity/issues/3848) ([ed18621](https://github.com/johannesjo/super-productivity/commit/ed186212c3488b5ac1ca0d3f7c41f42fbd6280c1))
8+
- can't highlight text inside task textarea [#3724](https://github.com/johannesjo/super-productivity/issues/3724) ([c0b60bf](https://github.com/johannesjo/super-productivity/commit/c0b60bfdb01e7f173e1209abc2b4e162f8db6456))
9+
- cdk-overlay-container on android ([20a7de4](https://github.com/johannesjo/super-productivity/commit/20a7de4e1f4b03a8148f420d4cf1fbd96fd94c52))
10+
- error for jira sub tasks and improve error handling [#3836](https://github.com/johannesjo/super-productivity/issues/3836) [#3829](https://github.com/johannesjo/super-productivity/issues/3829) ([0c07666](https://github.com/johannesjo/super-productivity/commit/0c07666f9d90eaa34d57d2f8c961a854e594d9f8))
11+
- prevent actual error when deleting project [#3848](https://github.com/johannesjo/super-productivity/issues/3848) ([07c3222](https://github.com/johannesjo/super-productivity/commit/07c3222440c061bbb181718594e9b9a390e6dc33))
12+
- time position for repeatable on planner ([85ba271](https://github.com/johannesjo/super-productivity/commit/85ba271dda9b5c734c016b3681474e4c745b2dbe))
13+
14+
### Features
15+
16+
- always use defaultProjectId when available even when on other project list [#3850](https://github.com/johannesjo/super-productivity/issues/3850) ([9012f95](https://github.com/johannesjo/super-productivity/commit/9012f95d9a7477259759ce5a6c93555c25f3145b))
17+
- better handle case when current task is due [#3855](https://github.com/johannesjo/super-productivity/issues/3855) ([d9c75bf](https://github.com/johannesjo/super-productivity/commit/d9c75bf60ccd5761587d45b657f48ce0b13d1741))
18+
- **i18n:** add chatgpt translations ([77ad2f9](https://github.com/johannesjo/super-productivity/commit/77ad2f9c41f98ab5145965dd92b67978303d8ceb))
19+
- **i18n:** add deepl translations ([7731130](https://github.com/johannesjo/super-productivity/commit/7731130ea51a647ecb2289aa2ad957021501bd7e))
20+
- **i18n:** add google translate translations ([1577357](https://github.com/johannesjo/super-productivity/commit/15773571228fd969043d65177250697e964ed671))
21+
- **i18n:** add missing translations ([68e12b5](https://github.com/johannesjo/super-productivity/commit/68e12b53bcf25535f7bd46f80060ef03f3d068f5))
22+
- **i18n:** remove all unused translations ([103d7ff](https://github.com/johannesjo/super-productivity/commit/103d7ffecf2be4849ab46137c9a5093c6446fb18))
23+
- **i18n:** sort all translations alphabetically ([f73c8f0](https://github.com/johannesjo/super-productivity/commit/f73c8f09cf8da6eea4c3dc3728772597a19cd6e3))
24+
- improve internationalization of dates ([f050048](https://github.com/johannesjo/super-productivity/commit/f050048fc276fca526e7a0226c7d5aaa7a12d217))
25+
- improve language error handling and adjust test ([4a50cb3](https://github.com/johannesjo/super-productivity/commit/4a50cb35cfe98b129fa73b4044c212dd79457183))
26+
- prevent not listed languages from being activated [#3842](https://github.com/johannesjo/super-productivity/issues/3842) ([0f18d17](https://github.com/johannesjo/super-productivity/commit/0f18d17c4ef4bacc96ec47535045ddc97030e931))
27+
- show done tasks always last for select task suggestions ([55bd485](https://github.com/johannesjo/super-productivity/commit/55bd4852ef760133468db427bdcf8aa20e2b2971))
28+
- update translation ([748d1ee](https://github.com/johannesjo/super-productivity/commit/748d1ee0cf59de12cf19af4baac8911a896dee75))
29+
130
## [11.1.1](https://github.com/johannesjo/super-productivity/compare/v11.1.0...v11.1.1) (2025-01-05)
231

332
### Bug Fixes

Diff for: android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ android {
2020
minSdkVersion 24
2121
targetSdkVersion 34
2222
compileSdk 34
23-
versionCode 11_01_01_0000
24-
versionName "11.1.1"
23+
versionCode 11_01_02_0000
24+
versionName "11.1.2"
2525
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
2626
manifestPlaceholders = [
2727
hostName : "app.super-productivity.com",
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
### Bug Fixes
3+
4+
* add proper fallback for missing locales #3842
5+
* also display value for RepeatedCountdownTimer on daily summary and quick history
6+
* autofix data for problem #3848
7+
* can't highlight text inside task textarea #3724
8+
* cdk-overlay-container on android
9+
* error for jira sub tasks and improve error handling #3836 #3829
10+
* prevent actual error when deleting project #3848
11+
* time position for repeatable on planner
12+
### Features
13+
14+
* always use defaultProjectId when available even when on other project list #3850
15+
* better handle case when current task is due #3855
16+
* **i18n:** add chatgpt translations
17+
* **i18n:** add deepl translations
18+
* **i18n:** add google translate translations
19+
* **i18n:** add missing translations
20+
* **i18n:** remove all unused translations
21+
* **i18n:** sort all translations alphabetically
22+
* improve internationalization of dates
23+
* improve language error handling and adjust test
24+
* prevent not listed languages from being activated #3842
25+
* show done tasks always last for select task suggestions
26+
* update translation

Diff for: package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "superProductivity",
3-
"version": "11.1.1",
3+
"version": "11.1.2",
44
"description": "ToDo list and Time Tracking",
55
"keywords": [
66
"ToDo",

Diff for: src/environments/versions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// this file is automatically generated by git.version.ts script
22
export const versions = {
3-
version: '11.1.1',
3+
version: '11.1.2',
44
revision: 'NO_REV',
55
branch: 'NO_BRANCH',
66
};

0 commit comments

Comments
 (0)