1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 18:54:47 +02:00

BUILD : 1.7.12 (947) BUGS : NOTES : Updated inspircd support module and fixed error with generating language.h on certain setups

git-svn-id: svn://svn.anope.org/anope/trunk@947 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@675 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2005-12-26 15:59:05 +00:00
parent 86ccb584dd
commit 0426f86966
6 changed files with 590 additions and 451 deletions
+4
View File
@@ -1,6 +1,7 @@
Anope Version S V N
--------------------
Provided by Anope Dev. <dev@anope.org> - 2005
12/26 F Generating language.h failed on certain setups. [ #00]
12/11 F First user on HelpChannel always got +h, even without access. [#405]
12/02 F Missing quitmessage when catching unknown signals. [ #00]
11/14 F Added a check for nickchars before trying to use them in /os stats[ #00]
@@ -16,6 +17,9 @@ Provided by Trystan <trystan@nomadirc.net> - 2005
Provided by Vladimir K. <wawaka@gmail.com> - 2005
12/11 F Enforcers had incorrect user when only user specified. [#410]
Provided by Brain <brain@inspircd.org> - 2005
12/26 A InspIRCd 1.0 Beta 6+ support module to replace old (b3) support. [ #00]
Anope Version 1.7.12
--------------------
Provided by Anope Dev. <dev@anope.org> - 2005
+1 -9
View File
@@ -75,15 +75,7 @@ langcomp: langcomp.c
language.h: index Makefile
@perl -e <index >$@ '\
print STDERR "Generating language.h... "; \
$$i=0; \
while (<>) { \
chop; \
printf "#define %-32s %d\n", $$_, $$i++; \
} \
print "\n#define NUM_STRINGS $$i\n"; \
print STDERR "$$i strings\n";'
@perl -e <index >$@ 'print STDERR "Generating language.h... "; $$i=0; while (<>) { chop; printf "#define %-32s %d\n", $$_, $$i++; } print "\n#define NUM_STRINGS $$i\n"; print STDERR "$$i strings\n";'
index: en_us.l
grep '^[A-Z]' en_us.l >index
+1
View File
@@ -36,6 +36,7 @@ int AnopeInit(int argc, char **argv)
moduleAddCommand(OPERSERV, c, MOD_UNIQUE);
if (DisableRaw) {
alog("[os_raw] Unloading because DisableRaw is enabled");
return MOD_STOP;
}
return MOD_CONT;
+568 -439
View File
File diff suppressed because it is too large Load Diff
+11 -2
View File
@@ -1,4 +1,4 @@
/* InspIRCd 1.0 beta functions
/* inspircd beta 6 functions
*
* (C) 2003-2005 Anope Team
* Contact us at info@anope.org
@@ -121,4 +121,13 @@ int inspircd_flood_mode_check(char *value);
void inspircd_cmd_jupe(char *jserver, char *who, char *reason);
int inspircd_valid_nick(char *nick);
void inspircd_cmd_ctcp(char *source, char *dest, char *buf);
int anope_event_fjoin(char *source, int ac, char **av);
int anope_event_fmode(char *source, int ac, char **av);
int anope_event_ftopic(char *source, int ac, char **av);
int anope_event_sanick(char *source, int ac, char **av);
int anope_event_samode(char *source, int ac, char **av);
int anope_event_sajoin(char *source, int ac, char **av);
int anope_event_sapart(char *source, int ac, char **av);
int anope_event_version(char *source, int ac, char **av);
int anope_event_opertype(char *source, int ac, char **av);
int anope_event_idle(char* source, int ac, char **av);
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="12"
VERSION_EXTRA="-svn"
VERSION_BUILD="945"
VERSION_BUILD="947"
# $Log$
#
# BUILD : 1.7.12 (947)
# BUGS :
# NOTES : Updated inspircd support module and fixed error with generating language.h on certain setups
#
# BUILD : 1.7.12 (945)
# BUGS : 405 410
# NOTES : Fixed: first user on HelpChannel always got +h, even if it had no access at all; enforcers had incorrect user when only user was specified; missing quitmessage when catching unknown signals