Skip to content

Commit f044dde

Browse files
feat(YouTube): Support version 19.05, 19.06, 19.07, 19.08 and 19.09 (ReVanced#2862)
1 parent 10f5363 commit f044dde

File tree

58 files changed

+373
-140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+373
-140
lines changed

src/main/kotlin/app/revanced/patches/youtube/ad/general/HideAdsPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,13 @@ import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction35c
3636
"18.49.37",
3737
"19.01.34",
3838
"19.02.39",
39-
"19.03.35",
4039
"19.03.36",
41-
"19.04.37",
40+
"19.04.38",
41+
"19.05.36",
42+
"19.06.39",
43+
"19.07.40",
44+
"19.08.36",
45+
"19.09.37"
4246
],
4347
),
4448
],

src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/HideGetPremiumPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,13 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
3030
"18.49.37",
3131
"19.01.34",
3232
"19.02.39",
33-
"19.03.35",
3433
"19.03.36",
35-
"19.04.37"
34+
"19.04.38",
35+
"19.05.36",
36+
"19.06.39",
37+
"19.07.40",
38+
"19.08.36",
39+
"19.09.37"
3640
]
3741
)
3842
]

src/main/kotlin/app/revanced/patches/youtube/ad/video/VideoAdsPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,13 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
3535
"18.49.37",
3636
"19.01.34",
3737
"19.02.39",
38-
"19.03.35",
3938
"19.03.36",
40-
"19.04.37"
39+
"19.04.38",
40+
"19.05.36",
41+
"19.06.39",
42+
"19.07.40",
43+
"19.08.36",
44+
"19.09.37"
4145
]
4246
)
4347
]

src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/CopyVideoUrlBytecodePatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,13 @@ import app.revanced.patches.youtube.video.information.VideoInformationPatch
2323
"18.49.37",
2424
"19.01.34",
2525
"19.02.39",
26-
"19.03.35",
2726
"19.03.36",
28-
"19.04.37",
27+
"19.04.38",
28+
"19.05.36",
29+
"19.06.39",
30+
"19.07.40",
31+
"19.08.36",
32+
"19.09.37"
2933
],
3034
),
3135
],

src/main/kotlin/app/revanced/patches/youtube/interaction/dialog/RemoveViewerDiscretionDialogPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,13 @@ import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
3232
"18.49.37",
3333
"19.01.34",
3434
"19.02.39",
35-
"19.03.35",
3635
"19.03.36",
37-
"19.04.37"
36+
"19.04.38",
37+
"19.05.36",
38+
"19.06.39",
39+
"19.07.40",
40+
"19.08.36",
41+
"19.09.37"
3842
]
3943
)
4044
]

src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/DownloadsPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,13 @@ import app.revanced.util.resultOrThrow
3131
"18.49.37",
3232
"19.01.34",
3333
"19.02.39",
34-
"19.03.35",
3534
"19.03.36",
36-
"19.04.37",
35+
"19.04.38",
36+
"19.05.36",
37+
"19.06.39",
38+
"19.07.40",
39+
"19.08.36",
40+
"19.09.37"
3741
],
3842
),
3943
],

src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/DisablePreciseSeekingGesturePatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,13 @@ import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
3232
"18.49.37",
3333
"19.01.34",
3434
"19.02.39",
35-
"19.03.35",
3635
"19.03.36",
37-
"19.04.37"
36+
"19.04.38",
37+
"19.05.36",
38+
"19.06.39",
39+
"19.07.40",
40+
"19.08.36",
41+
"19.09.37"
3842
]
3943
)
4044
]

src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/EnableSeekbarTappingPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,13 @@ import com.android.tools.smali.dexlib2.iface.reference.MethodReference
3434
"18.49.37",
3535
"19.01.34",
3636
"19.02.39",
37-
"19.03.35",
3837
"19.03.36",
39-
"19.04.37"
38+
"19.04.38",
39+
"19.05.36",
40+
"19.06.39",
41+
"19.07.40",
42+
"19.08.36",
43+
"19.09.37"
4044
]
4145
)
4246
]

src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/EnableSlideToSeekPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,13 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
3030
"18.49.37",
3131
"19.01.34",
3232
"19.02.39",
33-
"19.03.35",
3433
"19.03.36",
35-
"19.04.37"
34+
"19.04.38",
35+
"19.05.36",
36+
"19.06.39",
37+
"19.07.40",
38+
"19.08.36",
39+
"19.09.37"
3640
]
3741
)
3842
],

src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/SwipeControlsBytecodePatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,13 @@ import com.android.tools.smali.dexlib2.immutable.ImmutableMethod
3636
"18.49.37",
3737
"19.01.34",
3838
"19.02.39",
39-
"19.03.35",
4039
"19.03.36",
41-
"19.04.37"
40+
"19.04.38",
41+
"19.05.36",
42+
"19.06.39",
43+
"19.07.40",
44+
"19.08.36",
45+
"19.09.37"
4246
]
4347
)
4448
]

src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/AutoCaptionsPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,13 @@ import app.revanced.util.exception
3434
"18.49.37",
3535
"19.01.34",
3636
"19.02.39",
37-
"19.03.35",
3837
"19.03.36",
39-
"19.04.37"
38+
"19.04.38",
39+
"19.05.36",
40+
"19.06.39",
41+
"19.07.40",
42+
"19.08.36",
43+
"19.09.37"
4044
]
4145
)
4246
],

src/main/kotlin/app/revanced/patches/youtube/layout/buttons/action/HideButtonsPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,13 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
3333
"18.49.37",
3434
"19.01.34",
3535
"19.02.39",
36-
"19.03.35",
3736
"19.03.36",
38-
"19.04.37"
37+
"19.04.38",
38+
"19.05.36",
39+
"19.06.39",
40+
"19.07.40",
41+
"19.08.36",
42+
"19.09.37"
3943
]
4044
)
4145
]

src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/HideAutoplayButtonPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,13 @@ import com.android.tools.smali.dexlib2.iface.reference.MethodReference
4343
"18.49.37",
4444
"19.01.34",
4545
"19.02.39",
46-
"19.03.35",
4746
"19.03.36",
48-
"19.04.37"
47+
"19.04.38",
48+
"19.05.36",
49+
"19.06.39",
50+
"19.07.40",
51+
"19.08.36",
52+
"19.09.37"
4953
]
5054
)
5155
]

src/main/kotlin/app/revanced/patches/youtube/layout/buttons/captions/HideCaptionsButtonPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,13 @@ import com.android.tools.smali.dexlib2.Opcode
3434
"18.49.37",
3535
"19.01.34",
3636
"19.02.39",
37-
"19.03.35",
3837
"19.03.36",
39-
"19.04.37"
38+
"19.04.38",
39+
"19.05.36",
40+
"19.06.39",
41+
"19.07.40",
42+
"19.08.36",
43+
"19.09.37"
4044
]
4145
)
4246
]

src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/NavigationButtonsPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,13 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
4141
"18.49.37",
4242
"19.01.34",
4343
"19.02.39",
44-
"19.03.35",
4544
"19.03.36",
46-
"19.04.37",
45+
"19.04.38",
46+
"19.05.36",
47+
"19.06.39",
48+
"19.07.40",
49+
"19.08.36",
50+
"19.09.37"
4751
],
4852
),
4953
],

src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/HidePlayerButtonsPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,13 @@ import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction3rc
3838
"18.49.37",
3939
"19.01.34",
4040
"19.02.39",
41-
"19.03.35",
4241
"19.03.36",
43-
"19.04.37"
42+
"19.04.38",
43+
"19.05.36",
44+
"19.06.39",
45+
"19.07.40",
46+
"19.08.36",
47+
"19.09.37"
4448
]
4549
)
4650
]

src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/AlbumCardsPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,13 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
3232
"18.49.37",
3333
"19.01.34",
3434
"19.02.39",
35-
"19.03.35",
3635
"19.03.36",
37-
"19.04.37"
36+
"19.04.38",
37+
"19.05.36",
38+
"19.06.39",
39+
"19.07.40",
40+
"19.08.36",
41+
"19.09.37"
3842
]
3943
)
4044
]

src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/BreakingNewsPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,13 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
3232
"18.49.37",
3333
"19.01.34",
3434
"19.02.39",
35-
"19.03.35",
3635
"19.03.36",
37-
"19.04.37"
36+
"19.04.38",
37+
"19.05.36",
38+
"19.06.39",
39+
"19.07.40",
40+
"19.08.36",
41+
"19.09.37"
3842
]
3943
)
4044
]

src/main/kotlin/app/revanced/patches/youtube/layout/hide/comments/CommentsPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,13 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
3232
"18.49.37",
3333
"19.01.34",
3434
"19.02.39",
35-
"19.03.35",
3635
"19.03.36",
37-
"19.04.37"
36+
"19.04.38",
37+
"19.05.36",
38+
"19.06.39",
39+
"19.07.40",
40+
"19.08.36",
41+
"19.09.37"
3842
]
3943
)
4044
]

src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/CrowdfundingBoxPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,13 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
3232
"18.49.37",
3333
"19.01.34",
3434
"19.02.39",
35-
"19.03.35",
3635
"19.03.36",
37-
"19.04.37"
36+
"19.04.38",
37+
"19.05.36",
38+
"19.06.39",
39+
"19.07.40",
40+
"19.08.36",
41+
"19.09.37"
3842
]
3943
)
4044
]

src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/HideEndscreenCardsPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,13 @@ import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction21c
3535
"18.49.37",
3636
"19.01.34",
3737
"19.02.39",
38-
"19.03.35",
3938
"19.03.36",
40-
"19.04.37"
39+
"19.04.38",
40+
"19.05.36",
41+
"19.06.39",
42+
"19.07.40",
43+
"19.08.36",
44+
"19.09.37"
4145
]
4246
)
4347
]

src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/HideFilterBarPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,13 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
3232
"18.49.37",
3333
"19.01.34",
3434
"19.02.39",
35-
"19.03.35",
3635
"19.03.36",
37-
"19.04.37"
36+
"19.04.38",
37+
"19.05.36",
38+
"19.06.39",
39+
"19.07.40",
40+
"19.08.36",
41+
"19.09.37"
3842
]
3943
)
4044
]

src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/HideFloatingMicrophoneButtonPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,13 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
2828
"18.49.37",
2929
"19.01.34",
3030
"19.02.39",
31-
"19.03.35",
3231
"19.03.36",
33-
"19.04.37"
32+
"19.04.38",
33+
"19.05.36",
34+
"19.06.39",
35+
"19.07.40",
36+
"19.08.36",
37+
"19.09.37"
3438
]
3539
)
3640
]

src/main/kotlin/app/revanced/patches/youtube/layout/hide/fullscreenambientmode/DisableFullscreenAmbientModePatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,13 @@ import app.revanced.util.exception
2828
"18.49.37",
2929
"19.01.34",
3030
"19.02.39",
31-
"19.03.35",
3231
"19.03.36",
33-
"19.04.37"
32+
"19.04.38",
33+
"19.05.36",
34+
"19.06.39",
35+
"19.07.40",
36+
"19.08.36",
37+
"19.09.37"
3438
]
3539
)
3640
]

src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/HideLayoutComponentsPatch.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,13 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
4848
"18.49.37",
4949
"19.01.34",
5050
"19.02.39",
51-
"19.03.35",
5251
"19.03.36",
53-
"19.04.37",
52+
"19.04.38",
53+
"19.05.36",
54+
"19.06.39",
55+
"19.07.40",
56+
"19.08.36",
57+
"19.09.37"
5458
],
5559
),
5660
],

0 commit comments

Comments
 (0)