diff --git a/src/main/kotlin/app/revanced/patches/youtube/ad/general/bytecode/patch/GeneralBytecodeAdsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/ad/general/bytecode/patch/GeneralBytecodeAdsPatch.kt index 57ee1f6dd..405232b0e 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/ad/general/bytecode/patch/GeneralBytecodeAdsPatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/ad/general/bytecode/patch/GeneralBytecodeAdsPatch.kt @@ -105,13 +105,6 @@ class GeneralBytecodeAdsPatch : BytecodePatch() { StringResource("revanced_adremover_compact_banner_enabled_summary_on", "Compact banners are hidden"), StringResource("revanced_adremover_compact_banner_enabled_summary_off", "Compact banners are shown") ), - SwitchPreference( - "revanced_adremover_comments_removal", - StringResource("revanced_adremover_comments_enabled_title", "Remove comments section"), - false, - StringResource("revanced_adremover_comments_enabled_summary_on", "Comment section is hidden"), - StringResource("revanced_adremover_comments_enabled_summary_off", "Comment section is shown") - ), SwitchPreference( "revanced_adremover_movie", StringResource("revanced_adremover_movie_enabled_title", "Remove movies section"), diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/comments/annotations/CommentsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/comments/annotations/CommentsCompatibility.kt new file mode 100644 index 000000000..50d737cd4 --- /dev/null +++ b/src/main/kotlin/app/revanced/patches/youtube/layout/comments/annotations/CommentsCompatibility.kt @@ -0,0 +1,13 @@ +package app.revanced.patches.youtube.layout.comments.annotations + +import app.revanced.patcher.annotation.Compatibility +import app.revanced.patcher.annotation.Package + +@Compatibility( + [Package( + "com.google.android.youtube", arrayOf("17.25.34", "17.26.35", "17.27.39", "17.28.34", "17.29.34", "17.32.35", "17.33.42", "17.34.35", "17.34.36", "17.36.37") + )] +) +@Target(AnnotationTarget.CLASS) +@Retention(AnnotationRetention.RUNTIME) +internal annotation class CommentsCompatibility diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/comments/patch/CommentsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/comments/patch/CommentsPatch.kt new file mode 100644 index 000000000..d966b6898 --- /dev/null +++ b/src/main/kotlin/app/revanced/patches/youtube/layout/comments/patch/CommentsPatch.kt @@ -0,0 +1,53 @@ +package app.revanced.patches.youtube.layout.comments.patch + +import app.revanced.patcher.annotation.Description +import app.revanced.patcher.annotation.Name +import app.revanced.patcher.annotation.Version +import app.revanced.patcher.data.ResourceContext +import app.revanced.patcher.patch.PatchResult +import app.revanced.patcher.patch.PatchResultSuccess +import app.revanced.patcher.patch.ResourcePatch +import app.revanced.patcher.patch.annotations.DependsOn +import app.revanced.patcher.patch.annotations.Patch +import app.revanced.patches.youtube.ad.general.bytecode.patch.GeneralBytecodeAdsPatch +import app.revanced.patches.youtube.layout.comments.annotations.CommentsCompatibility +import app.revanced.patches.youtube.misc.mapping.patch.ResourceMappingResourcePatch +import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch +import app.revanced.patches.youtube.misc.settings.framework.components.impl.PreferenceScreen +import app.revanced.patches.youtube.misc.settings.framework.components.impl.StringResource +import app.revanced.patches.youtube.misc.settings.framework.components.impl.SwitchPreference + +@Patch +@DependsOn([ResourceMappingResourcePatch::class, GeneralBytecodeAdsPatch::class]) +@Name("comments") +@Description("Hides comments components below the video player.") +@CommentsCompatibility +@Version("0.0.1") +class CommentsPatch : ResourcePatch { + override fun execute(context: ResourceContext): PatchResult { + SettingsPatch.PreferenceScreen.LAYOUT.addPreferences( + PreferenceScreen( + "revanced_comments", + StringResource("revanced_comments_title", "Comments"), + listOf( + SwitchPreference( + "revanced_hide_comments_section", + StringResource("revanced_hide_comments_section_title", "Remove comments section"), + false, + StringResource("revanced_hide_comments_section_summary_on", "Comment section is hidden"), + StringResource("revanced_hide_comments_section_summary_off", "Comment section is shown") + ), + SwitchPreference( + "revanced_hide_preview_comment", + StringResource("revanced_hide_preview_comment_title", "Hide preview comment"), + false, + StringResource("revanced_hide_preview_comment_on", "Preview comment is hidden"), + StringResource("revanced_hide_preview_comment_off", "Preview comment is shown") + ), + ), + StringResource("revanced_comments_summary", "Manage the visibility of comments section components") + ) + ) + return PatchResultSuccess() + } +}