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