mirror of
https://github.com/ReVanced/revanced-cli.git
synced 2026-01-11 22:06:20 +00:00
Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c1333d87f4 | ||
|
|
00fec2508a | ||
|
|
387b6bd016 | ||
|
|
5e7785fd8f | ||
|
|
19dfa2e2f1 | ||
|
|
0ddc2b54b7 | ||
|
|
3a51ce71a5 | ||
|
|
52b316150d | ||
|
|
75e9c49b72 | ||
|
|
31a05b6768 | ||
|
|
57a1e7c27f | ||
|
|
585d77ce80 | ||
|
|
b4d0ce52ea | ||
|
|
ee26a8d233 | ||
|
|
be3abdda30 | ||
|
|
1849d570f8 | ||
|
|
20fa17957e |
41
CHANGELOG.md
41
CHANGELOG.md
@@ -1,3 +1,44 @@
|
|||||||
|
## [2.3.2](https://github.com/revanced/revanced-cli/compare/v2.3.1...v2.3.2) (2022-07-05)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* fix noSuchMethodError ([00fec25](https://github.com/revanced/revanced-cli/commit/00fec2508a3421b7b5a246254e0cb08850eab6ea))
|
||||||
|
|
||||||
|
## [2.3.1](https://github.com/revanced/revanced-cli/compare/v2.3.0...v2.3.1) (2022-07-04)
|
||||||
|
|
||||||
|
# [2.3.0](https://github.com/revanced/revanced-cli/compare/v2.2.0...v2.3.0) (2022-07-03)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* separate logger to stdout & stderr ([#63](https://github.com/revanced/revanced-cli/issues/63)) ([0ddc2b5](https://github.com/revanced/revanced-cli/commit/0ddc2b54b739dae3e8ccc983bab73fc84e72be0a))
|
||||||
|
|
||||||
|
# [2.2.0](https://github.com/revanced/revanced-cli/compare/v2.1.0...v2.2.0) (2022-07-03)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* separate options for `--list` ([#60](https://github.com/revanced/revanced-cli/issues/60)) ([52b3161](https://github.com/revanced/revanced-cli/commit/52b316150de397ebdee979caf51d4cb20961cf70))
|
||||||
|
|
||||||
|
# [2.1.0](https://github.com/revanced/revanced-cli/compare/v2.0.5...v2.1.0) (2022-07-03)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* `--include` option ([#76](https://github.com/revanced/revanced-cli/issues/76)) ([57a1e7c](https://github.com/revanced/revanced-cli/commit/57a1e7c27fb0c4292e08332b88ccd57d69fa02c6))
|
||||||
|
|
||||||
|
## [2.0.5](https://github.com/revanced/revanced-cli/compare/v2.0.4...v2.0.5) (2022-06-29)
|
||||||
|
|
||||||
|
## [2.0.4](https://github.com/revanced/revanced-cli/compare/v2.0.3...v2.0.4) (2022-06-28)
|
||||||
|
|
||||||
|
## [2.0.3](https://github.com/revanced/revanced-cli/compare/v2.0.2...v2.0.3) (2022-06-27)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* wrong keystore output path ([20fa179](https://github.com/revanced/revanced-cli/commit/20fa17957e3e454b9755bc7b9b473b6c578cc593))
|
||||||
|
|
||||||
## [2.0.2](https://github.com/revanced/revanced-cli/compare/v2.0.1...v2.0.2) (2022-06-27)
|
## [2.0.2](https://github.com/revanced/revanced-cli/compare/v2.0.1...v2.0.2) (2022-06-27)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ dependencies {
|
|||||||
implementation(kotlin("stdlib"))
|
implementation(kotlin("stdlib"))
|
||||||
implementation(kotlin("reflect"))
|
implementation(kotlin("reflect"))
|
||||||
|
|
||||||
implementation("app.revanced:revanced-patcher:2.0.1")
|
implementation("app.revanced:revanced-patcher:2.3.0")
|
||||||
implementation("info.picocli:picocli:4.6.3")
|
implementation("info.picocli:picocli:4.6.3")
|
||||||
implementation("com.android.tools.build:apksig:7.2.1")
|
implementation("com.android.tools.build:apksig:7.2.1")
|
||||||
implementation("com.github.revanced:jadb:master-SNAPSHOT") // updated fork
|
implementation("com.github.revanced:jadb:master-SNAPSHOT") // updated fork
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
kotlin.code.style = official
|
kotlin.code.style = official
|
||||||
version = 2.0.2
|
version = 2.3.2
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import app.revanced.cli.patcher.logging.impl.PatcherLogger
|
|||||||
import app.revanced.cli.signing.Signing
|
import app.revanced.cli.signing.Signing
|
||||||
import app.revanced.cli.signing.SigningOptions
|
import app.revanced.cli.signing.SigningOptions
|
||||||
import app.revanced.patcher.PatcherOptions
|
import app.revanced.patcher.PatcherOptions
|
||||||
|
import app.revanced.patcher.extensions.PatchExtensions.compatiblePackages
|
||||||
import app.revanced.patcher.extensions.PatchExtensions.description
|
import app.revanced.patcher.extensions.PatchExtensions.description
|
||||||
import app.revanced.patcher.extensions.PatchExtensions.patchName
|
import app.revanced.patcher.extensions.PatchExtensions.patchName
|
||||||
import app.revanced.patcher.util.patch.implementation.JarPatchBundle
|
import app.revanced.patcher.util.patch.implementation.JarPatchBundle
|
||||||
@@ -45,6 +46,15 @@ internal object MainCommand : Runnable {
|
|||||||
class ListingArgs {
|
class ListingArgs {
|
||||||
@Option(names = ["-l", "--list"], description = ["List patches only"], required = true)
|
@Option(names = ["-l", "--list"], description = ["List patches only"], required = true)
|
||||||
var listOnly: Boolean = false
|
var listOnly: Boolean = false
|
||||||
|
|
||||||
|
@Option(names = ["--with-versions"], description = ["List patches with compatible versions"])
|
||||||
|
var withVersions: Boolean = false
|
||||||
|
|
||||||
|
@Option(names = ["--with-packages"], description = ["List patches with compatible packages"])
|
||||||
|
var withPackages: Boolean = false
|
||||||
|
|
||||||
|
@Option(names = ["--with-descriptions"], description = ["List patches with their descriptions"])
|
||||||
|
var withDescriptions: Boolean = true
|
||||||
}
|
}
|
||||||
|
|
||||||
class PatchingArgs {
|
class PatchingArgs {
|
||||||
@@ -57,6 +67,9 @@ internal object MainCommand : Runnable {
|
|||||||
@Option(names = ["-e", "--exclude"], description = ["Explicitly exclude patches"])
|
@Option(names = ["-e", "--exclude"], description = ["Explicitly exclude patches"])
|
||||||
var excludedPatches = arrayOf<String>()
|
var excludedPatches = arrayOf<String>()
|
||||||
|
|
||||||
|
@Option(names = ["-i", "--include"], description = ["Include patches"])
|
||||||
|
var includedPatches = arrayOf<String>()
|
||||||
|
|
||||||
@Option(names = ["-r", "--resource-patcher"], description = ["Disable patching resources"])
|
@Option(names = ["-r", "--resource-patcher"], description = ["Disable patching resources"])
|
||||||
var disableResourcePatching: Boolean = false
|
var disableResourcePatching: Boolean = false
|
||||||
|
|
||||||
@@ -93,9 +106,7 @@ internal object MainCommand : Runnable {
|
|||||||
|
|
||||||
override fun run() {
|
override fun run() {
|
||||||
if (args.lArgs?.listOnly == true) {
|
if (args.lArgs?.listOnly == true) {
|
||||||
for (patchBundlePath in args.patchBundles) for (patch in JarPatchBundle(patchBundlePath).loadPatches()) {
|
printListOfPatches()
|
||||||
logger.info("${patch.patchName}: ${patch.description}")
|
|
||||||
}
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -130,7 +141,7 @@ internal object MainCommand : Runnable {
|
|||||||
args.password,
|
args.password,
|
||||||
args.keystorePath ?: outputFile.absoluteFile.parentFile
|
args.keystorePath ?: outputFile.absoluteFile.parentFile
|
||||||
.resolve("${outputFile.nameWithoutExtension}.keystore")
|
.resolve("${outputFile.nameWithoutExtension}.keystore")
|
||||||
.name
|
.canonicalPath
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -143,4 +154,35 @@ internal object MainCommand : Runnable {
|
|||||||
|
|
||||||
logger.info("Finished")
|
logger.info("Finished")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun printListOfPatches() {
|
||||||
|
for (patchBundlePath in args.patchBundles) for (patch in JarPatchBundle(patchBundlePath).loadPatches()) {
|
||||||
|
for (compatiblePackage in patch.compatiblePackages!!) {
|
||||||
|
val packageEntryStr = buildString {
|
||||||
|
// Add package if flag is set
|
||||||
|
if (args.lArgs?.withPackages == true) {
|
||||||
|
val packageName = compatiblePackage.name.substringAfterLast(".").padStart(10)
|
||||||
|
append(packageName)
|
||||||
|
append("\t")
|
||||||
|
}
|
||||||
|
// Add patch name
|
||||||
|
val patchName = patch.patchName.padStart(25)
|
||||||
|
append(patchName)
|
||||||
|
// Add description if flag is set.
|
||||||
|
if (args.lArgs?.withDescriptions == true) {
|
||||||
|
append("\t")
|
||||||
|
append(patch.description)
|
||||||
|
}
|
||||||
|
// Add compatible versions, if flag is set
|
||||||
|
if (args.lArgs?.withVersions == true) {
|
||||||
|
val compatibleVersions = compatiblePackage.versions.joinToString(separator = ", ")
|
||||||
|
append("\t")
|
||||||
|
append(compatibleVersions)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
logger.info(packageEntryStr)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,18 +3,26 @@ package app.revanced.cli.logging.impl
|
|||||||
import app.revanced.cli.command.MainCommand
|
import app.revanced.cli.command.MainCommand
|
||||||
import app.revanced.cli.logging.CliLogger
|
import app.revanced.cli.logging.CliLogger
|
||||||
import java.util.logging.Logger
|
import java.util.logging.Logger
|
||||||
|
import java.util.logging.SimpleFormatter
|
||||||
|
import java.util.logging.StreamHandler
|
||||||
|
|
||||||
internal class DefaultCliLogger(
|
internal class DefaultCliLogger(
|
||||||
private val logger: Logger = Logger.getLogger(MainCommand::javaClass.name)
|
private val logger: Logger = Logger.getLogger(MainCommand::javaClass.name),
|
||||||
|
private val errorLogger: Logger = Logger.getLogger(MainCommand::javaClass.name + "Err")
|
||||||
) : CliLogger {
|
) : CliLogger {
|
||||||
|
|
||||||
|
init {
|
||||||
|
logger.useParentHandlers = false
|
||||||
|
logger.addHandler(StreamHandler(System.out, SimpleFormatter()))
|
||||||
|
}
|
||||||
companion object {
|
companion object {
|
||||||
init {
|
init {
|
||||||
System.setProperty("java.util.logging.SimpleFormatter.format", "%4\$s: %5\$s %n")
|
System.setProperty("java.util.logging.SimpleFormatter.format", "%4\$s: %5\$s %n")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun error(msg: String) = logger.severe(msg)
|
override fun error(msg: String) = errorLogger.severe(msg)
|
||||||
override fun info(msg: String) = logger.info(msg)
|
override fun info(msg: String) = logger.info(msg)
|
||||||
override fun trace(msg: String) = logger.finest(msg)
|
override fun trace(msg: String) = logger.finest(msg)
|
||||||
override fun warn(msg: String) = logger.warning(msg)
|
override fun warn(msg: String) = errorLogger.warning(msg)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ internal class Adb(
|
|||||||
Constants.PATH_INIT_PUSH,
|
Constants.PATH_INIT_PUSH,
|
||||||
Constants.CONTENT_UMOUNT_SCRIPT.replacePlaceholder()
|
Constants.CONTENT_UMOUNT_SCRIPT.replacePlaceholder()
|
||||||
)
|
)
|
||||||
// install mount script
|
// install unmount script
|
||||||
device.run(Constants.COMMAND_INSTALL_UMOUNT.replacePlaceholder())
|
device.run(Constants.COMMAND_INSTALL_UMOUNT.replacePlaceholder())
|
||||||
|
|
||||||
// unmount the apk for sanity
|
// unmount the apk for sanity
|
||||||
@@ -103,4 +103,4 @@ internal class Adb(
|
|||||||
process.destroy()
|
process.destroy()
|
||||||
executor.shutdown()
|
executor.shutdown()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ fun Patcher.addPatchesFiltered(
|
|||||||
if (excludePatches && args.excludedPatches.contains(patchName)) {
|
if (excludePatches && args.excludedPatches.contains(patchName)) {
|
||||||
logger.info("$prefix: Explicitly excluded")
|
logger.info("$prefix: Explicitly excluded")
|
||||||
return@patch
|
return@patch
|
||||||
} else if (!patch.include) {
|
} else if (!patch.include && !args.includedPatches.contains(patchName)) {
|
||||||
logger.info("$prefix: Explicitly excluded")
|
logger.info("$prefix: Explicitly excluded")
|
||||||
return@patch
|
return@patch
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user