Recaf icon indicating copy to clipboard operation
Recaf copied to clipboard

"Include short names" filter in Mapping Generator

Open BaalNetbek opened this issue 1 year ago • 2 comments

Include short names or Exclude long names filter in Mapping Generator

I am discovering Recaf 4 and found Mapping Generator mapping generator missing filter including just short names like those generated by Proguard obfuscation while having opposite filter.

BaalNetbek avatar Sep 29 '24 12:09 BaalNetbek

More general way would be to add regex filter. Mabey with option to save and filters so anyone could make Include short name or any other filter they need.

BaalNetbek avatar Oct 17 '24 18:10 BaalNetbek

More general way would be to add regex filter.

image

The str.matches(value) is a full regex match just like String#matches and str.matchesPartially(value) will include anything that has a single match, but does not have the be a full text match.

\w{1,3} would match most proguard names based on their default dictionary of a-z

Mabey with option to save and filters

Yeah, that would be a nice to have

Col-E avatar Oct 18 '24 00:10 Col-E