diff --git a/src/main/kotlin/app/revanced/patches/music/layout/doubletapbackground/DoubleTapOverlayBackgroundPatch.kt b/src/main/kotlin/app/revanced/patches/music/layout/doubletapbackground/DoubleTapOverlayBackgroundPatch.kt index f18aba218..56620eded 100644 --- a/src/main/kotlin/app/revanced/patches/music/layout/doubletapbackground/DoubleTapOverlayBackgroundPatch.kt +++ b/src/main/kotlin/app/revanced/patches/music/layout/doubletapbackground/DoubleTapOverlayBackgroundPatch.kt @@ -8,7 +8,7 @@ import app.revanced.util.patch.BaseResourcePatch @Suppress("unused") object DoubleTapOverlayBackgroundPatch : BaseResourcePatch( name = "Hide double tap overlay filter", - description = "Hides the dark overlay when double-tapping to seek.", + description = "Removes, at compile time, the dark overlay that appears when double-tapping to seek.", compatiblePackages = COMPATIBLE_PACKAGE, use = false ) { diff --git a/src/main/kotlin/app/revanced/patches/music/layout/overlayfilter/OverlayFilterPatch.kt b/src/main/kotlin/app/revanced/patches/music/layout/overlayfilter/OverlayFilterPatch.kt index 85758ea71..847081b59 100644 --- a/src/main/kotlin/app/revanced/patches/music/layout/overlayfilter/OverlayFilterPatch.kt +++ b/src/main/kotlin/app/revanced/patches/music/layout/overlayfilter/OverlayFilterPatch.kt @@ -7,7 +7,7 @@ import app.revanced.util.patch.BaseResourcePatch @Suppress("DEPRECATION", "unused") object OverlayFilterPatch : BaseResourcePatch( name = "Hide overlay filter", - description = "Hides the dark overlay when player flyout menus are open.", + description = "Removes, at compile time, the dark overlay that appears when player flyout menus are open.", dependencies = setOf(OverlayFilterBytecodePatch::class), compatiblePackages = COMPATIBLE_PACKAGE, use = false diff --git a/src/main/kotlin/app/revanced/patches/music/layout/playeroverlay/PlayerOverlayFilterPatch.kt b/src/main/kotlin/app/revanced/patches/music/layout/playeroverlay/PlayerOverlayFilterPatch.kt index bf814dfeb..3b924b06b 100644 --- a/src/main/kotlin/app/revanced/patches/music/layout/playeroverlay/PlayerOverlayFilterPatch.kt +++ b/src/main/kotlin/app/revanced/patches/music/layout/playeroverlay/PlayerOverlayFilterPatch.kt @@ -8,7 +8,7 @@ import app.revanced.util.patch.BaseResourcePatch @Suppress("unused") object PlayerOverlayFilterPatch : BaseResourcePatch( name = "Hide player overlay filter", - description = "Hides the dark overlay when single-tapping the player.", + description = "Removes, at compile time, the dark overlay that appears when single-tapping in the player.", compatiblePackages = COMPATIBLE_PACKAGE, use = false ) { diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/animated/AnimatedButtonBackgroundPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/animated/AnimatedButtonBackgroundPatch.kt index 1196232a8..d7d8b7815 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/layout/animated/AnimatedButtonBackgroundPatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/layout/animated/AnimatedButtonBackgroundPatch.kt @@ -10,7 +10,7 @@ import app.revanced.util.patch.BaseResourcePatch @Suppress("unused") object AnimatedButtonBackgroundPatch : BaseResourcePatch( name = "Hide animated button background", - description = "Hides the background of the pause and play animated buttons in the Shorts player at compile time.", + description = "Removes, at compile time, the background of the animated pause and play buttons in the Shorts player.", dependencies = setOf(SettingsPatch::class), compatiblePackages = COMPATIBLE_PACKAGE, use = false diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/animated/AnimatedLikePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/animated/AnimatedLikePatch.kt index e1f9b3cba..fb2edab96 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/layout/animated/AnimatedLikePatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/layout/animated/AnimatedLikePatch.kt @@ -11,7 +11,7 @@ import app.revanced.util.patch.BaseResourcePatch @Suppress("unused") object AnimatedLikePatch : BaseResourcePatch( name = "Hide double tap to like animations", - description = "Hide the like animations when double tap the screen in the Shorts player at compile time.", + description = "Removes, at compile time, the like animations that appear when double-tapping in the Shorts player.", dependencies = setOf(SettingsPatch::class), compatiblePackages = COMPATIBLE_PACKAGE, use = false diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/dimming/ShortsDimmingPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/dimming/ShortsDimmingPatch.kt index 46d8258ca..a924ee944 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/layout/dimming/ShortsDimmingPatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/layout/dimming/ShortsDimmingPatch.kt @@ -9,7 +9,7 @@ import app.revanced.util.patch.BaseResourcePatch @Suppress("unused") object ShortsDimmingPatch : BaseResourcePatch( name = "Hide shorts dimming", - description = "Hide the dimming effect on the top and bottom of Shorts video at compile time.", + description = "Removes, at compile time, the dimming effect at the top and bottom of Shorts videos.", dependencies = setOf(SettingsPatch::class), compatiblePackages = COMPATIBLE_PACKAGE, use = false diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/doubletapbackground/DoubleTapOverlayBackgroundPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/doubletapbackground/DoubleTapOverlayBackgroundPatch.kt index 6995fb9e0..dec4c0468 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/layout/doubletapbackground/DoubleTapOverlayBackgroundPatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/layout/doubletapbackground/DoubleTapOverlayBackgroundPatch.kt @@ -9,7 +9,7 @@ import app.revanced.util.patch.BaseResourcePatch @Suppress("unused") object DoubleTapOverlayBackgroundPatch : BaseResourcePatch( name = "Hide double tap overlay filter", - description = "Hides the dark overlay when double-tapping to seek.", + description = "Removes, at compile time, the dark overlay that appears when double-tapping to seek.", dependencies = setOf(SettingsPatch::class), compatiblePackages = COMPATIBLE_PACKAGE, use = false diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/playerbuttonbg/PlayerButtonBackgroundPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/playerbuttonbg/PlayerButtonBackgroundPatch.kt index 3fb42259c..fd709d91a 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/layout/playerbuttonbg/PlayerButtonBackgroundPatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/layout/playerbuttonbg/PlayerButtonBackgroundPatch.kt @@ -10,7 +10,7 @@ import org.w3c.dom.Element @Suppress("Deprecation", "unused") object ForcePlayerButtonBackgroundPatch : BaseResourcePatch( name = "Force hide player buttons background", - description = "Hide the dark background surrounding the video player controls at compile time.", + description = "Removes, at compile time, the dark background surrounding the video player controls.", dependencies = setOf(SettingsPatch::class), compatiblePackages = COMPATIBLE_PACKAGE, use = false diff --git a/src/main/kotlin/app/revanced/patches/youtube/utils/fix/client/SpoofClientPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/utils/fix/client/SpoofClientPatch.kt index 7aa753063..6d7f0832b 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/utils/fix/client/SpoofClientPatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/utils/fix/client/SpoofClientPatch.kt @@ -37,7 +37,7 @@ import com.android.tools.smali.dexlib2.immutable.ImmutableMethodParameter object SpoofClientPatch : BaseBytecodePatch( name = "Spoof client", - description = "Adds options to spoofs the client to allow video playback.", + description = "Adds options to spoof the client to allow video playback.", dependencies = setOf( PlayerTypeHookPatch::class, PlayerResponseMethodHookPatch::class,