glib/glib.symbols glib/gutils.h Make also g_getenv(), g_setenv(),
[platform/upstream/glib.git] / ChangeLog.pre-2-10
index dbbd8d5..da15a34 100644 (file)
@@ -1,3 +1,102 @@
+2005-01-01  Tor Lillqvist  <tml@iki.fi>
+
+       * glib/glib.symbols
+       * glib/gutils.h
+       * glib/gutils.c: Make also g_getenv(), g_setenv(), g_unsetenv()
+       and g_find_program_in_path() take and return UTF-8 strings on
+       Win32. Implement DLL ABI backward compatility for them, too. Move
+       all the DLL ABI stability wrappers to the end of the file. Use
+       wide character API when available in inner_find_program_in_path().
+
+       * glib/gfileutils.c: With the UTF-8ness of g_getenv() above, just
+       use g_getenv() to get PATHEXT. (Yeah, it's probably overdoing it
+       to consider somebody actually having anything else than ASCII
+       in PATHEXT, but...)
+
+2004-12-31  Tor Lillqvist  <tml@iki.fi>
+
+       * glib/gfileutils.c (g_file_test): Rewrite the Win32 version to
+       use GetFileAttributes() instead of stat(). stat() is unreliable
+       for corner cases like '\\server\share' or '.\'. Part of fixing
+       #161797. When testing for executability, in addition to the fixed
+       set of executable file name extensions also check the PATHEXT
+       environment variable.
+
+2004-12-30  Tor Lillqvist  <tml@iki.fi>
+
+       * glib/gutils.c (g_get_current_dir): In the Win32 version, use
+       GetCurrentDirectory() directly for simpler buffer length
+       management. I don't trust getcwd() getting it right all the time.
+
+2004-12-30  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gfileutils.c (g_file_test): Typo fix.
+
+2004-12-30  Tor Lillqvist  <tml@iki.fi>
+
+       * glib/gutils.c (g_path_skip_root): Require UNC paths to start
+       with exactly two slashes.
+       (g_get_current_dir): Use wide character API when available.
+       (g_path_get_dirname): Handle UNC paths better. Part of fix for
+       #161797.
+
+2004-12-27  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Add an OS_LINUX conditional.
+
+       * glib/Makefile.am (TESTS): Only check the ABI on 
+       linux, since the shell script is not portable, and libtool
+       deficiencies may distort the ABI on other platforms.  (#161741)
+
+2004-12-21  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/goption.c (print_entry): Don't show
+       the special G_OPTION_REMAINING entry.  (#161934,
+       Matthew F. Barnes)
+
+2004-12-20  Tor Lillqvist  <tml@iki.fi>
+
+       * glib/gconvert.c (g_locale_to_utf8, g_filename_to_uri): Improve
+       docs.
+
+2004-12-20  Matthias Clasen  <mclasen@redhat.com>
+
+       * tests/option-test.c: Add some tests for '--' 
+       stripping.
+
+       * glib/goption.c (g_option_context_parse): Don't
+       strip '--' if it would be needed by a second option
+       parser.  (#161701)
+
+       * glib/gunicollate.c (g_utf8_collate): Make docs 
+       more accurate.  (#161683, Marcin Krzyzanowski)
+
+2004-12-19  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/goption.c (g_option_context_parse): Call
+       post-parse hooks also if argv is NULL.  (#161668,
+       Marcin Krzyzanowski)
+
+2004-12-16  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Bump version
+
+       * === Released 2.6.0 ===
+       
+2004-12-15  Alexander Larsson  <alexl@redhat.com>
+
+       * glib/gconvert.c: (g_filename_display_basename):
+       Fix spelling
+       Add g_return_val_if_fail.
+       
+       * glib/glib.symbols:
+       Add g_filename_display_basename
+
+2004-12-15  Alexander Larsson  <alexl@redhat.com>
+
+       * glib/gconvert.[ch]:
+       Add g_filename_display_basename.
+
 2004-12-14  Matthias Clasen  <mclasen@redhat.com>
 
        * README.in: Updates