Skip to content

Commit 6d3896c

Browse files
committed
bump app version to 2.2.0
New Crowdin updates (#94) * New translations strings.xml (Arabic) * New translations strings.xml (Polish) * New translations strings.xml (Russian) * New translations strings.xml (Arabic, Egypt) Change-Id: I89b08665a2644c80933e23841155566ad91919d2 Signed-off-by: AbdAlMoniem AlHifnawy <hifnawy_moniem@hotmail.com>
1 parent 8f7bd9a commit 6d3896c

File tree

4 files changed

+44
-3
lines changed

4 files changed

+44
-3
lines changed

.github/workflows/publish_release_by_tag.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
required: true
1010
type: choice
1111
options:
12+
- v2.2.0
1213
- v2.1.0
1314
- v2.0.3
1415
- v2.0.2

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ android {
8888
minSdk = 24
8989
compileSdk = 35
9090
targetSdk = 35
91-
versionCode = 35
92-
versionName = "2.1.0"
91+
versionCode = 36
92+
versionName = "2.2.0"
9393

9494
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
9595
}
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
* bump app version to 2.2.0
2+
> - New Crowdin updates (#94)
3+
> - New translations strings.xml (Arabic)
4+
> - New translations strings.xml (Polish)
5+
> - New translations strings.xml (Russian)
6+
> - New translations strings.xml (Arabic, Egypt)
7+
* New Crowdin updates (#94)
8+
> - New translations strings.xml (Arabic)
9+
> - New translations strings.xml (Polish)
10+
> - New translations strings.xml (Russian)
11+
> - New translations strings.xml (Arabic, Egypt)
12+
* feat: Show application status in Quick Tile title
13+
> - Introduced a new preference allowing users to display the application's status directly in the Quick Settings tile title. This is beneficial for OEM devices that do not show tile subtitles.
14+
> - Added a "Show Application Status in Quick Tile Title" switch in the settings UI.
15+
> - Updated `QuickTileService` to observe this preference and dynamically change the tile's label or subtitle.
16+
> - Refactored `SharedPrefsManager` to use the `edit { ... }` Kotlin extension for conciseness.
17+
> - Upgraded Kotlin version to `2.2.21`.
18+
> - Enabled `-Xcontext-parameters` compiler argument.
19+
* fix PiP not working on WSA devices
20+
> for some reason, pressing the back button on WSA didn't trigger onUserLeaveHint or onPictureInPictureUiStateChanged, so I added a callback to onBackPressedDispatcher to handle the case
21+
* New Crowdin updates (#90)
22+
> - New translations strings.xml (Polish)
23+
> - New translations full_description.txt (Polish)
24+
> - New translations short_description.txt (Polish)
25+
> - New translations title.txt (Polish)
26+
> - New translations strings.xml (Polish)
27+
* New Crowdin Russian Translations
28+
> - New translations full_description.txt (Russian)
29+
> - New translations short_description.txt (Russian)
30+
> - New translations title.txt (Russian)
31+
> - New translations strings.xml (Russian)
32+
> - New translations strings.xml (Russian)
33+
* Update README.md
34+
>
35+
* Update issue templates
36+
>
37+
* updated git_hooks scripts and changelog files
38+
>
39+
40+
**Full Changelog**: https://github.com/abdalmoniem/Caffeinate/compare/v2.1.0...v2.2.0

git_hooks/post_tag.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ update_publish_release_yaml_file_and_add_tag() {
7676
fi
7777

7878
scriptDir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd -P)
79-
sh $scriptDir/get_changelog.sh --tag "$newTag" --reference_tag "$prevTag" --write_changes --commit_changes
79+
sh "$scriptDir/get_changelog.sh" --tag "$newTag" --reference_tag "$prevTag" --write_changes --commit_changes
8080

8181
else
8282
echo "ERROR: file $publishReleaseYaml not found"

0 commit comments

Comments
 (0)