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

List header fix for personal email

Fix for no group information available when displaying the sub-board header above the message list when listing personal email
parent f18132b3
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 #2792 passed
...@@ -120,6 +120,9 @@ ...@@ -120,6 +120,9 @@
* Version 1.45c * Version 1.45c
* Actually fixed wide terminal colors this time (and fixed vote * Actually fixed wide terminal colors this time (and fixed vote
* score display in the message list) * 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) ...@@ -240,8 +243,8 @@ if (system.version_num < 31500)
} }
   
// Reader version information // Reader version information
var READER_VERSION = "1.45c"; var READER_VERSION = "1.45d";
var READER_DATE = "2022-02-25"; var READER_DATE = "2022-02-26";
   
// 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);
...@@ -7023,7 +7026,11 @@ function DigDistMsgReader_WriteMsgListScreenTopHeader() ...@@ -7023,7 +7026,11 @@ function DigDistMsgReader_WriteMsgListScreenTopHeader()
// For the message group name, we can also use msgbase.cfg.grp_name in // For the message group name, we can also use msgbase.cfg.grp_name in
// Synchronet 3.12 and higher. // Synchronet 3.12 and higher.
var msgbase = new MsgBase(this.subBoardCode); 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"; var subBoardName = "Unspecified";
if (msgbase.open()) if (msgbase.open())
{ {
......
Digital Distortion Message Reader Digital Distortion Message Reader
Version 1.45c Version 1.45d
Release date: 2022-02-25 Release date: 2022-02-26
by by
......
...@@ -5,7 +5,10 @@ Revision History (change log) ...@@ -5,7 +5,10 @@ Revision History (change log)
============================= =============================
Version Date Description 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 for wide terminals
1.45b 2022-02-25 Fixed message list time colors for wide terminals (above 1.45b 2022-02-25 Fixed message list time colors for wide terminals (above
80 columns) 80 columns)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment