Compare commits

..

2 Commits

Author SHA1 Message Date
6b9dbca7ab Merge remote-tracking branch 'origin/development' into development
# Conflicts:
#	fastlane/metadata/android/en-US/changelogs/133.txt
2023-07-02 00:33:59 +02:00
291e0c41af Fixed bug 2023-07-02 00:31:09 +02:00
3 changed files with 3 additions and 2 deletions

View File

@ -434,7 +434,7 @@ public class ActivityMainScreen extends ActivityGeneric
else else
activityMainScreenInstance.checkForNews(); activityMainScreenInstance.checkForNews();
if(BuildConfig.FLAVOR.equals("apkFlavor") && Settings.automaticUpdateCheck) if(BuildConfig.FLAVOR.equals(AutomationService.flavor_name_apk) && Settings.automaticUpdateCheck)
{ {
Calendar now = Calendar.getInstance(); Calendar now = Calendar.getInstance();
if (Settings.lastUpdateCheck == Settings.default_lastUpdateCheck || now.getTimeInMillis() >= Settings.lastUpdateCheck + (long)(Settings.updateCheckFrequencyDays * 24 * 60 * 60 * 1000)) if (Settings.lastUpdateCheck == Settings.default_lastUpdateCheck || now.getTimeInMillis() >= Settings.lastUpdateCheck + (long)(Settings.updateCheckFrequencyDays * 24 * 60 * 60 * 1000))

View File

@ -760,7 +760,7 @@ public class Miscellaneous extends Service
else else
replacement = "unknownVariable"; replacement = "unknownVariable";
source = source.substring(0, pos1) + replacement + source.substring(pos2); source = source.substring(0, pos1) + replacement + source.substring(pos2 +1);
} }
// Miscellaneous.logEvent("i", "URL after replace", source); // Miscellaneous.logEvent("i", "URL after replace", source);

View File

@ -1 +1,2 @@
* Fixed: [variable-name] was incorrectly replaced with an ] at the end
* Added: Chinese translation (simplified) * Added: Chinese translation (simplified)