Skip to content

Commit

Permalink
v2.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Didgeridoohan authored Jul 23, 2018
1 parent a15673d commit c5434de
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,11 @@ If you can't run the `props` script for some reason, the logs are also stored in


## Changelog
### v2.3.2
### v2.3.4
- Updated for Busybox v1.29.1. Thank you @osm0sis.
- Bugfixes. Because I'm blind.

### v2.3.3
- Tiny update for installation logic and documentation.
- Also added and updated a whole bunch of fingerprints (Huawei Honor 6X, Sony Xperia X Dual, X Compact, X Performance Dual, XZ Dual, XZ Premium, XZ Premium Dual, XZ1, XZ2, XZ2 Dual, XZ2 Compact, XZ2 Compact Dual and Xiaomi Mi5/5 Pro), list v22.

Expand Down Expand Up @@ -403,4 +407,4 @@ If you can't run the `props` script for some reason, the logs are also stored in
- Xiaomi Redmi Note 5 Pro (8.1.0)
- ZTE Axon 7 (7.1.1)
- ZTE Nubia Z17 (7.1.1)
- Zuk Z2 Pro (7.0)
- Zuk Z2 Pro (7.0)
3 changes: 2 additions & 1 deletion common/util_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1014,5 +1014,6 @@ collect_logs() {
}

# Log print
BBV=$($BBPATH | grep "BusyBox v" | sed 's|.*BusyBox ||' | sed 's| (.*||')
log_handler "Functions loaded."
log_handler "Using busybox: ${BBPATH}."
log_handler "Using busybox: ${BBPATH} (${BBV})."
7 changes: 4 additions & 3 deletions config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ fi
INSTLOG=$CACHELOC/propsconf_install.log
UPDATEV=$(get_file_value $UPDATELATEFILE "SCRIPTV=")
SETTRANSF=$(get_file_value $UPDATELATEFILE "SETTRANSF=")
BBCURR=1.29.1
if [ "$ARCH" == "x64" ]; then
BBARCH=x86_64
else
Expand Down Expand Up @@ -320,7 +321,8 @@ usnf_check() {

# Check for bin/xbin
bin_check() {
if [ -d "/sbin/.core/mirror/system/xbin" ]; then
$BOOTMODE && BINCHECK=/sbin/.core/mirror/system/xbin || BINCHECK=/system/xbin
if [ -d "$BINCHECK" ]; then
BIN=xbin
else
BIN=bin
Expand Down Expand Up @@ -349,11 +351,10 @@ post_check() {

# Check installed busybox
check_bb() {
BBCURR=1.28.4
if [ -f "$IMGPATH/$MODID/busybox" ]; then
BBV=$($IMGPATH/$MODID/busybox | grep "BusyBox v" | sed 's|.*BusyBox v||' | sed 's|-osm0sis.*||')
log_handler "Current/installed busybox - v${BBCURR}/v${BBV}."
if [ "$BBCURR" == "$BBV" ]; then
if [ "$BBCURR" -le "$BBV" ]; then
log_handler "Backing up current busybox."
cp -af $IMGPATH/$MODID/busybox $CACHELOC/busybox_post >> $INSTLOG
fi
Expand Down
4 changes: 2 additions & 2 deletions module.prop
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
id=MagiskHidePropsConf
name=MagiskHide Props Config
version=v2.3.3-v22
versionCode=19
version=v2.3.4-v22
versionCode=20
author=Didgeridoohan
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.
minMagisk=1500
2 changes: 1 addition & 1 deletion system/binpath/props
Original file line number Diff line number Diff line change
Expand Up @@ -1820,7 +1820,7 @@ fi

if [ "$ISSUECHK" == 1 ]; then
collect_logs "issue"
reboot_fn "${ISSUETXT}\n\n If the issue persists after a reboot,\n please report the issue, ${R}with logs!${C}\n\n Logs have automatically been saved\n to your internal storage\n ${R}(propslogs.tar.gz)${C}.\n\n ${G}See the documentation for details.${N}" "reset-script"
reboot_fn "${ISSUETXT}\n\n If the issue persists after a reboot,\n please report the issue, ${R}with logs!${C}\n\n Logs have automatically been saved\n to your internal storage\n ${R}(propslogs.tar.gz)${C}.\n\n If the automatic collection failed,\n please collect the logs manually.\n\n ${G}See the documentation for details.${N}" "reset-script"
fi
# ==================================================
# ================= Busybox check ==================
Expand Down

0 comments on commit c5434de

Please sign in to comment.