diff options
author | Timo Sirainen <cras@irssi.org> | 2001-08-09 00:50:22 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-08-09 00:50:22 +0000 |
commit | 22e1a6dacc58f31e44b1ec9d4a3f19e55bea3f7b (patch) | |
tree | 5be9e031bbcabe1d8cc45bc687724bbfba964e43 /src/fe-common/core | |
parent | f84e2a7fe95749eb88db5f1c9def9dce594f6e14 (diff) | |
download | irssi-22e1a6dacc58f31e44b1ec9d4a3f19e55bea3f7b.zip |
/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
Diffstat (limited to 'src/fe-common/core')
-rw-r--r-- | src/fe-common/core/fe-core-commands.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fe-common/core/fe-core-commands.c b/src/fe-common/core/fe-core-commands.c index 9c0fbab8..87515f4d 100644 --- a/src/fe-common/core/fe-core-commands.c +++ b/src/fe-common/core/fe-core-commands.c @@ -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")"); } } |