Skip to content

Commit 127940a

Browse files
committed
Added summary.xml plugin to distribution
1 parent 1aecfa9 commit 127940a

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

install/mushclient.nsi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,7 @@ Section "Plugins"
378378
File "..\plugins\Current_Output_Window.xml"
379379
File "..\plugins\InfoBox_Demo.xml"
380380
File "..\plugins\ATCP_NJG.xml"
381+
File "..\plugins\Summary.xml"
381382

382383

383384
SectionEnd
@@ -536,6 +537,8 @@ Section Uninstall
536537
Delete "$INSTDIR\worlds\plugins\Current_Output_Window.xml"
537538
Delete "$INSTDIR\worlds\plugins\InfoBox_Demo.xml"
538539
Delete "$INSTDIR\worlds\plugins\ATCP_NJG.xml"
540+
Delete "$INSTDIR\worlds\plugins\Summary.xml"
541+
539542

540543
; locale stuff
541544

world_debug.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1142,11 +1142,6 @@ VARIANT CMUSHclientDoc::Debug(LPCTSTR Command)
11421142
Note (TFormat ("Received: %I64d bytes (%I64d Kb)", m_nBytesIn, nInK));
11431143
Note (TFormat ("Sent: %I64d bytes (%I64d Kb)", m_nBytesOut, nOutK));
11441144
Note (TFormat ("Received %I64d packets, sent %I64d packets.", m_iInputPacketCount, m_iOutputPacketCount));
1145-
1146-
Note (TFormat ("Output buffer: %i of %ld lines.",
1147-
m_LineList.GetCount (),
1148-
m_maxlines));
1149-
11501145
Note (TFormat ("Total lines received: %ld", m_total_lines));
11511146

11521147
Note (TFormat ("This connection: Sent %ld lines, received %ld lines.", m_nTotalLinesSent, m_nTotalLinesReceived));
@@ -1272,6 +1267,10 @@ VARIANT CMUSHclientDoc::Debug(LPCTSTR Command)
12721267
r.right / m_FontWidth, m_nWrapColumn, r.bottom / m_FontHeight));
12731268

12741269

1270+
Note (TFormat ("Output buffer: %i of %ld lines.",
1271+
m_LineList.GetCount (),
1272+
m_maxlines));
1273+
12751274
ColourNote (SCRIPTERRORCONTEXTFORECOLOUR, "", "-- Miscellaneous --");
12761275

12771276
// logging?

0 commit comments

Comments
 (0)