From c8997e8ca587aedfa4318ace9fc119c262f00933 Mon Sep 17 00:00:00 2001 From: EvadeMaster <93124920+EvadeMaster@users.noreply.github.com> Date: Fri, 10 Mar 2023 20:21:17 +0700 Subject: [PATCH] feat(reddit): bump compatibility to `2023.09.1` (#1729) --- .../ad/banner/annotations/HideBannerCompatibility.kt | 10 +++++++++- .../general/annotations/GeneralAdsCompatibility.kt | 12 +++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/app/revanced/patches/reddit/ad/banner/annotations/HideBannerCompatibility.kt b/src/main/kotlin/app/revanced/patches/reddit/ad/banner/annotations/HideBannerCompatibility.kt index af21aa935..ebaf1e91a 100644 --- a/src/main/kotlin/app/revanced/patches/reddit/ad/banner/annotations/HideBannerCompatibility.kt +++ b/src/main/kotlin/app/revanced/patches/reddit/ad/banner/annotations/HideBannerCompatibility.kt @@ -5,7 +5,15 @@ import app.revanced.patcher.annotation.Package @Compatibility( [Package( - "com.reddit.frontpage", arrayOf("2023.05.0", "2023.08.0") + "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" + ) )] ) @Target(AnnotationTarget.CLASS) diff --git a/src/main/kotlin/app/revanced/patches/reddit/ad/general/annotations/GeneralAdsCompatibility.kt b/src/main/kotlin/app/revanced/patches/reddit/ad/general/annotations/GeneralAdsCompatibility.kt index 0c9f284b4..a56b6a459 100644 --- a/src/main/kotlin/app/revanced/patches/reddit/ad/general/annotations/GeneralAdsCompatibility.kt +++ b/src/main/kotlin/app/revanced/patches/reddit/ad/general/annotations/GeneralAdsCompatibility.kt @@ -5,7 +5,17 @@ import app.revanced.patcher.annotation.Package @Compatibility( [Package( - "com.reddit.frontpage", arrayOf("2021.45.0", "2022.43.0", "2023.05.0", "2023.08.0") + "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" + ) )] ) @Target(AnnotationTarget.CLASS)