Skip to content

Commit

Permalink
Taskbar 6.2 (release 1)
Browse files Browse the repository at this point in the history
* Bump version code + update changelog for 6.2 release
  • Loading branch information
farmerbb committed Dec 14, 2021
1 parent 460d741 commit 4652f14
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 7 deletions.
25 changes: 23 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions app/src/androidx86/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void onReceive(Context context, Intent intent) {

private boolean hasCaption = false;

private final int latestChangelogVersion = 2;
private final int latestChangelogVersion = 3;

@Override
protected void onCreate(Bundle savedInstanceState) {
Expand Down
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 4652f14

Please sign in to comment.