Skip to content

Commit

Permalink
update changelog.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
Dev4Mod committed Aug 1, 2024
1 parent 9e0d6b0 commit a978957
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ public UnobfuscatorCache(Application app, XSharedPreferences shared) {
long version = mShared.getLong("version", 0);
long currentVersion = mApp.getPackageManager().getPackageInfo(mApp.getPackageName(), 0).getLongVersionCode();
long savedUpdateTime = mShared.getLong("updateTime", 0);
long lastUpdateTime = mApp.getPackageManager().getPackageInfo(BuildConfig.APPLICATION_ID, 0).lastUpdateTime;
long lastUpdateTime = savedUpdateTime;
try {
lastUpdateTime = mApp.getPackageManager().getPackageInfo(BuildConfig.APPLICATION_ID, 0).lastUpdateTime;
} catch (Exception ignored) {
}
if (version != currentVersion || savedUpdateTime != lastUpdateTime) {
mShared.edit().clear().commit();
mShared.edit().putLong("version", currentVersion).commit();
Expand Down
13 changes: 2 additions & 11 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
[ATENÇÃO]
* This is a test version, I'm changing the bridge to service and testing the battery optimization features to open WhatsApp faster
[WHATSAPP]
* Fixed the lag when starting WhatsApp (When updating WAE it will still take a few seconds to save the cache of obfuscated strings, but after that the subsequent openings will be much faster).

[WA ENHANCER]
* Update translations
* Centralized home page

[BUBBLE COLORS]
* Fix colors

[SYSTEM FRAMEWORK]
* Works with Hide My App list (reboot device after update)

0 comments on commit a978957

Please sign in to comment.