fix: change patch name

This commit is contained in:
inotia00
2023-10-27 11:14:09 +09:00
parent fb09b7fe36
commit 855ab583c5
9 changed files with 16 additions and 16 deletions

View File

@ -7,7 +7,7 @@ import app.revanced.patcher.patch.annotation.Patch
import app.revanced.util.resources.IconHelper.customIconMusic
@Patch(
name = "Custom branding icon Revancify blue",
name = "Custom branding icon Revancify Blue",
description = "Changes the YouTube Music launcher icon to Revancify Blue.",
compatiblePackages = [
CompatiblePackage(

View File

@ -7,7 +7,7 @@ import app.revanced.patcher.patch.annotation.Patch
import app.revanced.util.resources.IconHelper.customIconMusic
@Patch(
name = "Custom branding icon Revancify red",
name = "Custom branding icon Revancify Red",
description = "Changes the YouTube Music launcher icon to Revancify Red.",
compatiblePackages = [
CompatiblePackage(

View File

@ -8,7 +8,7 @@ import app.revanced.patcher.patch.annotation.Patch
import app.revanced.patcher.patch.options.PatchOption.PatchExtensions.stringPatchOption
@Patch(
name = "Custom branding Music name",
name = "Custom branding name YouTube Music",
description = "Rename the YouTube Music app to the name specified in options.json.",
dependencies = [RemoveElementsPatch::class],
compatiblePackages = [

View File

@ -10,8 +10,8 @@ import app.revanced.patches.youtube.utils.settings.SettingsPatch
import app.revanced.util.integrations.Constants.COMPONENTS_PATH
@Patch(
name = "Hide quick actions",
description = "Adds the options to hide quick actions components in the fullscreen.",
name = "Quick actions components",
description = "Adds options to customize quick action components in fullscreen.",
dependencies = [
LithoFilterPatch::class,
QuickActionsHookPatch::class,
@ -51,11 +51,11 @@ object QuickActionsPatch : BytecodePatch() {
SettingsPatch.addPreference(
arrayOf(
"PREFERENCE: BOTTOM_PLAYER_SETTINGS",
"SETTINGS: HIDE_QUICK_ACTIONS"
"SETTINGS: QUICK_ACTIONS_COMPONENTS"
)
)
SettingsPatch.updatePatchStatus("Hide quick actions")
SettingsPatch.updatePatchStatus("Quick actions components")
}
}

View File

@ -9,7 +9,7 @@ import app.revanced.util.resources.IconHelper.customIcon
import app.revanced.util.resources.ResourceHelper.updatePatchStatusIcon
@Patch(
name = "Custom branding icon Revancify blue",
name = "Custom branding icon Revancify Blue",
description = "Changes the YouTube launcher icon to Revancify Blue.",
dependencies = [SettingsPatch::class],
compatiblePackages = [

View File

@ -9,7 +9,7 @@ import app.revanced.util.resources.IconHelper.customIcon
import app.revanced.util.resources.ResourceHelper.updatePatchStatusIcon
@Patch(
name = "Custom branding icon Revancify red",
name = "Custom branding icon Revancify Red",
description = "Changes the YouTube launcher icon to Revancify Red.",
dependencies = [SettingsPatch::class],
compatiblePackages = [

View File

@ -10,7 +10,7 @@ import app.revanced.patches.youtube.utils.settings.SettingsPatch
import app.revanced.util.resources.ResourceHelper.updatePatchStatusLabel
@Patch(
name = "Custom branding YouTube name",
name = "Custom branding name YouTube",
description = "Rename the YouTube app to the name specified in options.json.",
dependencies = [
RemoveElementsPatch::class,

View File

@ -14,7 +14,7 @@ import app.revanced.patches.youtube.video.hdr.fingerprints.HdrCapabilitiesFinger
import app.revanced.util.integrations.Constants.VIDEO_PATH
@Patch(
name = "Disable hdr video",
name = "Disable HDR video",
description = "Disable HDR video.",
dependencies = [SettingsPatch::class],
compatiblePackages = [
@ -74,7 +74,7 @@ object DisableHdrVideoPatch : BytecodePatch(
)
)
SettingsPatch.updatePatchStatus("Disable hdr video")
SettingsPatch.updatePatchStatus("Disable HDR video")
}
}