From: Unknown Date: Sat, 1 Mar 2008 19:52:15 +0000 (+0000) Subject: Display nickname with notices. Backported this to alpha2 as well. X-Git-Tag: 0.2.0-alpha2 X-Git-Url: https://git.quassel-irc.org/?a=commitdiff_plain;h=5aa3b2d89be4b26c2732437edb405c45ca8e3a25;p=quassel.git Display nickname with notices. Backported this to alpha2 as well. --- diff --git a/src/common/message.cpp b/src/common/message.cpp index 58d1a89c..8c0ebb31 100644 --- a/src/common/message.cpp +++ b/src/common/message.cpp @@ -108,7 +108,7 @@ void Message::format() { case Message::Plain: s = tr("%DS<%1>").arg(nick); t = tr("%D0%1").arg(txt); break; case Message::Notice: - s = tr("%Dn*"); t = tr("%Dn%1").arg(txt); break; + s = tr("%Dn[%1]").arg(nick); t = tr("%Dn%1").arg(txt); break; case Message::Server: s = tr("%Ds*"); t = tr("%Ds%1").arg(txt); break; case Message::Error: diff --git a/version.inc b/version.inc index 51126030..950ecd9a 100644 --- a/version.inc +++ b/version.inc @@ -5,7 +5,7 @@ quasselVersion = "0.2.0-alpha2"; quasselDate = "2008-03-01"; - quasselBuild = 603; + quasselBuild = 604; //! Minimum client build number the core needs clientBuildNeeded = 563;