Skip to content

Commit

Permalink
**v2020.6.16 (202006160)**
Browse files Browse the repository at this point in the history
- Magisk related fixes
  • Loading branch information
VR-25 committed Jun 16, 2020
1 parent f4f3618 commit ed01e84
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
4 changes: 3 additions & 1 deletion META-INF/com/google/android/update-binary
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ set -x

exxit() {
local e=$?
rm -rf /dev/.${id}-install || :
set +eu
rm -rf /dev/.${id}-install /data/adb/modules_update/$id
(abort) > /dev/null
echo
exit $e
} 2>/dev/null
Expand Down
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1152,6 +1152,9 @@ A common workaround is having `resume_capacity = pause_capacity - 1`. e.g., resu
---
## LATEST CHANGES

**v2020.6.16 (202006160)**
- Magisk related fixes

**v2020.6.15.2 (202006152)**
- Fixed Magisk related issues
- General fixes & optimizations
Expand Down Expand Up @@ -1188,12 +1191,3 @@ A common workaround is having `resume_capacity = pause_capacity - 1`. e.g., resu
- Workaround for "can't exit terminal after starting/restarting accd"
- Works in recovery mode (system must be mounted first)
> Release note: refer to the readme for a full list of changes and features
**v2020.5.4-rc (202005040)**
- `--set` can now set (var=value) and restore (var=) current and voltage limits as well, e.g., `acc -s mcc=1800 mcv= pc=75 rc=70`
- `--set [[a-z]|--opt]` commands can alternatively be written as `-s[a-z]`, e.g., `acc -sv 3920 --exit`
- Current & voltage limit and battery idle mode test now work in AccA 1.0.23 (27)
- Enhanced "charge once to a given capacity without restrictions" feature
- Major fixes & optimizations
- Send SIGKILL 5 seconds after SIGTERM to forcibly terminate stubborn acc processes
- Write to each ctrl file 3 times (with 200 milliseconds delays in-between) instead of just once; this is an attempt to force changes that don't take effect immediately or at all
4 changes: 3 additions & 1 deletion customize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ set -x

exxit() {
local e=$?
rm -rf /dev/.${id}-install || :
set +eu
rm -rf /dev/.${id}-install /data/adb/modules_update/$id
(abort) > /dev/null
echo
exit $e
} 2>/dev/null
Expand Down
4 changes: 3 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ set -x

exxit() {
local e=$?
rm -rf /dev/.${id}-install || :
set +eu
rm -rf /dev/.${id}-install /data/adb/modules_update/$id
(abort) > /dev/null
echo
exit $e
} 2>/dev/null
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=acc
name=Advanced Charging Controller (ACC)
version=v2020.6.15.2
versionCode=202006152
version=v2020.6.16
versionCode=202006160
author=VR25 (patreon.com/vr25)
description=ACC is an Android software. It's primarily intended for extending battery service life. In a nutshell, this is achieved through limiting charging current, temperature and voltage. Any root solution is supported. A recent stable Magisk version is recommended. If you're reading this from Magisk Manager > Downloads, tap here to open the documentation. Once there, if you're lazy, jump to the quick start section.

0 comments on commit ed01e84

Please sign in to comment.