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-alpha3~35 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=efb1d6a660d059750894e750e04a4f96df4aab3a 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 a8db9df6..7f0c1464 100644 --- a/version.inc +++ b/version.inc @@ -5,7 +5,7 @@ quasselVersion = "0.2.0-alpha3-pre"; quasselDate = "2008-03-01"; - quasselBuild = 605; + quasselBuild = 606; //! Minimum client build number the core needs clientBuildNeeded = 605;