Mention g_trap_object_ref
[platform/upstream/glib.git] / NEWS
1 Overview of Changes from GLib 2.9.3 to GLib 2.9.4
2 =================================================
3
4 * Type system:
5   Fix a problem with g_object_compat_control() which 
6   can lead to segfaults in GTK+ applications on 64bit 
7   platforms. 
8
9 * Thread suppport: 
10   Unused threads now fall back to the global pool after 
11   500 milliseconds, where they wait for another 
12   max-idle-time milliseconds. [Sebastian Wilhelmi]
13
14 * Fix a memory allocation problem in GKeyFile. [Morten 
15   Welinder]
16
17
18 Overview of Changes from GLib 2.9.2 to GLib 2.9.3
19 =================================================
20
21 * GTree:
22  - Replace the simple recursive implementation by
23    a nonrecursive, threaded one  [Maurizio Monge]
24
25 * Change g_filename_display_name and
26   g_filename_display_basename to use the Unicode
27   replacement character U+FFFD instead of a question
28   mark, and don't append "(invalid encoding)"  [Matthias]
29
30 * Documentation improvements [Sven Herzberg, Federico
31   Mena Quintero, Stefan Kost]
32
33 * Bugs fixed:
34  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X 
35         [Bogdan Nicula]
36  326558 Some test failures on IRIX 6.5 [Daichi Kawahata]
37  169285 "threaded" tree implementation for GTree 
38         [Maurizio Monge]
39  326747 g_filename_display_basename adds (invalid encoding) 
40         [Alberto Ruiz]
41
42 Other contributors: Christian Kellner, Murray Cumming
43
44 New and updated translations (bg,ca,de,es,et,gu,ja,nl,th,vi)
45
46
47 Overview of Changes from GLib 2.9.1 to GLib 2.9.2
48 =================================================
49
50 * Memory management:
51  - Add tests for cache colorization [Tim Janik]
52  - Minimize space consumption if small amounts of differently
53    sized slices are allocated, at a small performance cost.  [Tim]
54
55 * Thread support:
56  - Add g_atomic_pointer_set() and g_atomic_int_set() [Tim Janik,
57    Sebastian Wilhelmi]
58  - Add g_thread_pool_set_sort_function() to allow sorting the 
59    tasks of a threadpool.  [Martyn Russell]
60  - Add g_thread_pool_set_idle_time() to allow unused threads
61    to exit after a certain time.  [Martyn]
62
63 * Type system:
64  - introduce a new type GInitiallyUnowned, which has an initial
65    floating reference. [Tim]
66  - Add support for GType parameters. [Matthias]
67
68 * Main loop:
69  - Add g_main_context_is_owner() to determine if the current
70    thread is the owner of the context.  [Michael Meeks]
71
72 * Provide g_access(), g_chdir(), g_unlink(), g_rmdir() as 
73   wrapper functions instead of macros.  [Manish Singh]
74
75 * Documentation improvements [Tim, Matthias, Federico Mena Quintero,
76   Stefan Kasal, Dan Williams]
77
78 * New and updated translations (en_CA,fi,fr,gl,ml,nb,no,zh_HK,zh_TW)
79
80 * Bugs fixed:
81  324179 g_allocator_new() returns pointer to const dummy which Gtk+ 2.8 
82         tries to modify [J. Ali Harlow]
83  324332 g_option_context_parse() returns false without setting error 
84         [Tim-Philipp Müller]
85  324950 GLIB 2.9.1 testcase errors [Dan Yefimov]
86  325015 gslice.c: process.h is needed on Windows [Kazuki Iwamoto]
87  321978 G_DATALIST_GET_FLAGS() macro is not casting datalist to 
88         gpointer [Andrew Paprocki]
89  316221 G_LOCK warns about breaking strict-aliasing [Michal Benes, 
90         Stanislav Brabec]
91  325273 Error in documentation for glib_check_version () [Declan Naughton]
92  325310 g_spawn_sync hangs when catching both stdout and 
93         stderr [Tor Lillqvist]
94  325249 gcc warning when using g_rmdir from <glib/gstdio.h> [Jani Monoses]
95  325864 glib/gthreadpool.c:"#define debug(...)" is C99 [Kazuki Iwamoto]
96  325874 Should say somewhere that source IDs are > 0 [Dan Williams]
97  325438 a typo (compatability) [Stefan Kasal]
98  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X [Bogdan Nicula]
99
100
101 Overview of Changes from GLib 2.9.0 to GLib 2.9.1
102 =================================================
103
104 * Memory management
105  - The slice allocator is implemented [Tim Janik]
106  - g_slice_free_chain() has been renamed to 
107    g_slice_free_chain_with_offset()  [Tim, Behdad Esfahbod]
108  - Mem chunks are deprecated [Matthias Clasen]
109
110 * Data structures
111  - Hash tables are refcounted, and have a boxed type [Tim]
112
113 * Thread support
114  - Support for Solaris threads has been removed 
115    [Sebastian Wilhelmi, Andrew Paprocki]
116  - g_async_queue_sort(), g_async_queue_push_sorted() have 
117    been added to allow GAsyncQueue to be used as a priority 
118    queue, together with the corresponding _unlocked 
119    variants  [Martyn Russell]
120
121 * GObject:
122  - The concept of a floating initial reference has been
123    moved from GtkObject to GObject [Tim]
124
125 * Win32 changes:
126  - Make g_rename() replace existing files [Tor Lillqvist]
127
128 * Misc new API:
129  - G_GUINT64_CONSTANT macro to define guint64 
130    constants [Andrew Paprocki]
131  - G_GNUC_WARN_UNUSED_RESULT macro to instruct the 
132    compiler to emit a warning if the value returned
133    by a function is ignored. [Arjan van de Ven, Alex Larsson]
134  - GList and GSList now have sort functions which take an
135    extra user data argument [Martyn Russell]
136  - g_param_spec_ref_sink() has been added for consistency [Tim]
137
138 * $LOGNAME is respected when determining user data. [Laszlo Peter]
139
140 * Other changes and bug fixes [Tim, Matthias, Behdad, 
141   Christian Persch, Benedikt Meurer, Andrew Paprocki, 
142   Kazuki Iwamoto, Alexis S. L. Carvalho, Stanislav Brabec,
143   Andreas Schwab, Kalle Vahlman]
144
145 * Documentation
146  - Deprecation warnings carry version information [Matthias]
147  - The slice allocator has been documented [Matthias, Tim]
148  - Other improvements [Morten Welinder]
149
150 Overview of Changes from GLib 2.8.x to GLib 2.9.0
151 =================================================
152 * Unicode support:
153  - The Unicode tables have been updated to Unicode 4.1, 
154    adding several new values to the GUnicodeBreakType 
155    enumeration. This breaks Pango <= 1.10 
156    [Behdad Esfahbod]
157  - The various Unicode character predicate functions 
158    (g_unichar_isalpha, g_unichar_isdigit,...) have
159    been optimized
160    [Behdad]
161  - g_utf8_pointer_to_offset, g_utf8_offset_to_pointer:
162    These functions handle negative offsets now, and
163    going backwards in g_utf8_offset_to_pointer uses
164    "stutter stepping".
165    [Larry Ewing, Matthias Clasen]
166
167 * Memory management:
168  - Mem chunks are no longer used internally in GLib and
169    GObject. GMemChunk will be deprecated in GLib 2.10
170  - All APIs based on GAllocator (g_list_push/pop_allocator,
171    and similar push/pop_allocator functions for other
172    data structures) have been deprecated, since they
173    never worked as intended.
174  - The g_slice_* functions have been added as a 
175    new API for fast allocation of small memory blocks. 
176    The implementation in GLib 2.9.0 is just a simple 
177    wrapper around malloc. GLib 2.10 will have an
178    efficient and scalable implementation. 
179    [Tim Janik, Matthias]
180
181 * Pattern matching:
182  - g_pattern_match has been optimized to avoid
183    unnecessary recursion.
184    [Tim, Matthias]
185
186 * g_intern_string, g_intern_static_string: 
187  - New functions to intern strings. These are now used 
188    by GObject to avoid duplicating static strings 
189    [Matthias]
190
191 * g_thread_foreach: 
192  - New function to iterate over all GThreads 
193    [Tim, Matthias]
194
195 * g_date_set_time_t, g_date_set_time_val:
196  - New functions to set a GDate from a time_t or
197    GTimeVal value. g_date_set_time has been deprecated 
198    in favor of these.
199    [Roger Leigh]
200
201 * g_snprintf and g_vsnprintf:
202  - These functions are no longer declared in gprintf.h, 
203    since they are in glib.h
204    [Matthias]
205
206 Overview of Changes from GLib 2.8.0 to GLib 2.8.1
207 =================================================
208 * Optimize single-character insertions in GString [Ross Burton]
209 * Fix build problems on OS X
210 * Fix build problems on Win32 [Tor Lillqvist, Hans Breuer]
211 * Other bug fixes [Matthew F. Barnes, Stepan Kasal] 
212 * Documentation improvements [Tristan van Berkom, Behnam
213   Esfahbod, Gustavo Carneiro, Stepan Kasal, Matthias]
214 * New and updated translations (ca,cy,ko,ro,uk)
215
216 Overview of Changes from GLib 2.7.7 to GLib 2.8.0
217 =================================================
218 * Make g_value_transform() handle enum values
219   correctly on ppc64.  [Michael Lorenz]
220   (Third-party code accessing enumeration values 
221   in GValues should also be changed to access 
222   v_long, not v_int, in order to work on bigendian 
223   64bit machines.)
224 * Make g_flags_get_first_value() handle a value
225   of 0 meaningfully. [Tim-Philipp Müller] 
226
227 Overview of Changes from GLib 2.7.6 to GLib 2.7.7
228 =================================================
229 * Make atomic operations on s390 work [Matthias]
230 * Fix C++ guards in gstdio.h [Tor Lillqvist]
231
232 Overview of Changes from GLib 2.7.5 to GLib 2.7.6
233 =================================================
234 * Add native implementations of atomic operations 
235   on s390 [Matthias]
236 * Make atomic reference counting of closures
237   work on s390 [Matthias]
238 * Avoid an infinite loop in g_convert_with_iconv().
239   [Sebastian Bacher]
240 * Documentation improvements [Ross Burton]
241
242 Overview of Changes from GLib 2.7.4 to GLib 2.7.5
243 =================================================
244 * Thread-related changes
245  - Fix build issues on HP-UX [Paul Cornett]
246  - Threadsafe access to flags stored in datasets [Tim Janik]
247  - Fix several issues with atomic refcounting for 
248    closures, objects and paramspecs [Tim]
249  - Improve tests for atomic refcounting changes [Tim]
250 * Fix handling of stateful encodings in g_convert_* [Matthias]
251 * Fix translation of GOption help output [Dan Winship]
252 * Catch format errors in translations. This may cause 
253   "make check" to fail when using older versions
254   of gettext [Matthias]
255 * Win32 bug fixes [Tor Lillqvist]
256 * Documentation improvements [Ross Burton, Jochen Baier, 
257   Matthias, Tim]
258 * New and updated translations (de,fi,gu,pl,pt,tr,zh_TW)
259
260 Overview of Changes from GLib 2.7.3 to GLib 2.7.4
261 =================================================
262 * Fix g_atomic_pointer_compare_and_exchange 
263   on Sparc64 [Gert Doering]
264 * Fix a hang in g_thread_pool_free. [Hong Jen Yee]
265 * Win32 bug fixes [Tor Lillquist]
266 * Other bug fixes [Benoit Dejean, Manish Singh]
267 * Documentation improvements [Bryan Silverthorn,
268   Callum McKenzie] 
269 * New and updated translations (de,lt,sq,zh_CN)
270
271 Overview of Changes from GLib 2.7.2 to GLib 2.7.3
272 =================================================
273 * GOption
274  - Allow callbacks with optional arguments [Pawel Sliwowski]
275  - Allow to turn off the automatic long option name
276    disambiguation  [Adam McLaurin]
277  - Only allow printable ASCII as short option names [Matthias]
278 * Win32
279  - Build fixes [Tor Lillqvist]
280  - Rewrite iochannel socket implementation [Tor]
281 * GObject
282  - Threadsafety improvements; in particular, refcounting
283    of objects is done atomically now. [Wim Taymans, Tim Janik]
284 * Bug fixes [Morten Welinder, Matthias, Wim Taymans]
285 * Documentation improvements [Richard Laager, Matthias]
286 * New and improved translations (bf,cs,hu,nb,nl,no)
287
288 Overview of Changes from GLib 2.7.1 to GLib 2.7.2
289 =================================================
290 * Win32 build fixes [Hans Breuer]
291 * Bug fixes [Mikael Magnusson]
292 * Documentation improvements [Matthias Clasen]
293 * New and updated translations (en_CA,es,et,ja,sr,sr@Latn,zh_TW)
294
295 Overview of Changes from GLib 2.7.0 to GLib 2.7.1
296 =================================================
297 * GOption 
298  - Allow callback arguments without parameters [Dan Winship]
299 * GMappedFile: an mmap wrapper [David Schleef, Behdad Esfahbod]
300 * Misc new functions:
301  - g_get_host_name [Tor Lillqvist]
302  - g_mkdir_with_parents [Tor]
303  - g_build_pathv, g_build_filenamev [Todd A. Fisher, 
304    Matthias Clasen]
305 * Bug fixes [Roger Leigh, Masatake YAMATO, Kjartan Maraas,
306   Manish Singh, Tor, Murray Cumming, Kian Duffy, Morten Welinder]
307 * Documentation improvements [Hong Gang XU, Dan Winship, Matthias]
308 * New and updated translations (bg,cs,da,en_CA,es,et,nb,nl,no,
309   sk,th,zh_TW)
310
311 Overview of Changes from GLib 2.6.x to GLib 2.7.0
312 =================================================
313 * GKeyFile
314  - Add unit tests [Matthias Clasen, Suren A. Chilingaryan]
315  - Accept \r\n as line end [Bastian Nocera]
316  - Don't interpret leading zeros as octal numbers. [Matthias]
317  - Make key and group removal work [David Hoover, Matthias Hasselmann]
318 * GOption
319  - Improve formatting of --help output [Matthias, Noah Levitt]
320  - Accept -? [Matthias]
321  - Warn about duplicate main groups [Jeff Franks]
322  - Treat '-' as non-option argument [Tim Musson, Thomas Leonard]
323  - Report missing arguments as errors [Björn Lindqvist]
324  - Add a boxed type for GDate [Tim-Philipp Müller]
325 * GTree
326  - g_tree_remove() and g_tree_steal() return status information [Matthew F. Barnes]
327 * Stdio wrappers
328  - Work regardless of large file support [Manish Singh]
329  - Add g_access(), g_chmod(), g_creat(), g_chdir [Tor Lillqvist]
330 * GObject
331  - Implement "toggle references" to help language bindings [Owen Taylor]
332  - Allow to mark names, nicks and blurbs of pspecs as static [Ben Maurer, Matthias]
333  - Make pspec lookup a bit faster [Morten Welinder]
334 * Add g_listenv() to list all set environment variables [Hans Petter Jansson]
335 * Add g_file_set_contents() to atomically write a file.  [Søren Sandmann,
336   Sven Neumann, Manish, Alexis S. L. Carvalho]
337 * Add g_try_malloc(), g_try_new(), g_try_new0() and g_try_renew() [Stefan Kost]
338 * Add g_utf8_collate_key_for_filename() to sort filenames taking
339   extensions and numeric suffixes into account.  [Ole Laursen, Alex Larsson]
340 * Add G_GNUC_NULL_TERMINATED to mark varargs function with 
341   NULL-terminated argument lists. [Marc Meissner]
342 * Win32 changes
343  - Improved debugability [Ulf Lamping, Hans Breuer]
344  - Make filename handling more robust [Tor, Billy Skaggs]
345  - Improve g_get_system_data_dirs() [Tor]
346  - Use more precise timers [Tor]
347  - Build fixes [Kazuki Iwamoto, Hans, Tor, Robert Ögren]
348 * Other bug fixes [Roger Leigh, Owen, Matthias, Morten, Kjartan Maraas, 
349   Pawel Sakowski, Tor, Simon Budig, Ed Avis, Manish, Nicolas Laurent, 
350   Bastien, Fabrício Barros Cabral, Michael Banck, Daniel Atallah, 
351   J. Ali Harlow, Tim Janik, Hazael Maldonado Torres, Sven, Jon-Kare Hellan,
352   Dave Benson, Tommi Komulainen, Benjamin Otte, Brian Cameron, Changwoo Ryu, 
353   Christian Biere, Noah, Benoît Carpentier]
354 * Documentation improvements [Vincent Untz, Matthias, Tim-Philipp Müller,
355   Morten, Matthew, Federico Mena Quintero, Sebastian Bacher, Oliver Sessink, 
356   Stefan, Jared Lash, Tor, Owen, Daniel Vaillard, Mathieu Lacage]
357 * New and updated translations (ca,cs,da,el,en_CA,en_GB,es,et,eu,fa,fr,gl,
358   hu,id,it,lt,mn,ne,nl,pl,pt,pt_BR,ro,rw,sk,sq,sr,sr@Latn,tl,uk,xh,zh_CN)
359
360 Overview of Changes from GLib 2.6.0 to GLib 2.6.1
361 =================================================
362 * GOption
363  - Make gtk_init(NULL, NULL) work again [Marcin Krzyzanowski]
364  - Improve handling of -- [Matthias Clasen]
365  - Don't show G_OPTION_REMAINING in --help output [Matthew F. Barnes]
366 * g_find_program_in_path() doesn't return directories [Tommi Komulainen]
367 * Add gmodule-export-2.0.pc [Matthias]
368 * Win32 changes
369  - Improve hangling of UNC paths [Tor Lillqvist]
370  - g_getenv(), g_setenv(), g_unsetenv(), g_find_program_in_path()
371    take and return UTF-8 now [Tor] 
372  - Make g_file_test() work more reliably, and use PATHEXT
373    when check for executables [Tor]
374  - Build and cross-compilation fixes [J. Ali Harlow]
375 * Other bug fixes [Jens Hatlak, Morten Welinder, 
376   Tor, Kalpesh Shah, Adrian Bunk]
377 * Documentation improvements [Marcin Krzyzanowski, Tor, Crispin
378   Flowerday, Mariano Suárez-Alvarez, Christian Biere, Danny Milo,
379   Vincent Untz, Bastien Nocera]
380 * New and updated translations (cy,de,nl,ru,sq,sv)
381
382 Overview of Changes from GLib 2.4.x to GLib 2.6.0
383 =================================================
384
385 * Major new APIs
386   - GOption, a commandline option parser
387   - GKeyFile, a parser/editor for the .ini like files 
388   - Functions to support the XDG basedir specification
389   - Wrappers for common POSIX pathname functions to handle filename
390     encodings consistently. On Windows, these use UTF-8.
391
392 * Miscellaneous new functions
393   - g_filename_display_name() converts filenames in displayable UTF-8 strings
394   - g_uri_list_extract_uris() splits uri lists
395   - g_date_get_iso8601_week_of_year() gets ISO 8601 week numbers
396   - g_log_set_default_handler() installs an alternate default log handler
397   - g_get_language_names() obtains a list of applicable locale names
398   - g_strv_length() calculates the length of NULL-terminated string arrays
399   - g_win32_get_windows_version() determines the Windows version 
400   - G_GNUC_INTERNAL marks functions as non-exported
401   - glib_check_version() checks the GLib version at runtime
402   - g_debug() completes the family of logging functions
403
404 * Performance improvements
405   - Optimize g_utf8_validate()
406   - Optimize g_markup_parse_context_parse()
407   - Reduce signal connection complexity from O(n) to O(1) 
408   - Get rid of many PLT entries for internally used exported symbols
409   - Reduce code size by removing literal strings from g_return_if_fail()
410
411 * Other changes
412   - On Windows, GLib functions that take file name arguments now require
413     those to be in UTF-8. Functions that return file names return UTF-8.
414   - Use higher precision for mathematical constants
415   - Don't convert to/from UTF-8 in g_filename_to_uri/g_filename_from_uri
416   - Support ll as printf format modifier for long long on all platforms
417   - Clean up the ABI and enforce the list of exported symbols
418   - Add a .pc file for using gmodule in libraries
419   - Require ngettext
420
421 Overview of Changes from GLib 2.5.7 to GLib 2.6.0
422 =================================================
423 * GOption: Don't list help options if group-specific
424   options have been requested [Glynn Foster]
425 * Make g_get_language_names() track locale changes [Christian Persch]
426 * Win32 bug fixes [Tor Lillqvist]
427 * Bug fixes [Philippe Blain, Owen Taylor, Sebastian Wilhelmi]
428 * New and updated translations (da,es,ja,lt,zh_CN)
429 Bugs fixed: 159530,100697,160271,160645,157255
430
431 Overview of Changes from GLib 2.5.6 to GLib 2.5.7
432 =================================================
433 * Optimize g_utf8_validate() [Owen Taylor, Matthias Clasen]
434 * Optimize g_markup_parse_context_parse() [Havoc Pennington, 
435   Morten Welinder]
436 * Reduce signal connection complexity from O(n) to O(1) 
437   [Sven Neumann]
438 * Add a .pc file for using gmodule in libraries [Owen]
439 * Add G_GNUC_MALLOC to mark functions returning newly 
440   allocated memory  [Matthias]
441 * Win32 bug fixes [Hans Breuer, Tor Lillqvist, Robert Ögren,
442   Bruce Hochstetler]
443 * Bug fixes [Kazuki IWAMOTO, Matthias, Manish Singh, Morten,
444   Frederic Crozat, Tor]
445 * Documentation improvements [Matthias, Tor, Owen]
446 * New and updated translations (cs,da,de,en_CA,en_GB,es,nb,nl,sq,zh_CN)
447
448 Overview of Changes from GLib 2.5.5 to GLib 2.5.6
449 =================================================
450 * GOption
451   - Add G_OPTION_FLAG_REVERSE to allow options 
452     which unset a  boolean variable [Tor Lillqvist]
453 * GChildWatch
454   - Use sigaction instead of signal [Jonas Jonnson, 
455   Archana Shah]
456   - Make the very first SIGCHLD work [Gustavo Carneiro]
457 * Bug fixes [Morten Welinder, Tor, David MacLachlan,
458   Manish Singh, J. Ali Harlow]
459 * Documentation improvements [Matthias Clasen, Tor]
460 * Updated translations (da,ja,tr,zh_CN)
461
462 Overview of Changes from GLib 2.5.4 to GLib 2.5.5
463 =================================================
464 * GKeyFile
465   - Cleanups, add more error checking [Ray Strode]
466   - Fall back to the untranslated string when getting 
467     locale strings [Mark McLoughlin]
468 * GOption
469   - Document GOption [Matthias Clasen]
470   - Better support for rest arguments [Owen Taylor, Matthias]
471   - Handle conflicts between groups [Matthias]
472 * Add g_lstat() to the stdio wrappers [Tor Lillqvist]
473 * Add g_filename_display_name() to convert filenames
474   in displayable UTF-8 strings  [Alex Larsson, Matthias]
475 * Win32 bug fixes [Kazuki IWAMOTO, Hans Breuer, Tor]
476 * Bug fixes [Christophe Fergeau, Morten Welinder, 
477   Owen, Kjartan Maraas, Mark]
478 * Documentation improvements [Matthias, Tor]
479
480 Overview of Changes from GLib 2.5.3 to GLib 2.5.4
481 =================================================
482 Add GKeyFile, a parser/editor for the .ini like files used in various
483    freedesktop.org specifications. [Ray Strode]
484 Make the handling of filename encodings consistent across all
485    GLib functions, introduce wrappers for common POSIX 
486    functions which accept the same filename encoding. [Tor Lillqvist, 
487    Owen Taylor]
488 GOption
489  - Rename g_context_option_error_quark() to a more language-binding
490    friendly name [Murray Cumming]
491  - Accept backslashes in filenames on Win32 [Tor Lillqvist]
492 * Strip the internal aliasing prefix IA__ from function names in 
493   assertions [Matthias Clasen]
494 * Add a function to split uri lists. [Matthias]
495 * Win32 bug fixes 
496  - Don't open console windows [Tor]
497 * Other bug fixes [Philippe Blain, Robert Ögren, Hidetaka Iwai, Matthias,
498  Morten Welinder, Mats-Ola Persson, Tor, Nickolay V. Shmyrev, Kjartan Maraas,
499   Anders Carlsson, Tim-Philipp Müller, Lucas Rocha, Andrea Campi, Manish
500   Singh, Thomas Fitzsimmons, Kazuki IWAMOTO]
501 * Documentation improvements [Matthias, Linus Walleij, Nickolay, Philippe, 
502  Adam Hooper, Gustavo Carneiro]
503 * New and updated translations (cs,en_CA,en_GB,ja,nb,nl,or,sr,sr@Latn,sq)
504
505 Overview of Changes from GLib 2.5.2 to GLib 2.5.3
506 =================================================
507 * GOption
508  - set the program name from argv[0] [Masatake YAMATO] 
509  - make contexts work without a main group [Anders Carlsson]
510 * Performance 
511  - Get rid of many PLT entries for internally used exported symbols,
512    and clean up the ABI at the same time and make make check check the
513    list of exported symbols.  [Matthias Clasen]
514 * Add API to get ISO 8601 week numbers [Niklas Lundell]
515 * Add API to install an alternate default log handler [Darin Adler]
516 * Add API to obtain a list of applicable locale names [Hidetoshi Tajima]
517 * Reduce code size bloat by removing literal strings from
518  the g_return_if_fail() macros [Owen Taylor]
519 * Add g_strv_length [Tim-Philipp Müller]
520 * Win32 changes
521  - Add API to determine the Windows version [Tor Lillqvist]
522 * Other bug fixes [Stepan Kasal, Anders, Tor, Kazuki Iwamoto,
523   Manish Singh]
524 * Documentation improvements [Morten Welinder, Matthias]
525 * New and updated translations (es,nn,ro)
526
527 Overview of Changes from GLib 2.5.1 to GLib 2.5.2
528 =================================================
529 * Add G_GNUC_INTERNAL macro [Arjan van de Ven]
530 * Add GOption, a commandline option parser [Anders Carlsson]
531 * Add glib_check_version [Michael Natterer]
532 * Add XDG basedir API [Ray Strode]
533 * Require ngettext [Danilo Segan]
534 * Bug fixes [Manish Singh, Ray Strode, Vincent Noel, 
535   Jon-Kare Hellan, Jody Goldberg]
536 * Win32 bug fixes [Tor Lillqvist, Hans Breuer, Peter Zelezny]
537 * Documentation improvements [Matthias Clasen, Vincent Untz, Christian Persch]
538 * New and updated translations (bs,eu,fi,gu,ne,pa)
539
540 Overview of Changes from GLib 2.5.0 to GLib 2.5.1
541 =================================================
542
543 * Bug fixes [Oliver Guntermann, Sven Neumann, James 
544   Henstridge, Hiroyuki Ikezoe, Matthias Clasen, Robert 
545   Ögren, Tommi Komulainen]
546 * Documentation improvements [Soeren Sandmann, 
547   Christophe Fergeau, Danek Duvall]
548 * New and updated translations (eu,hi)
549   
550 Overview of Changes from GLib 2.4.1 to GLib 2.5.0
551 =================================================
552
553 * New functions g_debug [Sven Herzberg]
554 * Use higher precision for mathematical constants [Morten 
555  Welinder]
556 * Don't convert to/from UTF-8 in g_filename_{to,from}_uri 
557  [Federico Mena Quintero]
558 * Win32
559  - Handle empty digit string in printf() functions 
560    correctly [Tor Lillqvist]
561  - Support ll as format modifier for long long [Tor]
562  - Be more careful about HOME [Tor, Ivan Wong]
563  - Bug fixes [John Ehresman]
564 * Miscellaneous bug and portability fixes [Danilo Segan, 
565  Owen Taylor, Nikolai Weibull, Benoît Carpentier, Morten 
566  Welinder, Manish Singh, Sven Neumann, Julio M. Merino Vidal,
567  Kaz Sasayama, Murray Cumming, Federico, Mariano Suarez-Alvarez]
568 * Documentation updates [Matthias Clasen, Crispin Flowerday,
569  Tommi Komulainen, Federico Mena Quintero, Ed Griffiths]
570 * New and updated translations (ja,ne,no,wa)
571  
572 Overview of Changes from GLib 2.4.0 to GLib 2.4.1
573 =================================================
574
575 * Win32 bug fixes [Tor Lillqvist, Roger Leigh, John Ehresman]
576 * Miscellaneous bug and portability fixes [Owen Taylor,
577   Matthias Clasen, Jonas Jonsson, Christian Krause,
578   Nickolay V. Shmyrev, Christophe Saout, Philippe Blain,
579   Piotr Klaban]
580 * Documentation updates [Matthias]
581 * New and updated translations (ca,cs,cy,el,en_CA,en_GB,es,eu,fi,
582   fr,gu,he,id,nl,pt,pl,ru,sr,sr@ije,sr@Latn,sv,uk)
583
584 Overview of Changes from GLib 2.3.6 to GLib 2.4.0
585 =================================================
586
587 * Handle invalid-UTF-8 in g_log() properly [Matthias Clasen]
588 * Win32 bug fixes [Tor Lillqvist, Bruce Hochstetler]
589 * Miscellaneous bug and portability fixes [Olivier Biot, David L. Cooper II, 
590   Kjartan Maraas, Frédéric L. W. Meunier, Christof Petig, Manish Singh, 
591   Sebastian Wilhelmi]
592 * Documentation updates [Owen]
593 * Updated translations (hr,ro)
594
595 Overview of Changes from GLib 2.3.5 to GLib 2.3.6
596 =================================================
597
598 * GAtomic bug fixes [Sebastian Wilhelmi, Mark McLoughlin]
599 * GMain threading fixes and improvements [Sebastian]
600 * Win32 [Tor Lillqvist]
601  - restore some symbols extraneously exported from gobject to maintain ABI compatibility
602  - Misc build improvements and fixes [Tor, Cedric Gustin, Hans Breuer]
603 * Documentation updates [Sebastian, Takeshi AIHANA, Matthias, Sven Herzberg]
604 * New and updated translations (be,es,fi,ga,pa,sr@ije,zh_CN)
605
606 Overview of Changes from GLib 2.3.3 to GLib 2.3.5
607 =================================================
608
609 * Make glib-mkenums parse initializers with macros. [Matthias Clasen, muppet]
610 * Respect locale era in g_date_set_parse(). [Theppitak Karoonboonyanan] 
611 * Add atomic operations and use it for the async queue and
612   gonce implementation. [Sebastian Wilhelmi]
613 * Documentation improvements [Sebastian, Matthias, Sven Herzberg]
614 * Add g_main_depth() for finding the recursion depth of the main
615   loop [Owen Taylor, Tim Janik, Stefan Westerfeld]
616 * Add g_spawn_close_pid(), needed on win32 [J. Ali]
617 * Win32 fixes. [Hans Breuer, J. Ali Harlow]
618 * Misc bugfixes [Sebastian, Matthias, Balazs Scheidler, Owen]
619 * Updated translations (cy,et,ga,sq)
620
621 Overview of Changes from GLib 2.3.2 to GLib 2.3.3
622 =================================================
623
624 * Add a native AIX gmodule implementation. [Laurent Vivier]
625 * Add g_node_copy_deep().  [James M. Cape, Matthias Clasen]
626 * Extend GQueue API to match the GList API. [Soeren Sandmann]
627 * Add g_hash_table_find().  [Tim Janik]
628 * Add a G_MODULE_BIND_LOCAL flag. [David Schleef]
629 * Inline g_string_append_c() when possible. [Owen Taylor, Tim]
630 * Wrap waitpid() as a GSource. [Jonathan R. Blandford]
631 * Add g_completion_complete_utf8(). [Theppitak Karoonboonyanan, 
632   Matthias]
633 * Add g_strsplit_set(). [Soeren]
634 * Documentation improvements. [Vincent Untz, Sebastian Wilhelmi, 
635   Soeren, Matthias]
636 * Win32 build fixes. [Tor Lillqvist]
637 * Misc bugfixes [Manish Singh, Noah Levitt, Simon Josefsson, 
638   Morten Welinder, Damien Carbery, Julio M. Merino Vidal, Sebastian, 
639   Matthias]
640 * Updated translations (nn,cs,it,ko,sq,ms,az,hr,uk,sr,sr@Latn,sq,ta)
641
642 Overview of Changes from GLib 2.3.1 to GLib 2.3.2
643 =================================================
644
645 * Add G_MAXSIZE. [Manish Singh]
646 * Add g_rand_new_with_seed_array(), g_rand_set_seed_array(),
647   implementing the init-by-array functionality of the 
648   original mersenne twister. Add g_rand_copy(). Improve seeding. 
649   [George Lebl]
650 * Add a lowercase_name option to glib-mkenums. [Murray Cumming]
651 * Add g_ptr_array_foreach(). [Matthias Clasen]
652 * Add g_timer_continue(). [Tim-Philipp Müller]
653 * Fix a threadsafety issue in mem chunks. [Matthias, Balazs Scheidler]
654 * Fix g_filename_{to,from}_utf8() on Win32 and improve 
655   g_file_test() there too [Hans Breuer] 
656 * Add a boxed type for NULL-terminated string arrays.  [Matthias]
657 * Add G_DEFINE_TYPE() plus variants to ease the constuction
658   of GObject boilerplate code.  [Tim Janik]
659 * Support & in password GECOS field [Matthias, Soeren Boll Overgaard]
660 * Documentation improvements [Matthias, Manish]
661 * Win32 build fixes [Hans]
662 * Misc bug fixes [Damien Carbery, Matthias, Manish, Olivier Poncet, 
663   Zack Rusin]
664 * Updated translations (ar,de,fa,ga,mn,nn,no,sq)
665
666 Overview of Changes from GLib 2.3.0 to GLib-2.3.1
667 =================================================
668
669 * Add glib/gi18n.h and glib/gi18n-lib.h for common
670   gettext support, including a Q_() macro for translation
671   with context [Matthias Clasen]
672 * Add a more flexible G_FILENAME_ENCODING variable
673   as a replacement for G_BROKEN_FILENAMES [Matthias]
674 * Fix the return value g_main_context_iterate() for
675   newly ready sources [Padraig O'Briain]
676 * Handle Hangul composition for normalization [Noah Levitt]
677 * Add G_{MIN,MAX,MAXU}INT{8,16,32}. [Mark Jones, Matthias]
678 * Add G_GSIZE_FORMAT/G_SSIZE_FORMAT [Manish Singh]
679 * Add G_STRFUNC as a portable wrapper for __func__ [Tim Janik]
680 * Documentation improvements [Matthias]
681 * GObject [Tim Janik]
682  - Support '-' in g_signal_connect()/disconnect() names
683    like 'swapped-signal'.
684  - Add g_type_class_peek_static() and use to optimize
685    g_object_new() for static types [Tim]
686  - Allow setting construct-only properties from within
687    init() implementations
688  - Enforce readability/writeability in g_object_set/get()
689 * Fix bug with g_ascii_strtod and multi-byte separator.
690   [Behdad Esfahbod, Roozbeh Pournader]  
691 * Misc bug fixes [Matthias, John Ehresman, Andrew Lanoix,
692   Tor Lillqvist, Mark McLoughlin, Tim-Philipp Müller, Manish, 
693   Morten Welinder]
694 * Updated translations (ca,cs,da,es,fr,ja,nn,no,pt,ru)
695
696 Overview of Changes from GLib 2.2.x to GLib-2.3.0
697 =================================================
698
699 * Replace Trio printf by gnulib vasnprintf [Matthias Clasen]
700 * Update Unicode data to Unicode 4.0 [Noah Levitt]
701 * Support XML-safe formatted output with 
702   g_markup_[v]printf_escaped [Owen Taylor]
703 * Add g_file_read_link to read symbolic links [Matthias]
704 * Add g_unichar_get_mirror_char to obtain the 
705   mirrored variant of a character [Noah]
706 * Support for one-time initialization functions. 
707   [Sebastian Wilhelmi]
708 * Miscellaneous API additions: g_vasprintf
709   g_string_chunk_insert_len, g_setenv, g_unsetenv [Matthias]
710 * Docs improvements [Matthias]
711 * Add support instance-private data on classed types
712   [Mark McLoughlin, Tim Janik, Owen]
713 * Optimize signal emissions [Soeren Sandmann, Tim]
714 * Support a "default vtable" per interface [Tim]
715 * Add support for properties on interfaces [Owen, Tim]
716 * Miscellaneous API additions: g_value_take_string(),
717   g_value_take_param(), g_value_take_object(), 
718   g_value_take_boxed(). [Matthias]
719 * Win32 build fixes [Tor Lillqvist]
720
721 Overview of Changes from GLib 2.1.5 to GLib-2.2.0
722 =================================================
723
724 * Fix a problem with g_thread_init() on 64-bit problems
725   [Alceste Scalas, Sebastian Wilhelmi]
726 * Add assembly implementations of byteswap macros
727   for ia64 and x86_64. [Manish Singh]
728 * IOChannel fixes for Win32 [Tor Lillqvist, Thorsten Maerz]
729 * Updated translations (bg,ca,es,da,fi,lv,ru,sk)
730
731 Overview of Changes from GLib 2.1.4 to GLib-2.1.5
732 =================================================
733
734 * Win32 bug fixes [Tor Lillqvist]
735 * Various post-rewrite fixes for glib-gettext.m4 [Owen Taylor,
736   Jody Goldberg, Kjartan Maraas, Johannes Stezenbach]
737 * Ensure we have a GUINT64_FORMAT by pulling in Trio
738   if necessary [Manish Singh]
739 * Further Trio build fixes [Matthias Clasen, Owen]
740 * Hack around gcc, libtool issues with -pthread [Owen]
741 * Docs improvements [Matthias]
742 * Bug and portability fixes 
743 * Updated and new translations (bg,de,fi,fr,sq,fr)
744
745 Other contributors: Kai Poitschke, Morten Welinder
746
747 Overview of Changes from GLib 2.1.3 to GLib-2.1.4
748 =================================================
749
750 * autoconf changes to make it possible to cross compile
751   GLib. [Owen Taylor, Dan Kegel, Amy Lin, Dimi Shahbaz, 
752   Johannes Stezenbach]
753 * Use libintl when it has bind_textdomain_codeset() and
754   GLib doesn't. [Owen]
755 * Improve generation of pseudo-random integers [Morten Welinder, 
756   Sebastian Wilhelmi]
757 * Avoid literal UTF-8 in favor of octal escapes [Owen, Tomas Ogren]
758 * Cleanup include order [Sven Neumann]
759 * autoconf cleanups and bug fixes [Daniel, Matthias Clasen, Owen]
760 * Doc fixes and additions [Matthias]
761
762 Other contributors: James M. Cape, Frederic Crozat, Martin Gansser,
763   Phuc LeHong, Manish Singh, Joshua Weage, Morten Welinder
764
765 Overview of Changes from GLib 2.0.x to GLib-2.1.x
766 =================================================
767
768 * Add copy of the Trio library to build and use for printf() when 
769   system printf isn't good enough. Add g_printf()/etc. [Matthias Clasen]
770 * Add g_str_has_suffix()/g_str_has_prefix() [Alex Larsson]
771 * Add g_markup_parse_context_get_element() [Matthias]
772 * Add g_utf8_strreverse [Matthias]
773 * Add g_ascii_strtoull() [Tim Janik]
774 * Support scanning of 64-bit values with GScanner [Tim]
775 * Add g_set/get_application_name() [Havoc Pennington]
776 * Add G_LIKELY()/G_UNLIKELY() macros for hinting branch probabilities. 
777   Use for g_return_if_fail(). [Matthias Clasen]
778 * Add G_GNUC_DEPRECATED macro [Tom Tromey]
779 * Improve the seeding algorithm of GRandom to avoid problems
780   with certain pathological seeds. Support G_RANDOM_VERSION=2.0
781   environment variable. [Sebastian Wilhelmi]
782 * Improve thread configure checks, use -pthread where applicable
783   [Sebastian]
784 * Improve handlng of thread priorities [Sebastian]
785 * Fix up parameter names that might shadow functions from
786   system headers [Soeren Sandmann]
787 * Clean up usage of deprecated functions [Manish Singh]
788 * Docs fixes and improvements. In particular, include "Since" information.
789   [Matthias, Soeren, Martin Schulze, Daryll Strauss, Bill Janssen, 
790   Owen Taylor, Morten Welinder]. 
791
792 Overview of Changes in GLib 2.0.7
793 =================================
794
795 * Fix C++ warnings in gtype.h [Dom Lachowicz]
796 * Fix g_type_fundamental_next() [Tim Janik]
797 * Fix various missing includes of config.h [Morten Welinder]
798 * Handle main loop initialization before g_thread_init [Sebastian Wilhelmi]
799 * Various 64-bit fixes [Manish Singh]
800 * Fix GPoll on Win32 [Tor Lillqvist, Herman Bloggs]
801 * Fix bug with buffering on UTF-8 IOChannels [Daniel Elstner]
802 * Misc bug and build fixes [Soren Andersen, Gustavo Carneiro, Tor,
803      Tim, Havoc Pennington,  Matthias Clasen, Sebastian Rittau,
804      Masahiro Sakai, Arvind Samptur, HideToshi Tajima, Owen Taylor]
805 * Updated and new translations (be,cs,de,*fa,it,lv,pt_BR,tr)
806
807 Overview of Changes in GLib 2.0.6
808 =================================
809
810 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
811 * Clean up debug spew from GObject [Anders Carlsson]
812 * Compiler warning fixes [David L. Cooper II]
813 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
814 * Fixes for --disable-debug [Sebastian Wilhelmi]
815 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
816   Rajkumar Sivasamy, Laurent Vivier]
817 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
818   Sebastian Rittau, Linus Welleij]
819 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
820 * Updated translations (bg,ko,vi)
821
822 Overview of Changes in GLib 2.0.5
823 =================================
824
825 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
826 * Clean up debug spew from GObject [Anders Carlsson]
827 * Compiler warning fixes [David L. Cooper II]
828 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
829 * Fixes for --disable-debug [Sebastian Wilhelmi]
830 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
831   Rajkumar Sivasamy, Laurent Vivier]
832 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
833   Sebastian Rittau, Linus Welleij]
834 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
835 * Updated translations (bg,ko,vi)
836
837 Overview of Changes in GLib 2.0.4
838 =================================
839
840 * Fix some 64-bit problems. (George Lebl, David L. Cooper II)
841 * Add note about Tru64 iconv to INSTALL. (Manuel Op de Coul)
842 * Fix problem with timouts > MAXINT. (Tim Janik, Owen Taylor)
843 * Updated translations (ca,es,fr,ja,gl,ms,nl,pl,pt,ru)
844
845 Overview of Changes in GLib 2.0.3
846 =================================
847
848 * Handle sorting 0-length arrays (Ron Arts)
849 * Threading fixes (Sebastian Wilhelmi)
850 * Portability fixes (Miroslaw Dobrzanski-Neumann, Jacob Berkman, Gareth Pierce, 
851   Sebastian, Qingjiang Yuan)
852 * Various fixes for glib-2.0.m4. (Jim Gettys, others.)
853 * Locate right glib-genmarshal when cross-compiling. (Mitch Natterer)
854 * Win32 fixes (Tor Lillqvist)
855 * Try to fix g_get_charset() related segfaults. (Owen)
856 * Fixes for gettext detection. (Dan Winship, HideToshi Tajima, Boyd Lynn Gerber,
857   Andrew P. Lentvorski, Jr.)
858 * Fix g_scanner_unexp_token() (Tim Janik, Sven Neumann)
859 * g_markup fixes. (Matthias Clasen.)
860 * Bug fixes and cleanups (Daniel Elstner, Matthias, Laszlo Peter, Morten Welinder,
861   Wayne Schuller)
862
863 Overview of Changes in GLib 2.0.1
864 =================================
865
866 * Portability fixes for Sun's Forte compiler [Erwann Chenede]
867 * Performance improvements for GObject parameter lookup, 
868   g_filename_to/from_utf8() [Alex Larsson]
869 * Actually check interface prerequisites [Matthias Clasen,
870   Miroslaw Dobrzanski-Neumann]
871 * Fix problem with glib-mkenums taking huge amounts of stack. [Owen Taylor]
872 * Fix g_signal_handlers_disconnect_by_func() for C++ [Damien Sandras]
873 * Fixes for g_log() and threading.
874   [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, Tim Janik]
875 * Make g_print(), g_printerr(), g_warning(), etc, convert from
876   UTF-8 to the encoding of the locale [Sebastian Wilhelmi, Tim]
877 * Fixes for GIOChannel on windows. [Tor Lillqvist]
878 * Fix gsize/gint mismatches in giochannel.c [Miroslaw Dobrzanski-Neumann]
879 * Fix file descriptor leak in g_file_get_contents() [Matthias]
880 * Workaround iconv() problems on older Solaris [Lauri Alanko]
881 * Fix warnings with gcc-3.1 about asm const [Cody Russel]
882 * Minor bug fixes.
883
884 Other contributors: Hans Breuer, LEE Sau Dan, Sven Neumann, Salmaso Raffaele,
885   Akira Tagoh, Morten Welinder
886
887
888 Overview of Changes in GLib 2.0.0
889 =================================
890
891 * Thread portability fixes [Sebastian Wilhelmi]
892 * Documentation updates [Owen Taylor]
893 * Make g_strerror(), g_strsignal() properly return UTF-8,
894   call bind_text_domain_codeset() so that error strings
895   are in UTF-8 as well. [Owen, Tor Lillqvist]
896
897 Overview of Changes in GLib 2.0.0 rc1:
898 ======================================
899
900 * Win32 fixes [Tor Lillqvist]
901 * Portability fixes [Finlay Dobbie, Miroslaw Dobrzanski-Neumann]
902 * Fix up g_date_strftime [Daniel Elstner]
903 * Add some structure padding [Tim Janik]
904 * Make g_get_homedir() prefer the users home directory to $HOME
905
906 Other contributors: Matthias Clasen, Paolo Maggi, Christian Rose
907
908 Overview of Changes in GLib 1.3.15:
909 ===================================
910
911 * Speed up marshalers by using private access to GValue 
912   [Anders Carlsson, Tim Janik]
913 * Reduce GValue to 2 elements [Tim]
914 * Add G_DEBUG environment variable, G_DEBUG=fatal_warnings [Matthias Clasen]
915 * Fixes for AIX compilation [Miroslaw Dobrzanski-Neumann]
916 * Add padding to various structures [Owen Taylor, Tim]
917 * Win32 fixes [Tor Lillqvist]
918
919 Other contributors: James Henstridge, Ryan Lovett, Morten Welinder,
920   Daniel Elstner
921
922 Overview of Changes in GLib 1.3.14:
923 ===================================
924
925 * Register value transformations for gint64, guint64 [Andy Wingo]
926 * Build with large-file support [Sven Neumann, Owen Taylor]
927 * Fix handling of hostnames in URI's [Darin Adler]
928 * Main loop bug fixes [Havoc Pennington, Owen]
929 * Doc fixes and improvements [Manish Singh, Tim Janik]
930 * Support ' as attribute delimiters in GMarkup [Matthias Clasen]
931 * Win32 fixes [Hans Breuer, Tor Lillqvist]
932 * Threading bug and build fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann]
933 * Miscellaneous bug fixes
934
935 Other contributors: Matthias Clasen, James Henstridge, Mitch Natterer, 
936   Morten Welinder.
937
938 Overview of Changes in GLib 1.3.13:
939 ===================================
940
941 * Fix g_filename_to/from_uri for Win32 [Tor Lillqvist, Darin Adler]
942 * Miscellaneous win32 fixes [Tor, Hans Breuer]
943 * Fix thread options for gcc on AIX [Jerome Zago, Sebastian Wilhelmi]
944 * Documentation improvements [Ron Steinke, Matthias, Sebastian]
945 * Cache iconv converters as used by g_convert() [Jeffrey Stedfast]
946 * Bug fixes [Sven Neumann, Owen Taylor, Matthias Clasen, Jeffrey,
947   Laszlo Peter, Havoc Pennington, Tim Janik]
948
949 Overview of Changes in GLib 1.3.12:
950 ===================================
951
952 * Implement closure chaining, fixing up API (Tim Janik)
953 * Closure chaining test case (James Henstridge)
954 * Make GType long not int where both are equal width (Tim)
955 * Win32 fixes and improvements (Hans Breuer, Tor Lillqvist)
956 * Fixes for NetBSD. (Dan Winship)
957 * Use snprintf() for g_printf_string_upper_bound() where possible. (Matthias Clasen)
958 * Save space for GBSearchArray (Tim Janik)
959 * Documentation improvements. (Matthias, Sven Neumann, Havoc Pennington)
960
961 Other contributors: Darin Adler, Chris Blizzard, Anders Carlson, Daniel Elstner, Michael Meeks, 
962   Mark McLoughlin, Dave Neary, Manish Singh, Owen Taylor, HideToshi Tajima, 
963   Sebastian Wilhelmi.
964
965
966 Overview of Changes in GLib 1.3.11:
967 ===================================
968
969 * Win32 fixes [Hans Breuer, Tor Lillqvist]
970 * Documentation improvements [Matthias Clasen]
971 * Portable directory handling API [Hans]
972 * Threading fixes [Sebastian Wilhelmi, Havoc Pennington]
973 * Fix excess relocations in Unicode tables [Andrew Taylor]
974 * Fix gpattern for UTF-8 [Matthias Clasen]
975 * Support overriding class closures [Tim Janik]
976 * Support for derivation from G_TYPE_POINTER [Owen Taylor]
977 * Hide pointers to type information inside GType to reduce locking
978   [Alex Larsson, Tim]
979 * Adds check for direct inclusion of gobject/*.h [Owen]
980 * GObject API cleanups [Tim]
981
982 Other contributors: Darin Adler, Jacob Berkman, Daniel Egger, Eric Lemings, 
983   Michael Meeks, Mark McLoughlin, Arkadiusz Miskiewicz, Dan Winship
984
985
986 Overview of Changes in GLib 1.3.10:
987 ===================================
988
989 * Many Win32 fixes and improvements [Tor Lillqvist]
990 * Documentation improvements [Matthias Clasen]
991 * g_string_printfa() renamed to g_string_append_printf()
992 * Use libcharset from libiconv to implement charset detection
993   more portably. [Owen Taylor, Hidetoshi Tajima]
994 * Add 64 bit type support to GObject [Joshua Pritikin, Mathieu Lacage, Owen]
995 * Make support for 64 bit integers a requirement [Joshua]
996 * GPattern improvements [Tim Janik, Matthias]
997 * Locale independent g_ascii_strtod / g_ascii_dtostr [Alex Larsson]
998 * Many bug fixes and minor tweaks.
999
1000 Other Contributors: Darin Adler, Jakub Jelinek, James Antill, Andrew Taylor,
1001   Ben Gertzfield, Elliot Lee, Manish Singh, Abel Cheung, Laszlo Peter,
1002   Sven Neumann, George Lebl, Raja Harinath, Sebastian Wilhelmi,
1003   Jacob Berkman
1004
1005
1006 Overview of Changes in GLib 1.3.9:
1007 ==================================
1008
1009 * Fixes for comparison of threads [Sebastian Wilhelmi]
1010 * Use vasprintf() when possible for g_strdup_printf [Matthias Clasen]
1011 * Win32 fixes [Tor Lillqvist, Hans Breuer]
1012 * Add a len argument to g_ascii_strup/strdown
1013 * Bug, portability fixes, cleanups.
1014
1015 Other Contributors: Darin Adler, Katsuhiro Okuno, Joshua N. Pritikin
1016
1017
1018 Overview of Changes in GLib 1.3.8:
1019 ==================================
1020
1021 * Documentation updates [Owen]
1022 * Made GType interfaces overridable in derived types
1023 * Many win32 fixes [Tor Lillqvist]
1024 * Miscellaneous cleanups and fixes
1025
1026 Other contributors:
1027   Darin Adler, Matthias Clasen, Ron Steinke, Hans Breuer, Alex Larsson
1028
1029
1030 Overview of Changes in GLib 1.3.7:
1031 ==================================
1032
1033 * Integrate GClosure support into the main loop [Owen Taylor]
1034 * More GSignal convenience functions (macros) [Sven Neumann, Tim Janik]
1035 * Introduced weak references for GObject [James Henstridge, Sven, Tim] 
1036 * Minor hash table optimizations
1037 * Main loop and threading improvements [Sebastian Wilhelmi]
1038 * Added g_ascii_* functions to be used for locale insensitive UTF-8
1039   compliant code instead of old string functions  [Darin Adler, Alex Larsson]
1040 * Add functions for Unicode case-conversion, normalization, and 
1041   collation [Owen]* GString improvements [Owen]
1042 * Reworked the GIOChannel code [Hidetoshi Tajima, Ron Steinke]
1043 * Removed glib-config-2.0 in favour of pkgconfig [Sebastian]
1044 * Make code 64bit clean [Mark Murnane]
1045 * More G_CONST_RETURN fixes
1046 * Many improvements to the win32 code [Tor Lillqvist, Hans Breuer]
1047 * Miscellaneous bug and API fixes
1048
1049 Other contributors:
1050   Michael Natterer, Christopher James Lahey, Padraig O'Briain,
1051   Matthias Clasen, Josh Pritikin, Steve Baker, Cesar Rincon, Garry R. Osgood,
1052   Michael Meeks, Laszlo Peter,  Martin Baulig, Kjartan Maraas, Andrew Lanoix,
1053   Peter Williams
1054
1055
1056 Overview of Changes in GLib 1.3.6:
1057 ==================================
1058
1059 * Threads have a "return value" from g_thread_join
1060 * Removed ability to adjust thread stack size
1061 * Prefix warnings with progname/PID by default, change toggle for this to 
1062   be an env variable G_MESSAGES_PREFIXED not a compile-time option
1063 * GMarkup speedups
1064 * GDate const, convenience fixups
1065 * Include test cases that headers are compilable by C++ compiler
1066 * Add ability to spawn processes with argv[0] != executable path.
1067 * g_strstr_len, g_strrstr, g_strrstr_len
1068 * Add length argument to g_utf8_strchr and g_utf8_strrchr.
1069 * Misc bug fixes
1070
1071
1072 Overview of Changes in GLib 1.3.5:
1073 ==================================
1074
1075 * Added an installed glib-mkenums Perl program for parsing enumeration
1076   declarations from header files.
1077 * Mark some additional deprecated functions.
1078 * Bug and Portability fixes
1079
1080
1081 Overview of Changes in GLib 1.3.4:
1082 ==================================
1083
1084 * Efficiency improvements for GThreadPool
1085 * A few bug fixes
1086 * Build fixes
1087 * Documentation improvements
1088
1089
1090 Overview of Changes in GLib 1.3.3:
1091 ==================================
1092
1093 GLib:
1094
1095 * More user_data support in various functions.
1096 * Main loop API revamps to support per-thread main loops.
1097 * Unicode handling improvements.
1098 * Implemented debugging traps.
1099 * G_CONST_RETURN specification all over the place.
1100 * Various new small utility functions.
1101 * Random number generator precision improvements.
1102 * New configure option --disable-mem-pools.
1103 * Many Win32 improvements.
1104 * Added g_try_malloc() friends varinats.
1105 * Many documentation improvements.
1106 * Many threading improvements, support for dynamic allocation
1107   of static mutexes.
1108 * GHookLIst API cleanups.
1109 * Improved format support of GDate parser.
1110 * String function speed improvements with new g_stpcpy().
1111 * Hashtable API additions.
1112 * New GPatternSpec for shell-style pattern matching (from GtkPatternSpec).
1113 * Optimizations, cleanups, bug fixes.
1114
1115 GObject:
1116
1117 * Added many convenience functions.
1118 * GClosure and GParamSpec use float/sink ref-counting scheme now.
1119 * Reworked property change notification.
1120 * Binary searchable array cleanups, so it's widely usable now.
1121 * Added static content keeping for some GValue types.
1122 * Support for statically scoped signal parameters.
1123 * Extinguished property trailer args in set/get interface.
1124 * Added support for abstract types.
1125 * G_CONST_RETURN specification all over the place.
1126 * Split parameter exchange functionality into value transforms
1127   and parameter conversions.
1128 * Added signal emission hooks and signal accumulators.
1129 * Added interface prerequisites to support is_a (interface, object)
1130   relations.
1131 * Implemented GValueArray.
1132 * New types, boxed: G_TYPE_VALUE, G_TYPE_CLOSURE, G_TYPE_GSTRING
1133   GParamSpecs: G_TYPE_PARAM_PARAM, G_TYPE_PARAM_POINTER, G_TYPE_PARAM_CLOSURE,
1134   G_TYPE_VALUE_ARRAY, G_TYPE_PARAM_UNICHAR, G_TYPE_PARAM_VALUE_ARRAY.
1135 * Varrags value collection improvements.
1136 * Implemented debugging traps.
1137 * Made things thread-safe.
1138 * Many documentation improvements.
1139 * Many cleanups, optimizations and bug fixes.
1140
1141
1142 Overview of Changes in GLib 1.3.2:
1143 ==================================
1144
1145 GLib:
1146
1147 * Win32 build improvements  [Tor]
1148 * Improvements to error reporting  
1149   (g_critical(), g_return_if_reached()) [Darin]
1150 * Add g_strlcpy/g_strlcat  [David Wheeler]
1151 * New IO channel implementation for Win32  [Tor] 
1152 * Make g_array_free, g_string_free return pointer to memory requested
1153   not to be freed.  [Darin]
1154 * Added GError based error reporting for thread functions.  [Sebastian]
1155 * Moved reference docs into GLib distribution. [Owen]
1156 * Added g_convert() for doing convenient character set conversions based
1157   on iconv. (GLib now requires libiconv or a native iconv.) [Havoc/Owen]
1158 * Various Unicode handling additions (g_ucs4_to_utf8, g_utf8_validate(),
1159   g_{locale,filename}_{to,from}_utf8)  [Robert/Havoc/Owen]
1160 * Portability fixes for threading.  [Sebastian]
1161 * Added convenient functions for launching new processes (g_spawn_*),
1162   and shell quoting/unquoting functions.  [Havoc]
1163 * Split glib.h into many headers.  [Sebastian]
1164 * Added a simple callback-based parser for XML-like files (GMarkup).  [Havoc]
1165 * Fixed confusions between comparison functions that return <0, 0, >0
1166   and equaility functions that return FALSE,TRUE.  [Sebastian]
1167 * Added safe/portable temporary file manipulation functions.  [Tor]
1168 * autoconf improvements.  [Raja]
1169 * Many documentation improvements.
1170 * Bug fixes.
1171
1172 GObject:
1173
1174 * Added boxed and pointer types.  [Tim/Jonathan]
1175 * Added callback abstraction (GClosure)  [Tim]
1176 * Added signal system (GSignal)  [Tim]
1177 * Make GTypePlugin an interface  [Tim]
1178 * Added GTypeModule - a simple GTypePlugin instantiation  [Owen]
1179 * Bug fixes.
1180
1181
1182 What's new in GLib 1.3.1:
1183 =========================
1184
1185 * New GObject library added including object system based on
1186   the GTK+ object system. 
1187 * Functions for getting the properties of Unicode characters, 
1188   computing the canonical decomposition and ordering combining
1189   characters aand manipulating UTF-8 string manipulation based
1190   on libunicode.
1191 * GString now properly handles embedded nuls.
1192 * Multiple fixes from the 1.2.x branch.
1193 * Upgrade to libtool 1.3.3
1194 * Full thread support (thread creation and destruction).
1195 * BeOS port, BeOS dynamic modules.
1196 * Many improvements to the Windows ports.
1197 * Improvements to the OS/2 port, OS/2 module support.
1198 * Double ended queue implementation.
1199 * GLib macros for printf() formatting, e.g. G_GULONG_FORMAT = "lu"
1200 * New configure option --enable-msg-prefix to prefix messages, warnings
1201   et ceteri with the program name and the process id.
1202 * New thread-safe random number generator Mersenne Twister.
1203 * g_strcompress() added, g_strescape() had a slight API change, and
1204   more tightly defined semantics.
1205 * the g_string(x) macro has been removed, #x may be used instead.
1206