If you are looking for the decompiler itself, visit https://github.com/jindrapetrik/jpexs-decompiler
: The issue tracker is now writable again and logged users can download files too. But note that our support is very LIMITED.

#871 Show the needed character ids
Author:
honfika

Date created:
Type: feature
Visibility: Everybody
Assigned to:
Labels: GUI
State: closed 

When you select a tag in the tagtree, it would be nice to see somewhere on the UI the IDs
of the needed characters.
The code which gets them is very simple, I already added it to mainPanel.valueCahnged, it
needs only a UI componenet to show it.
if (treeItem instanceof Tag) {
Tag tag = (Tag) treeItem;
Set<Integer> needed = new HashSet<>();
tag.getNeededCharactersDeep(needed);
String neededStr = Helper.joinStrings(needed, ", ");
....
}
It is done (Basic tag info)
State: new→closed