Skip to content

Commit

Permalink
fix: wrong versions of patches
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Apr 15, 2022
1 parent f32e474 commit a112b22
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/main/kotlin/app/revanced/patches/ad/VideoAdsPatch.kt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class VideoAdsPatch : Patch(
"""Signature for the constructor of some class.
This signature is being used to find another method in the parent class
and was discovered in the YouTube version v17.03.38""".trimIndent(),
"0.0.2"
"0.0.1"
),
"V",
AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class EnableSeekbarTappingPatch : Patch(
"Enable seekbar tapping patch",
"Enable tapping on the seekbar of the YouTube player.",
compatiblePackages,
"1.0.0"
"0.0.1"
),
listOf(
MethodSignature(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class CreateButtonRemoverPatch : Patch(
"Create button patch",
"Disable the create button.",
compatiblePackages,
"1.0.0"
"0.0.1"
),
listOf(
MethodSignature(
Expand All @@ -32,7 +32,7 @@ class CreateButtonRemoverPatch : Patch(
PatternScanMethod.Fuzzy(2), // FIXME: Test this threshold and find the best value.
compatiblePackages,
"Signature for the method required to be patched.",
"0.0.3"
"0.0.1"
),
"V",
AccessFlags.PUBLIC or AccessFlags.FINAL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class HideReelsPatch : Patch(
"Hide reels patch",
"Hide reels on the page.",
compatiblePackages,
"1.0.0"
"0.0.1"
),
listOf(
MethodSignature(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class MinimizedPlaybackPatch : Patch(
"Minimized Playback Patch",
"Enable minimized and background playback.",
compatiblePackages,
"1.0.0"
"0.0.1"
),
listOf(
MethodSignature(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class OldQualityLayoutPatch : Patch(
"Old Quality Layout Patch",
"Enable the original quality flyout menu",
compatiblePackages,
"1.0.0"
"0.0.1"
),
listOf(
MethodSignature(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class IntegrationsPatch : Patch(
"Inject integrations Patch",
"Applies mandatory patches to implement the ReVanced integrations into the application.",
compatiblePackages,
"1.0.0"
"0.0.1"
),
listOf(
MethodSignature(
Expand Down

0 comments on commit a112b22

Please sign in to comment.