diff --git a/core/fse.js b/core/fse.js index bf775609..d9081fc0 100644 --- a/core/fse.js +++ b/core/fse.js @@ -34,6 +34,7 @@ exports.moduleInfo = { TL1 - From TL2 - To TL3 - Subject + TL4 - Area name TL5 - Date/Time (TODO: format) TL6 - Message number @@ -62,6 +63,7 @@ var MCICodeIds = { From : 1, To : 2, Subject : 3, + AreaName : 4, DateTime : 5, MsgNum : 6, @@ -169,6 +171,7 @@ function FullScreenEditorModule(options) { from : vc.getView(1), to : vc.getView(2), subject : vc.getView(3), + areaName : vc.getView(4), dateTime : vc.getView(5), msgNum : vc.getView(7), @@ -514,6 +517,9 @@ function FullScreenEditorModule(options) { } ], function complete(err) { + if(err) { + console.error(err) + } cb(err); } ); @@ -575,6 +581,7 @@ function FullScreenEditorModule(options) { setHeaderText(MCICodeIds.ViewModeHeader.From, self.message.fromUserName); setHeaderText(MCICodeIds.ViewModeHeader.To, self.message.toUserName); setHeaderText(MCICodeIds.ViewModeHeader.Subject, self.message.subject); + setHeaderText(MCICodeIds.ViewModeHeader.AreaName, self.messageAreaName); setHeaderText(MCICodeIds.ViewModeHeader.DateTime, moment(self.message.modTimestamp).format(self.client.currentTheme.helpers.getDateTimeFormat())); setHeaderText(MCICodeIds.ViewModeHeader.MsgNum, (self.messageIndex + 1).toString()); setHeaderText(MCICodeIds.ViewModeHeader.MsgTotal, self.messageTotal.toString()); diff --git a/mods/menu.hjson b/mods/menu.hjson index 12d9cccb..aaa83b04 100644 --- a/mods/menu.hjson +++ b/mods/menu.hjson @@ -662,7 +662,7 @@ "*" : [ { value: { 1: 0 } - action: @method:prevMessage" + action: @method:prevMessage } { value: { 1: 1 } diff --git a/mods/themes/luciano_blocktronics/MNUPRMT.ANS b/mods/themes/luciano_blocktronics/MNUPRMT.ANS index 065a0ec9..0e741116 100644 Binary files a/mods/themes/luciano_blocktronics/MNUPRMT.ANS and b/mods/themes/luciano_blocktronics/MNUPRMT.ANS differ diff --git a/mods/themes/luciano_blocktronics/MSGBODY.ANS b/mods/themes/luciano_blocktronics/MSGBODY.ANS new file mode 100644 index 00000000..78771ade Binary files /dev/null and b/mods/themes/luciano_blocktronics/MSGBODY.ANS differ diff --git a/mods/themes/luciano_blocktronics/MSGEFTR.ANS b/mods/themes/luciano_blocktronics/MSGEFTR.ANS new file mode 100644 index 00000000..bfa907df Binary files /dev/null and b/mods/themes/luciano_blocktronics/MSGEFTR.ANS differ diff --git a/mods/themes/luciano_blocktronics/MSGEHDR.ANS b/mods/themes/luciano_blocktronics/MSGEHDR.ANS new file mode 100644 index 00000000..e12ad8e1 Binary files /dev/null and b/mods/themes/luciano_blocktronics/MSGEHDR.ANS differ diff --git a/mods/themes/luciano_blocktronics/MSGVFTR.ANS b/mods/themes/luciano_blocktronics/MSGVFTR.ANS new file mode 100644 index 00000000..81b10fd1 Binary files /dev/null and b/mods/themes/luciano_blocktronics/MSGVFTR.ANS differ diff --git a/mods/themes/luciano_blocktronics/MSGVHDR.ANS b/mods/themes/luciano_blocktronics/MSGVHDR.ANS new file mode 100644 index 00000000..83186837 Binary files /dev/null and b/mods/themes/luciano_blocktronics/MSGVHDR.ANS differ