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