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