diff --git a/xtrn/DDAreaChoosers/DDFileAreaChooser.js b/xtrn/DDAreaChoosers/DDFileAreaChooser.js index bbb9d451025c3d5545499e87e048a76100d59291..b26ac42e1fd9a325bac0f8cfff0a22c626d3a568 100644 --- a/xtrn/DDAreaChoosers/DDFileAreaChooser.js +++ b/xtrn/DDAreaChoosers/DDFileAreaChooser.js @@ -36,6 +36,9 @@ * 2022-07-06 Eric Oulashin Version 1.28 * Fix for not actually moving to the user's selected directory * when directly choosing a directory in their library in lightbar mode. + * 2022-07-23 Eric Oulashin Version 1.29 + * Re-arranged the help text for lightbar mode to be more consistent with my message reader + * (and message area chooser). */ // TODO: Failing silently when 1st argument is true @@ -76,8 +79,8 @@ if (system.version_num < 31400) } // Version & date variables -var DD_FILE_AREA_CHOOSER_VERSION = "1.28"; -var DD_FILE_AREA_CHOOSER_VER_DATE = "2022-07-06"; +var DD_FILE_AREA_CHOOSER_VERSION = "1.29"; +var DD_FILE_AREA_CHOOSER_VER_DATE = "2022-07-23"; // Keyboard input key codes var CTRL_H = "\x08"; @@ -245,44 +248,44 @@ function DDFileAreaChooser() // Lightbar mode key help line this.lightbarKeyHelpText = "\x01n" + this.colors.lightbarHelpLineHotkey + this.colors.lightbarHelpLineBkg + UP_ARROW - + "\x01n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + ", " - + "\x01n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + DOWN_ARROW - + "\x01n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + ", " - + "\x01n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + "HOME" - + "\x01n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + ", " - + "\x01n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + "END" - + "\x01n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + ", " - + "\x01n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + "#" - + "\x01n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + ", " - + "\x01n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + "PgUp" - + "\x01n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + "/" - + "\x01n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + "Dn" - + "\x01n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + ", " - + "\x01n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + "F" - + "\x01n" + this.colors.lightbarHelpLineParen - + this.colors.lightbarHelpLineBkg + ")" - + "\x01n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + "irst pg, " - + "\x01n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + "L" - + "\x01n" + this.colors.lightbarHelpLineParen + + "\x01n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + ", " + + "\x01n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + DOWN_ARROW + + "\x01n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + ", " + + "\x01n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + "PgUp" + + "\x01n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + "/" + + "\x01n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + "Dn" + + "\x01n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + ", " + + "\x01n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + "HOME" + + "\x01n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + ", " + + "\x01n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + "END" + + "\x01n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + ", " + + "\x01n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + "F" + + "\x01n" + this.colors.lightbarHelpLineParen + + this.colors.lightbarHelpLineBkg + ")" + + "\x01n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + "irst pg, " + + "\x01n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + "L" + + "\x01n" + this.colors.lightbarHelpLineParen + this.colors.lightbarHelpLineBkg + ")" - + "\x01n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + "ast pg, " + + "\x01n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + "ast pg, " + + "\x01n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + "#" + + "\x01n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + ", " + "\x01n" + this.colors.lightbarHelpLineHotkey + this.colors.lightbarHelpLineBkg + "CTRL-F" + "\x01n" + this.colors.lightbarHelpLineGeneral diff --git a/xtrn/DDAreaChoosers/DDMsgAreaChooser.js b/xtrn/DDAreaChoosers/DDMsgAreaChooser.js index a2d848f318b515a2456faef880c1ef17b6b50e5d..f79ad7e3916d8b48058d1c674e7095ab8490b786 100644 --- a/xtrn/DDAreaChoosers/DDMsgAreaChooser.js +++ b/xtrn/DDAreaChoosers/DDMsgAreaChooser.js @@ -35,6 +35,8 @@ * 2022-06-11 Eric Oulashin Version 1.26 * Updated to try to prevent the error "this.subBoardListPrintfInfo[pGrpIdx] is undefined" * when only choosing a sub-board within the user's current message group. + * 2022-07-23 Eric Oulashin Version 1.29 + * Re-arranged the help text for lightbar mode to be more consistent with my message reader. */ // TODO: In the area list, the 10,000ths digit (for # posts) is in a different color) @@ -78,8 +80,8 @@ if (system.version_num < 31400) } // Version & date variables -var DD_MSG_AREA_CHOOSER_VERSION = "1.26"; -var DD_MSG_AREA_CHOOSER_VER_DATE = "2022-06-11"; +var DD_MSG_AREA_CHOOSER_VERSION = "1.29"; +var DD_MSG_AREA_CHOOSER_VER_DATE = "2022-07-23"; // Keyboard input key codes var CTRL_H = "\x08"; @@ -306,44 +308,44 @@ function DDMsgAreaChooser() // Lightbar mode key help line this.lightbarKeyHelpText = "\1n" + this.colors.lightbarHelpLineHotkey + this.colors.lightbarHelpLineBkg + UP_ARROW - + "\1n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + ", " - + "\1n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + DOWN_ARROW - + "\1n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + ", " - + "\1n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + "HOME" - + "\1n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + ", " - + "\1n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + "END" - + "\1n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + ", " - + "\1n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + "#" - + "\1n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + ", " - + "\1n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + "PgUp" - + "\1n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + "/" - + "\1n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + "Dn" - + "\1n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + ", " - + "\1n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + "F" - + "\1n" + this.colors.lightbarHelpLineParen - + this.colors.lightbarHelpLineBkg + ")" - + "\1n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + "irst pg, " - + "\1n" + this.colors.lightbarHelpLineHotkey - + this.colors.lightbarHelpLineBkg + "L" - + "\1n" + this.colors.lightbarHelpLineParen - + this.colors.lightbarHelpLineBkg + ")" - + "\1n" + this.colors.lightbarHelpLineGeneral - + this.colors.lightbarHelpLineBkg + "ast pg, " + + "\1n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + ", " + + "\1n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + DOWN_ARROW + + "\1n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + ", " + + "\1n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + "PgUp" + + "\1n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + "/" + + "\1n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + "Dn" + + "\1n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + ", " + + "\1n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + "HOME" + + "\1n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + ", " + + "\1n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + "END" + + "\1n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + ", " + + "\1n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + "F" + + "\1n" + this.colors.lightbarHelpLineParen + + this.colors.lightbarHelpLineBkg + ")" + + "\1n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + "irst pg, " + + "\1n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + "L" + + "\1n" + this.colors.lightbarHelpLineParen + + this.colors.lightbarHelpLineBkg + ")" + + "\1n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + "ast pg, " + + "\1n" + this.colors.lightbarHelpLineHotkey + + this.colors.lightbarHelpLineBkg + "#" + + "\1n" + this.colors.lightbarHelpLineGeneral + + this.colors.lightbarHelpLineBkg + ", " + "\1n" + this.colors.lightbarHelpLineHotkey + this.colors.lightbarHelpLineBkg + "CTRL-F" + "\1n" + this.colors.lightbarHelpLineGeneral