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