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
a6f765b4
Commit
a6f765b4
authored
2 years ago
by
Rob Swindell
Browse files
Options
Downloads
Plain Diff
Merge branch 'dd_msg_reader_mail_hdr_fix' into 'master'
List header fix for personal email See merge request
!149
parents
f18132b3
b72193e5
No related branches found
No related tags found
2 merge requests
!463
MRC mods by Codefenix (2024-10-20)
,
!149
List header fix for personal email
Pipeline
#2794
passed
2 years ago
Stage: build
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
xtrn/DDMsgReader/DDMsgReader.js
+10
-3
10 additions, 3 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
-1
4 additions, 1 deletion
xtrn/DDMsgReader/revision_history.txt
with
16 additions
and
6 deletions
xtrn/DDMsgReader/DDMsgReader.js
+
10
−
3
View file @
a6f765b4
...
...
@@ -120,6 +120,9 @@
* Version 1.45c
* Actually fixed wide terminal colors this time (and fixed vote
* score display in the message list)
* 2022-02-26 Eric Oulashin Version 1.45d
* Fix for no group information available when displaying the
* sub-board header above the message list when listing personal email
*/
...
...
@@ -240,8 +243,8 @@ if (system.version_num < 31500)
}
// Reader version information
var READER_VERSION = "1.45
c
";
var READER_DATE = "2022-02-2
5
";
var READER_VERSION = "1.45
d
";
var READER_DATE = "2022-02-2
6
";
// Keyboard key codes for displaying on the screen
var UP_ARROW = ascii(24);
...
...
@@ -7023,7 +7026,11 @@ function DigDistMsgReader_WriteMsgListScreenTopHeader()
// For the message group name, we can also use msgbase.cfg.grp_name in
// Synchronet 3.12 and higher.
var msgbase = new MsgBase(this.subBoardCode);
var msgGroupName = msg_area.grp_list[msgbase.cfg.grp_number].description;
var msgGroupName = "";
if (this.subBoardCode == "mail")
msgGroupName = "Mail";
else
msgGroupName = msg_area.grp_list[msgbase.cfg.grp_number].description;
var subBoardName = "Unspecified";
if (msgbase.open())
{
...
...
This diff is collapsed.
Click to expand it.
xtrn/DDMsgReader/readme.txt
+
2
−
2
View file @
a6f765b4
Digital Distortion Message Reader
Version 1.45
c
Release date: 2022-02-2
5
Version 1.45
d
Release date: 2022-02-2
6
by
...
...
This diff is collapsed.
Click to expand it.
xtrn/DDMsgReader/revision_history.txt
+
4
−
1
View file @
a6f765b4
...
...
@@ -5,7 +5,10 @@ Revision History (change log)
=============================
Version Date Description
------- ---- -----------
1.45c 2020-02-25 Fixed score display and related colors in the message list
1.45d 2022-02-26 Fix for no group information available when displaying the
sub-board header above the message list when listing
personal email
1.45c 2022-02-25 Fixed score display and related colors in the message list
for wide terminals
1.45b 2022-02-25 Fixed message list time colors for wide terminals (above
80 columns)
...
...
This diff is collapsed.
Click to expand it.
Andre Robitaille
@andreMKE
mentioned in issue
#344 (closed)
·
2 years ago
mentioned in issue
#344 (closed)
mentioned in issue #344
Toggle commit list
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