mirror of
https://github.com/anope/anope.git
synced 2026-07-09 13:23:13 +02:00
BUILD : 1.7.8 (620) BUGS : 313 NOTES : Fixed various mistakes, as listed in bug 313 (only the mydbgen issue is not done yet)
git-svn-id: svn://svn.anope.org/anope/trunk@620 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@468 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
dcfcd9302f
commit
55c14ce52f
@@ -8,6 +8,7 @@ Provided by Anope Dev. <dev@anope.org> - 2005
|
||||
02/13 A Internal Event support, see EVENTS in the doc folder for help [ #00]
|
||||
02/05 A Support for Unreal 3.2 +I channel mode. [ #00]
|
||||
02/03 A Merged anope-win32 branch into the main, now Win32 ready. [ #00]
|
||||
03/14 F Various minor mistakes (see bugreport for full list). [#313]
|
||||
03/14 F Sync state of servers was not recorded reliable enough. [ #00]
|
||||
03/12 F Services setting already set channel modes. [ #00]
|
||||
03/12 F Not displaying entrymessage/greets on (re-)sync of uplink anymore.[ #00]
|
||||
|
||||
+2
-2
@@ -40,7 +40,7 @@ spotless:
|
||||
cd lang && $(MAKE) spotless && cd ..
|
||||
cd src && $(MAKE) spotless && cd ..
|
||||
cd src\modules && $(MAKE) spotless && cd ..\..
|
||||
-@erase include\language.h include\version.h *~ services.exe version.sh.exe *.obj anopesmtp.exe
|
||||
-@erase include\language.h include\version.h *~ anope.exe version.sh.exe *.obj anopesmtp.exe
|
||||
|
||||
mypasql:
|
||||
$(MYPASQL_BUILD)
|
||||
@@ -151,7 +151,7 @@ lang\index:
|
||||
include\language.h: lang\language.h
|
||||
cd lang && copy language.h ..\include\language.h && cd ..
|
||||
|
||||
include\version.h: version.sh.exe version.log include\services.h include\pseudo.h include\messages.h include\pseudo.h include\messages.h
|
||||
include\version.h: version.sh.exe version.log include\services.h include\pseudo.h include\messages.h
|
||||
version.sh.exe
|
||||
copy version.h include\version.h
|
||||
|
||||
|
||||
+3
-2
@@ -109,7 +109,8 @@ Anope Modules
|
||||
|
||||
7) Information for Developers
|
||||
|
||||
Please take a look at:
|
||||
There are a number of useful documents on the Anope Wiki. The Anope Wiki
|
||||
can be reached at:
|
||||
|
||||
* http://geniusdex.dezeserver.nl/anope-wiki/
|
||||
* http://wiki.anope.org/
|
||||
|
||||
|
||||
@@ -163,6 +163,7 @@ Table of Contents
|
||||
* Solid IRCd 3.4.6 or later
|
||||
* Plexus 2.0 or later
|
||||
* Ratbox 2.0.6 or later
|
||||
* ShadowIRCd 4.0 beta 7 or later
|
||||
|
||||
Anope could also work with some of the daemons derived by the ones listed
|
||||
above, but there's no support for them if they work or don't work.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* Ratbox IRCD functions
|
||||
/* ShadowIRCD functions
|
||||
*
|
||||
* (C) 2003-2005 Anope Team
|
||||
* Contact us at info@anope.org
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
/* Bahamut functions
|
||||
/* SolidIRCD functions
|
||||
*
|
||||
* (C) 2003-2005 Anope Team
|
||||
* Contact us at info@anope.org
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
#define SERVICES_DIR "data"
|
||||
#define SERVICES_BIN "services.exe"
|
||||
#define SERVICES_BIN "anope.exe"
|
||||
|
||||
typedef signed __int16 int16;
|
||||
typedef signed __int16 int16_t;
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ INCLUDES = ../include/commands.h ../include/defs.h ../include/language.h \
|
||||
../include/dreamforge.h ../include/bahamut.h ../include/ultimate2.h \
|
||||
../include/ultimate3.h ../include/hybrid.h ../include/ptlink.h ../include/unreal31.h \
|
||||
../include/viagra.h ../include/rageircd.h ../include/unreal32.h ../include/solidircd.h \
|
||||
../include/plexus.h
|
||||
../include/plexus.h ../include/shadowircd.h
|
||||
|
||||
|
||||
MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@ Anope Bundled Tools
|
||||
options. To use the SMTP client instead of sendmail, find the line in your
|
||||
services configuration file (services.conf) that defines SendMailPath. On
|
||||
that line, change the path to your services installation directory, then
|
||||
followed by "anopemstp" and the IP address of a valid SMTP server. It
|
||||
followed by "anopesmtp" and the IP address of a valid SMTP server. It
|
||||
should look like this:
|
||||
|
||||
SendMailPath "/home/anope/services/anopesmtp 127.0.0.1"
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="8"
|
||||
VERSION_BUILD="619"
|
||||
VERSION_BUILD="620"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.8 (620)
|
||||
# BUGS : 313
|
||||
# NOTES : Fixed various mistakes, as listed in bug 313 (only the mydbgen issue is not done yet)
|
||||
#
|
||||
# BUILD : 1.7.8 (619)
|
||||
# BUGS :
|
||||
# NOTES : Fixed the recording of server sync state more reliable, which fixes a bug where servers which did not report bursts would always remain in burst-mode internally
|
||||
|
||||
Reference in New Issue
Block a user