Skip to content

Commit e66b018

Browse files
committed
updating plugin description
1 parent a36ccee commit e66b018

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/jadx/plugins/stringdecoder/JadxStringDecoderPlugin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class JadxStringDecoderPlugin implements JadxPlugin {
2828
public JadxPluginInfo getPluginInfo() {
2929
return JadxPluginInfoBuilder.pluginId(PLUGIN_ID)
3030
.name("String Decoder")
31-
.description("Detect likely Base64-encoded string constants and add decoded value as a comment")
31+
.description("Detect encoded string constants and note their decoded values in a comment")
3232
.homepage("https://github.com/nklapste/jadx-string-decoder")
3333
.requiredJadxVersion("1.5.1, r2333")
3434
.build();
@@ -88,7 +88,7 @@ public String getTitle() {
8888
@Override
8989
public JComponent buildComponent() {
9090
if (panel == null) {
91-
Set<String> generalSuffixes = Set.of("maxCommentLength", "minDecodedLength");
91+
Set<String> generalSuffixes = Set.of("minInputLength", "maxCommentLength", "minDecodedLength");
9292
List<OptionDescription> allOpts = options.getOptionsDescriptions();
9393
List<OptionDescription> generalOpts = allOpts.stream()
9494
.filter(o -> generalSuffixes.stream().anyMatch(s -> o.name().endsWith("." + s)))

0 commit comments

Comments
 (0)