diff options
author | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-03-18 17:59:05 +0000 |
---|---|---|
committer | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-03-18 17:59:05 +0000 |
commit | 4b326805dd5d9adbc29a72811ecd2f91213820fa (patch) | |
tree | 23cf7d31e3ad4369ef14f38a0cfc46453c12dd65 | |
parent | 64cedd2e43457f61d1fd20e57f6c1c658d904532 (diff) |
# BUILD : 1.7.13 (1011) # BUGS : 472 478 # NOTES : new w32 icon and fixed file pointer
git-svn-id: svn://svn.anope.org/anope/trunk@1011 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@736 5417fbe8-f217-4b02-8779-1006273d7864
-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. |