mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 05:10:47 +00:00
Issue #612: show color in hex format
This commit is contained in:
@@ -2170,7 +2170,7 @@ public final class MainPanel extends JPanel implements ActionListener, TreeSelec
|
||||
return;
|
||||
}
|
||||
|
||||
dumpViewPanel.setData(DumpInfoSwfNode.getSwfNode(dumpInfo).getSwf().uncompressedData, dumpInfo);
|
||||
dumpViewPanel.setData(DumpInfoSwfNode.getSwfNode(dumpInfo).getSwf().originalUncompressedData, dumpInfo);
|
||||
dumpViewPanel.revalidate();
|
||||
showCard(CARDDUMPVIEW);
|
||||
}
|
||||
|
||||
@@ -228,7 +228,7 @@ public class DumpTree extends JTree implements ActionListener {
|
||||
if (fc.showSaveDialog(f) == JFileChooser.APPROVE_OPTION) {
|
||||
File sf = Helper.fixDialogFile(fc.getSelectedFile());
|
||||
try (FileOutputStream fos = new FileOutputStream(sf)) {
|
||||
byte[] data = DumpInfoSwfNode.getSwfNode(dumpInfo).getSwf().uncompressedData;
|
||||
byte[] data = DumpInfoSwfNode.getSwfNode(dumpInfo).getSwf().originalUncompressedData;
|
||||
fos.write(data, (int) dumpInfo.startByte, (int) (dumpInfo.getEndByte() - dumpInfo.startByte + 1));
|
||||
} catch (IOException ex) {
|
||||
Logger.getLogger(DumpTree.class.getName()).log(Level.SEVERE, null, ex);
|
||||
@@ -240,7 +240,7 @@ public class DumpTree extends JTree implements ActionListener {
|
||||
TreePath[] paths = getSelectionPaths();
|
||||
DumpInfo dumpInfo = (DumpInfo) paths[0].getLastPathComponent();
|
||||
SWF swf = DumpInfoSwfNode.getSwfNode(dumpInfo).getSwf();
|
||||
byte[] data = swf.uncompressedData;
|
||||
byte[] data = swf.originalUncompressedData;
|
||||
int prevLength = (int) dumpInfo.startByte;
|
||||
try {
|
||||
SWFInputStream rri = new SWFInputStream(swf, data);
|
||||
@@ -266,7 +266,7 @@ public class DumpTree extends JTree implements ActionListener {
|
||||
TreePath[] paths = getSelectionPaths();
|
||||
DumpInfo dumpInfo = (DumpInfo) paths[0].getLastPathComponent();
|
||||
SWF swf = DumpInfoSwfNode.getSwfNode(dumpInfo).getSwf();
|
||||
byte[] data = swf.uncompressedData;
|
||||
byte[] data = swf.originalUncompressedData;
|
||||
int prevLength = (int) dumpInfo.startByte;
|
||||
try {
|
||||
ABCInputStream ais = new ABCInputStream(new MemoryInputStream(data, 0, prevLength + (int) dumpInfo.lengthBytes));
|
||||
@@ -283,7 +283,7 @@ public class DumpTree extends JTree implements ActionListener {
|
||||
TreePath[] paths = getSelectionPaths();
|
||||
DumpInfo dumpInfo = (DumpInfo) paths[0].getLastPathComponent();
|
||||
SWF swf = DumpInfoSwfNode.getSwfNode(dumpInfo).getSwf();
|
||||
byte[] data = swf.uncompressedData;
|
||||
byte[] data = swf.originalUncompressedData;
|
||||
int prevLength = (int) dumpInfo.startByte;
|
||||
try {
|
||||
ABCInputStream ais = new ABCInputStream(new MemoryInputStream(data, 0, prevLength + (int) dumpInfo.lengthBytes));
|
||||
|
||||
@@ -50,7 +50,6 @@ config.group.description.decompilation = Global decompilation related functions
|
||||
config.group.name.other = Other
|
||||
config.group.description.other = Other uncategorized configs
|
||||
|
||||
|
||||
config.name.openMultipleFiles = Open multiple files
|
||||
config.description.openMultipleFiles = Allows opening multiple files at once in one window
|
||||
|
||||
@@ -60,6 +59,9 @@ config.description.decompile = You can disable AS decompilation, then only P-cod
|
||||
config.name.dumpView = Dump View
|
||||
config.description.dumpView = View raw data dump
|
||||
|
||||
config.name.useHexColorFormat = Hex color format
|
||||
config.description.useHexColorFormat = Show the colors in hex format
|
||||
|
||||
config.name.parallelSpeedUp = Parallel SpeedUp
|
||||
config.description.parallelSpeedUp = Parallelism can speed up decompilation
|
||||
|
||||
|
||||
@@ -60,6 +60,9 @@ config.description.decompile = Kikapcsolhatja az AS visszaford\u00edt\u00e1s\u00
|
||||
config.name.dumpView = Dump N\u00e9zet
|
||||
config.description.dumpView = Nyers adatok mutat\u00e1sa
|
||||
|
||||
config.name.useHexColorFormat = Hexa sz\u00edn form\u00e1tum
|
||||
config.description.useHexColorFormat = A sz\u00ednek hexa form\u00e1tum\u00fa mutat\u00e1sa
|
||||
|
||||
config.name.parallelSpeedUp = P\u00e1rhuzamos gyors\u00edt\u00e1s
|
||||
config.description.parallelSpeedUp = P\u00e1rhuzamos\u00edt\u00e1s fel tudja gyors\u00edtani a visszaford\u00edt\u00e1st
|
||||
|
||||
|
||||
Reference in New Issue
Block a user