mirror of
https://github.com/revanced/revanced-patches
synced 2024-11-10 07:19:24 +01:00
Merge pull request #38 from bogadana/main
feat: `disable-fullscreen-panels` patch
This commit is contained in:
commit
c7efa986ad
@ -0,0 +1,13 @@
|
|||||||
|
package app.revanced.patches.youtube.layout.fullscreenpanels.annotations
|
||||||
|
|
||||||
|
import app.revanced.patcher.annotation.Compatibility
|
||||||
|
import app.revanced.patcher.annotation.Package
|
||||||
|
|
||||||
|
@Compatibility(
|
||||||
|
[Package(
|
||||||
|
"com.google.android.youtube", arrayOf("17.23.35")
|
||||||
|
)]
|
||||||
|
)
|
||||||
|
@Target(AnnotationTarget.CLASS)
|
||||||
|
@Retention(AnnotationRetention.RUNTIME)
|
||||||
|
internal annotation class FullscreenPanelsCompatibility
|
@ -0,0 +1,38 @@
|
|||||||
|
package app.revanced.patches.youtube.layout.fullscreenpanels.patch
|
||||||
|
|
||||||
|
import app.revanced.patcher.annotation.Description
|
||||||
|
import app.revanced.patcher.annotation.Name
|
||||||
|
import app.revanced.patcher.annotation.Version
|
||||||
|
import app.revanced.patcher.data.implementation.BytecodeData
|
||||||
|
import app.revanced.patcher.data.implementation.proxy
|
||||||
|
import app.revanced.patcher.patch.annotations.Patch
|
||||||
|
import app.revanced.patcher.patch.implementation.BytecodePatch
|
||||||
|
import app.revanced.patcher.patch.implementation.misc.PatchResult
|
||||||
|
import app.revanced.patcher.patch.implementation.misc.PatchResultError
|
||||||
|
import app.revanced.patcher.patch.implementation.misc.PatchResultSuccess
|
||||||
|
import app.revanced.patcher.util.smali.toInstructions
|
||||||
|
import app.revanced.patcher.extensions.addInstructions
|
||||||
|
import app.revanced.patches.youtube.layout.fullscreenpanels.annotations.FullscreenPanelsCompatibility
|
||||||
|
|
||||||
|
@Patch
|
||||||
|
@Name("disable-fullscreen-panels")
|
||||||
|
@Description("Disable comments panel in fullscreen view.")
|
||||||
|
@FullscreenPanelsCompatibility
|
||||||
|
@Version("0.0.1")
|
||||||
|
class FullscreenPanelsRemovalPatch : BytecodePatch(listOf()) {
|
||||||
|
override fun execute(data: BytecodeData): PatchResult {
|
||||||
|
val classDef = data.classes.first { it.type.endsWith("FullscreenEngagementPanelOverlay;") }
|
||||||
|
val method = data.proxy(classDef).resolve().methods.first { it.name == "<init>" }
|
||||||
|
val implementation = method.implementation!!
|
||||||
|
|
||||||
|
implementation.addInstructions(
|
||||||
|
implementation.instructions.count() - 1,
|
||||||
|
"""
|
||||||
|
const/4 v1, 0x0
|
||||||
|
iput-boolean v1, v0, ${classDef.type}->a:Z
|
||||||
|
""".trimIndent().toInstructions("", 2, true))
|
||||||
|
|
||||||
|
|
||||||
|
return PatchResultSuccess()
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user