Skip to content

Commit

Permalink
dump version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dev4Mod committed Jul 29, 2024
1 parent 6713611 commit b851371
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ android {
minSdk = 28
targetSdk = 34
versionCode = 130
versionName = "1.3.0-DEV ($gitHash)"
versionName = "1.3.1-DEV ($gitHash)"
multiDexEnabled = true

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,8 @@ private static void plugins(@NonNull ClassLoader loader, @NonNull XSharedPrefere
error.setPluginName(classe.getSimpleName());
error.setWhatsAppVersion(versionWpp);
error.setModuleVersion(BuildConfig.VERSION_NAME);
error.setError(e.getMessage() + ": " + Arrays.toString(Arrays.stream(e.getStackTrace()).filter(s -> !s.getClassName().startsWith("android") && !s.getClassName().startsWith("com.android")).map(StackTraceElement::toString).toArray()));
error.setMessage(e.getMessage());
error.setError(Arrays.toString(Arrays.stream(e.getStackTrace()).filter(s -> !s.getClassName().startsWith("android") && !s.getClassName().startsWith("com.android")).map(StackTraceElement::toString).toArray()));
list.add(error);
}
}
Expand Down
11 changes: 6 additions & 5 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[WA ENHANCER]
* Fixed an error that appears when starting WhatsApp (If a bridge error occurs, activate the System Framework in lsposed for Wa Enhancer and restart the device)
* Update translations

[CLASSFINDER]
* Fixed an issue loading primitive classes (Strangely this error seems to be coming from lsposed on some devices, so I'm releasing a solution for it)
[DND MODE]
* New Icon

[BUBBLE COLORS]
* Fixed in Wa 2.24.15.XX
[MENU BUTTON IN HOMESCREEN]
* I added a button to change whether the buttons on the WhatsApp home screen should appear as three dots or whether they should appear as icons (Previously this function depended on the New Settings UI)

[LSPOSED]
* Support for LSposed by JingMatrix (You can use others but I will not guarantee compatibility and it has not been tested on Android 15)

0 comments on commit b851371

Please sign in to comment.