feat(reddit): remove compatibility version constraints (#2226)
This commit is contained in:
parent
7b089d0a16
commit
f1288e4bb8
|
@ -5,18 +5,7 @@ import app.revanced.patcher.annotation.Package
|
||||||
|
|
||||||
@Compatibility(
|
@Compatibility(
|
||||||
[Package(
|
[Package(
|
||||||
"com.reddit.frontpage", arrayOf(
|
"com.reddit.frontpage"
|
||||||
"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"
|
|
||||||
)
|
|
||||||
)]
|
)]
|
||||||
)
|
)
|
||||||
@Target(AnnotationTarget.CLASS)
|
@Target(AnnotationTarget.CLASS)
|
||||||
|
|
|
@ -5,20 +5,7 @@ import app.revanced.patcher.annotation.Package
|
||||||
|
|
||||||
@Compatibility(
|
@Compatibility(
|
||||||
[Package(
|
[Package(
|
||||||
"com.reddit.frontpage", arrayOf(
|
"com.reddit.frontpage"
|
||||||
"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"
|
|
||||||
)
|
|
||||||
)]
|
)]
|
||||||
)
|
)
|
||||||
@Target(AnnotationTarget.CLASS)
|
@Target(AnnotationTarget.CLASS)
|
||||||
|
|
|
@ -3,6 +3,10 @@ package app.revanced.patches.reddit.misc.tracking.url.annotations
|
||||||
import app.revanced.patcher.annotation.Compatibility
|
import app.revanced.patcher.annotation.Compatibility
|
||||||
import app.revanced.patcher.annotation.Package
|
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)
|
@Target(AnnotationTarget.CLASS)
|
||||||
internal annotation class SanitizeUrlQueryCompatibility
|
internal annotation class SanitizeUrlQueryCompatibility
|
Loading…
Reference in a new issue