mirror of
https://github.com/anope/anope.git
synced 2026-07-04 00:03:12 +02:00
BUILD : 1.7.6 (519) BUGS : N/A NOTES : Ultimate3 bug fixes, they have NICKIP, and some channel modes were defined the same causing problems
git-svn-id: svn://svn.anope.org/anope/trunk@519 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@373 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
59122c8ca2
commit
8114b5be04
@@ -16,6 +16,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004
|
||||
11/19 A Added anope_cmd_ctcp() to code API, for sending CTCP messages. [ #00]
|
||||
11/18 A Unable to use registered nicknames as bot nicks from now on. [ #00]
|
||||
11/18 A NSAddAccessOnReg to control access list on registration. [ #00]
|
||||
01/01 F Ultimate3 channel modes, which had been defined incorrectly. [ #00]
|
||||
12/31 F Fixed integer overflow error with CS ACCESS/LEVELS. [#262]
|
||||
12/30 F Fixed moduleAddData using an old moduleData as list head. [#261]
|
||||
12/30 F List handling of moduleData was bad on deletion. [#261]
|
||||
|
||||
+5
-5
@@ -50,16 +50,16 @@
|
||||
#define CMODE_t 0x00000020
|
||||
#define CMODE_k 0x00000040 /* These two used only by ChanServ */
|
||||
#define CMODE_l 0x00000080
|
||||
#define CMODE_R 0x00000100 /* Only identified users can join */
|
||||
#define CMODE_r 0x00000200 /* Set for all registered channels */
|
||||
#define CMODE_c 0x00000400 /* Colors can't be used */
|
||||
#define CMODE_A 0x00000800
|
||||
#define CMODE_N 0x00001000
|
||||
#define CMODE_S 0x00002000
|
||||
#define CMODE_K 0x00004000
|
||||
#define CMODE_c 0x00000400 /* Colors can't be used */
|
||||
#define CMODE_M 0x00000800 /* Non-regged nicks can't send messages */
|
||||
#define CMODE_q 0x00001000 /* No Quit Reason */
|
||||
#define CMODE_O 0x00008000 /* Only opers can join */
|
||||
#define CMODE_R 0x00000100 /* Only identified users can join */
|
||||
#define CMODE_r 0x00000200 /* Set for all registered channels */
|
||||
#define CMODE_q 0x00010000 /* No Quit Reason */
|
||||
#define CMODE_M 0x00020000 /* Non-regged nicks can't send messages */
|
||||
|
||||
#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r
|
||||
|
||||
|
||||
+1
-1
@@ -79,7 +79,7 @@ IRCDVar ircd[] = {
|
||||
0, /* vidents */
|
||||
0, /* svshold */
|
||||
1, /* time stamp on mode */
|
||||
0, /* NICKIP */
|
||||
1, /* NICKIP */
|
||||
0, /* O:LINE */
|
||||
1, /* UMODE */
|
||||
1, /* VHOST ON NICK */
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="6"
|
||||
VERSION_BUILD="518"
|
||||
VERSION_BUILD="519"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.6 (519)
|
||||
# BUGS : N/A
|
||||
# NOTES : Ultimate3 bug fixes, they have NICKIP, and some channel modes were defined the same causing problems
|
||||
#
|
||||
# BUILD : 1.7.6 (518)
|
||||
# BUGS : 262
|
||||
# NOTES : CS ACCESS was also affected by the overflow
|
||||
|
||||
Reference in New Issue
Block a user