Skip to content

Commit 4652f14

Browse files
committed
Taskbar 6.2 (release 1)
* Bump version code + update changelog for 6.2 release
1 parent 460d741 commit 4652f14

4 files changed

Lines changed: 28 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1-
## New features in Taskbar 6.1
1+
<!-- Don't forget to bump the latestChangelogVersion inside MainActivity -->
2+
3+
## Changelog for Taskbar 6.2
4+
5+
This is mostly a behind-the-scenes update, containing the following changes and fixes:
6+
7+
* Many stability fixes for Android 11 and Android 12 devices, as well as Chrome OS devices running ARCVM
8+
9+
* Hide freeform mode settings on most devices running Android 12, where launching freeform apps via Taskbar is non-functional
10+
11+
* Fixed a crash that occurred when using Taskbar's Tasker plugin and a state condition is met
12+
13+
* Hide divider when centering app icons
14+
15+
* Support for enabling additional desktop mode settings via Shizuku
16+
17+
* Themed start button support for Project Sakura PC builds
18+
19+
## Older Changelogs
20+
21+
<details>
22+
<summary>New features in Taskbar 6.1</summary>
223

324
### Desktop mode fixes for Android 11
425

@@ -20,7 +41,7 @@ On lower resolution devices, the start menu dimensions and font size have been t
2041

2142
As usual, bugs have been fixed and top crashes have been dealt with. Also, German and Chinese translations have been updated, and a Spanish translation has now been added. Thank you very much to all who have contributed!
2243

23-
## Older Changelogs
44+
</details>
2445

2546
<details>
2647
<summary>New features in Taskbar 6.0</summary>

app/src/androidx86/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
* HomeActivity is enabled by default
2020
* Certain activities and receivers are not exposed
2121
-->
22-
<manifest android:versionCode="203"
23-
android:versionName="6.1.1"
22+
<manifest android:versionCode="204"
23+
android:versionName="6.2"
2424
xmlns:android="http://schemas.android.com/apk/res/android"
2525
xmlns:tools="http://schemas.android.com/tools"
2626
package="com.farmerbb.taskbar">

app/src/main/java/com/farmerbb/taskbar/activity/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public void onReceive(Context context, Intent intent) {
8181

8282
private boolean hasCaption = false;
8383

84-
private final int latestChangelogVersion = 2;
84+
private final int latestChangelogVersion = 3;
8585

8686
@Override
8787
protected void onCreate(Bundle savedInstanceState) {

dependencies.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
allprojects {
22
ext {
33
// TODO keep version name and version code in sync with Android-x86 manifest
4-
VERSION_CODE = 203
5-
VERSION_NAME = "6.1.1"
4+
VERSION_CODE = 204
5+
VERSION_NAME = "6.2"
66

77
MIN_SDK_VERSION = 21
88
COMPILE_SDK_VERSION = 31

0 commit comments

Comments
 (0)