diff --git a/README.md b/README.md index 377d996..7ea79e6 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,8 @@ This Magisk Module lets you tweak Android 10-12's gestures. - All Custom ROMs who made my module an official feature in their ROM (AOSIP, Havoc & etc) ## Changelog +### V9.7 +- Automatically removes conflicting overlays during install (AKA some theme modules that include gesture overlays for no reason at all) ### v9.6 - More reliable language detection (should prevent issues where the installer shows no text) ### v9.5 diff --git a/common/install.sh b/common/install.sh index 213d7a7..3f20036 100644 --- a/common/install.sh +++ b/common/install.sh @@ -2,6 +2,8 @@ # Custom Logic ########################################################################################## +find /data/adb/modules -type d -not -path "*HideNavBar/system*" -iname "*navigationbarmodegestural*" -exec rm -rf {} \; 2>/dev/null + LANG=$(settings get system system_locales) LANGS=$(echo ${LANG:0:2} ) if [ -f $MODPATH/Lang/"$LANGS"/"$LANGS"1.txt ]; then diff --git a/module.prop b/module.prop index 75ba547..47ca53e 100644 --- a/module.prop +++ b/module.prop @@ -1,6 +1,6 @@ id=HideNavBar name=Fullscreen/Immersive Gestures (Q-S) -version=v9.6 -versionCode=34 +version=v9.7 +versionCode=35 author=DanGLES3 description=Customize Android 10-12's navigation gestures