Skip to content
Snippets Groups Projects
Commit e6314118 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Merge branch 'dd_msg_reader_list_select_all_or_none_checkbox_refresh_fix' into 'master'

DDMsgReader: Fix for checkmark refresh when selecting all/none in the message list

See merge request !431
parents 2f6eaf22 140877d1
No related branches found
No related tags found
2 merge requests!455Update branch with changes from master,!431DDMsgReader: Fix for checkmark refresh when selecting all/none in the message list
Pipeline #6314 passed
...@@ -151,6 +151,8 @@ ...@@ -151,6 +151,8 @@
* 2024- Eric Oulashin Version 1.95c * 2024- Eric Oulashin Version 1.95c
* The filename of quotes.txt is now in the correct case for the user's editor. * The filename of quotes.txt is now in the correct case for the user's editor.
* "terminalSupportsUTF8 not defined" error eliminated. * "terminalSupportsUTF8 not defined" error eliminated.
* 2024-03-31 Eric Oulashin Version 1.95d
* Fix for checkmark refresh when selecting all/none in the message list
*/ */
   
"use strict"; "use strict";
...@@ -255,8 +257,8 @@ var ansiterm = require("ansiterm_lib.js", 'expand_ctrl_a'); ...@@ -255,8 +257,8 @@ var ansiterm = require("ansiterm_lib.js", 'expand_ctrl_a');
var hexdump = load('hexdump_lib.js'); var hexdump = load('hexdump_lib.js');
   
// Reader version information // Reader version information
var READER_VERSION = "1.95c"; var READER_VERSION = "1.95d";
var READER_DATE = "2024-02-15"; var READER_DATE = "2024-03-31";
   
// Keyboard key codes for displaying on the screen // Keyboard key codes for displaying on the screen
var UP_ARROW = ascii(24); var UP_ARROW = ascii(24);
...@@ -4152,7 +4154,7 @@ function DigDistMsgReader_ListMessages_Lightbar(pAllowChgSubBoard) ...@@ -4152,7 +4154,7 @@ function DigDistMsgReader_ListMessages_Lightbar(pAllowChgSubBoard)
this.ToggleSelectedMessage(this.subBoardCode, this.lightbarListSelectedMsgIdx); this.ToggleSelectedMessage(this.subBoardCode, this.lightbarListSelectedMsgIdx);
// Have the menu draw only the check character column in the // Have the menu draw only the check character column in the
// next iteration // next iteration
msgListMenu.nextDrawOnlyItemSubstr = { start: this.MSGNUM_LEN, end: this.MSGNUM_LEN+1 }; msgListMenu.nextDrawOnlyItemSubstr = { start: this.MSGNUM_LEN+1, end: this.MSGNUM_LEN+2 };
} }
// Ctrl-A: Select/de-select all messages // Ctrl-A: Select/de-select all messages
else if (lastUserInputUpper == CTRL_A) else if (lastUserInputUpper == CTRL_A)
...@@ -4175,7 +4177,7 @@ function DigDistMsgReader_ListMessages_Lightbar(pAllowChgSubBoard) ...@@ -4175,7 +4177,7 @@ function DigDistMsgReader_ListMessages_Lightbar(pAllowChgSubBoard)
this.ToggleSelectedMessage(this.subBoardCode, messageIndex, messageSelectToggle); this.ToggleSelectedMessage(this.subBoardCode, messageIndex, messageSelectToggle);
// Have the menu draw only the check character column in the // Have the menu draw only the check character column in the
// next iteration // next iteration
msgListMenu.nextDrawOnlyItemSubstr = { start: this.MSGNUM_LEN, end: this.MSGNUM_LEN+1 }; msgListMenu.nextDrawOnlyItemSubstr = { start: this.MSGNUM_LEN+1, end: this.MSGNUM_LEN+2 };
} }
else else
drawMenu = false; // No need to re-draw the menu drawMenu = false; // No need to re-draw the menu
......
Digital Distortion Message Reader Digital Distortion Message Reader
Version 1.95c Version 1.95d
Release date: 2024-02-15 Release date: 2024-03-31
by by
......
...@@ -5,8 +5,12 @@ Revision History (change log) ...@@ -5,8 +5,12 @@ Revision History (change log)
============================= =============================
Version Date Description Version Date Description
------- ---- ----------- ------- ---- -----------
1.95d 2024-03-31 Fix for checkmark refresh when selecting all/none in the
message list
1.95c 2024-02-15 The filename of quotes.txt is now in the correct case for 1.95c 2024-02-15 The filename of quotes.txt is now in the correct case for
the user's editor. the user's editor.
More checks in the while loops to see if the user is still
online.
"terminalSupportsUTF8 not defined" error eliminated. "terminalSupportsUTF8 not defined" error eliminated.
1.95b 2024-02-04 Bug fix: Use the P_UTF8 mode bit when printing UTF-8 1.95b 2024-02-04 Bug fix: Use the P_UTF8 mode bit when printing UTF-8
message header info (such as 'from' and 'to'). message header info (such as 'from' and 'to').
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment