add missing patch description

This commit is contained in:
inotia00 2023-02-27 22:43:58 +09:00
parent 2bf585c147
commit 8c555c1cb1
3 changed files with 4 additions and 2 deletions

View File

@ -20,7 +20,7 @@ import app.revanced.util.integrations.Constants.MUSIC_SETTINGS_PATH
@Patch @Patch
@Name("hide-music-cast-button") @Name("hide-music-cast-button")
@Description("Hides the cast button in the video player and header") @Description("Hides the cast button in the video player and header.")
@DependsOn([MusicSettingsPatch::class]) @DependsOn([MusicSettingsPatch::class])
@YouTubeMusicCompatibility @YouTubeMusicCompatibility
@Version("0.0.1") @Version("0.0.1")

View File

@ -20,7 +20,7 @@ import org.w3c.dom.Element
@Patch @Patch
@Name("hide-general-ads") @Name("hide-general-ads")
@Description("Hooks the method which parses the bytes into a ComponentContext to filter components.") @Description("Removes general ads.")
@DependsOn( @DependsOn(
[ [
GeneralAdsBytecodePatch::class, GeneralAdsBytecodePatch::class,

View File

@ -1,6 +1,7 @@
package app.revanced.patches.youtube.layout.general.personalinformation.patch package app.revanced.patches.youtube.layout.general.personalinformation.patch
import app.revanced.extensions.toErrorResult import app.revanced.extensions.toErrorResult
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name import app.revanced.patcher.annotation.Name
import app.revanced.patcher.annotation.Version import app.revanced.patcher.annotation.Version
import app.revanced.patcher.data.BytecodeContext import app.revanced.patcher.data.BytecodeContext
@ -19,6 +20,7 @@ import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
@Patch @Patch
@Name("hide-email-address") @Name("hide-email-address")
@Description("Hides the email address in the account switcher.")
@DependsOn([SettingsPatch::class]) @DependsOn([SettingsPatch::class])
@YouTubeCompatibility @YouTubeCompatibility
@Version("0.0.1") @Version("0.0.1")