diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | Changes.conf | 2 | ||||
-rw-r--r-- | install.vbs | 1 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 8 insertions, 2 deletions
@@ -8,6 +8,7 @@ Provided by Anope Dev. <dev@anope.org> - 2005 07/01 A Events for channel access/xop updates. [ #00] 06/26 A New module pack module: hs_request. [ #00] 06/03 A Protocol files can now fill mod_current_buffer with custom code. [#389] +09/25 F Missing End If in install.vbs. [ #00] 09/24 F Typo in English language file. [ #00] 09/21 F Segfault when find_byuid() was called with a NULL argument. [ #00] 09/20 F Ident length checking when adding a bot was broken. [ #00] diff --git a/Changes.conf b/Changes.conf index a079bec4b..bf5155bb4 100644 --- a/Changes.conf +++ b/Changes.conf @@ -135,7 +135,7 @@ OSOpersOnly # Use the given filename as database for the oper information lines. # If not given, the default of "os_info.db" will be used. # -#NSAutoOPDBName "os_info.db" +#OSInfoDBName "os_info.db" ** MODIFIED CONFIGURATION DIRECTIVES ** diff --git a/install.vbs b/install.vbs index 76e5dc29e..8b47304e5 100644 --- a/install.vbs +++ b/install.vbs @@ -131,6 +131,7 @@ Else WScript.Echo "(Please DO NOT include a trailing slash '\')" MySQLLibPath = Trim(WScript.StdIn.ReadLine) Loop + End If If (fso.FileExists(MySQLHeadPath & "\mysql.h") = False) Then Do While (fso.FileExists(MySQLHeadPath & "\mysql.h") = False) WScript.Echo "ERROR: Cannot find 'mysql.h' in " & MySQLHeadPath diff --git a/version.log b/version.log index 1dd2b7884..e9fbb02e7 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="11" VERSION_EXTRA="-rc3" -VERSION_BUILD="895" +VERSION_BUILD="896" # $Log$ # +# BUILD : 1.7.11 (896) +# BUGS : +# NOTES : Fixed minor issues: forgot an 'End If' in install.vbs and an old typo in Changes.conf +# # BUILD : 1.7.11 (895) # BUGS : # NOTES : Fixed a typo in en_us.l |