From 60163dbde9d90035763ed66827515485393e6b4d Mon Sep 17 00:00:00 2001 From: Xisrr1 <133952156+Xisrr1@users.noreply.github.com> Date: Fri, 26 Jul 2024 18:13:46 +0600 Subject: [PATCH] feat(Custom Branding Icons): Change default icon to `Revancify Yellow` (#752) --- .../music/layout/branding/icon/CustomBrandingIconPatch.kt | 6 +++--- .../youtube/layout/branding/icon/CustomBrandingIconPatch.kt | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/kotlin/app/revanced/patches/music/layout/branding/icon/CustomBrandingIconPatch.kt b/src/main/kotlin/app/revanced/patches/music/layout/branding/icon/CustomBrandingIconPatch.kt index c47549d53..2c563969a 100644 --- a/src/main/kotlin/app/revanced/patches/music/layout/branding/icon/CustomBrandingIconPatch.kt +++ b/src/main/kotlin/app/revanced/patches/music/layout/branding/icon/CustomBrandingIconPatch.kt @@ -21,7 +21,7 @@ object CustomBrandingIconPatch : BaseResourcePatch( compatiblePackages = COMPATIBLE_PACKAGE, use = false, ) { - private const val DEFAULT_ICON_KEY = "Revancify Blue" + private const val DEFAULT_ICON_KEY = "Revancify Yellow" private val availableIcon = mapOf( "AFN Blue" to "afn_blue", @@ -30,9 +30,9 @@ object CustomBrandingIconPatch : BaseResourcePatch( "MMT Blue" to "mmt_blue", "MMT Green" to "mmt_green", "MMT Yellow" to "mmt_yellow", - DEFAULT_ICON_KEY to "revancify_blue", + "Revancify Blue" to "revancify_blue", "Revancify Red" to "revancify_red", - "Revancify Yellow" to "revancify_yellow", + DEFAULT_ICON_KEY to "revancify_yellow", "Vanced Black" to "vanced_black", "Vanced Light" to "vanced_light", "YouTube Music" to "youtube_music" diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/branding/icon/CustomBrandingIconPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/branding/icon/CustomBrandingIconPatch.kt index 43e960f6d..781e35184 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/layout/branding/icon/CustomBrandingIconPatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/layout/branding/icon/CustomBrandingIconPatch.kt @@ -22,7 +22,7 @@ object CustomBrandingIconPatch : BaseResourcePatch( compatiblePackages = COMPATIBLE_PACKAGE, use = false, ) { - private const val DEFAULT_ICON_KEY = "Revancify Blue" + private const val DEFAULT_ICON_KEY = "Revancify Yellow" private val availableIcon = mapOf( "AFN Blue" to "afn_blue", @@ -31,9 +31,9 @@ object CustomBrandingIconPatch : BaseResourcePatch( "MMT Blue" to "mmt_blue", "MMT Green" to "mmt_green", "MMT Yellow" to "mmt_yellow", - DEFAULT_ICON_KEY to "revancify_blue", + "Revancify Blue" to "revancify_blue", "Revancify Red" to "revancify_red", - "Revancify Yellow" to "revancify_yellow", + DEFAULT_ICON_KEY to "revancify_yellow", "Vanced Black" to "vanced_black", "Vanced Light" to "vanced_light", "YouTube" to "youtube"