diff --git a/Manager/app/src/main/kotlin/com/meowarex/rlmobile/ui/screens/patchopts/KnownPatch.kt b/Manager/app/src/main/kotlin/com/meowarex/rlmobile/ui/screens/patchopts/KnownPatch.kt index 38d7bbe..212fe07 100644 --- a/Manager/app/src/main/kotlin/com/meowarex/rlmobile/ui/screens/patchopts/KnownPatch.kt +++ b/Manager/app/src/main/kotlin/com/meowarex/rlmobile/ui/screens/patchopts/KnownPatch.kt @@ -95,6 +95,18 @@ enum class KnownPatch( token = "RL_SCRIM_ARGB", encode = SmaliEncode(EncodeKind.ArgbAlpha), ), + PatchOption.Toggle( + key = "cover_everywhere", + titleRes = R.string.patch_cover_everywhere_title, + descRes = R.string.patch_cover_everywhere_desc, + default = false, + inline = true, + fileNames = listOf( + "home-backdrop.patch", + "collection-backdrop.patch", + "cover-capture.patch", + ), + ), ), ), QualityBadgeColors( @@ -111,17 +123,6 @@ enum class KnownPatch( descRes = R.string.patch_player_one_handed_desc, default = Disabled, ), - CoverEverywhere( - order = 35, - fileNames = listOf( - "home-backdrop.patch", - "collection-backdrop.patch", - "cover-capture.patch", - ), - titleRes = R.string.patch_cover_everywhere_title, - descRes = R.string.patch_cover_everywhere_desc, - default = Disabled, - ), DebugMenuUnlock( order = 100, fileNames = listOf("debug-menu-unlock.patch"), @@ -246,7 +247,6 @@ enum class KnownPatch( PlayerBackdrop, QualityBadgeColors, LyricsProgressPill, - CoverEverywhere, MiniPlayerRedesign, ), ); diff --git a/patches/data.json b/patches/data.json index 1ea66ae..de8de32 100644 --- a/patches/data.json +++ b/patches/data.json @@ -1,5 +1,5 @@ { "tidalVersionCode": 9090, "tidalApkUrl": "https://github.com/meowarex/rl-mobile/releases/download/latest/tidal-stock.apk", - "patchesVersion": "0.9.13" + "patchesVersion": "0.9.14" } diff --git a/patches/manifest.json b/patches/manifest.json index cc2a095..d2d880e 100644 --- a/patches/manifest.json +++ b/patches/manifest.json @@ -18,7 +18,6 @@ "PlayerBackdrop", "QualityBadgeColors", "LyricsProgressPill", - "CoverEverywhere", "MiniPlayerRedesign" ] }, @@ -63,17 +62,18 @@ "displayAsPercent": true, "token": "RL_SCRIM_ARGB", "encode": { "kind": "argbAlpha" } + }, + { + "type": "toggle", + "key": "cover_everywhere", + "title": "Cover Everywhere - WIP", + "description": "Applies the blurred backdrop to every Compose based page (Home & Collection)", + "default": false, + "inline": true, + "fileNames": ["home-backdrop.patch", "collection-backdrop.patch", "cover-capture.patch"] } ] }, - { - "id": "CoverEverywhere", - "order": 35, - "fileNames": ["home-backdrop.patch", "collection-backdrop.patch", "cover-capture.patch"], - "title": "Cover Everywhere - WIP", - "description": "Applies the blurred backdrop to every Compose based page (Home & Collection)", - "default": false - }, { "id": "QualityBadgeColors", "order": 36,