1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-23 06:35:36 +00:00

/VERSION command and /SV alias now print the version date too.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1732 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-08-09 00:50:22 +00:00 committed by cras
parent f84e2a7fe9
commit 22e1a6dacc
2 changed files with 3 additions and 2 deletions

View File

@ -59,7 +59,7 @@ aliases = {
UMODE = "mode $N";
WC = "window close";
WN = "window new hide";
SV = "say Irssi $J - http://irssi.org/";
SV = "say Irssi $J ($V) - http://irssi.org/";
GOTO = "sb goto";
CHAT = "dcc chat";
RUN = "SCRIPT LOAD";

View File

@ -95,7 +95,8 @@ static void cmd_version(char *data)
if (*data == '\0') {
printtext(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
"Client: "PACKAGE" " IRSSI_VERSION);
"Client: "PACKAGE" " IRSSI_VERSION
" ("IRSSI_VERSION_DATE")");
}
}