Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
140877d1
Commit
140877d1
authored
1 year ago
by
Eric Oulashin
Browse files
Options
Downloads
Patches
Plain Diff
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
!455
Update branch with changes from master
,
!431
DDMsgReader: Fix for checkmark refresh when selecting all/none in the message list
Pipeline
#6312
passed
1 year ago
Stage: build
Stage: test
Stage: cleanup
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
xtrn/DDMsgReader/DDMsgReader.js
+6
-4
6 additions, 4 deletions
xtrn/DDMsgReader/DDMsgReader.js
xtrn/DDMsgReader/readme.txt
+2
-2
2 additions, 2 deletions
xtrn/DDMsgReader/readme.txt
xtrn/DDMsgReader/revision_history.txt
+4
-0
4 additions, 0 deletions
xtrn/DDMsgReader/revision_history.txt
with
12 additions
and
6 deletions
xtrn/DDMsgReader/DDMsgReader.js
+
6
−
4
View file @
140877d1
...
...
@@ -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.95
c
";
var READER_DATE = "2024-0
2-15
";
var READER_VERSION = "1.95
d
";
var READER_DATE = "2024-0
3-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
...
...
This diff is collapsed.
Click to expand it.
xtrn/DDMsgReader/readme.txt
+
2
−
2
View file @
140877d1
Digital Distortion Message Reader
Version 1.95
c
Release date: 2024-0
2-15
Version 1.95
d
Release date: 2024-0
3-31
by
...
...
This diff is collapsed.
Click to expand it.
xtrn/DDMsgReader/revision_history.txt
+
4
−
0
View file @
140877d1
...
...
@@ -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').
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment