Skip to content

Commit

Permalink
v5.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Didgeridoohan authored Feb 27, 2020
1 parent d5f733d commit cb6cb91
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion META-INF/com/google/android/update-binary
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
# And replace this script with the downloaded script

# Error, this script should always be replaced
exit 1
exit 1
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,9 @@ Releases from v4.0.0 are compatible with Magisk v19+.
Releases from v5.0.0 are recommended for Magisk v19.4+.

## Changelog
### v5.2.2
- Another quick fix taking care of a weird copy-pasta error that broke manufacturer and model simulation.

### v5.2.1
- Quick fix for broken fingerprints list and settings export.

Expand Down
4 changes: 2 additions & 2 deletions common/util_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1484,8 +1484,8 @@ print_parts() {
TMPPARTS=$(get_eq_left "$(grep $1 $CSTMPRINTS)" | sed 's|.*)\:||')
fi
if [ $(echo $TMPPARTS | grep -o "\:" | wc -l) == 1 ]; then
replace_fn SIMMANUFACTURER "\"$SIMMANUFACTURER\"" "\"\"" $LATEFILE
replace_fn SIMMODEL "\"\"" $LATEFILE
replace_fn SIMMANUFACTURER "\"$SIMMANUFACTURER\"" "\"$(echo $TMPPARTS | cut -f 1 -d ':')\"" $LATEFILE
replace_fn SIMMODEL "\"$SIMMODEL\"" "\"$(echo $TMPPARTS | cut -f 2 -d ':')\"" $LATEFILE
else
replace_fn SIMMANUFACTURER "\"$SIMMANUFACTURER\"" "\"\"" $LATEFILE
replace_fn SIMMODEL "\"$SIMMODEL\"" "\"\"" $LATEFILE
Expand Down
4 changes: 2 additions & 2 deletions module.prop
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id=MagiskHidePropsConf
name=MagiskHide Props Config
version=v5.2.1-v78
versionCode=54
version=v5.2.2-v78
versionCode=55
author=Didgeridoohan
description=Change your device's fingerprint, to pass SafetyNet's CTS Profile check. Set/reset prop values set by MagiskHide. Change any prop values easily, and set your own custom props.

0 comments on commit cb6cb91

Please sign in to comment.