From f1617669a896b245ba62b340b2bd1333c07d048a Mon Sep 17 00:00:00 2001 From: inotia00 Date: Wed, 3 May 2023 19:53:49 +0900 Subject: [PATCH] fix(custom-branding-music-name): change default value --- .../branding/name/patch/CustomBrandingMusicNamePatch.kt | 2 +- .../app/revanced/patches/shared/patch/options/PatchOptions.kt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/kotlin/app/revanced/patches/music/layout/branding/name/patch/CustomBrandingMusicNamePatch.kt b/src/main/kotlin/app/revanced/patches/music/layout/branding/name/patch/CustomBrandingMusicNamePatch.kt index 3610c45ba..4761d170f 100644 --- a/src/main/kotlin/app/revanced/patches/music/layout/branding/name/patch/CustomBrandingMusicNamePatch.kt +++ b/src/main/kotlin/app/revanced/patches/music/layout/branding/name/patch/CustomBrandingMusicNamePatch.kt @@ -17,7 +17,7 @@ import org.w3c.dom.Element @Patch(false) @Name("custom-branding-music-name") @DependsOn([PatchOptions::class]) -@Description("Changes the Music launcher name to your choice (defaults to RVX Music, ReVanced Extended Music).") +@Description("Changes the Music launcher name to your choice (defaults to YTM Extended, ReVanced Music Extended).") @YouTubeMusicCompatibility @Version("0.0.1") class CustomBrandingMusicNamePatch : ResourcePatch { diff --git a/src/main/kotlin/app/revanced/patches/shared/patch/options/PatchOptions.kt b/src/main/kotlin/app/revanced/patches/shared/patch/options/PatchOptions.kt index 5da36d712..72c08a82f 100644 --- a/src/main/kotlin/app/revanced/patches/shared/patch/options/PatchOptions.kt +++ b/src/main/kotlin/app/revanced/patches/shared/patch/options/PatchOptions.kt @@ -54,7 +54,7 @@ class PatchOptions : ResourcePatch { internal var MusicAppNameFull: String? by option( PatchOption.StringOption( key = "MusicAppNameFull", - default = "ReVanced Extended Music", + default = "ReVanced Music Extended", title = "Application Name of YouTube Music", description = "The name of the YouTube Music it will show on your notification panel." ) @@ -66,7 +66,7 @@ class PatchOptions : ResourcePatch { internal var MusicAppNameShort: String? by option( PatchOption.StringOption( key = "MusicAppNameShort", - default = "RVX Music", + default = "YTM Extended", title = "Application Name of YouTube Music", description = "The name of the YouTube Music it will show on your home screen." )