fix(custom-branding-music-name): change default value

This commit is contained in:
inotia00 2023-05-03 19:53:49 +09:00
parent 2e38cb4249
commit f1617669a8
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ import org.w3c.dom.Element
@Patch(false) @Patch(false)
@Name("custom-branding-music-name") @Name("custom-branding-music-name")
@DependsOn([PatchOptions::class]) @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 @YouTubeMusicCompatibility
@Version("0.0.1") @Version("0.0.1")
class CustomBrandingMusicNamePatch : ResourcePatch { class CustomBrandingMusicNamePatch : ResourcePatch {

View File

@ -54,7 +54,7 @@ class PatchOptions : ResourcePatch {
internal var MusicAppNameFull: String? by option( internal var MusicAppNameFull: String? by option(
PatchOption.StringOption( PatchOption.StringOption(
key = "MusicAppNameFull", key = "MusicAppNameFull",
default = "ReVanced Extended Music", default = "ReVanced Music Extended",
title = "Application Name of YouTube Music", title = "Application Name of YouTube Music",
description = "The name of the YouTube Music it will show on your notification panel." 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( internal var MusicAppNameShort: String? by option(
PatchOption.StringOption( PatchOption.StringOption(
key = "MusicAppNameShort", key = "MusicAppNameShort",
default = "RVX Music", default = "YTM Extended",
title = "Application Name of YouTube Music", title = "Application Name of YouTube Music",
description = "The name of the YouTube Music it will show on your home screen." description = "The name of the YouTube Music it will show on your home screen."
) )