Skip to content

Commit

Permalink
Update version code and changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
falzonv committed Aug 24, 2024
1 parent 86c4065 commit 768a550
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ android
targetSdkVersion var_compile_sdk

// Versioning
versionCode 64
versionName "v7.5.0"
versionCode 65
versionName "v7.6.0"
}

// Build types always include debug (hidden by default)
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/assets/changelog-en/64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ NEW THINGS
IMPROVEMENTS
- Limit search input length (@comradekingu)
- Interactive clock tap detection (@AdalynBlack)
- Move touch targets option upwards (@bmivzkrp)
- Touch targets option upper (@bmivzkrp)
CORRECTIONS
- Possible crash at export/import (@lesar8)
- Possible crash if app not found (@AdalynBlack)
6 changes: 6 additions & 0 deletions app/src/main/assets/changelog-en/65.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
v7.6.0 (65) - 24/08/2024
IMPROVEMENTS
- More icon sizes (@Yasen6275, @antodc)
- Touch targets text-to-speech help (@bmivzkrp)
CORRECTIONS
- Work profile apps renaming (@Shkzeen)
6 changes: 6 additions & 0 deletions app/src/main/assets/changelog-fr/65.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
v7.6.0 (65) - 24/08/2024
AMÉLIORATIONS
- Choix taille d'icônes (@Yasen6275, @antodc)
- Aide TTS pour les cibles de clic (@bmivzkrp)
CORRECTIONS
- Renommage applis profil de travail (@Shkzeen)
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,6 @@ public interface Constants
String OLD_FORCE_PORTRAIT = "force_portrait" ;
// Removed in v5.2.0 - 13/11/2021 (splitted between favorites and app drawer)
String OLD_BACKGROUND_COLOR = "background_color" ;
// Removed in v7.6.0 - xx/08/2024 (setting converted from seekbar to list)
// Removed in v7.6.0 - 24/08/2024 (setting converted from seekbar to list)
String OLD_ICON_SIZE = "icon_size" ;
}
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public static int getColor(SharedPreferences settings, String key, String fallba
*/
public static int getIconSize(Context context, SharedPreferences settings)
{
// Check if the legacy icon size setting is still used (v7.6.0 - xx/08/2024, to remove later)
// Check if the legacy icon size setting is still used (v7.6.0 - 24/08/2024, to remove later)
int legacy_icon_size = settings.getInt(Constants.OLD_ICON_SIZE, 0) ;
if(legacy_icon_size != 0)
{
Expand Down
2 changes: 1 addition & 1 deletion fastlane/metadata/android/en-US/changelogs/64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ NEW THINGS
IMPROVEMENTS
- Limit search input length (@comradekingu)
- Interactive clock tap detection (@AdalynBlack)
- Move touch targets option upwards (@bmivzkrp)
- Touch targets option upper (@bmivzkrp)
CORRECTIONS
- Possible crash at export/import (@lesar8)
- Possible crash if app not found (@AdalynBlack)
6 changes: 6 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/65.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
v7.6.0 (65) - 24/08/2024
IMPROVEMENTS
- More icon sizes (@Yasen6275, @antodc)
- Touch targets text-to-speech help (@bmivzkrp)
CORRECTIONS
- Work profile apps renaming (@Shkzeen)
6 changes: 6 additions & 0 deletions fastlane/metadata/android/fr/changelogs/65.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
v7.6.0 (65) - 24/08/2024
AMÉLIORATIONS
- Choix taille d'icônes (@Yasen6275, @antodc)
- Aide TTS pour les cibles de clic (@bmivzkrp)
CORRECTIONS
- Renommage applis profil de travail (@Shkzeen)

0 comments on commit 768a550

Please sign in to comment.