Skip to content

Commit

Permalink
move debug group to the bottom in script config
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenesvk committed Apr 8, 2024
1 parent 88ce300 commit a10c32f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cmd.JumpItem↕.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function OnInit(D) {
D.default_enable = true; D.min_version = '12.0'; D.copyright = "©es"; var uid = "e435cf1c64394e4ab3f7f838a37b7129";

var cfg = new ConfigHelper(D);
cfg.add("DebugOutput").val(false).g('Debug').des('Enable debug output in the "Script log"');
cfg.add("DebugOutput").val(false).g('  Debug').des('Enable debug output in the "Script log"');
}

function OnAddCommands(addCmdD) {
Expand Down
2 changes: 1 addition & 1 deletion Column.SizeFormat.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function OnInit(D) {

var sV=D.vars, sC=D.config, DC=DOpus.Create, Sys=DC.SysInfo, C=new ConfigHelper(D);
C.add("BinaryMultiplier" ).val(false ).g('Misc').des("??READ FROM CONFIG?? Display size as Binary (2¹⁰=1024), otherwise Decimal (10³=1000)");
C.add("DebugOutput" ).val(false ).g('Debug').des('Enable debug output in the script console ("Other" log)\nAdds "¦" alignment symbol and replaces decimal point spacePunctuation pad with "."');
C.add("DebugOutput" ).val(false ).g('  Debug').des('Enable debug output in the script console ("Other" log)\nAdds "¦" alignment symbol and replaces decimal point spacePunctuation pad with "."');
C.add("ColumnHeaderFolder" ).val('🗁' ).g('Title').des('Column Header symbol for a Folder');
C.add("ColumnHeaderFile" ).val('📁' ).g('Title').des('Column Header symbol for a File');
C.add("ColumnHeaderLink" ).val('🔗' ).g('Title').des('Column Header symbol for a SoftLink\n🔗🖇');
Expand Down
6 changes: 3 additions & 3 deletions backup.LayoutOn⎋.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ function OnInit(D) {

var uid = "1fdacb64921042caafd867acd726cdb9";
var cfg = new ConfigHelper(D);
cfg.add("DebugOutput" ).g('Debug' ).val(false ).des('Enable debug output in the "Script log"')
cfg.add("DebugClear" ).g('Debug' ).val(false ).des("Clear log messages from the Opus Output Window between script runs")
cfg.add("DebugVerbose" ).g('Debug' ).val(false ).des('More verbose debug (e.g., event callbacks) in the "Script log"')
cfg.add("DebugOutput" ).g('  Debug' ).val(false ).des('Enable debug output in the "Script log"')
cfg.add("DebugClear" ).g('  Debug' ).val(false ).des("Clear log messages from the Opus Output Window between script runs")
cfg.add("DebugVerbose" ).g('  Debug' ).val(false ).des('More verbose debug (e.g., event callbacks) in the "Script log"')

cfg.add("Always On" ).g('Misc' ).val(true ).des("Enable script execution without the use of environment variables")
cfg.add("Exclude Layouts" ).g('Filter' ).val(DC.Vector("") ).des("Names of the saved layouts the script should NOT update")
Expand Down

0 comments on commit a10c32f

Please sign in to comment.