feat(gui): manage plugins in preferences window

This commit is contained in:
Skylot
2023-06-06 20:25:01 +01:00
parent a72e6aeafe
commit 50c5f0874f
33 changed files with 677 additions and 73 deletions
@@ -4,7 +4,14 @@ val jadx = getJadxInstance()
jadx.args.isDeobfuscationOn = false
jadx.args.renameFlags = emptySet()
val regex = """[Oo0]+""".toRegex()
val regexOpt = jadx.options.registerString(
"regex",
"Apply rename for names matches regex",
values = listOf(),
defaultValue = "[Oo0]+",
)
val regex = regexOpt.value.toRegex()
var n = 0
jadx.rename.all { name, node ->
when {