mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-24 19:51:38 +00:00
committed by
Jindra Petřík
parent
222b10ce17
commit
7ebc9dc796
@@ -1340,7 +1340,7 @@ public final class Configuration {
|
|||||||
} else {
|
} else {
|
||||||
logLevel = Level.WARNING;
|
logLevel = Level.WARNING;
|
||||||
}
|
}
|
||||||
//limit paralel threads?
|
//limit parallel threads?
|
||||||
//int processorCount = Runtime.getRuntime().availableProcessors();
|
//int processorCount = Runtime.getRuntime().availableProcessors();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2190,7 +2190,7 @@ public class CommandLineArgumentParser {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (parallel && singleScriptFile) {
|
if (parallel && singleScriptFile) {
|
||||||
logger.log(Level.WARNING, AppStrings.translate("export.script.singleFilePallelModeWarning"));
|
logger.log(Level.WARNING, AppStrings.translate("export.script.singleFileParallelModeWarning"));
|
||||||
singleScriptFile = false;
|
singleScriptFile = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2268,7 +2268,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
|||||||
Path.createDirectorySafe(new File(scriptsFolder));
|
Path.createDirectorySafe(new File(scriptsFolder));
|
||||||
boolean singleScriptFile = Configuration.scriptExportSingleFile.get();
|
boolean singleScriptFile = Configuration.scriptExportSingleFile.get();
|
||||||
if (parallel && singleScriptFile) {
|
if (parallel && singleScriptFile) {
|
||||||
logger.log(Level.WARNING, AppStrings.translate("export.script.singleFilePallelModeWarning"));
|
logger.log(Level.WARNING, AppStrings.translate("export.script.singleFileParallelModeWarning"));
|
||||||
singleScriptFile = false;
|
singleScriptFile = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2375,7 +2375,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
|||||||
Path.createDirectorySafe(new File(scriptsFolder));
|
Path.createDirectorySafe(new File(scriptsFolder));
|
||||||
boolean singleScriptFile = Configuration.scriptExportSingleFile.get();
|
boolean singleScriptFile = Configuration.scriptExportSingleFile.get();
|
||||||
if (parallel && singleScriptFile) {
|
if (parallel && singleScriptFile) {
|
||||||
logger.log(Level.WARNING, AppStrings.translate("export.script.singleFilePallelModeWarning"));
|
logger.log(Level.WARNING, AppStrings.translate("export.script.singleFileParallelModeWarning"));
|
||||||
singleScriptFile = false;
|
singleScriptFile = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2492,7 +2492,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
|||||||
Path.createDirectorySafe(new File(scriptsFolder));
|
Path.createDirectorySafe(new File(scriptsFolder));
|
||||||
boolean singleScriptFile = Configuration.scriptExportSingleFile.get();
|
boolean singleScriptFile = Configuration.scriptExportSingleFile.get();
|
||||||
if (parallel && singleScriptFile) {
|
if (parallel && singleScriptFile) {
|
||||||
logger.log(Level.WARNING, AppStrings.translate("export.script.singleFilePallelModeWarning"));
|
logger.log(Level.WARNING, AppStrings.translate("export.script.singleFileParallelModeWarning"));
|
||||||
singleScriptFile = false;
|
singleScriptFile = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -560,7 +560,7 @@ menu.recentFiles.empty = Recent file list is empty
|
|||||||
message.warning.outOfMemory32BitJre=OutOfMemory error occurred. You are running 32bit Java on 64bit system. Please use 64bit Java.
|
message.warning.outOfMemory32BitJre=OutOfMemory error occurred. You are running 32bit Java on 64bit system. Please use 64bit Java.
|
||||||
menu.file.reloadAll = Reload all
|
menu.file.reloadAll = Reload all
|
||||||
message.confirm.reloadAll = This action cancels all unsaved changes in all SWF files and reloads whole application again.\nDo you want to continue?
|
message.confirm.reloadAll = This action cancels all unsaved changes in all SWF files and reloads whole application again.\nDo you want to continue?
|
||||||
export.script.singleFilePallelModeWarning = Single file script export is not supported with enabled parallel speedup
|
export.script.singleFileParallelModeWarning = Single file script export is not supported with enabled parallel speedup
|
||||||
button.showOriginalBytesInPcodeHex = Show original bytes
|
button.showOriginalBytesInPcodeHex = Show original bytes
|
||||||
button.remove = Remove
|
button.remove = Remove
|
||||||
button.showFileOffsetInPcodeHex = Show file offset
|
button.showFileOffsetInPcodeHex = Show file offset
|
||||||
|
|||||||
Reference in New Issue
Block a user