Skip to content

Commit

Permalink
**v2023.7.17 (202307170)**
Browse files Browse the repository at this point in the history
- Do not disengage "charge once to %" until unplugged (requires "plug state" API)
- Fixed capacity_mask miscalculations (@kaljade)
- KernelSu support (#197)
- Support Samsung's battery/siop_level by default
- XDA S-trace's vFloat kernel patch support (voltage control for SDM660 devices)
  • Loading branch information
VR-25 committed Jul 17, 2023
1 parent 60fd023 commit 1987ac7
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 16 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ In interactive mode, it also asks the user whether they want to download and ins
```
#DC#
configVerCode=202307160
configVerCode=202307161
ampFactor=
battStatusWorkaround=true
Expand Down Expand Up @@ -677,7 +677,7 @@ runCmdOnPause=''
# Some devices have adjustable "temperature levels". At the highest level, charging current is blocked.
# The stock values are generally integers, ranging from 0 to 6, 7 or slightly above.
# For greater flexibility, this variable stores a percentage value -- which is internally converted to the system's scales.
# On Samsung devices, battery/siop_level is used instead (if available).
# On Samsung devices, battery/siop_level (0-100%) is used instead (if available).
#/DC#
```
Expand Down
Binary file modified bin/acc_flashable_uninstaller.zip
Binary file not shown.
12 changes: 7 additions & 5 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
**v2023.7.17 (202307170)**
- Do not disengage "charge once to %" until unplugged (requires "plug state" API)
- Fixed capacity_mask miscalculations (@kaljade)
- KernelSu support (#197)
- Support Samsung's battery/siop_level by default
- XDA S-trace's vFloat kernel patch support (voltage control for SDM660 devices)

**v2023.6.26 (202306260)**
* A bunch of new features and bug fixes
* Updated logic
Expand Down Expand Up @@ -29,8 +36,3 @@
- Tuning variables for not_charging() timeout (seqCount) and voltage-based idle mode (voltOff);
- Updated documentation;
- Updates can be downloaded with busybox's wget as well (may not work on all systems). Try upgrading with `acc -u`.

**v2022.2.22.1 (202202221)**
- acc -ss and -t show more info/hints;
- Fixed `acc: inaccessible or not found` following acc -t execution;
- Minor additions to readme.
4 changes: 2 additions & 2 deletions install/default-config.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configVerCode=202307160
configVerCode=202307161

ampFactor=
battStatusWorkaround=true
Expand Down Expand Up @@ -436,4 +436,4 @@ runCmdOnPause=''
# Some devices have adjustable "temperature levels". At the highest level, charging current is blocked.
# The stock values are generally integers, ranging from 0 to 6, 7 or slightly above.
# For greater flexibility, this variable stores a percentage value -- which is internally converted to the system's scales.
# On Samsung devices, battery/siop_level is used instead (if available).
# On Samsung devices, battery/siop_level (0-100%) is used instead (if available).
10 changes: 5 additions & 5 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"busybox": "https://github.com/Magisk-Modules-Repo/busybox-ndk",
"changelog": "https://raw.githubusercontent.com/VR-25/acc/master/changelog.md",
"curl": "https://github.com/Zackptg5/Cross-Compiled-Binaries-Android/tree/master/curl",
"tgz": "https://github.com/VR-25/acc/releases/download/v2023.6.26/acc_v2023.6.26_202306260.tgz",
"tgzInstaller": "https://github.com/VR-25/acc/releases/download/v2023.6.26/install-tarball.sh",
"version": "v2023.6.26",
"versionCode": 202306260,
"zipUrl": "https://github.com/VR-25/acc/releases/download/v2023.6.26/acc_v2023.6.26_202306260.zip"
"tgz": "https://github.com/VR-25/acc/releases/download/v2023.7.17/acc_v2023.7.17_202307170.tgz",
"tgzInstaller": "https://github.com/VR-25/acc/releases/download/v2023.7.17/install-tarball.sh",
"version": "v2023.7.17",
"versionCode": 202307170,
"zipUrl": "https://github.com/VR-25/acc/releases/download/v2023.7.17/acc_v2023.7.17_202307170.zip"
}
4 changes: 2 additions & 2 deletions module.prop
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
id=acc
domain=vr25
name=Advanced Charging Controller (ACC)
version=v2023.6.26
versionCode=202306260
version=v2023.7.17
versionCode=202307170
author=VR25
description=Mainly intended for extending battery service life on Android devices. In a nutshell, this is achieved through limiting charging current, temperature, and voltage. Any root solution is supported. Regardless of whether the system is rooted with Magisk, the installation is always "systemless".
updateJson=https://raw.githubusercontent.com/VR-25/acc/master/module.json

0 comments on commit 1987ac7

Please sign in to comment.