Skip to content

Commit

Permalink
Added summary.xml plugin to distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgammon committed Jul 21, 2010
1 parent 1aecfa9 commit 127940a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
3 changes: 3 additions & 0 deletions install/mushclient.nsi
Expand Up @@ -378,6 +378,7 @@ Section "Plugins"
File "..\plugins\Current_Output_Window.xml"
File "..\plugins\InfoBox_Demo.xml"
File "..\plugins\ATCP_NJG.xml"
File "..\plugins\Summary.xml"


SectionEnd
Expand Down Expand Up @@ -536,6 +537,8 @@ Section Uninstall
Delete "$INSTDIR\worlds\plugins\Current_Output_Window.xml"
Delete "$INSTDIR\worlds\plugins\InfoBox_Demo.xml"
Delete "$INSTDIR\worlds\plugins\ATCP_NJG.xml"
Delete "$INSTDIR\worlds\plugins\Summary.xml"


; locale stuff

Expand Down
9 changes: 4 additions & 5 deletions world_debug.cpp
Expand Up @@ -1142,11 +1142,6 @@ VARIANT CMUSHclientDoc::Debug(LPCTSTR Command)
Note (TFormat ("Received: %I64d bytes (%I64d Kb)", m_nBytesIn, nInK));
Note (TFormat ("Sent: %I64d bytes (%I64d Kb)", m_nBytesOut, nOutK));
Note (TFormat ("Received %I64d packets, sent %I64d packets.", m_iInputPacketCount, m_iOutputPacketCount));

Note (TFormat ("Output buffer: %i of %ld lines.",
m_LineList.GetCount (),
m_maxlines));

Note (TFormat ("Total lines received: %ld", m_total_lines));

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


Note (TFormat ("Output buffer: %i of %ld lines.",
m_LineList.GetCount (),
m_maxlines));

ColourNote (SCRIPTERRORCONTEXTFORECOLOUR, "", "-- Miscellaneous --");

// logging?
Expand Down

0 comments on commit 127940a

Please sign in to comment.