diff options
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | lang/langtool.c | 5 | ||||
-rw-r--r-- | src/anope-icon.ico | bin | 7406 -> 3774 bytes | |||
-rw-r--r-- | version.log | 6 |
4 files changed, 11 insertions, 2 deletions
@@ -48,8 +48,10 @@ Provided by illu. <illu@rs2i.net> - 2006 01/25 F Updated the french language file. [ #00] Provided by Trystan <trystan@nomadirc.net> - 2006 +03/18 A New icon file for anope win32. [#472] 03/14 A Anope will now terminate on Win98. Added version check. [#473] 03/01 A Clarity on module loading status numbers. [#435] +03/18 F Fixed closing of file pointer in langtool.c. [#478] 03/14 F Fixed gcc switches for modules. [#474] 03/12 F moduleGetLastBuffer() returning NULL on alias and pseudo clients [#476] 03/12 F nickIsServices() returns correctly for aliases [ #00] diff --git a/lang/langtool.c b/lang/langtool.c index 6ac2bd6f6..d8148fcbf 100644 --- a/lang/langtool.c +++ b/lang/langtool.c @@ -60,11 +60,14 @@ int main(int argc, char *argv[]) fprintf(stderr, "Generating language.h... "); - while (fgets(buf, 1023, fd)) + while (fgets(buf, 1023, fd)) { fprintf(fdout, "#define %-32s %d\n", strip(buf), i++); + } fprintf(fdout, "#define NUM_STRINGS %d\n", i); fprintf(stderr, "%d strings\n", i); + fclose(fd);
+ fclose(fdout); } return 0; diff --git a/src/anope-icon.ico b/src/anope-icon.ico Binary files differindex b60a7994c..be735614a 100644 --- a/src/anope-icon.ico +++ b/src/anope-icon.ico diff --git a/version.log b/version.log index 456ebbdb4..e13b02597 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="13" VERSION_EXTRA="-svn" -VERSION_BUILD="1010" +VERSION_BUILD="1011" # $Log$ # +# BUILD : 1.7.13 (1011) +# BUGS : 472 478 +# NOTES : new w32 icon and fixed file pointer +# # BUILD : 1.7.13 (1010) # BUGS : 471 # NOTES : fixed charybdis umodes. |