diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index 3e32ca554..aec321c6e 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -7,7 +7,7 @@ bill@newbreedsoftware.com http://www.newbreedsoftware.com/tuxpaint/ -2003.Jun.29 (0.9.12) [cvs] +2003.Jul.3 (0.9.12) [cvs] * Fixed Mac OS X #include typo. Darrell Walisser @@ -18,6 +18,9 @@ http://www.newbreedsoftware.com/tuxpaint/ * French translation update. Jacques Chion + * Added call to close iconv when quitting. + John Popplewell + 2003.Jun.17 (0.9.11) * Windows bugfixes. diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 694f1295b..ba2a090b6 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -7,12 +7,12 @@ bill@newbreedsoftware.com http://www.newbreedsoftware.com/tuxpaint/ - June 14, 2002 - June 22, 2003 + June 14, 2002 - July 3, 2003 */ #define VER_VERSION "0.9.12" -#define VER_DATE "2003.06.22" +#define VER_DATE "2003.07.03" /* #define DEBUG */ @@ -7668,6 +7668,8 @@ void cleanup(void) TTF_Quit(); SDL_Quit(); + + convert_close(); }