From f307c66447edd1b226db3c1189494a45c956c32c Mon Sep 17 00:00:00 2001 From: LisoUseInAIKyrios <118716522+LisoUseInAIKyrios@users.noreply.github.com> Date: Thu, 2 Mar 2023 21:29:39 +0400 Subject: [PATCH] feat(myexpenses/unlock-pro): constrain to last working version --- README.md | 26 +++++++------------ .../pro/annotations/UnlockProCompatibility.kt | 2 +- 2 files changed, 10 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 292377e62f..de2ea1fefb 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,6 @@ The official Patch bundle provided by ReVanced and the community. | `seekbar-tapping` | Enables tap-to-seek on the seekbar of the video player. | 18.03.36 | | `sponsorblock` | Integrates SponsorBlock which allows skipping video segments such as sponsored content. | 18.03.36 | | `spoof-app-version` | Tricks YouTube into thinking, you are running an older version of the app. One of the side effects also includes restoring the old UI. | 18.03.36 | -| `spoof-signature-verification` | Spoofs the client to prevent playback issues. | 18.03.36 | | `swipe-controls` | Adds volume and brightness swipe controls. | 18.03.36 | | `tablet-mini-player` | Enables the tablet mini player layout. | 18.03.36 | | `theme` | Applies a custom theme. | all | @@ -176,6 +175,15 @@ The official Patch bundle provided by ReVanced and the community. | `spoof-signature` | Spoofs the signature of the app. | 2.5.2 | +### [📦 `org.totschnig.myexpenses`](https://play.google.com/store/apps/details?id=org.totschnig.myexpenses) +
+ +| 💊 Patch | 📜 Description | 🏹 Target Version | +|:--------:|:--------------:|:-----------------:| +| `unlock-pro` | Unlocks all professional features. | all | +| `unlock-pro` | Unlocks pro features. | 3.4.9 | +
+ ### [📦 `com.vanced.android.youtube`](https://play.google.com/store/apps/details?id=com.vanced.android.youtube)
@@ -296,14 +304,6 @@ The official Patch bundle provided by ReVanced and the community. | `unlock-pro` | Unlocks all pro features. | all |
-### [📦 `com.ithebk.expensemanager`](https://play.google.com/store/apps/details?id=com.ithebk.expensemanager) -
- -| 💊 Patch | 📜 Description | 🏹 Target Version | -|:--------:|:--------------:|:-----------------:| -| `unlock-pro` | Unlocks pro features. | all | -
- ### [📦 `ginlemon.iconpackstudio`](https://play.google.com/store/apps/details?id=ginlemon.iconpackstudio)
@@ -320,14 +320,6 @@ The official Patch bundle provided by ReVanced and the community. | `unlock-pro` | Unlocks all pro features. | all |
-### [📦 `org.totschnig.myexpenses`](https://play.google.com/store/apps/details?id=org.totschnig.myexpenses) -
- -| 💊 Patch | 📜 Description | 🏹 Target Version | -|:--------:|:--------------:|:-----------------:| -| `unlock-pro` | Unlocks all professional features. | all | -
- ### [📦 `com.ticktick.task`](https://play.google.com/store/apps/details?id=com.ticktick.task)
diff --git a/src/main/kotlin/app/revanced/patches/myexpenses/misc/pro/annotations/UnlockProCompatibility.kt b/src/main/kotlin/app/revanced/patches/myexpenses/misc/pro/annotations/UnlockProCompatibility.kt index 338511a600..8ab7f6adfa 100644 --- a/src/main/kotlin/app/revanced/patches/myexpenses/misc/pro/annotations/UnlockProCompatibility.kt +++ b/src/main/kotlin/app/revanced/patches/myexpenses/misc/pro/annotations/UnlockProCompatibility.kt @@ -3,6 +3,6 @@ package app.revanced.patches.myexpenses.misc.pro.annotations import app.revanced.patcher.annotation.Compatibility import app.revanced.patcher.annotation.Package -@Compatibility([Package("org.totschnig.myexpenses")]) +@Compatibility([Package("org.totschnig.myexpenses", arrayOf("3.4.9"))]) @Target(AnnotationTarget.CLASS) internal annotation class UnlockProCompatibility