Skip to content

Commit

Permalink
19.2.2
Browse files Browse the repository at this point in the history
Changelog

- Adjusted Dynamic Refresh-Rate Sensitivity
- Fixed Config on Kernel Change
- Fixed NFC Issues
- Fixed Touch-Rate Config Restoration
- Improved & Simplified Updater
- Improved Auto Low Refresh-Rate on Sleep Mode
- Moved Mountpoint Inside Module Path
- Removed Notifier
- Miscellaneous Fixes and Improvements

Signed-off-by: Kyliekyler <siosonkylebrandon@gmail.com>
  • Loading branch information
Kyliekyler committed Mar 21, 2023
1 parent eb02c5d commit bee222a
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

**Device Performance Optimizer — Aims To Provide An Optimal Experience At Every Usage Scenario**

MAGNETAR is an all-in-one kernel tweaker that aims to provide an optimal experience in all usage scenarios for all magisk-rooted devices. It automatically controls the device using Machine Learning to adapt to the user's usage. A variety of features are also available to fit the user's preferences.
MAGNETAR is an all-in-one kernel tweaker that aims to provide an optimal experience in all usage scenarios for all Magisk or KernelSU rooted devices. It automatically controls the device using Machine Learning to adapt to the user's usage. A variety of features are also available to fit the user's preferences.

## Getting Started

Expand All @@ -18,7 +18,7 @@ MAGNETAR requires the following to function properly:
- [![ARM arm64](https://img.shields.io/badge/ARM-arm64-0091BD.svg?style=flat&logo=arm)](https://www.arm.com/)
- [![Magisk 23+](https://img.shields.io/badge/Magisk-23%2B-00B39B.svg?style=flat&logo=magisk)](https://github.com/topjohnwu/Magisk) [![KernelSU 10672+](https://img.shields.io/badge/KernelSU-10672%2B-1E110D.svg?style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMAAAADABAMAAACg8nE0AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAIVBMVEUjGBUlGhdDOjdEOzgoHRovJSL8+/v///8vJCL4+PgkGRbMZBB8AAAAAWJLR0QHFmGI6wAAAKdJREFUeNrt3KENwmAQhuEiSAgKwwQkDFBIGIAFWkFSXdGmmqS1GFZAMyoLVFzOkf95F3jMffaqSlKJbU6XWNcksB2XWE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlATsPkOsPgns349YbRKQ1jsGL6/7JoFzcDvTKwncguufGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUBNyD3wnqQxKQ9N/9AIPxN3LnzrAfAAAAAElFTkSuQmCC)](https://github.com/tiann/KernelSU)

Once the system has been verified to meet MAGNETAR requirements, it can be flashed on magisk manager and then rebooted to take effect.
Once the system has been verified to meet MAGNETAR requirements, it can be flashed on Magisk or KernelSU manager and then rebooted to take effect.

## Downloads

Expand Down
14 changes: 9 additions & 5 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
## Changelog

- Added Auto Low Refresh-Rate on Sleep Mode
- Fixed GPU and Input Boost Frequency Scaling
- Fixed Refresh-Rate Help Response
- Improved Game Detection
- Reduced Sleep Mode Exit Time
- Adjusted Dynamic Refresh-Rate Sensitivity
- Fixed Config on Kernel Change
- Fixed NFC Issues
- Fixed Touch-Rate Config Restoration
- Improved & Simplified Updater
- Improved Auto Low Refresh-Rate on Sleep Mode
- Moved Mountpoint Inside Module Path
- Removed Notifier
- Miscellaneous Fixes and Improvements
Binary file modified install
Binary file not shown.
11 changes: 5 additions & 6 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,19 @@
print_modname() { :; }

require_new_magisk() {
ui_print "- PLEASE INSTALL MAGISK VERSION 23 OR NEWER!"
exit 1
abort "- PLEASE INSTALL MAGISK VERSION 23 OR NEWER!"
}

require_new_ksu() {
ui_print "- PLEASE INSTALL KERNELSU VERSION 10672 OR NEWER!"
exit 1
abort "- PLEASE INSTALL KERNELSU VERSION 10672 OR NEWER!"
}

on_install() {
[ ! "$BOOTMODE" ] && abort "- INSTALLATION FROM RECOVERY NOT SUPPORTED!"
$BOOTMODE || abort "- INSTALLATION FROM RECOVERY NOT SUPPORTED!"
[ "$ARCH" = "arm64" ] || abort "- $(awk -v var="$ARCH" 'BEGIN{print toupper(var)}') NOT SUPPORTED!"

if [ -n "$KSU_KERNEL_VER_CODE" ] && [ "$KSU_KERNEL_VER_CODE" -lt "10672" ]; then
if [ "$KSU_KERNEL_VER_CODE" -lt "10672" ]; then
[ -f "$(which magisk)" ] && abort "- MULTIPLE ROOT SOLUTION NOT SUPPORTED!"
require_new_ksu
elif [ "$MAGISK_VER_CODE" -lt "23000" ]; then
require_new_magisk
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=MAGNETAR
name=MAGNETAR
version=19.2.1 (VICTOR)
versionCode=190201
version=19.2.2 (VICTOR)
versionCode=190202
author=Kyliekyler
description=Device Performance Optimizer — Aims To Provide An Optimal Experience At Every Usage Scenario
updateJson=https://raw.githubusercontent.com/Kyliekyler/MAGNETAR/pre-release/update.json
Binary file modified resources.xz
Binary file not shown.
4 changes: 2 additions & 2 deletions update.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "VICTOR ",
"versionCode": 190201,
"zipUrl": "https://github.com/Kyliekyler/MAGNETAR-UPDATER/releases/download/v5.0/MAGNETAR-UPDATER.zip",
"versionCode": 190202,
"zipUrl": "https://github.com/Kyliekyler/MAGNETAR/releases/download/v19.2.2/MAGNETAR.19.2.2.VICTOR.zip",
"changelog": "https://raw.githubusercontent.com/Kyliekyler/MAGNETAR/pre-release/changelog.md"
}

0 comments on commit bee222a

Please sign in to comment.