diff --git a/CHANGELOG.md b/CHANGELOG.md index f24ae573..e5f60924 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,17 @@ -## 5.4.7 (15 Jan 2023) +## 5.4.8 (7 Feb 2024) +- avoid duplicates in a shortcut name suggestions +- add filter bottom sheet drag handle +- scroll the list to the top to display new items +- scroll the activities list to the top when toggle non-exported activities visibility +- hide the fast scroll popup when the list is sorted in non-alphabetical order +- handle the case when an application versionName is null +- add an option to create an application shortcut +- update snackbar style + +## 5.4.7 (15 Jan 2024) - Add a new filter menu with sorting options -## 5.4.6 (6 Jan 2023) +## 5.4.6 (6 Jan 2024) - Display applications version ## 5.4.5 (2 Oct 2023) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 205b521a..d6affcce 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -15,8 +15,8 @@ android { applicationId = "com.activitymanager" minSdk = 21 targetSdk = 34 - versionCode = 547 - versionName = "5.4.7" + versionCode = 548 + versionName = "5.4.8" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" diff --git a/metadata/en-US/changelogs/548.txt b/metadata/en-US/changelogs/548.txt new file mode 100644 index 00000000..b7c5e069 --- /dev/null +++ b/metadata/en-US/changelogs/548.txt @@ -0,0 +1,8 @@ +- avoid duplicates in a shortcut name suggestions +- add filter bottom sheet drag handle +- scroll the list to the top to display new items +- scroll the activities list to the top when toggle non-exported activities visibility +- hide the fast scroll popup when the list is sorted in non-alphabetical order +- handle the case when an application versionName is null +- add an option to create an application shortcut +- update snackbar style