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