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

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!463MRC mods by Codefenix (2024-10-20),!149List header fix for personal email
Pipeline #2794 passed
......@@ -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.45c";
var READER_DATE = "2022-02-25";
var READER_VERSION = "1.45d";
var READER_DATE = "2022-02-26";
 
// 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())
{
......
Digital Distortion Message Reader
Version 1.45c
Release date: 2022-02-25
Version 1.45d
Release date: 2022-02-26
by
......
......@@ -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)
......
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