Skip to content

Commit

Permalink
Merge pull request #55 from Suni-code/main
Browse files Browse the repository at this point in the history
Update V5.0.0 Beta 2
  • Loading branch information
Suni-code authored Nov 28, 2024
2 parents c817ca1 + 3ec8357 commit d18bfda
Show file tree
Hide file tree
Showing 17 changed files with 415 additions and 4,475 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
(注:仅代表本调度,并不代表原CT)

#### 维护者 : [@Suni-code](https://github.com/Suni-code) (Magisk_suni_Vxxx.zip)
骁龙:`845/855/855+/860/865/865+/870/888/888+/8Gen1/8+Gen1/7+Gen2/8Gen2/8Gen3/765/765G/768G/778G/778G+/782/835/7+Gen3`
骁龙:`845/855/855+/860/865/865+/870/888/888+/8Gen1/8+Gen1/7+Gen2/8Gen2/8Gen3/835/7+Gen3`

天玑:`1100/1200/8100/8200/8300/9000/9200/9200+/`

Expand Down
18 changes: 12 additions & 6 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
## V5.0.0 Beta 1更新日志
## V5.0.0 Beta 2
@Suni-code
全新的TritiumV5.0版本 带来全新的底层调度框架 更精细的CPU频率调控与更加优异的游戏能耗表现

- 跟随上游 将调度底层版本更新至V20
- 为性能较差的平台启用多核负载策略 以改善游戏体验
- 优化均衡模式性能冗余 提升使用流畅度
本次只更新我所维护的天玑平台和骁龙的888 865/870
其他骁龙型号将在晚上收到云更新 更新内容不会有差别

更新日志:
- 为MTK9000平台启用多核负载策略
- 优化性能模式的多核负载策略
- 优化性能模式游戏帧率表现
- 优化均衡模式功耗与流畅度
- 降低省电与均衡模式 点击 滑动 手势操作的延迟
- 降低性能与极速模式下的点击 滑动延迟
- 更新模块刷入文件

@xianyu6556
- 暂无
Expand Down
4 changes: 2 additions & 2 deletions config.env
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CONFIG_ENV=config.env
ZIP_FILENAME=Magisk
CONFIG_NAME=configs
IS_PRERELEASE=true
VERSION=V5.0.0_Beta_1
VERSIONCODE=241126
VERSION=V5.0.0_Beta_2
VERSIONCODE=241128

FILE=Tritium.json
29 changes: 13 additions & 16 deletions magisk_suni/META-INF/com/google/android/update-binary
Original file line number Diff line number Diff line change
@@ -1,33 +1,30 @@
#!/sbin/sh

#################
# Initialization
#################

umask 022

# echo before loading util_functions
ui_print() { echo "$1"; }
ui_print() {
echo "$1"
}

require_new_magisk() {
ui_print "*******************************"
ui_print " Please install Magisk v20.4+! "
ui_print "*******************************"
ui_print "- Please install Magisk v20.4+ !"
exit 1
}

#########################
# Load util_functions.sh
#########################

OUTFD=$2
ZIPFILE=$3

mount /data 2>/dev/null

[ -f /data/adb/magisk/util_functions.sh ] || require_new_magisk
if [ ! -f "/data/adb/magisk/util_functions.sh" ]; then
require_new_magisk
fi
. /data/adb/magisk/util_functions.sh
[ $MAGISK_VER_CODE -lt 20400 ] && require_new_magisk

if [ "$MAGISK_VER_CODE" -lt 20400 ]; then
require_new_magisk
fi

install_module
exit 0

exit 0
Loading

0 comments on commit d18bfda

Please sign in to comment.