Skip to content

Commit

Permalink
feat(reddit): remove compatibility version constraints (ReVanced#2226)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazimmt committed May 22, 2023
1 parent 7b089d0 commit f1288e4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 27 deletions.
Expand Up @@ -5,18 +5,7 @@ import app.revanced.patcher.annotation.Package

@Compatibility(
[Package(
"com.reddit.frontpage", arrayOf(
"2023.05.0",
"2023.06.0",
"2023.07.0",
"2023.07.1",
"2023.08.0",
"2023.09.0",
"2023.09.1",
"2023.10.0",
"2023.11.0",
"2023.12.0"
)
"com.reddit.frontpage"
)]
)
@Target(AnnotationTarget.CLASS)
Expand Down
Expand Up @@ -5,20 +5,7 @@ import app.revanced.patcher.annotation.Package

@Compatibility(
[Package(
"com.reddit.frontpage", arrayOf(
"2021.45.0",
"2022.43.0",
"2023.05.0",
"2023.06.0",
"2023.07.0",
"2023.07.1",
"2023.08.0",
"2023.09.0",
"2023.09.1",
"2023.10.0",
"2023.11.0",
"2023.12.0"
)
"com.reddit.frontpage"
)]
)
@Target(AnnotationTarget.CLASS)
Expand Down
Expand Up @@ -3,6 +3,10 @@ package app.revanced.patches.reddit.misc.tracking.url.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package

@Compatibility([Package("com.reddit.frontpage", arrayOf("2023.12.0", "2023.17.1"))])
@Compatibility(
[Package(
"com.reddit.frontpage"
)]
)
@Target(AnnotationTarget.CLASS)
internal annotation class SanitizeUrlQueryCompatibility

0 comments on commit f1288e4

Please sign in to comment.