mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-05-03 08:04:36 +02:00
Clarify patch descriptions (#52)
* Clarify patch descriptions * Update src/main/kotlin/app/revanced/patches/youtube/layout/playerbuttonbg/PlayerButtonBackgroundPatch.kt Co-authored-by: KobeW50 <84587632+KobeW50@users.noreply.github.com> * Update src/main/kotlin/app/revanced/patches/youtube/layout/dimming/ShortsDimmingPatch.kt Co-authored-by: KobeW50 <84587632+KobeW50@users.noreply.github.com> * Update src/main/kotlin/app/revanced/patches/youtube/layout/animated/AnimatedLikePatch.kt Co-authored-by: KobeW50 <84587632+KobeW50@users.noreply.github.com> * Update src/main/kotlin/app/revanced/patches/youtube/layout/animated/AnimatedButtonBackgroundPatch.kt Co-authored-by: KobeW50 <84587632+KobeW50@users.noreply.github.com> * Add the rest of "compile-time" patches * Use consistent wording --------- Co-authored-by: inotia00 <108592928+inotia00@users.noreply.github.com>
This commit is contained in:
parent
69f98f9285
commit
2ce77b15da
@ -8,7 +8,7 @@ import app.revanced.util.patch.BaseResourcePatch
|
|||||||
@Suppress("unused")
|
@Suppress("unused")
|
||||||
object DoubleTapOverlayBackgroundPatch : BaseResourcePatch(
|
object DoubleTapOverlayBackgroundPatch : BaseResourcePatch(
|
||||||
name = "Hide double tap overlay filter",
|
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,
|
compatiblePackages = COMPATIBLE_PACKAGE,
|
||||||
use = false
|
use = false
|
||||||
) {
|
) {
|
||||||
|
@ -7,7 +7,7 @@ import app.revanced.util.patch.BaseResourcePatch
|
|||||||
@Suppress("DEPRECATION", "unused")
|
@Suppress("DEPRECATION", "unused")
|
||||||
object OverlayFilterPatch : BaseResourcePatch(
|
object OverlayFilterPatch : BaseResourcePatch(
|
||||||
name = "Hide overlay filter",
|
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),
|
dependencies = setOf(OverlayFilterBytecodePatch::class),
|
||||||
compatiblePackages = COMPATIBLE_PACKAGE,
|
compatiblePackages = COMPATIBLE_PACKAGE,
|
||||||
use = false
|
use = false
|
||||||
|
@ -8,7 +8,7 @@ import app.revanced.util.patch.BaseResourcePatch
|
|||||||
@Suppress("unused")
|
@Suppress("unused")
|
||||||
object PlayerOverlayFilterPatch : BaseResourcePatch(
|
object PlayerOverlayFilterPatch : BaseResourcePatch(
|
||||||
name = "Hide player overlay filter",
|
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,
|
compatiblePackages = COMPATIBLE_PACKAGE,
|
||||||
use = false
|
use = false
|
||||||
) {
|
) {
|
||||||
|
@ -10,7 +10,7 @@ import app.revanced.util.patch.BaseResourcePatch
|
|||||||
@Suppress("unused")
|
@Suppress("unused")
|
||||||
object AnimatedButtonBackgroundPatch : BaseResourcePatch(
|
object AnimatedButtonBackgroundPatch : BaseResourcePatch(
|
||||||
name = "Hide animated button background",
|
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),
|
dependencies = setOf(SettingsPatch::class),
|
||||||
compatiblePackages = COMPATIBLE_PACKAGE,
|
compatiblePackages = COMPATIBLE_PACKAGE,
|
||||||
use = false
|
use = false
|
||||||
|
@ -11,7 +11,7 @@ import app.revanced.util.patch.BaseResourcePatch
|
|||||||
@Suppress("unused")
|
@Suppress("unused")
|
||||||
object AnimatedLikePatch : BaseResourcePatch(
|
object AnimatedLikePatch : BaseResourcePatch(
|
||||||
name = "Hide double tap to like animations",
|
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),
|
dependencies = setOf(SettingsPatch::class),
|
||||||
compatiblePackages = COMPATIBLE_PACKAGE,
|
compatiblePackages = COMPATIBLE_PACKAGE,
|
||||||
use = false
|
use = false
|
||||||
|
@ -9,7 +9,7 @@ import app.revanced.util.patch.BaseResourcePatch
|
|||||||
@Suppress("unused")
|
@Suppress("unused")
|
||||||
object ShortsDimmingPatch : BaseResourcePatch(
|
object ShortsDimmingPatch : BaseResourcePatch(
|
||||||
name = "Hide shorts dimming",
|
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),
|
dependencies = setOf(SettingsPatch::class),
|
||||||
compatiblePackages = COMPATIBLE_PACKAGE,
|
compatiblePackages = COMPATIBLE_PACKAGE,
|
||||||
use = false
|
use = false
|
||||||
|
@ -9,7 +9,7 @@ import app.revanced.util.patch.BaseResourcePatch
|
|||||||
@Suppress("unused")
|
@Suppress("unused")
|
||||||
object DoubleTapOverlayBackgroundPatch : BaseResourcePatch(
|
object DoubleTapOverlayBackgroundPatch : BaseResourcePatch(
|
||||||
name = "Hide double tap overlay filter",
|
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),
|
dependencies = setOf(SettingsPatch::class),
|
||||||
compatiblePackages = COMPATIBLE_PACKAGE,
|
compatiblePackages = COMPATIBLE_PACKAGE,
|
||||||
use = false
|
use = false
|
||||||
|
@ -10,7 +10,7 @@ import org.w3c.dom.Element
|
|||||||
@Suppress("Deprecation", "unused")
|
@Suppress("Deprecation", "unused")
|
||||||
object ForcePlayerButtonBackgroundPatch : BaseResourcePatch(
|
object ForcePlayerButtonBackgroundPatch : BaseResourcePatch(
|
||||||
name = "Force hide player buttons background",
|
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),
|
dependencies = setOf(SettingsPatch::class),
|
||||||
compatiblePackages = COMPATIBLE_PACKAGE,
|
compatiblePackages = COMPATIBLE_PACKAGE,
|
||||||
use = false
|
use = false
|
||||||
|
@ -37,7 +37,7 @@ import com.android.tools.smali.dexlib2.immutable.ImmutableMethodParameter
|
|||||||
|
|
||||||
object SpoofClientPatch : BaseBytecodePatch(
|
object SpoofClientPatch : BaseBytecodePatch(
|
||||||
name = "Spoof client",
|
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(
|
dependencies = setOf(
|
||||||
PlayerTypeHookPatch::class,
|
PlayerTypeHookPatch::class,
|
||||||
PlayerResponseMethodHookPatch::class,
|
PlayerResponseMethodHookPatch::class,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user