X-Git-Url: http://git.pk910.de/?p=NeonServV5.git;a=blobdiff_plain;f=src%2Fmodules%2Fglobal.mod%2Fcmd_global_version.c;h=9cc3392059a77f9a5d102459710dd076ede47ec0;hp=faa03ac9f55f6543e049821ae0b6b14e471d5b5d;hb=c7ddc504390c0e591b2b6296800f2bd401c1918e;hpb=4d078d69cd2308cc835d7d8f1117e9b18ec37b61 diff --git a/src/modules/global.mod/cmd_global_version.c b/src/modules/global.mod/cmd_global_version.c index faa03ac..9cc3392 100644 --- a/src/modules/global.mod/cmd_global_version.c +++ b/src/modules/global.mod/cmd_global_version.c @@ -1,4 +1,4 @@ -/* cmd_global_version.c - NeonServ v5.5 +/* cmd_global_version.c - NeonServ v5.6 * Copyright (C) 2011-2012 Philipp Kreil (pk910) * * This program is free software: you can redistribute it and/or modify @@ -22,15 +22,18 @@ */ CMD_BIND(global_cmd_version) { - reply(textclient, user, "\002NeonServ %s.%d\002 (%s), written by pk910", NEONSERV_VERSION, get_patchlevel(), (strcmp(get_revision(), "") ? get_revision() : "-")); + reply(textclient, user, "\002NeonServ %s.%d %s\002 (%s), written by pk910", NEONSERV_VERSION, get_patchlevel(), (is_stable_revision() ? "(stable)" : "(dev)"), (is_stable_revision() ? (strcmp(get_revision(), "") ? get_revision() : "-") : get_dev_revision())); reply(textclient, user, "Build (#%s) %s (%s lines, " COMPILER ")", get_compilation(), get_creation(), get_codelines()); reply(textclient, user, "NeonServ can be found on: http://dev.pk910.de/NeonServ"); //helpers :D reply(textclient, user, "special thanks to:"); - reply(textclient, user, " Zer0n, TeaTow, Phil (testing and ideas current version)"); - reply(textclient, user, " Buschman, Zer0n, Neon (translating current version)"); - reply(textclient, user, " Patschi95, DerGrinch, Darkfly, Zer0n, Buschman (testing and ideas older versions)"); - reply(textclient, user, " Buschman, Georg, richard (translating older versions)"); + reply(textclient, user, " Testing and Ideas:"); + reply(textclient, user, " Zer0n, TeaTow, Phil, Stricted"); + reply(textclient, user, " Translations:"); + reply(textclient, user, " Buschman (de), Zer0n (de), Neon (de), TheFlie (nl), GodsWarriors (pt)"); + reply(textclient, user, " Others:"); + reply(textclient, user, " Patschi95, DerGrinch, Darkfly, Zer0n, Buschman (testing and ideas older versions)"); + reply(textclient, user, " Buschman, Georg, richard (translating older versions)"); reply(textclient, user, "and all the other users that reported all these nasty bugs :D"); reply(textclient, user, "\002If you found a bug or if you have a good idea report it on http://dev.pk910.de/BugTrack\002");