From 92bf57f279f9e692912d2cb9385363467fb39c9a Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Sun, 19 Mar 2023 22:48:37 +0100 Subject: [PATCH 1/8] docs: remove unnecessary option --- docs/1_usage.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/1_usage.md b/docs/1_usage.md index 13c975f..847c266 100644 --- a/docs/1_usage.md +++ b/docs/1_usage.md @@ -43,7 +43,6 @@ Lean how to use the ReVanced CLI. ```bash java -jar revanced-cli.jar \ -a input.apk \ - -c \ -o patched-output.apk \ -b revanced-patches.jar ``` @@ -54,7 +53,6 @@ Lean how to use the ReVanced CLI. adb install input.apk # make sure the same version is installed java -jar revanced-cli.jar \ -a input.apk \ - -c \ -d device-name \ -o patched-output.apk \ -b revanced-patches.jar \ From ba07ab1ac2287a6cd400737b7c504f468bed4f82 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Fri, 31 Mar 2023 17:19:41 +0200 Subject: [PATCH 2/8] build: update Kotlin to 1.8.10 --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index b63324d..1e43ef8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - kotlin("jvm") version "1.7.0" + kotlin("jvm") version "1.8.10" id("com.github.johnrengelman.shadow") version "7.1.2" } From a76bd0ad356edc78ac926c92972f909f974c27ec Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 3 Apr 2023 03:04:07 +0200 Subject: [PATCH 3/8] chore: bump dependencies --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 1e43ef8..2e11b8d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -23,10 +23,10 @@ repositories { } dependencies { - implementation(kotlin("reflect")) + implementation("org.jetbrains.kotlin:kotlin-reflect:1.8.10") implementation("app.revanced:revanced-patcher:7.0.0") - implementation("info.picocli:picocli:4.7.0") + implementation("info.picocli:picocli:4.7.1") implementation("com.github.revanced:jadb:master-SNAPSHOT") // updated fork implementation("com.android.tools.build:apksig:7.2.2") implementation("org.bouncycastle:bcpkix-jdk15on:1.70") From 31fb3166d922ae1f568f52e44cbe726dd1c891a4 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 3 Apr 2023 05:06:38 +0200 Subject: [PATCH 4/8] fix: correct spelling mistake --- src/main/kotlin/app/revanced/utils/patcher/Patcher.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/utils/patcher/Patcher.kt b/src/main/kotlin/app/revanced/utils/patcher/Patcher.kt index 0778279..73674ef 100644 --- a/src/main/kotlin/app/revanced/utils/patcher/Patcher.kt +++ b/src/main/kotlin/app/revanced/utils/patcher/Patcher.kt @@ -37,7 +37,7 @@ fun Patcher.addPatchesFiltered(allPatches: List>>) { val compatibleWith = compatiblePackages.joinToString(";") { _package -> "${_package.name}: ${_package.versions.joinToString(", ")}" } - logger.warn("$prefix: Incompatible with version $packageVersion. This patch is only compatible with version $compatibleWith") + logger.warn("$prefix: Incompatible with version $packageVersion. This patch is only compatible with $compatibleWith") return@patchLoop } } From 4f5644b62c2299ff55db20a96d1f13d97ac535fc Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 3 Apr 2023 03:08:42 +0000 Subject: [PATCH 5/8] chore(release): 2.20.2-dev.1 [skip ci] ## [2.20.2-dev.1](https://github.com/revanced/revanced-cli/compare/v2.20.1...v2.20.2-dev.1) (2023-04-03) ### Bug Fixes * correct spelling mistake ([31fb316](https://github.com/revanced/revanced-cli/commit/31fb3166d922ae1f568f52e44cbe726dd1c891a4)) --- CHANGELOG.md | 7 +++++++ gradle.properties | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9865bb3..c984d6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [2.20.2-dev.1](https://github.com/revanced/revanced-cli/compare/v2.20.1...v2.20.2-dev.1) (2023-04-03) + + +### Bug Fixes + +* correct spelling mistake ([31fb316](https://github.com/revanced/revanced-cli/commit/31fb3166d922ae1f568f52e44cbe726dd1c891a4)) + ## [2.20.1](https://github.com/revanced/revanced-cli/compare/v2.20.0...v2.20.1) (2023-03-14) diff --git a/gradle.properties b/gradle.properties index 891a094..7b50942 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ kotlin.code.style = official -version = 2.20.1 +version = 2.20.2-dev.1 From af4ec4335203fbc8bf6392f978819f83a91bf5e4 Mon Sep 17 00:00:00 2001 From: EvadeMaster <93124920+EvadeMaster@users.noreply.github.com> Date: Fri, 21 Apr 2023 21:23:41 +0700 Subject: [PATCH 6/8] docs: fix misspelling word --- docs/1_usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1_usage.md b/docs/1_usage.md index 13c975f..2d39eb6 100644 --- a/docs/1_usage.md +++ b/docs/1_usage.md @@ -1,6 +1,6 @@ # 🛠️ Using the ReVanced CLI -Lean how to use the ReVanced CLI. +Learn how to use the ReVanced CLI. ## ⚡ Setup (optional) From 26967959e26680f244fc16f30c098404a7509e06 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Sun, 30 Apr 2023 02:53:01 +0200 Subject: [PATCH 7/8] ci: only dispatch documentation update event if on branch `main` --- .github/workflows/update-documentation.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/update-documentation.yml b/.github/workflows/update-documentation.yml index aa0ed1b..77097e2 100644 --- a/.github/workflows/update-documentation.yml +++ b/.github/workflows/update-documentation.yml @@ -9,6 +9,7 @@ jobs: trigger: runs-on: ubuntu-latest name: Dispatch event to documentation repository + if: github.ref == 'refs/heads/main' steps: - uses: peter-evans/repository-dispatch@v2 with: From 90368405ad3e172b2cbb9d4f23e7fa1114e1fac9 Mon Sep 17 00:00:00 2001 From: bitingsock Date: Sat, 29 Apr 2023 17:55:27 -0700 Subject: [PATCH 8/8] docs: update name of example patch (#218) --- docs/1_usage.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/1_usage.md b/docs/1_usage.md index 0786928..9b22378 100644 --- a/docs/1_usage.md +++ b/docs/1_usage.md @@ -56,15 +56,15 @@ Learn how to use the ReVanced CLI. -d device-name \ -o patched-output.apk \ -b revanced-patches.jar \ - -e microg-support \ + -e vanced-microg-support \ --mount ``` > **Note**: > > - If you want to exclude patches, you can use the option `-e`. In the case of YouTube, you can exclude - the `microg-support` patch from [ReVanced Patches](https://github.com/revanced/revanced-patches) with the - option `-e microg-support` when mounting for example. + the `vanced-microg-support` patch from [ReVanced Patches](https://github.com/revanced/revanced-patches) with the + option `-e vanced-microg-support` when mounting for example. > > - Some patches from [ReVanced Patches](https://github.com/revanced/revanced-patches) also might require [ReVanced Integrations](https://github.com/revanced/revanced-integrations). Supply them with the option `-m`.