Skip to content

Commit e9aea2d

Browse files
v3.0.1-v42
1 parent e29c29e commit e9aea2d

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,9 @@ Releases from v2.4.1 are compatible with Magisk v17+.
350350

351351

352352
## Changelog
353+
### v3.0.1
354+
- Quickfix for updating the module from v2.7.2 or earlier.
355+
353356
### v3.0.0
354357
- New function for device simulation. The module sets a number of device specifying props based on the used fingerprint. See the documentation for details.
355358
- New function for Treble GSI users that have a stock vendor partition: The module can use the certified vendor fingerprint found there. See the documentation for details. Thank you to @oF2pks for making me aware of this possibility.

config.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,8 @@ log_print() {
184184
# Places various module scripts in their proper places
185185
script_placement() {
186186
if [ -f "$LATEFILE" ]; then
187-
# Load module settings
188-
load_settings
189-
FILEV=$SCRIPTV
190-
FILETRANSF=$SETTRANSF
187+
FILEV=$(get_file_value $LATEFILE "SCRIPTV=")
188+
FILETRANSF=$(get_file_value $LATEFILE "SETTRANSF=")
191189
else
192190
FILEV=0
193191
FILETRANSF=$UPDATETRANSF
@@ -450,6 +448,7 @@ devsim_update() {
450448

451449
# Load module settings and reapply the MODPATH variable
452450
load_settings() {
451+
log_handler "Loading/reloading module settings."
453452
. $LATEFILE
454453
MODPATH=$MOUNTPATH/$MODID
455454
}

module.prop

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
id=MagiskHidePropsConf
22
name=MagiskHide Props Config
3-
version=v3.0.0-v42
4-
versionCode=37
3+
version=v3.0.1-v42
4+
versionCode=38
55
author=Didgeridoohan
66
description=Change your device's fingerprint, to pass SafetyNet's CTS Profile check. Edit prop files for better root hiding. Set/reset prop values set by MagiskHide. Change any prop values easily, and set your own custom props.
77
minMagisk=17000

0 commit comments

Comments
 (0)