Skip to content
Snippets Groups Projects
Commit 140877d1 authored by Eric Oulashin's avatar Eric Oulashin
Browse files

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

parent 2f6eaf22
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 #6312 passed
......@@ -151,6 +151,8 @@
* 2024- Eric Oulashin Version 1.95c
* The filename of quotes.txt is now in the correct case for the user's editor.
* "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";
......@@ -255,8 +257,8 @@ var ansiterm = require("ansiterm_lib.js", 'expand_ctrl_a');
var hexdump = load('hexdump_lib.js');
 
// Reader version information
var READER_VERSION = "1.95c";
var READER_DATE = "2024-02-15";
var READER_VERSION = "1.95d";
var READER_DATE = "2024-03-31";
 
// Keyboard key codes for displaying on the screen
var UP_ARROW = ascii(24);
......@@ -4152,7 +4154,7 @@ function DigDistMsgReader_ListMessages_Lightbar(pAllowChgSubBoard)
this.ToggleSelectedMessage(this.subBoardCode, this.lightbarListSelectedMsgIdx);
// Have the menu draw only the check character column in the
// 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
else if (lastUserInputUpper == CTRL_A)
......@@ -4175,7 +4177,7 @@ function DigDistMsgReader_ListMessages_Lightbar(pAllowChgSubBoard)
this.ToggleSelectedMessage(this.subBoardCode, messageIndex, messageSelectToggle);
// Have the menu draw only the check character column in the
// 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
drawMenu = false; // No need to re-draw the menu
......
Digital Distortion Message Reader
Version 1.95c
Release date: 2024-02-15
Version 1.95d
Release date: 2024-03-31
by
......
......@@ -5,8 +5,12 @@ Revision History (change log)
=============================
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
the user's editor.
More checks in the while loops to see if the user is still
online.
"terminalSupportsUTF8 not defined" error eliminated.
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').
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment