From ea3e89c874316b03ec32062095b100af25ab8618 Mon Sep 17 00:00:00 2001 From: yzyhk904 <86816519+yzyhk904@users.noreply.github.com> Date: Sat, 30 Nov 2024 19:23:50 +0900 Subject: [PATCH] Add files via upload * Tuned I/O scheduler tunables for Kernel 5.x and 6.x * Added a workaround for a DRC inverted bug of POCO F6 crDroid 14.0 (Nov. 27, 2024 and later) ROM's --- changelog.md | 4 ++++ customize.sh | 4 ++++ module.prop | 4 ++-- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 725acaa..6775516 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,9 @@ ## Change logs +# v1.1.1 +* Tuned I/O scheduler tunables for Kernel 5.x and 6.x +* Added a workaround for a DRC inverted bug of POCO F6 crDroid 14.0 (Nov. 27, 2024 and later) ROM's + # v1.1.0 * Moved to Magisk-Module-Alt-Repo * Tuned for Kernel 5.x and 6.x diff --git a/customize.sh b/customize.sh index 664e54e..ebb4475 100644 --- a/customize.sh +++ b/customize.sh @@ -70,6 +70,10 @@ case "`getprop ro.board.platform`" in if [ "$BT_module" = "bluetooth" ]; then BT_module="bluetooth_qti" fi + # Workaround for a DRC inverted bug of POCO F6 crDroid 14.0 (Nov. 27, 2024 and later) ROM's + if [ "`getprop ro.crdroid.device`" = "peridot" -a "`getprop ro.system_ext.build.date.utc`" -ge "1732697965" ]; then + DRC_enabled="true" + fi ;; mt* ) # MTK devices max. samplerate for internal speakers diff --git a/module.prop b/module.prop index d16dc0d..7ce0ed8 100644 --- a/module.prop +++ b/module.prop @@ -1,6 +1,6 @@ id=audio-samplerate-changer name=Audio samplerate changer -version=v1.1.0 -versionCode=1100 +version=v1.1.1 +versionCode=1101 author=zyhk description=A Magisk module changing audio samplerates at the system-wide mixer for the best Hi-Fi experience.