OSDN Git Service

Taskbar 6.2 (release 1)
authorBraden Farmer <farmerbb@gmail.com>
Tue, 14 Dec 2021 05:20:16 +0000 (22:20 -0700)
committerBraden Farmer <farmerbb@gmail.com>
Tue, 14 Dec 2021 05:20:16 +0000 (22:20 -0700)
* Bump version code + update changelog for 6.2 release

CHANGELOG.md
app/src/androidx86/AndroidManifest.xml
app/src/main/java/com/farmerbb/taskbar/activity/MainActivity.java
dependencies.gradle

index fb3224d..18f4623 100644 (file)
@@ -1,4 +1,25 @@
-## New features in Taskbar 6.1
+<!-- Don't forget to bump the latestChangelogVersion inside MainActivity -->
+
+## Changelog for Taskbar 6.2
+
+This is mostly a behind-the-scenes update, containing the following changes and fixes:
+
+* Many stability fixes for Android 11 and Android 12 devices, as well as Chrome OS devices running ARCVM
+
+* Hide freeform mode settings on most devices running Android 12, where launching freeform apps via Taskbar is non-functional
+
+* Fixed a crash that occurred when using Taskbar's Tasker plugin and a state condition is met
+
+* Hide divider when centering app icons
+
+* Support for enabling additional desktop mode settings via Shizuku
+
+* Themed start button support for Project Sakura PC builds
+
+## Older Changelogs
+
+<details>
+<summary>New features in Taskbar 6.1</summary>
 
 ### Desktop mode fixes for Android 11
 
@@ -20,7 +41,7 @@ On lower resolution devices, the start menu dimensions and font size have been t
 
 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!
 
-## Older Changelogs
+</details>
 
 <details>
 <summary>New features in Taskbar 6.0</summary>
index eca178a..f64ca52 100644 (file)
@@ -19,8 +19,8 @@
      * HomeActivity is enabled by default
      * Certain activities and receivers are not exposed
 -->
-<manifest android:versionCode="203"
-          android:versionName="6.1.1"
+<manifest android:versionCode="204"
+          android:versionName="6.2"
           xmlns:android="http://schemas.android.com/apk/res/android"
           xmlns:tools="http://schemas.android.com/tools"
           package="com.farmerbb.taskbar">
index 48477a7..630363f 100644 (file)
@@ -81,7 +81,7 @@ public class MainActivity extends AppCompatActivity {
 
     private boolean hasCaption = false;
 
-    private final int latestChangelogVersion = 2;
+    private final int latestChangelogVersion = 3;
 
     @Override
     protected void onCreate(Bundle savedInstanceState) {
index 3d4f589..759298c 100644 (file)
@@ -1,8 +1,8 @@
 allprojects {
     ext {
         // TODO keep version name and version code in sync with Android-x86 manifest
-        VERSION_CODE = 203
-        VERSION_NAME = "6.1.1"
+        VERSION_CODE = 204
+        VERSION_NAME = "6.2"
 
         MIN_SDK_VERSION = 21
         COMPILE_SDK_VERSION = 31