prepare for 1.1 release
This commit is contained in:
parent
55d825f412
commit
f673a58cbd
5 changed files with 24 additions and 16 deletions
18
RelNotes.txt
18
RelNotes.txt
|
@ -1,16 +1,14 @@
|
|||
SecureServ 1.0 Release Notes - 21/11/2003
|
||||
SecureServ 1.1 Release Notes - 09/02/2004
|
||||
========================================
|
||||
- SecureServ now supports a Custom Virus definition file. Read the manual
|
||||
for more details
|
||||
- Lots of BugFixes, speedups and tidy ups in this release. Everyone of the reported
|
||||
bugs that we could reproduce has been fixed.
|
||||
|
||||
- SecureServ will now optionally invite users to the help channel if the
|
||||
definitions say to do a SVSJOIN, but the IRCd does not support SVSJOIN
|
||||
- MonBots will now cycle their channels. See MONCHANCYCLE and /msg
|
||||
MONCHANCYCLETIME in the documentation for SET for more info.
|
||||
|
||||
- SecureServ will now warn you if you have a TS sync issue on your network.
|
||||
You MUST ensure that all your servers clocks are synced.
|
||||
|
||||
- If you wish to take advantage of updated Definition files, you *MUST*
|
||||
apply for a account at http://secure.irc-chat.net/ (currently 140+
|
||||
Signatures, and due to grow even bigger shortly after this release)
|
||||
|
||||
- A new option, /msg SecureServ set botecho on will now echo any messages
|
||||
the onjoin bots, or monbot recieves to the services channel, regardless of
|
||||
the verbose settting.
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@ ModuleInfo __module_info = {
|
|||
|
||||
static int new_m_version(char *origin, char **av, int ac)
|
||||
{
|
||||
snumeric_cmd(RPL_VERSION,origin, "Module SecureServ Loaded, Version: %s %s %s",__module_info.module_version,__module_info.module_build_date,__module_info.module_build_time);
|
||||
snumeric_cmd(RPL_VERSION,origin, "Module SecureServ Loaded, Version: %s %s %s Dat: %d",__module_info.module_version,__module_info.module_build_date,__module_info.module_build_time, SecureServ.viriversion);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -198,6 +198,8 @@ int __BotMessage(char *origin, char **argv, int argc)
|
|||
} else if (!strcasecmp(argv[1], "reload")) {
|
||||
do_reload(u, argv, argc);
|
||||
return 1;
|
||||
} else if (!strcasecmp(argv[1], "version")) {
|
||||
prefmsg(u->nick, s_SecureServ, "%d", SecureServ.viriversion);
|
||||
} else {
|
||||
prefmsg(u->nick, s_SecureServ, "Syntax Error. /msg %s help", s_SecureServ);
|
||||
}
|
||||
|
|
|
@ -231,4 +231,12 @@ extern const char *ts_help_helper[];
|
|||
extern const char *ts_help_helpers[];
|
||||
extern const char *ts_help_reload[];
|
||||
|
||||
|
||||
|
||||
/* these are needed for 2.5.14 compatibility */
|
||||
#ifndef EVENT_SERVER
|
||||
#define EVENT_SERVER EVENT_NEWSERVER
|
||||
#endif
|
||||
|
||||
|
||||
#endif /* SECURESERV_H */
|
||||
|
|
6
configure
vendored
6
configure
vendored
|
@ -3441,7 +3441,7 @@ cat >>conftest.$ac_ext <<_ACEOF
|
|||
int main(void) {
|
||||
if (MAJOR >= 2) {
|
||||
if (MINOR >= 5) {
|
||||
if (REV >= 9) {
|
||||
if (REV >= 13) {
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
|
@ -3476,8 +3476,8 @@ if test "$ns_version_ok" = "yes"; then
|
|||
echo "$as_me:$LINENO: result: Compatible Version" >&5
|
||||
echo "${ECHO_T}Compatible Version" >&6;
|
||||
else
|
||||
{ { echo "$as_me:$LINENO: error: This Module requires NeoStats 2.5.9 or Higher" >&5
|
||||
echo "$as_me: error: This Module requires NeoStats 2.5.9 or Higher" >&2;}
|
||||
{ { echo "$as_me:$LINENO: error: This Module requires NeoStats 2.5.13 or Higher" >&5
|
||||
echo "$as_me: error: This Module requires NeoStats 2.5.13 or Higher" >&2;}
|
||||
{ (exit 1); exit 1; }; }
|
||||
fi
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ AC_TRY_RUN(
|
|||
int main(void) {
|
||||
if (MAJOR >= 2) {
|
||||
if (MINOR >= 5) {
|
||||
if (REV >= 9) {
|
||||
if (REV >= 13) {
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
|
@ -65,7 +65,7 @@ int main(void) {
|
|||
if test "$ns_version_ok" = "yes"; then
|
||||
AC_MSG_RESULT(Compatible Version);
|
||||
else
|
||||
AC_MSG_ERROR(This Module requires NeoStats 2.5.9 or Higher)
|
||||
AC_MSG_ERROR(This Module requires NeoStats 2.5.13 or Higher)
|
||||
fi
|
||||
|
||||
dnl check if we are running with Debug....
|
||||
|
|
Reference in a new issue