Updates
[platform/upstream/glib.git] / NEWS
1 Overview of Changes from GLib 2.24.0 to GLib 2.25.0
2 ===================================================
3
4 * The GSettings framework has been merged. This provides the API to
5   replace GConf. DConf will provide a backend implementation for it.
6   GConf will also provide a backend implementation to ease the
7   transition. We provide utilities to assist with schema conversion
8   and data migration, as well as a porting guide.
9
10 * Translation updates:
11  Bengali
12  Catalan
13  Danish
14  Gujarati
15  Marathi
16  Thai
17  Traditional Chinese
18
19
20 Overview of Changes from GLib 2.23.6 to GLib 2.24.0
21 ===================================================
22
23 * Bug fixes:
24  613601 buglet in dup_close_on_exec_fd
25  584284 g_data_input_stream_read_until_async behaves confusingly
26  613748 Write errors in middle of copy cause hang
27  613923 splice_stream_with_progress: wrong error handling
28  613667 Typo in GObject documentation
29  613618 gvariant format string docs unclear
30
31 * Translation updates:
32  Basque
33  Ukrainian
34  Vietnamese
35
36
37 Overview of Changes from GLib 2.23.5 to GLib 2.23.6
38 ===================================================
39
40 * Class private data:
41   - support for private data associated with a GTypeClass
42
43 * GVariant merge is now complete:
44   - loading functions and parser merged
45
46 * Windows improvements:
47   - socket fixes
48   - various build improvements
49   - removal of GCC/C99isms in favour of portable code
50   - drop unmaintained Visual Studio 8 support
51
52 * Minor API addition:
53   - g_desktop_app_info_get_filename()
54
55 * Bugs fixed:
56  521707 Class private data
57  612502 build fails on glib/tests/gvariant.c
58  612832 [GDesktopAppInfo] New function g_desktop_app_info_get_filename
59  612702 [PATCH] Fix GSocket-related crash on Windows
60  612736 Improve the documentation about single include
61  610858 gvariant test fails sometimes
62  612327 uninitialized variable
63
64 * New translations:
65  Afrikaans
66  LowGerman
67
68 * Updated translations:
69  Czech
70  Finnish
71  Galician
72  Greek
73  Punjabi
74  Romanian
75  Serbian
76
77
78 Overview of Changes from GLib 2.23.4 to GLib 2.23.5
79 ===================================================
80
81 * New API addition: g_malloc_n() and friends used to implement an
82   overflow-safe family of g_new() macros.
83
84 * GVariant:
85  - GVariantBuilder and GVariantIter are now merged.
86  - The variable arguments API is now merged.
87  - The parser will be in a future release.
88
89 * GIO:
90  - Remove GUtf8InputStream (which never appeared in a stable release)
91    for now since it doesn't satisfy the needs of its main intended use
92    case.  We hope to reimplement this feature in a better form in a
93    future release.
94
95 * Bugs fixed:
96  609531 missing licence headers
97  612107 Missing G_FILE_ATTRIBUTE_TRASH_ORIG_PATH
98  611897 g_io_modules_scan_all_in_directory leaks
99  608196 Overflow-safe g_new family
100  611696 gio uses GetAddrInfo which requires special handing on windows 2k
101  605667 Don't use G_PARAM_SPEC_VALUE_TYPE when we know the pspec is valid
102  610860 test_g_file_open_readwrite fails if $HOME is unwritable
103  552912 glib-2.18 /live-g-file/test_copy_move failed when run as root
104  609813 Renaming a file discards file notes
105
106 * Updated translations:
107  Basque
108  Brazilian Portuguese
109  British English
110  Bulgarian
111  Catalan
112  Danish
113  Estonian
114  French
115  German
116  Hungarian
117  Italian
118  Lithuanian
119  Norwegian bokmål
120  Portuguese
121  Russian
122  Slovenian
123  Spanish
124  Swedish
125  Traditional Chinese
126
127
128 Overview of Changes from GLib 2.23.3 to GLib 2.23.4
129 ===================================================
130
131 * GVariant: The core of GVariant has been merged now, with some
132  API still to follow.
133
134 * GIO:
135  - There is a new interface GFileDescriptorBased for file descriptor
136    based IO. GLocalFile{Input,Output}Stream implement it
137  - Use splice(2) to transfer data between file descriptors without
138    extraneous copies
139  - Add a way to request move events from file monitors
140
141 * Bugs fixed:
142  609143 *result_uncertain is never assigned in g_content_type_guess
143  604086 Use splice(2) when doing local file copies
144  547890 No move events for GFileMonitorEvent?
145  568760 nautilus freezes due to a bug in garray.c:322
146  609962 Add info about the use of G_DEFINE_INTERFACE
147  609564 g_base64_encode_close docs should mention outbuf size...
148  610484 g_variant_equal bug
149  610131 libasyncns does not compile on Solaris 8
150  609530 missing single header include guards
151
152 * Updated translations:
153  Czech
154  Estonian
155  Galician
156  German
157  Korean
158  Polish
159  Slovenian
160  Spanish
161  Traditional Chinese
162
163
164 Overview of Changes from GLib 2.23.2 to GLib 2.23.3
165 ===================================================
166
167 * GLib now has a facility for locks that consume only one bit of
168   storage inside an integer: g_bit_lock()
169
170 * GVariant: The serializer has been merged, with more API to follow
171
172 * Bugs fixed
173  548967 1 bit mutex lock
174  604967 2.22.3 libasyncns build fails on HP-UX 11.11
175  608602 G_VALUE_COLLECT_INIT variables shadow those in G_VALUE_COLLECT
176  608743 Crash in g_hostname_to_ascii visiting certain website in epiphany
177  599197 array ref and unref functions crash on NULL array.
178  608159 mem leak in g_io_modules_scan_all_in_directory
179
180 * Translation updates
181  Brazilian Portuguese
182  Czech
183  French
184  Norwegian bokmål
185  Slovenian
186  Spanish
187  Thai
188
189
190 Overview of Changes from GLib 2.23.1 to GLib 2.23.2
191 ===================================================
192
193 * We are now using gcc builtins for atomic operations when available
194
195 * g_assert() grew the ability to store assertions in core dumps
196
197 * GIO supports lazy loading of GIO modules, and there is a new
198   gio-querymodule utility that goes along with this.
199   Packagers will need to adapt to this.
200
201 * Threading changes:
202  - The requirements for g_thread_init() have been relaxed slightly,
203    it can be called multiple times, and does not have to be the first
204    call.
205  - GObject now links to GThread and threads are enabled automatically
206    when g_type_init() is called.
207  - Thread-safety issues with boxed types in GObject have been fixed.
208
209 * GObject:
210  - Another bunch of performance work has landed
211
212 * GVariant:
213  - GVariantType has been merged, with the rest of the GVariant
214    API to follow.
215
216 * Bugs fixed:
217  568760 nautilus freezes due to a bug in garray.c:322
218  602417 Document lifecycles of GSimpleAsyncResult and friends
219  604824 crash in Epiphany: Selecting my Slashdot bo...
220  448888 don't init g_slice for always-malloc
221  531902 Use GCC atomic buildins for g_atomic*
222  554887 boxed type registration is not thread safe
223  586150 unresolved symbols when building glib 2.21.2 on OS X Tiger
224  589176 row gvalue transform array exponentially
225  594872 Support storing assertion messages into core dump
226  602240 Upgrade libasyncns to 0.8
227  603590 Speed up G_VALUE_COLLECT
228  604457 gutf8inputstream.c: increasing unknown size pointer
229  605686 GCharsetConverter doesn't flush
230  605733 g_memory_output_stream_new violates GObject standards
231  605883 g_object_new() processes varargs even when there are none
232  605977 invalid utf-8 conversion in g_local_file_get_parse_name(...
233  606775 Enable threads by default in gobject
234
235 * Translation updates:
236  Asturian
237  Basque
238  Bengali
239  Bulgarian
240  Estonian
241  Norwegian bokmål
242  Spanish
243  Thai
244  Ukrainian
245
246
247 Overview of Changes from GLib 2.23.0 to GLib 2.23.1
248 ===================================================
249
250 * GObject performance work has landed:
251  - Construction of simple objects is much faster
252  - Interface lookup is lock-free and constant-time now
253  - Reduced locking overhead when dealing with types
254
255 * GType now has a G_DEFINE_INTERFACE convenience macro
256
257 * GIO gained GUtf8InputStream, an input stream that
258   performs utf-8 validation
259
260 * GLib now has byte-swap macros for gsize and gssize
261
262 * Bugs fixed:
263 557151 Determining the newly_constructed boolean in gobject.c...
264 557100 Performance improvements for GObjectClasses that don't...
265 501166 Warning message says IA__g_type_init instead of g_type_init
266 585375 Performance and Contention problems with g_type_class_ref...
267 587892 Race in GType when instantiating the same class for the...
268 603270 Input Stream validating utf8
269 603476 gioenums.h:62: error: comma at end of enumerator list
270 603540 g_time_val_from_iso8601 uses uninitialised variable
271 603982 Stack overflow when reading file async with filter
272 604645 G_DEFINE_INTERFACE_* documentation is not generated
273 604875 Use of sa_len conflicts with system header
274 320482 provide G_DEFINE_TYPE like macros for interfaces
275
276 * Updated translations:
277  Estonian
278  Hebrew
279  Norwegian bokmål
280  Vietnamese
281  Welsh
282
283
284 Overview of Changes from GLib 2.22.x to GLib 2.23.0
285 ===================================================
286
287 * GIO:
288  - GConverter: a generic interface for stateful conversions of data,
289    suitable for charset conversion, compression, decompression, regexp
290    replacement. Concrete implementations are GCharsetConverter,
291    GZlibCompressor and GZlibDecompressor. GConverterInputStream,
292    GConverterOutputStream are stream implementations that convert data
293    while loading or saving it.
294  - GMounts can now have a 'default location': a path that reflects
295    the main entry point for the user (e.g. the home directory).
296  - As a consequence of the compression support, GIO depends on zlib now.
297
298 * GObject:
299  - G_IMPLEMENT_INTERFACE_DYNAMIC: a convenience macro for adding
300    interfaces to dynamic types.
301
302 * GModule:
303  - The -pthread flag has been added to all gmodule .pc files, because
304    it is not generally permissible to load modules that are linked
305    against libpthread if the program has not been compiled with threading
306    support.
307
308 * Bugs fixed:
309  601637 GUnixFDMessage should contain a GUnixFDList
310  585566 GSocketListener API issues
311  572252 Bug in g_file_test() function.
312  600550 g_app_info_create_from_commandline doesn't treat arguments properly
313  541236 not detecting exact content type
314  350200 [PATCH] GTypeModule derived class unref does not unload plugin
315  589631 Please enclose literal values with double quotes
316  577711 cross compile check for g++ broken
317  600620 Support X-GNOME-FullName in GAppInfo
318  598899 GWin32DirectoryMonitor is broken
319  593809 Nautilus does not restore the position of the icons on the desktop...
320  563627 g_get_prgname() threadsafety
321  600141 Add -pthread to gmodule pkg-config
322  593856 file and directory monitors don't work when glib is compiled...
323  324930 Nautilus should disallow copying of symlink to FAT drive early
324  587300 Deadlock when calling g_cancellable_disconnect in a...
325  595138 GFile not robust with invalid input
326  591216 Warning building resolver.o
327  590016 Does not compile under MinGW32 + Wine
328  591214 Warnings building gcancellable.o
329  561998 Have specific entry points (paths) for mounts...
330  508157 Add G_IMPLEMENT_INTERFACE_DYNAMIC
331  535159 g_file_has_parent
332
333 * Updated translations:
334  Brazilian Portuguese
335  Catalan
336  Estonian
337  Galician
338  Norwegian bokmål
339  Shavian
340  Slovenian
341  Spanish
342  Swedish
343
344
345 Overview of Changes from GLib 2.22.1 to GLib 2.22.2
346 ===================================================
347
348 * GIO:
349  - Support case-sensitive globs in the shared mime database,
350    including support for the newer cache format that allows these.
351    Case-sensitive globs have been introduced in shared-mime-info
352    version 0.70
353
354 * GObject:
355  - Speed up creation of simple objects
356
357 * Bugs fixed:
358  597194 Typo in _G_TYPE_CVH macro
359
360 * Updated translations:
361  Russian
362
363
364 Overview of Changes from GLib 2.22.0 to GLib 2.22.1
365 ===================================================
366
367 * Bugs fixed:
368  596064 Test file marked for translation
369  595972 possibly invalid search in mime_info_cache_dir_add_...
370  596561 C99 style of declaration of variable in gmessages.c
371  596314 g_utf16_to_utf8 returns an invalid UTF8 string
372  596748 g_async_result_get_source_object returns a new ref
373  593809 Nautilus does not restore the position of the icons...
374  593775 uses inotify_init1 unconditionally
375
376 * Updated translations:
377  Bengali
378  Hebrew
379
380
381 Overview of Changes from GLib 2.21.6 to GLib 2.22.0
382 ===================================================
383
384 * Add gdb python macros to make gobject debugging more pleasant
385
386 * Bugs fixed:
387  579050 Allow making selected critical and warning messages non-fatal
388  594759 g_socket_send_message fails due to invalid sendmsg params
389  593941 GNetworkAddress skipping addresses when enumerating
390  594597 Fix build with srcdir != builddir
391  595619 Include gdb pretty printers
392
393 * Changes that might affect bindings:
394  - The error parameter of g_simple_async_result_set_from_error has been
395    made const.
396
397 * Updated translations:
398  Assamese
399  Bengali India
400  British English
401  Bulgarian
402  Catalan
403  Czech
404  Danish
405  Finnish
406  Galician
407  Greek
408  Gujarati
409  Hindi
410  Japanese
411  Kannada
412  Malayalam
413  Marathi
414  Norwegian bokmål
415  Oriya
416  Polish
417  Punjabi
418  Romanian
419  Serbian
420  Simplified Chinese
421  Slovenian
422  Spanish
423  Tamil
424  Telugu
425  Thai
426  Traditional Chinese
427  Ukrainian
428  Vietnamese
429
430
431 Overview of Changes from GLib 2.21.5 to GLib 2.21.6
432 ===================================================
433
434 * Minor API additions:
435   g_mkstemp_full is a variant of g_mkstemp that allows to specify flags
436   and permissions
437
438 * Bugs fixed:
439  593232 g_rand_new: read no more than requested from /dev/urandom
440  591995 use saved errno
441  589491 g_time_val_from_iso8601 doesn't handle some cases
442  593406 Permissions set to 777 after copying via Nautilus
443  594034 Add g_mkstemp_full()
444
445 * Updated translations:
446  Assamese
447  Basque
448  Brazilian Portuguese
449  Czech
450  Estonian
451  French
452  German
453  Hungarian
454  Italian
455  Kannada
456  Malayalam
457  Marathi
458  Norwegian bokmål
459  Oriya
460  Portuguese
461  Swedish
462  Tamil
463  Turkish
464
465
466 Overview of Changes from GLib 2.21.4 to GLib 2.21.5
467 ===================================================
468
469 * A performance problem with trashing of many files has been fixed
470
471 * GResolver now invalidates the libc resolv.conf cache as needed
472
473 * Minor api additions:
474  - g_cancellable_make_pollfd returns a boolean now. And there is a
475    new function g_cancellable_release_fd that can be used to released
476    the resources used by a GCancellable.
477
478 * Bugs fixed:
479  589988 Compilation error on Solaris 9 (missing stdint.h)
480  588901 gtcpconnection.c won't compile
481  584246 GResolver needs to call res_init() when network state changes
482  591714 Figure out failure handling for g_cancellable_make_pollfd()
483  591532 redundent '/' returned from g_file_resolve_relative_path
484  591378 Use MSG_NOSIGNAL in GSocket if it's available
485  589649 API documentation migration for Base64 Encoding
486  591840 configure fails with autoconf 2.64
487
488 * Updated translations:
489  Basque
490  Brazilian Portuguese
491  Bulgarian
492  Danish
493  Estonian
494  Finnish
495  Galician
496  Gujarati
497  Hndi
498  Irish
499  Japanese
500  Korean
501  Norwegian bokmål
502  Polish
503  Portuguese
504  Punjabi
505  Spanish
506  Swedish
507  Telugu
508  Traditional Chinese
509  Thai
510
511
512 Overview of Changes from GLib 2.21.3 to GLib 2.21.4
513 ===================================================
514
515 * GTree is now refcounted
516
517 * Bugs fixed:
518  587938 Undocumented limitation for g_str_equal
519  587773 refcounts for GTree
520
521 * Updated translations:
522  French
523  Hebrew
524  Norwegian bokmål
525  Spanish
526  Swedish
527  Traditional Chinese
528  Ukrainian
529
530
531 Overview of Changes from GLib 2.21.2 to GLib 2.21.3
532 ===================================================
533
534 * GMappedFile is refcounted now
535
536 * Mainloop: It is now possible to set per-thread default contexts,
537   with g_main_context_push_thread_default.
538
539 * glib-mkenums supports a @basename@ substitution, in addition
540   to @filename@.
541
542 * GIO:
543  - Vfs implementations can support storing of per-file metadata.
544  - GCancellable can now be subclassed.
545  - Unmount and eject methods now optionally allow interaction, via
546    variants that take a GMountOperation object.
547
548 * Bugs fixed:
549  556706 Inconsistent help arguments -h, -?
550  579449 FileChoosers no longer work if an idle handler is active
551  579933 mainloop FD_CLOEXEC has a race condition
552  579984 alternate GMainContext support
553  585937 gio/gsocket.c (glib 2.21.2) does not compile (Windows/mingw)
554  586675 Runtime library location
555  586797 Add GCancellables to GSocket ops
556  586868 g_filename_complete_get_completions doesn't always return...
557  587415 g_resolver_lookup_by_name_finish returns a freed list
558  587434 regression tests fail, at least on x86_64
559  586928 Avoid g++ warning in g_error()
560
561 * Updated translations:
562  Estonian
563  Hebrew
564
565
566 Overview of Changes from GLib 2.21.1 to GLib 2.21.2
567 ===================================================
568
569 * GIO:
570   - g_socket_speaks_ipv4 is a new function to check if a socket can
571     speak IPv4.
572   - g_socket_listener_add_address gained a new effective_address out
573     parameter.
574   - GIO now returns special icons for XDG user directories, by the
575     name folder-music, folder-documents, etc.
576   - GIO gained support for starting/stopping of drives, which can be used
577     in connection with external hard disk enclosures, disk arrays, iSCSI
578     devices, etc. See g_file_start/stop_mountable.
579
580 * GLib:
581  - g_reload_user_special_dirs_cache is a new function to force GLib to
582    reload the XDG user directory mapping from disk.
583
584 * Bug fixes:
585  584574 glib compile failure on Mac OS X with gunixresolver.c and...
586  585566 GSocketListener API issues
587  584255 Incorrect freeing of thread pool in GThreadedSocketService
588  585088 g_string_chunk_insert_len stops at nul bytes
589  585360 Monitor fontconfig configuration files using gio causes m...
590  580103 Terminal starts on Display :0.0 when started on :0.1 in D...
591  580301 network: a few issues on old darwin
592  583398 SRV weight sorting is incorrect
593  584176 build fixes on FreeBSD
594  585189 g_cancellable_reset() must be called in same thread as g_...
595  585280 compilation dies on gio/gsocket.c, needs sys/uio.h to con...
596  585281 gio/gunixfdmessage.c needs sys/types.h for platforms that...
597  585478 don't leak the inotify fd
598  585575 g_socket_listener_add_inet_port() doesn't do the right thing
599  585599 g_socket_listener_add_socket() consumes the socket
600  585676 GEmblem doesn't reference its 'icon' if that is set as a ...
601  585717 "bytes" nautilus translation to french is not shown in th...
602  541276 XDG directories should have their own icons
603  585726 Grammatical error in GList documentation
604  585520 Wrong warning option in documentation
605  585673 GNOME Goal: Remove deprecated glib symbols
606  585591 Starting/stopping drives
607
608 * Updated translations:
609  Bengali India
610  Norwegian bokmål
611
612
613 Overview of Changes from GLib 2.21.0 to GLib 2.21.1
614 ===================================================
615
616 * GIO:
617  - Support for network IO has been added, including a low-level
618    socket API and a high-level API for network connections and
619    services.
620  - Support for read-write access with GIOStream and its subclasses.
621  - GMount gained a pre-unmount signal.
622
623 * Bug fixes:
624  576104Implement GMount::pre-unmount
625  578769 implement GWinHttpFileInputStream::close_fn
626  582856 gsocket.c doesn't compile on Solaris
627  569375 g[u]intptr undocumented
628  573246 [FIX] g_desktop_app_info_dup() can access NULL pointer
629  575013 g_cancellable_push_current() does not allow NULL
630  577884 live-g-file.c:461: error: format ‘%d’ expects type ...
631  578499 g_output_stream_splice and stream closing with gnio strea...
632  579558 Application employing gvfs crashes with only libgvfscommo...
633  583001 SIGPIPE (grr!)
634  583061 Please add convenience function to connect to machines by...
635  583198 typo in error message
636  583206 use g_set_error_literal where appropriate
637  583229 void function g_async_initable_init_async returns value
638  583324 locking problem in g_main_context_iterate()
639  583408 void function g_socket_control_message_serialize returns ...
640  578786 wrong and confusing error message
641  583205 g_inet_address_to_bytes has no length outparam
642  583196 mem leak in keyfile test
643  583663 GSocketType enum ends with a comma
644  569024 Make g_error_new_valist public
645  569376 missing G_G[U]INTPTR_FORMAT
646  580347 off-by-1 bug in GWinHttpFile
647
648 * Updated translations:
649  Oriya
650  Spanish
651  Valencian-Catalan
652
653
654 Overview of Changes from GLib 2.20.x to GLib 2.21.0
655 ===================================================
656
657 * GIO:
658  - New helper functions g_cancellable_connect/disconnect to avoid
659    race conditions when connecting to the "cancelled" signal on
660    GCancellable.
661  - New types and methods for dealing with IPv4 and IPv6 addresses (and
662    UNIX domain socket addresses under UNIX). This does not include code
663    for actual socket I/O.
664  - GResolver provides asynchronous and cancellable APIs for resolving
665    hostnames, reverse lookup of IP addresses and resolving SRV records.
666
667 * Glib now provides hash and comparison functions for int64 and double
668   types, suitable for use with GHashTable.
669
670 * GArray, GPtrArray and GByteArray can be ref counted now, and have
671   boxed types.
672
673 * Bugs fixed:
674  572844 Helper for GCancellable::cancelled connect/disconnect
675  578363 goption docs should be improved
676  548466 async/cancellable DNS resolver
677  579830 param spec strings should use P_()
678  579862 requesting xattr::foo ends up calling getxattr(..., user...
679  580453 Hash and equal functions for gint64 and gdouble
680  580450 Reference counting and boxed types for arrays
681  580194 gresolver doesn't build on Solaris
682  580301 network: a few issues on old darwin
683  580299 network: include sys/types.h before sys/socket.h to insur...
684  572508 gmarkup speedup
685  580546 g_strtoull() referenced in documentation...
686  580656 g_key_file_set_string_list erroneously asserts list != NULL
687  579272 leaks in g_simple_async_result_set_op_res_gpointer
688
689
690 * Updated translations:
691  Catalan (ca)
692  Pashto (ps)
693  Spanish (es)
694
695
696 Overview of Changes from GLib 2.20.0 to GLib 2.20.1
697 ===================================================
698
699 * Bug fixes:
700  575555 Use fsync() when replacing files to avoid data loss on
701  575708 runaway inotify madness
702  575270 GVolumeMonitor::mount-pre-unmount not being emitted
703  577128 glib make check Failed to execute child process...
704  573673 Always show "backup" directories
705  578369 g_time_val_from_iso8601() parses timezones incorrectly
706  578002 Fix a small typo in GFile docs
707  578017 G_DEFINE_TYPE_EXTENDED docs
708
709 * Updated translations:
710  Arabic
711  Assamese
712  Basque
713  Bularian
714  Brazilian Portuguese
715  British English
716  Catalan
717  Danish
718  French
719  Galician
720  German
721  Greek
722  Hungarian
723  Italian
724  Japanese
725  Kannada
726  Lithuanian
727  Malayalam
728  Norwegian bokmål
729  Oriya
730  Polish
731  Punjabi
732  Russian
733  Simplified Chinese
734  Slovenian
735  Spanish
736  Swedish
737  Tamil
738
739
740 Overview of Changes from GLib 2.19.9 to GLib 2.20.0
741 ===================================================
742
743 * Base64 support: Avoid integer overflows. CVE-2008-4316
744
745 * Bugs fixed:
746  574019 GChecksum: document and guarantee hex characters in lower case
747  573454 Unable copy/move files to directories symlinked to gvfs share
748  561172 gnome-open fails on local URIs with anchors
749  573970 crash in gunixvolumemonitor:update_mounts when unmounting
750  573843 g_get_current_dir returns non-absolute path
751
752 * Updated translations:
753  Assamese (as)
754  Bengali (bn_IN)
755  Czech (cs)
756  Hindi (hi)
757  Italian (it)
758  Japanese (ja)
759  Lithuanian (lt)
760  Malayalam (ml)
761  Marathi (mr)
762  Oriya (or)
763  Polish (pl)
764  Romanian (ro)
765  Telugu (te)
766
767
768 Overview of Changes from GLib 2.19.8 to GLib 2.19.9
769 ===================================================
770
771 * GMarkup:
772  - Considerable speedup
773
774 * GIO
775  - Add G_FILE_CREATE_REPLACE_DESTINATION flag to allow replacing
776    the destination of a copying operation as if it did not exit before.
777  - Be more careful when classifying files as desktop files
778  - Support desktop file key X-GIO-NoFuse which disables the use
779    of fuse pathnames for %u and %U arguments
780
781 * Bugs fixed:
782  572672 glib/gthread.c: argument is different type
783  572464 Doc for g_file_get_contents
784  572151 “it's” and “its” confused in docs and comments
785  570501 g_win32_get_system_data_dirs uses invalid conversion...
786  167569 g_string_append_printf crashes on win32 when used...
787  572508 gmarkup speedup
788  560564 Replacing a symlink with its linked file truncates... 
789  549298 impossible to copy files with p (pipe) flag
790  543183 Clarify docs for g_file_has_prefix
791  540461 g_memory_output_stream_get_data_size() doesn't behave...
792  573462 GEmblemedIcon leak
793  573421 Clarify message format in GMountOperation
794  573658 Deadlock in giomodule.c
795  556706 Inconsistent help arguments -h, -?
796  573527 Wrong shell to run config.status in Makefile.in.in
797  573128 A couple of typos in GObject documentation
798
799 * Updated translations:
800  Catalan (ca)
801  British English (en_GB)
802  Spanish (es)
803  Basque (eu)
804  Finnish (fi)
805  French (fr)
806  Gujarati (gu)
807  Hebrew (he)
808  Hungarian (hu)
809  Korean (ko)
810  Maithili (mai)
811  Norwegian bokmål (nb)
812  Dutch (nl)
813  Portugese (pt)
814  Swedish (sv)
815  Thai (th)
816  Traditional Chinese (zh_HK)
817  Traditional Chinese (zh_TW)
818
819
820 Overview of Changes from GLib 2.19.7 to GLib 2.19.8
821 ===================================================
822
823 * GIO: Fix missing exports of new API
824
825 * Fix strict aliasing warnings and violations to make Glib work
826   with gcc 4.4
827
828
829 Overview of Changes from GLib 2.19.6 to GLib 2.19.7
830 ===================================================
831
832 * GIO
833  - GFile gained an attribute for the actual file size in bytes
834  - GMountOperation gained an "aborted' signal that allows to abort
835    a mount operation from the backend side
836
837 * Bugs fixed:
838  523742 Use noinst for non-installable libraries
839  566747 URIs opened with firefox %u load as local files
840  541225 Can't compile gio on AIX duplicate case value in gioerror.c
841  571598 GAsyncResult with NULL gobject
842  505042 add file attribute for actually used file size in bytes
843
844 * Updates translations:
845  Basque (eu)
846  Gujarati (gu)
847  Italian (it)
848  Japanese (ja)
849  Norwegian bokmål (nb)
850  Dutch (nl)
851  Portugese (pt)
852  Thai (th)
853  Vietnamese (vi)
854
855
856 Overview of Changes from GLib 2.19.5 to GLib 2.19.6
857 ===================================================
858
859 * New format macro to print goffset data: G_OFFSET_FORMAT
860
861 * GIO: 
862  - Add a GFilter{Input,Output}Stream::close-base-stream properties which
863    determine whether the base stream will be closed when the filter stream
864    is finalized.
865  - g_data_input_stream_read_line and ..._read_until have asynchronous
866    variants now.
867
868 * Bugs fixed:
869  568294 A wrong reference in the description of g_bookmark_file_...
870  563141 RFE: define G_OFFSET_FORMAT
871  569105 g_time_val_to_iso8601() assumes time_t==long
872  568394 dropping the last reference to a stream filter closes...
873  568741 g_buffered_input_stream_fill_async doesn't work
874  568723 g_buffered_input_stream_fill_async doesn't take count == -1
875  568575 _async functions for GDataInputStream
876
877 * Updated translations:
878  Bulgarian (bg)
879  Finnish (fi)
880  Hungarian (hu)
881  Oriya (or)
882  Swedish (sv)
883  Traditional Chinese (zh_HK)
884  Traditional Chinese (zy_TW)
885
886
887 Overview of Changes from GLib 2.19.4 to GLib 2.19.5
888 ===================================================
889
890 * Update included PCRE to 7.8
891
892 * g_base64_decode_inplace: New function to do base64 decoding in place
893
894 * Bugs fixed:
895  567138 get_package_directory_from_module() does not free ...
896  566569 gregex docs clarification
897  566573 g_match_info_fetch_pos docs
898  564728 Add function to decode base64 encoded data in place
899  567838 G_STRUCT_OFFSETOF fails to compile under icc 9.1
900  567977 textdomain() macro should not return NULL ...
901  512779 --disable-regex breaks compilation
902  566770 error code 0 for Too many open files is useless
903  565484 g_content_type_guess passes non-UTF8 text to XDG ...
904
905 * Updated translations:
906  Catalan (ca)
907  Spanish (es)
908  Italian (it)
909  Swedish (sv)
910
911  
912 Overview of Changes from GLib 2.19.3 to GLib 2.19.4
913 ===================================================
914
915 * GIO:
916   - Use O_NOATIME when sniffing mimetypes
917   - Add a convenience method to check if a GSimpleAsyncResult
918     is valid
919
920 * Bugs fixed:
921  560676 function access for g_threads_supported
922  565905 There is no g_context_group_set_translation_domain
923  564210 SUN Studio 12 has supported visibility attribute
924  565136 GObject's "notify" signal parameters are wrong in gtk-doc
925  565831 error in interface creation sample
926  566348 g_file_open_tmp uses the wrong g_mkstemp on win32
927  566064 Add NOATIME flag to query_info_flags
928  566170 g_async_result_verify_source_object
929
930 * Updated translations:
931  Spanish (es)
932  Norwegian bokmål (nb)
933  Brazilian Portugese (pt_BR)
934  Simplified Chinese (zh_CN)
935
936
937 Overview of Changes from GLib 2.19.1 to GLib 2.19.3
938 ===================================================
939
940 * Bugs fixed:
941  508021 Add support for the CRIS and CRISv32 architectures
942  526320 should not list mounts that the user doesn't have permission to use
943  558458 Cannot build gio tests on Solaris using SUN cc
944  555465 GUnix{Input,Output}Stream lacks fd/close_fd_at_close property
945  558298 Hide ecryptfs mounts
946  515777 incorrect date&time on copy
947  562452 Ensure we return G_IO_ERROR_CANCELLED if cancelling
948         g_simple_async_result_run_in_thread
949  473150 g_type_module_use inconsistently increases the use
950         counter in case of error
951  563150 G_GU?INT*_MODIFIER/FORMAT docs
952  563156 Document printing and scanning gunichar values
953
954 * Updated translations:
955  Hebrew (he)
956  Italian (it)
957  
958
959 Overview of Changes from GLib 2.19.0 to GLib 2.19.1
960 ===================================================
961
962 * GIO: 
963   - g_icon_to_string, g_icon_new_for_string: GIcon serialization support
964   - G_FILE_ATTRIBUTE_PREVIEW_ICON: new file attribute for preview images
965   - g_app_info_get_commandline: new function to get the full commandline
966   - g_mount_shadow, g_mount_unshadow, g_mount_is_shadowed: New functions 
967     to 'shadow' mounts (i.e. hide them from the UI when they already
968     have a different representation, like a bookmark) 
969
970 * Bugs fixed:
971  556186 gpoll.h breaks gmain.h inclusion
972  557087 mem leak in g_content_types_get_registered
973  556921 gpoll.h breaks hal compilation
974  557210 g_compute_checksum_for_* asserts with less than 2 bytes
975  558381 Add support for compile time assertions
976  558185 'parent' variable in g_local_file_get_child_for_display_name()
977         hits g_object_unref(NULL) assertion
978  558513 g_warn_if_fail FIXME in gtestutils
979  558672 NULL key lookup using g_hash_table_lookup_extended() 
980  555740 gicon serialization
981  557182 preview functionality
982  528320 Incorrect icons displayed for files with custom mimetype icons
983  556910 Memory leak: sub
984  557592 Missing include in gwinhttpfile.c
985  556415 Crash on Windows 2000 in g_winhttp_vfs_init()
986  555935 Clarify the mechanism of overwriting properties
987  552776 ac_cv_func_posix_getgrgid_r not mentioned
988  559448 GObject Reference Manual (typo)
989  561212 GFileReadMoreCallback API doc refers to non-existant function
990  560569 gkeyfile doesn't use the set list_separator in some cases
991  560568 gkeyfile docs buglet
992  559413 g_option_group_set_error_hook docs buglet
993  562378 callback return value not respected for callback option
994         with no arg
995  559110 Do not include libintl.h after glibintl.h
996  557603 carbon check output misplaced
997  562544 g_key_file_get_string and g_key_file_get_value
998         documentation does not explain the difference
999  547264 Missing "no flags" flag
1000  562638 GDebugKey key member should be const
1001  562639 g_parse_debug_flags() parsing "help"
1002  562549 g_byte_array_free should tell how free data
1003  559452 GObject Reference Manual (typo)
1004  559462 GObject Reference Manual (typo)
1005  559517 GObject Reference Manual (typo)
1006  562538 GObject interface tutorial shouldn't finalise with
1007         "Please forget everything"
1008  561352 Leak of icon description
1009  561375 Leaks mountpoint description
1010  561807 inotify_sub.c: dup_dirname() fails to remove trailing '/'
1011  562393 g_buffered_input_stream_read_byte broken if data available
1012  541715 win32 : patch for warnings and signature problems in recent code
1013  547481 g_data_input_stream_read_line behaves not as stated in the docs
1014  548163 Nautilus displays wrong error message for too long file names
1015  559633 gtk_image_new_from_gicon does not always work for .desktop files
1016  555486 – No way to recover command line from GAppInfo
1017
1018 * Translation updates:
1019  Spanish (es)
1020  Ukrainian (uk)
1021
1022
1023 Overview of Changes from GLib 2.18.1 to GLib 2.19.0
1024 ===================================================
1025
1026 * Rewrite GHashTable to use open addressing with quadratic probing instead 
1027   of chaining. This has the potential to reduce memory fragmentation 
1028   significantly, while being slightly faster due to better locality and 
1029   no need to call alloc/free functions for nodes. Benchmarks suggest it 
1030   also uses less memory overall.
1031
1032 * Make g_poll available as public api
1033
1034 * New macros g_assert_error and g_assert_no_error to assert 
1035   that a GError is set or unset
1036
1037 * g_cancellable_make_pollfd: New method to make a GPollFD for a cancellable
1038
1039 * g_app_info_can_delete, g_app_info_delete, g_app_info_reset_type_associations:
1040   New functions to clean up app infos and content types
1041
1042 * When launching applications, always pass fuse file:// uris when possible,
1043   and let gio convert such uris back to gio uris.
1044
1045 * Bugs fixed:
1046  505361 gunixinputstream.c assumes poll() available
1047  509446 portable blocking gio cancellation
1048  553820 gpoll.c: undeclared identifier
1049  553724 python interpretter path not patched in correctly
1050  553857 gbacktrace.h requires signal.h
1051  553447 g_assert_no_error()
1052  554092 glib doesn't return G_FILE_ERROR_NOENT et al on OS X
1053  528670 Always pass file:/// uri's in GAppLaunchContext
1054  555224 Improve g_format_size_for_display doc
1055  555309 giochannel breaks on error
1056  554790 g_convert() misbehaves with winiconv versions
1057  555314 mem leak in gmarkup
1058  555313 GFileAttribute boxed type get_type function should...
1059  552861 glib-2.0.m4 calls system(3) without storing its result
1060  554557 Patch to fix gcc warnings about missing format specifiers
1061  552107 Small libtool fixes
1062  551355 Make glib build with libtool 2.2
1063  555311 format not a string literal and no format arguments
1064  556101 static mutex yields warnings with g++
1065  556186 gpoll.h breaks gmain.h inclusion
1066  526456 Open addressing in GHashTable
1067  553426 cancellable clarifications
1068  545350 GAppInfo deletion
1069  545351 Reset associations for content type
1070  552168 volume's mount not mounted after g_volume_mount_finish
1071  554970 segfault when update-desktop-database is not available...
1072  554745 GFileAttributeInfoList should be boxed
1073  555121 Improved build-time handling of gio module-dir
1074  555711 Wrong fallback order of mimetype icons
1075  555331 Deprecate adoption of mounts
1076  556335 make check fails in abicheck.sh
1077  556334 Warning when building without selinux support
1078  556422 g_file_enumerator_next_file: unclear...
1079
1080 * Updated translations:
1081  Arabic (ar)
1082  Danish (da)
1083  Polish (pl)
1084  Brazilian Portugese (pt_BR)
1085  Romanian (ro)
1086  Russian (ru)
1087
1088
1089 Overview of Changes from GLib 2.18.0 to GLib 2.18.1
1090 ===================================================
1091
1092 * Bugs fixed:
1093  550433 g_test_init doesn't recognize --help
1094  523463 Core dump in gmain.c:2482:IA__g_main_context_check
1095  551228 G_STRFUNC on recent Sun compiler should be expanded...
1096  551410 gtestutils.c: using printf without prototype
1097  551731 g_date_set_time[_t] docs should mention what timezone
1098  548321 <string.h> is not included in gi18n-lib.h
1099  551149 xdgmime mem leak
1100  550647 synchronous pipe I/O when reading mount reply
1101  551887 Docs for g_desktop_app_info_new_from_filename aren't...
1102  551681 g_content_type_guess() too naive with filenames
1103  552352 g_app_info_launch doesn't work if "Path" key...
1104  551408 gmodule.def generated to builddir...
1105  552359 g_file_info_get_icon should return GThemedIcon, and...
1106
1107 * Updated translations:
1108  Arabic (ar)
1109  Bengali India (bn_IN)
1110  British English (en_GB)
1111  Hindi (hi)
1112  Croatian (hr)
1113  Korean (ko)
1114  Oriya (or)
1115  Turkish (tr)
1116  Telugu (te)
1117
1118
1119 Overview of Changes from GLib 2.17.7 to GLib 2.18.0
1120 ===================================================
1121
1122 * Win32:
1123   - rework the g_poll() implementation to match poll() semantics more closely
1124
1125 * Bugs fixed:
1126  324234 Using g_io_add_watch_full() to wait for connect() to return...
1127  548278 Async GETs connections are always terminated unexpectedly...
1128  500246 Bug fixes for giowin32
1129  523939 Example program for GValue
1130  550096 GBookmarkFile parser is not forward compatible
1131  550040 Move GString, rand and printf tests to the unit test framework
1132  550104 trivial documentation fix for g_get_home_dir
1133  548988 g_file_replace fails on Windows when the target file exists
1134  550059 Wrong docs for g_emblemed_icon_add_emblem
1135  548800 Missing a g_object_get_type function
1136  550056 Missing documentation for g_emblemed_icon_get_emblems
1137
1138 * Updated translations:
1139  Bulgarian (bg)
1140  Czech (cs)
1141  German (de)
1142  Estonian (et)
1143  Basque (eu)
1144  French (fr)
1145  Hebrew (he)
1146  Hungarian (hu)
1147  Italian (it)
1148  Japanese (ja)
1149  Lithuanian (lt)
1150  Maithili (mai)
1151  Dutch (nl)
1152  Swedish (sv)
1153  Thai (th)
1154  Ukrainian (uk)
1155  Vietnamese (vi)
1156
1157
1158 Overview of Changes from GLib 2.17.6 to GLib 2.17.7
1159 ===================================================
1160
1161 * More fixes for 64-bit Windows
1162
1163 * GIO
1164  - Add a vfs implementation for HTTP and HTTPS URIs on Windows
1165
1166 * Bugs fixed:
1167  546329 API docs for g_utf8_normalize() are incorrect
1168  546876 Modify GMarkup parser to accept &#x1; .. &#x1f;
1169  547200 g_utf8_find_next_char() issues
1170  547637 unconditional #include of sys/statfs.h in configure
1171  547337 G_DISABLE_DEPRECATED breaks tests build
1172  547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
1173  502498 Test framework assertion failures should follow gcc
1174  546371 Improve docs re g_file_monitor
1175  546483 GThemedIcon:use-default-fallbacks is not readable without...
1176  546132 GFileIcon is bindings-unfriendly
1177  542156 zfs mount in home directory shown on nautilus desktop 
1178  535124 umask 002 not being applied for new directories...
1179  547080 g_file_copy leaks expected errors
1180  546582 Callbacks from GFileMonitor present a GFile...
1181  547262 Missing link in the docs
1182
1183 * Updated translations:
1184  Arabic (ar)
1185  Catalan (ca)
1186  Spanish (es)
1187  Basque (eu)
1188  Finnish (fi)
1189  Galician (gl)
1190  Hebrew (he)
1191  Marathi (mr)
1192  Norwegian bokmål (nb)
1193  Portugese (pt)
1194  Brazilian Portugese (pt_BR)
1195  Swedish (sv)
1196  Thai (th)
1197
1198
1199 Overview of Changes from GLib 2.17.4 to GLib 2.17.6
1200 ===================================================
1201
1202 * Fix problems on 64-bit Windows
1203
1204 * g_markup_context_get_user_data: New function to access
1205   the user_data outside of callbacks
1206
1207 * GIO
1208  - g_mount_guess_content_type_sync: synchronous version of
1209    g_mount_guess_content_type
1210  - GEmblem: A GIcon implementation that adds emblem-related
1211    metadata to icons
1212  - GEmblemedIcon: A GIcon implementation that can add emblems
1213    to icons
1214
1215 * Bugs fixed:
1216  544088 option_test_LDADD is left in tests/Makefile.am
1217  544465 gmarkup makes it hard to use pre-rolled parsers
1218  545485 Implicit declaration of utime()
1219  545798 "Since: 2.18" mark is missing in g_set_error_literal...
1220  544140 fam-helper 64-bit issue
1221  529694 SELinux context setting support
1222  545157 wrong/no list of "open with" applications for .cc...
1223  545203 gfile.c: argument is different type
1224  545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
1225  544177 Fix trivial cut and paste error in documentation
1226  545395 Language tweak for g_value_set_string* docs
1227  541036 Gnumeric crashes when trying to open Desktop...
1228  546079 leak in xdgmime
1229  545395 Language tweak for g_value_set_string* docs
1230  546017 Don't copy attributes when copying a symlink
1231
1232 * Updated translations:
1233  Arabic (ar)
1234  Estonian (et)
1235  Galician (gl)
1236  Italian (it)
1237  Japanese (ja)
1238  Korean (ko)
1239  Norwegian bokmål (nb)
1240  Pashto (ps)
1241  Portugese (pt)
1242
1243
1244 Overview of Changes from GLib 2.17.3 to GLib 2.17.4
1245 ===================================================
1246
1247 * GIO:
1248  - New API to handle content types: g_mount_guess_content_type,
1249    g_content_type_guess_for_tree.
1250  - Export the eject-button signal on the volume monitor class
1251  - New API to enable out-of-process volume monitors: 
1252    g_volume_get_activation_root
1253
1254 * GObject:
1255  - New API to handle signals without slots in the class structure:
1256    g_signal_new_class_handler, g_signal_override_class_handler   
1257
1258 * Internationalization:
1259  - Add an NC_ macro that is a no-op equivalent of C_
1260
1261 * GMarkup:
1262  - Add two new functions g_markup_parse_context_push,
1263    g_markup_parse_context_pop to support "subparsers"
1264
1265 * Bugs fixed:
1266  541208 Functions to easily install and use signals without...
1267  541507 Ambiguous description of assigned characters in the...
1268  543040 async reading on dummy file will crash on GIO_USE_VFS=local
1269  543560 enable gio-FEN back-end warnings on Solaris will crash...
1270  528317 GRegex does not allow recursion limit
1271  337518 GMarkup: Subparser support
1272  541794 drive-eject-button signal
1273  541793 activation root for volumes
1274  467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
1275  428048 2 of 51 tests fail on Solaris
1276  542332 small fix for error message in GMarkup
1277  482413 get_contents_stdio -- overflow and memory corruption
1278  406120 g_ascii_strtod
1279  334234 "printf" format error
1280  536996 Missing noop i18n macro equivalent to C_
1281  540616 mem leak in filechooser button
1282  539229 gobject-query calls itself query
1283  521589 [RFC] gobject documentation should mention Vala
1284  543168 Description of G_SLICE=debug-blocks discourages its use
1285  543220 Case collision on gio-extension-points.html
1286  530759 update the gobject tutorial to the XXI century
1287  535223 gbookmark file inefficiency ...
1288  543504 crash in Epiphany Web Browser: Opening local file
1289
1290 * Updated translation:
1291  German (de)
1292  Estonian (et)
1293  Pashto (ps)
1294  Albanian (sq)
1295  Thai (th)
1296  Traditional Chinese (zh_HK)
1297  Traditional Chinese (zh_TW)
1298
1299
1300 Overview of Changes from GLib 2.17.1 to GLib 2.17.3
1301 ===================================================
1302
1303 * PCRE
1304  - fix for CVE-2008-2371 
1305
1306 * Bugs fixed:
1307  538119 glib's mainloop leaks a pipe to sub-processes
1308  537635 Corrections and improvements to g_time_val_{to,from}_iso8601
1309  539067 The document g_io_channel_win32_new_fd() says...
1310  535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
1311  539123 annotate g_d[n]gettext with G_GNUC_FORMAT
1312  539074 Cannot get exit status with g_spawn_command_line_sync
1313  316221 G_LOCK warns about breaking strict-aliasing rules
1314  539770 migrate gstrfunc unit tests to gtest
1315  539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
1316  538044 unconditional use of LC_MESSAGES
1317  540545 Monotonic time and timer offset
1318  535947 want g_set_error_literal
1319  539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF 
1320  536252 GFileEnumerator should allow access to the containing GFile
1321  538362 Get Win32 icons back in the file chooser
1322  540802 g_list_prepend doesn't concat lists
1323  540423 unrecoverable error after g_seekable_truncate
1324  538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
1325  539090 g_content_type_from_mime_type() should unalias
1326  540331 g_file_append_to () documentation: can return NULL
1327  534639 add g_desktop_app_info_new_from_keyfile
1328  536733 gio build failure on Irix
1329  536160 Add g_file_monitor()
1330  538127 FileChooser broken on win32
1331  531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
1332  538564 gio should have gio-types.h
1333  540047 glib-genmarshal.c: '#include <io.h>' is too before
1334
1335 Updated translations:
1336  Korean (ko)
1337  Occitan (oc)
1338
1339
1340 Overview of Changes from GLib 2.17.0 to GLib 2.17.1
1341 ===================================================
1342
1343 * New function: g_utime(), a gstdio wrapper for utime()
1344
1345 * New functions: g_dgettext() and g_dngettext(), wrappers
1346   for corresponding gettext functions with added functionaliy
1347
1348 * Support the latest version of the shared-mime spec, including
1349   icons for mime types 
1350
1351 * New function: g_themed_icon_prepend_name()
1352
1353 * Bugs fixed: 
1354  535418 Please document which glib version defines goffset
1355  528715 Misprint in the description of the interface g_type_class_add_private
1356  528714 Misprint in the description of the interface g_param_spec_flags
1357  537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
1358  530527 Misprint in the description of the interface 
1359         g_cclosure_marshal_VOID__FLAGS
1360  530526 Misprint in the description of the fields 'class_init' and 
1361         'class_finalize' of the structure GTypeInfo
1362  528719 Improvement to the documentation of the "g_object_connect" interface
1363  528172 gtk_signal_handlers_unblock_* functions return value
1364         amount of matched signals, not amount of actually unblocked
1365  528717 Misprint in the description of the parameter 'type_id' for 
1366         the interface g_type_register_fundamental
1367  528716 Misprint in the description of the parameter 'iface_data' for 
1368         the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc 
1369  537555 GObject instantiation not thread safe
1370  537546 'desktop' shortcut in file chooser looks like a generic folder
1371  537392 Additional colon in xattr name
1372  536641 Filesystem querying in gio does not list AFS and autofs file systems
1373  528600 g_dummy_file_get_parent("scheme://example.com/")
1374  503071 Application direction changes to right to left even if theres no 
1375         translation
1376  502511 g_assert_cmphex prints invalid message
1377  338162 Use po/LINGUAS
1378  314453 Nautilus crashes in Solaris when browsing the attached file
1379  529321 make check fails in glib/pcre
1380  455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD 
1381         fallback to $HOME/Desktop if xdg-user-dirs is not in use
1382  498732 g_key_file_to_data cannot fail
1383  511367 add g_file_make_directory_with_parents
1384  531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with 
1385         gcc 4.0 or newer
1386  536158 also bump GHashTable version when a node is removed via
1387         g_hash_table_iter_remove()/g_hash_table_iter_steal()
1388  531403 g_utf8_collate broken on Mac
1389  535628 test/patterntest.c still includes gpattern.h directly
1390  535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
1391
1392 * Translation updates:
1393  Arabic (ar)
1394  German (de)
1395  Italian (it)
1396  Norwegian bokmål (nb)
1397  Thai (th)
1398
1399
1400 Overview of Changes from GLib 2.16.x to GLib 2.17.0
1401 ===================================================
1402
1403 * Update to Unicode 5.1
1404
1405 * Update included libcharset to the one shipped with libiconv 0.12
1406
1407 * Update included PCRE to 7.7
1408
1409 * Enforce that only toplevel headers are directly included.
1410   This is turned on by default for GObject and GIO. To turn
1411   it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
1412
1413 * Fix library version of GIO.  GLib 2.16 shipped with libgio-2.0.so.0.0.0
1414
1415 * On Solaris, use FEN for file monitoring in GIO
1416
1417 * Use the GIO_EXTRA_MODULES environment variable to find
1418   additional GIO modules 
1419
1420 * G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
1421   function attribute
1422
1423 * g_checksum_reset: New function to reset the state of a GChecksum 
1424
1425 * g_unix_mount_monitor_set_rate_limit: New function to limit the 
1426   rate at which events are reported
1427
1428 * g_file_query_file_type: New utility function to query the type of
1429   a file
1430
1431 * g_memory_output_stream_get_data_size: New function to obtain the
1432   size of the written data.
1433
1434 * Bugs fixed:
1435  522292 Gives warnings in glib/gutils.h with GCC in C99 mode
1436  523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
1437  518160 replace two g_strdup_printf calls in GBookmarkFile
1438  523877 gbookmarkfile: avoid using g_string_append_printf() and
1439         other optimizations 
1440  525192 100% CPU if run main loop with no IO sources
1441  315437 extern inline -> static inline
1442  524314 g_convert() on Win32 implicitly converts full width
1443         alphanumerics into half width
1444  525732 Error in documentation for g_list_first
1445  525674 A typo in gmarkup.c
1446  448943 g_timeout_add_seconds() problems
1447  525972 UCS-4 not in the new win_iconv implementation
1448  526619 make test-report crash
1449  491554 Update to Unicode 5.1.0
1450  519137 g_slice_dup macro needs cast for 64-bit platform
1451  528752 Win32 build and SSL not working
1452  530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
1453  528667 Typos in testing module documentation
1454  459905 Bug in wcwidth data
1455  534085 g_unichar_iswide_cjk() has a totally wrong table
1456  501651 Update glib/libcharset
1457  519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
1458  534319 GLib's .pc files could use Libs.private
1459  534137 Typo in g_spawn_async_with_pipes doc
1460  517419 gio win32 directory monitor
1461  526796 Wrong order of arguments in g_file_copy's fallback
1462  530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
1463  532965 Should not return filesystem::free for certain file systems
1464  525553 fix typo and nitpicking in GArray documentation
1465  526572 Missing * in declaration of parent_class in Object
1466         Destruction section of GObject Reference Manual
1467  528648 Extra >s in Object Construction section
1468  535021 g_param_spec_internal documentation should
1469         describe purpose of nick and blurb
1470  521513 Firefox crash when using file picker
1471  528433 gdesktopappinfo snafu ...
1472  533369 API g_file_info_get_attribute_string () unables to get "...
1473  521045 glib f_fstypename miscellany
1474  521672 compile error
1475  521946 control rate limit on GUnixMountMonitor
1476  522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
1477  523015 Implement sliding window based upload operation
1478  523019 Use new GCC 4 feature
1479  523338 list nfs4 as a nfs mount type
1480  524350 Make glib build without NLS again
1481  524579 g_file_copy reports wrong total on progress callback for ...
1482  524742 A typo in gtestutils.c.
1483  524950 Minor documentation typos.
1484  525866 the user directory should not be considered as a mount to...
1485  526320 should not list mounts that the user doesn't have permiss...
1486  527132 nautilus crash when making ftp connection
1487  532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
1488  534759 Build failure in gio
1489  534764 Typo in error produced by g_file_make_directory
1490  521851 Redudant tests in gunixmounts.c
1491  524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
1492  525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
1493  534177 Invalid description of the interface g_cclosure_marshal_S...
1494  520715 Add GFile method g_file_query_file_type
1495  523039 nautilus can't access to trash/computer/network if gvfs i...
1496  
1497 * Updated translations:
1498  Arabic (ar)
1499  Bulgarian (bg)
1500  Catalan (ca) 
1501  Czech (cs)
1502  Greek (el)
1503  Candian English (en_CA)
1504  British English (en_GB)
1505  Spanish (es)
1506  Estonian (et)
1507  Basque (eu)
1508  Galician (gl)
1509  Hebrew (he)
1510  Hungarian (hu)
1511  Japanese (ja)
1512  Lithuanian (lt)
1513  Norwegian bokmål (nb)
1514  Dutch (nl)
1515  Occitan (oc)
1516  Portugese (pt)
1517  Russian (ru)
1518  Slovak (sk)
1519  Albanian (sq)
1520  Swedish (sv)
1521  Turkish (tr)
1522  Vietnamese (vi)
1523
1524
1525 Overview of Changes from GLib 2.16.0 to GLib 2.16.1
1526 ===================================================
1527
1528 * Fix a crash in g_themed_icon_new
1529
1530 * Update the included PCRE to 7.6
1531
1532
1533 Overview of Changes from GLib 2.15.6 to GLib 2.16.0
1534 ===================================================
1535
1536 * Fix the definition of G_INLINE_FUNC to work with gcc 4.3.0
1537
1538 * GIO:
1539  - Add missing GMountMountFlags argument to g_unix_volume_mount
1540  - Fix the adopt_orphan_mount vfunc to take a volume monitor 
1541    reference
1542  - Add properties to GThemedIcon for bindings sake
1543
1544 * Bugs fixed:
1545  520484 gvfsd-trash crashed with SIGSEGV in g_path_is_absolute()
1546  510855 g_checksum_update(): Take -1 for length.
1547  517676 g_themed_icon_new*() do more than call g_object_new().
1548  518816 should handle rmdir returning EEXIST correctly
1549  519352 g_[s]list_delete_link() docs
1550  519489 Fixes for sparse warnings in gio
1551  520169 add monitor argument to vfunc for GVolumeMonitor
1552  520700 Add type check in g_file_query_exists
1553  521145 FILE_READ_ONLY_VOLUME not present on Mingw32
1554  518720 No MIME type for empty files
1555  521013 in documentation, goffset doesn't say "Since 2.x"
1556  521028 Missleading error messages from g_io_channel_set_encoding()
1557  517484 GMainLoop could set the thread "Alertable" for APCs to be... 
1558
1559 * Updated translations:
1560  Assamese (as)
1561  Bengali India (bn_IN)
1562  Czech (cs)
1563  German (de)
1564  Spanish (es)
1565  Estonian (et)
1566  Finnish (fi)
1567  French (fr)
1568  Gujarati (gu)
1569  Italian (it)
1570  Lithuanian (lt)
1571  Malayalam (ml)
1572  Marathi (mr)
1573  Norwegian bokmål (nb)
1574  Romanian (ro)
1575  Russian (ru)
1576  Slovak (sk)
1577  Ukrainian (uk)
1578
1579  
1580 Overview of Changes from GLib 2.15.5 to GLib 2.15.6
1581 ===================================================
1582
1583 * GIO:
1584  - New file attributes: trash::item-count, filesystem::use-preview
1585  - Rename g_file_contains_file to g_file_has_prefix
1586  - g_file_query_filesystem_info grew async variants
1587  - g_themed_icon_append_name: new convenience function
1588  - g_content_type_get_icon is implemented now
1589  - Only show mounts in /media and ~
1590  - g_file_contains_file has been renamed to g_file_has_prefix
1591
1592 * Win32:
1593  - g_win32_get_package_installation_directory_of_module: new function
1594    which supersedes g_win32_get_package_installation_directory
1595  - Use alertable wait functions so that I/O completion routines or 
1596    user-mode Asynchronous Procedure Calls can be run
1597  - Fix race conditions in g_spawn implementation on win32
1598
1599 * Other:
1600  - g_uri_get_scheme has been renamed go g_uri_parse_scheme
1601
1602 * Updated translations:
1603  Arabic (ar)
1604  Belarusian Latin (be@latin)
1605  Catalan (ca) 
1606  British English (en_GB)
1607  Finnish (fi)
1608  Galician (gl)
1609  Hebrew (he)
1610  Italian (it)
1611  Kannada (kn)
1612  Norwegian bokmål (nb)
1613  Dutch (nl)
1614  Brazilian Portugese (pt_BR)
1615  Vietnamese (vi)
1616
1617
1618 Overview of Changes from GLib 2.15.4 to GLib 2.15.5
1619 ===================================================
1620
1621 * Update the included PCRE to 7.6
1622
1623 * GIO:
1624  - g_volume_should_automount: new function to determine if a volume
1625    should be mounted automatically
1626  - g_file_query_default_handler: new convenience function to get
1627    the default handler for a file
1628  - g_app_info_launch_default_for_uri new convenience function to
1629    launch the default handler for a URI
1630  - Use mimeapps.list and defaults.list as discussed on xdg list
1631    recently
1632  - g_app_info_get_default_for_uri_scheme has a real implementation
1633    now (gvfs provides a GConf-based implementation)
1634  - There is the beginning of a test suite
1635  - standard::description:  new file attribute
1636  - GMountMountFlags flags argument added to mount calls
1637
1638 * GObject:
1639  - class initialization is now threadsafe
1640
1641 * Updated translations:
1642   Arabic (ar)
1643   Catalan (ca)
1644   Spanish (es)
1645   Basque (eu)
1646   Italian (it)
1647   Japanese (ja)
1648   Kannada (kn)
1649   Korean (ko)
1650   Macedonian (mk)
1651   Occitan (oc)
1652   Portugese (pt)
1653   Brazilian Portugese (pt_BR)
1654   Swedish (sv)
1655   Thai (th)
1656
1657
1658 Overview of Changes from GLib 2.15.3 to GLib 2.15.4
1659 ===================================================
1660
1661 * G_GNUC_PRETTY_FUNCTION has been deprecated
1662
1663 * GIO:
1664  - g_file_copy has an async variant now
1665  - Drives and volumes now have API to get identifiers
1666    like Hal UDIs or UUIDs.
1667  - There is now a registration API to let modules register
1668    extensions they provide, such as volume monitor implementations
1669
1670 * Bugs fixed:
1671   511807 g_time_val_to_iso8601() uses MT-unsafe gmtime() function
1672   316260 [patch] Doc patches for gnode (2.8.1)
1673   385132 solaris gettext support fix
1674   484261 ./configure check for system PCRE unicode support fails w...
1675   510292 GOption main help not shown
1676   511580 Implement g_file_copy_async
1677   511654 Compile errors due to C99 constructs
1678   487909 g_utf8_strreverse and combining marks
1679   512381 unused variable 'is_main_group' 
1680
1681 * Updated translations:
1682   Arabic (ar)
1683   Belarusian (be)
1684   Czech (cz)
1685   Spanish (es)
1686   French (fr)
1687   Galician (gl)
1688   Portugese (pt)
1689   Russian (ru)
1690   Swedish (sv)
1691   Thai (th)
1692
1693
1694 Overview of Changes from GLib 2.15.2 to GLib 2.15.3
1695 ===================================================
1696
1697 * GChecksum:
1698  - g_checksum_update can accept nul-terminated strings
1699  - The MD5 implementation works correctly on buffers 
1700    that are longer than 64 bytes
1701
1702 * GIO:
1703  - Don't include a copy of the inotify headers, rely on system headers
1704  - g_file_find_enclosing_mount has an async variant now
1705  - Reduntant seek API on file streams has been removed
1706
1707 * Bugs fixed:
1708   508602 gmemory{in|out}putstream.c: unknown pointer size
1709   508771 There is no g_file_test/exists() for GFile
1710   508773 g_uri_escape_string() documentation unclear.
1711   509465 AM_PATH_GLIB_2_0 doesn't support gio
1712   509626 async functions: Document allowed NULL callback?
1713   509990 GSeekable documentation unclear
1714   510448 No inotify support on ARM or SH5
1715   510855 g_checksum_update(): Take -1 for length. 
1716
1717 * Updated translations:
1718   Basque (eu)
1719   Marathi (mr)
1720   Swedish (sv)
1721   Ukrainian (uk)
1722
1723
1724 Overview of Changes from GLib 2.15.1 to GLib 2.15.2
1725 ===================================================
1726
1727 * GIO:
1728  - Mount operation API change: unhandled methods get reported via 
1729    the reply, rather than by the signal emission return value
1730  - File monitor API change: Add a GError argument to g_file_monitor_file
1731  - g_unix_mount_guess_should_display(): new function
1732
1733 * Bugs fixed:
1734   508224 [PATCH] FAM backend crashes due to double free
1735   508074 GAsyncResult documentation suggests g_freeing it.
1736   508108 GFile documentation slightly unclear.
1737   508309 rpc_pipefs mount points should be hidden
1738   508378 GFileInfo documentation implies that it changes attribute...
1739   508719 g_file_get_relative_path fails if parent is root
1740   508773 g_uri_escape_string() documentation unclear.
1741
1742 * Updated translations:
1743   Arabic (ar)
1744   Spanish (es)
1745   Hebrew (he)
1746   Italian (it)
1747   Korean (ko)
1748   Turkish (tr)
1749
1750
1751 Overview of Changes from GLib 2.15.0 to GLib 2.15.1
1752 ===================================================
1753
1754  * Portability fixes:
1755  - Assertion functions are marked as noreturn again
1756  - Handling of inline functions has been fixed to work with gcc 4.3
1757  - C99 comments have been removed from headers
1758  - The nonportable sed -i option is no longer used
1759
1760  * GIO:
1761   - Clarified the semantics of g_app_info_get_all()
1762   - API for memory input and output streams has been changed a bit
1763   - GDirectoryMonitor has been removed; GFileMonitor can monitor
1764     files and directories now
1765
1766  * Bugs fixed:
1767    504829 Invalid environment passed to g_spawn_async in g_desktop_...
1768    505258 crash in Users and Groups: Adding a user
1769    505815 g_content_types_get_registered should not g_free keys
1770    491218 g_timer_new() doesn't initialize timer->end
1771    315437 extern inline -> static inline
1772    476856 Inconsistency between standard and implementation of the ...
1773    480122 g_module_open fails to open modules with ".la" extension
1774    495589 gspawn.c failing to set FD_CLOEXEC
1775    500273 doesn't build with --disable-visibility
1776    504142 Do not show empty groups in --help output
1777    504879 giofam incorrectly linked
1778    505042 add file attribute for actually used file size in bytes
1779    505058 xattr namespace docs
1780    505674 Misprint in the definition of the macro G_CCLOSURE_SWAP_DATA
1781    505730 Fails to build on OSX 10.4: _NSGetEnviron not declared
1782    505887 older darwin lacks lchown
1783    506374 gmemoryinputstream api
1784    506461 Conversion of g_assert_not_reached() and friends into fun...
1785    503051 Small bug in glib interface
1786    506395 Updates to GIO documentation
1787    507628 Missing .pc entry for gio linking against glib
1788    505195 [patch] typo in g_try_new0 docs 
1789    507822 g{file,directory}monitor changes signal problem
1790    506377 gmemoryoutputstream write implementation
1791    507835 bug in gunixinputstream 
1792
1793  * Updated translations:
1794    Arabic (ar)
1795    Belarusian Latin (be@latin)
1796    Spanish (es)
1797    Basque (eu)
1798    Irish (ga)
1799    Hebrew (he)
1800    Occitan (oc)
1801    Vietnamese (vi)
1802
1803
1804 Overview of Changes from GLib 2.14.x to GLib 2.15.0
1805 ===================================================
1806
1807 Major new features:
1808
1809  * GIO: a VFS API, designed to replace GnomeVFS. The GIO implementation 
1810    in GLib has support for local filesystems. The new, separate gvfs 
1811    module contains various backend implementations (cifs, ftp, sftp,
1812    http, ...)
1813
1814  * GChecksum: provides various hash algorithms, such as MD5, SHA-1
1815    and SHA-256
1816  
1817  * GTest: a test framework 
1818  
1819 Smaller additions:
1820
1821  * GHash:
1822  - GHash has iterators, as an alternative to g_hash_table_foreach
1823
1824  * GMarkup: 
1825  - g_markup_parse_context_get_element_stack: New function to
1826    get the stack of open elements
1827  - G_MARKUP_PREFIX_ERROR_POSITION: New flag to improve error
1828    reporting
1829  - g_markup_collect_attributes: Convenience function for handling
1830    attributes
1831
1832 * GKeyFile: 
1833  - Functions that take a GError now return a boolean to indicate 
1834    success, instead of void
1835  - Various performance improvements
1836
1837 * GAsyncQueue:
1838  - g_async_queue_new_full: new function that allows to specify
1839    a free function for leftover elements
1840  
1841 * GError:
1842  - g_prefix_error and g_propagate_prefixed_error: New functions
1843    to ease error propagation
1844
1845 * Internationalization:
1846  - C_: A new 2-argument variant of the Q_() macro 
1847  - Use native character set conversion API on Windows
1848
1849 * GLib builds with automake 1.10
1850
1851 * Bugs fixed:
1852  455725 specific combination of g_utf8_strlen and g_pattern_match...
1853  467537 g_convert_with_iconv() not resetting iconv() state correc...
1854  497033 Commandline option parser should warn about missing optio...
1855  504527 gchecksum: Conditional jump or move depends on uninitiali...
1856  445362 Non-numeric local labels in gatomic.c are causing linker ...
1857  482313 gregex: no way to tell why compilation failed
1858  317775 main loops continues to run after g_main_loop_quit() has ...
1859  418778 Insufficient pkg-config version requirement
1860  436293 g_option_context_new() doc should mention that the string...
1861  466557 glib-mkenums shifts ARGV[0] to undefined
1862  468882 GKeyFile doesn't accept "True" as a true boolean value
1863  469551 application --help messages are garbaged on none UTF-8 lo...
1864  479724 Memory leak upon calling "g_main_loop_run" in the seconda...
1865  490061 outptrs uninitialized after g_parse_long_long
1866  490637 gobject documentation patch
1867  495294 glib-genmarshal prints warnings but returns 0
1868  496046 option to prefix location of errors for GMarkup
1869  498113 tests/regex-test fails on 64bit environment
1870  500506 Fails to build on OSX 10.4
1871  500638 gkeyfile speedup ...
1872  500875 Make check fails as there is no "test" target for "build"...
1873  502511 g_assert_cmphex prints invalid message
1874  502927 g_array_index triggers cast aligment warning
1875  503029 g_time_val_from_iso8601 parse non-ISO8601 dates
1876  503222 Need context to translate
1877  503420 gkeyfile leaks a hash table
1878  503470 Fix build when builddir != srcdir
1879  504227 Inverse variant for g_test_trap_assert_stdout, g_test_tra...
1880  71704  file include order
1881  491957 Misprint in the specification of the interface "g_main_co...
1882  491959 Misprint in description of the structure "GThreadPool"
1883  491965 Mistype in the specification of the function "g_hook_list...
1884  491966 Misprint in the specification of the interface "g_main_co...
1885  491968 The documentation does not mention the restriction for th...
1886  491970 The documentation for the interface "g_date_clamp" is inc...
1887  491974 The documentation of the interface "g_main_context_iterat...
1888  491975 The documentation for the interfaces "g_io_channel_read_u...
1889  491979 Misprint in the description of the interfaces g_key_file_...
1890  491982 Misprint in the description of the interface "g_key_file_...
1891  501107 EXTRA_DIST automake warnings
1892  501997 g_utf8_normalize() returns NULL on invalid string
1893  502590 C_/g_dpgettext efficiency
1894  464259 g_set_application_name() docs should say "Since 2.2"
1895  496518 gbase64.c API doc clarification
1896  498728 g_key_file_get_*_list should set length to 0 when returni...
1897  500361 Improve docs for g_array_free() and g_ptr_array_free()
1898  501853 g_checksum_get_digest docs
1899  503862 Allow NULL strings in g_parse_debug_string()
1900  142676 Q_
1901  367550 Add g_async_queue_new_full() with GDestroyNotify function
1902  375651 Minor enhancements to GKeyFile API
1903  443648 MD5 digest support
1904  449937 Upgrade auto* sources to be clean under automake1.9
1905  452887 gmarkup context "get element" function is useless when ca...
1906  491549 [PATCH] Eliminate libiconv dependency on Windows
1907  500507 GHashTableIter API 
1908
1909 * Translation updates
1910  Belarusian Latin (be@latin)
1911  Czech (cs)
1912  German (de)
1913  Spanish (es)
1914  Esperanto (et)
1915  French (fr)
1916  Korean (ko)
1917  Marathi (mr)
1918  Norwegian bokmål (nb)
1919  Brazilian Portugese (pt_BR)
1920  Slovenian (sl)
1921  Swedish (sv)
1922
1923
1924 Overview of Changes from GLib 2.14.2 to GLib 2.14.3
1925 ===================================================
1926
1927 * Update PCRE to 7.4
1928
1929 * Bugs fixed:
1930  487491 Fix some warnings from sparse
1931  488068 Small (one-time) memory leak in glib_gettext initialization
1932  493688 TYPE macro "_get_type ()" is documented wrong
1933
1934 * Updated translations:
1935  Arabic (ar)
1936  Belarusian Latin (be@latin)
1937  Estonian (et)
1938  Irish (ga)
1939  Slovenian (sl)
1940
1941  
1942 Overview of Changes from GLib 2.14.1 to GLib 2.14.2
1943 ===================================================
1944
1945 * Bugs fixed:
1946  476849 Invocation of the interface "g_hook_free" fails in certai...
1947  359165 marshallers can throw warnings with -Wunused
1948  477957 more discussion on g_value_set_object vs. g_value_take_ob...
1949  478459 G_DEFINE_DYNAMIC_TYPE_EXTENDED doesn't work with G_IMPLEM...
1950  483337 inline is disabled for MSVC when compiling C code
1951  478349 Broken link to gettext website
1952  469231 g_spawn optimization for setting all open fds to CLOEXEC 
1953
1954 * Updated translations:
1955 Arabic (ar)
1956 Galician (gl)
1957 Hebrew (he)
1958 Korean (ko)
1959
1960
1961 Overview of Changes from GLib 2.14.0 to GLib 2.14.1
1962 ===================================================
1963
1964 * Bugs fixed:
1965  476840 Invocation of the interface "g_utf8_strreverse" crashes f...
1966  444765 Fix FIXME in gregex.c when new pcre is out
1967  464145 g_markup_escape_text Produces Invalid XML
1968  465625 g_type_default_interface_ref() does not ensure working g_...
1969  466768 Clearify that comments can be put anywhere in a Key-file.
1970  474229 The GError documentation should give convention for the G...
1971  474899 G_BREAKPOINT() docs inaccurate
1972  475854 Overuse of -lpcre when using system pcre
1973  473879 Incorrect includes in gregex.c
1974  468694 Typoes in documentation
1975  469051 g_snprintf () talks about characters where it probably me...
1976  457601 Missing arch specific atomic implementation
1977  475923 Missing pcre flags when static-linking against glib
1978  475619 glibthread-2.0.la does not list -lpthread
1979
1980 * Updated translations:
1981  Bulgarian (bg)
1982  Catalan (ca)
1983  Danish (da)
1984  German (de)
1985  Canadian English (en_CA)
1986  British English (en_GB)
1987  Spanish (es)
1988  Estonian (et)
1989  Finnish (fi)
1990  French (fr)
1991  Gujarati (gu)
1992  Hungarian (hu)
1993  Italian (it)
1994  Georgian (ka)
1995  Kannada (kn)
1996  Lithuanian (lt)
1997  Makedonian (mk)
1998  Norwegian (nb)
1999  Dutch (nl)
2000  Polish (pl)
2001  Portugese (pt)
2002  Brazilian Portugese (pt_BR)
2003  Romanian (ro)
2004  Russian (ru)
2005  Albanian (sq)
2006  Serbian (sr, sr@Latn)
2007  Swedish (sv)
2008  Tamil (ta)
2009  Thai (th)
2010  Ukrainian (uk)
2011  Vietnamese (vi)
2012
2013
2014 Overview of Changes from GLib 2.13.7 to GLib 2.14.0
2015 ===================================================
2016
2017 * Last-minute API additions:
2018  - Make g_unichar_combining_class public
2019  - Add goffset type, add G_MAXSSIZE and G_MINSSIZE
2020
2021 * Update PCRE to 7.2
2022
2023 * Bugs fixed:
2024  453998 Make _g_unichar_combining_class() public
2025  462549 gregex.c: variable is declared at middle of block
2026  417068 g_file_test doc inconsistency
2027
2028 * Updated translations:
2029  Assamese (as)
2030  Basque (eu)
2031  Kannada (kn)
2032  Malayalam (ml)
2033  Dutch (nl)
2034  Polish (pl)
2035  Brazilian Portugese (pt_BR)
2036  Turkish (tr)
2037
2038
2039 Overview of Changes from GLib 2.13.6 to GLib 2.13.7
2040 ===================================================
2041
2042 * The memory corruption warning from the slice allocator that
2043   occurred when threads were initialized after the slice allocator
2044   has been removed, as the slice allocator now works fine
2045   in this scenario.
2046
2047 * New functions g_once_init_enter() and g_once_init_leave() make
2048   it easier to write threadsafe one-time initialization functions 
2049  
2050 * Bugs fixed:
2051  454473 Simple XML Subset Parser terminates on invalid XML
2052  445813 g_module_open error, add file name
2053  453796 errno gets clobbered by g_filename_display_name
2054  341988 don't use "-c" with msgfmt in Makefile.in.in
2055  447048 Please produce slightly more output during long tests
2056  454785 GModule documentation lists same block of code twice.
2057  454786 GModule documentation lists same paragraph twice.
2058  383155 small docs quirks in gobject/closure API documentation
2059  65041  _get_type() functions aren't thread safe
2060
2061 * Updated translations
2062  Assamese (as)
2063  Spanish (es)
2064  Gujarati (gu)
2065  Japanese (ja)
2066  Korean (ko)
2067  Macedonian (mk)
2068
2069
2070 Overview of Changes from GLib 2.13.5 to GLib 2.13.6
2071 ===================================================
2072
2073 * Reintroduce a GType typedef whose removal in 2.13.5
2074   caused trouble for C++ bindings
2075
2076 * Bugs fixed:
2077  450216 docs not explicit enough about g_free()
2078  451459 g_type_register_static_simple calls g_type_register_static
2079
2080 * Updated translations
2081  Norwegian bokmål (nb)
2082  Sinhala (si)
2083
2084
2085 Overview of Changes from GLib 2.13.4 to GLib 2.13.5
2086 ===================================================
2087
2088 * xdg-user-dirs support: 
2089  - the Desktop directory is guaranteed to be defined
2090  - user-dirs.dirs is no longer reloaded on changes
2091
2092 * Slice allocator: 
2093  - new api to duplicate slices
2094
2095 * Regular expression support:
2096  - GRegex is a boxed type now
2097
2098 * Bugs fixed:
2099  44793 make check failing in trunk
2100  354522 Small problem with PLT hiding 6 symbols
2101  363986 glib 2.12.4 does not compile with SGI IDO cc
2102  443869 g_type_class_add_private doesn't warn when adding 0-sized...
2103  446859 Legitimately return 0 for g_quark_from_string(NULL)
2104  447534 Small typo in g_timeout_add_seconds() doc
2105  447583 GStaticRWLock
2106  447935 g_get_current_dir SIGSEGV on long path
2107  448260 CLAMP has surprising result if low > high
2108  57693  g_string_vprintf()
2109  442029 add g_slice_dup()
2110  445065 Add GRegex boxed type
2111  448819 Add full version of g_timeout_add_seconds()
2112
2113 * Updated translations: 
2114  Swedish (sv)
2115  Oriya (or)
2116  Hebrew (he)
2117  Spanish (es)
2118  Estonian (et)
2119
2120  
2121 Overview of Changes from GLib 2.13.3 to GLib 2.13.4
2122 ===================================================
2123
2124 * Bugs fixed:
2125  444121 g_get_user_special_dir deadlocks
2126  444161 invalid UTF8 in key name shows up as valgrind error in g_...
2127  444130 g_option_context_get_help() is broken when there's a desc...
2128
2129
2130 Overview of Changes from GLib 2.13.2 to GLib 2.13.3
2131 ===================================================
2132
2133 * GKeyFile:
2134  - Added defines for easier handling of desktop files
2135
2136 * Unicode support:
2137  - Update g_unichar_iswide_cjk for Unicode 5.0
2138
2139 * Regular expression support:
2140  - GRegex structs can now be ref-counted
2141  - Some new functions for dealing with incremental 
2142    replacement have been added
2143  - The GRegexEvalCallback signature has been changed
2144
2145 * g_get_user_special_dir() has been added to support
2146   xdg-user-dirs
2147
2148 * Bugs fixed:
2149  419376 Functions using named subpatterns behave inconsistently w...
2150  434358 g_regex_fetch_named() and g_regex_fetch_named_pos() are b...
2151  423708 typo in the README.win32 file see patch below
2152  339225 Add new defines for easier handling of .desktop files 
2153  442265 API additions/changes for GRegex
2154  432651 Add a glib-ish xdg_user_dir_lookup
2155
2156 * Updated translations:
2157  Estonian (et)
2158  Norwegian bokmål (nb)
2159
2160
2161 Overview of Changes from GLib 2.13.1 to GLib 2.13.2
2162 ===================================================
2163
2164 * Unicode support:
2165  - Add g_unichar_ismark()
2166
2167 * GOption:
2168  - Allow to use callbacks for remaining args
2169
2170 * Updated translations:
2171   Belarusian Latin (be@latin)
2172   British English (en_GB)
2173   Galician (gl)
2174   Norwegian bokmål (nb)
2175   Oriya (or)
2176   Spanish (es)
2177   Thai (th)
2178
2179
2180 Overview of Changes from GLib 2.13.0 to GLib 2.13.1
2181 ===================================================
2182
2183 * GRegex:
2184  - Portability fixes
2185  - Split into immutable GRegex and GMatchInfo
2186  - Add g_regex_get_max_backref() and g_regex_get_capture_count()
2187    to obtain information about the compiled regex
2188
2189 * GKeyFile:
2190  - Fix roundtrip problems
2191  - Add g_key_file_load_from_dirs()
2192
2193 * Unicode support:
2194  - Fix corner cases in case conversion routines
2195
2196 * GOption:
2197   - Add a function to get the formatted help string
2198
2199 * GHash:
2200  - Add new functions g_hash_table_get_keys() and
2201    g_hash_table_get_values() to retrieve the keys and
2202    values in list form
2203
2204 * Updated transations:
2205   Simplified Chinese (zh_CN)
2206   Arabic (ar)
2207
2208
2209 Overview of Changes from GLib 2.12 to GLib 2.13.0
2210 =================================================
2211
2212 * Add GSequence, a list that is implemented using
2213   a balanced binary tree.
2214
2215 * Add GRegex, an implementation of Perl regular expressions,
2216   based on PCRE.
2217  
2218 * Use Posix monotonic clocks instead of gettimeofday()
2219   for GTimer when available.
2220
2221 * Support static initialization of GQeues with G_QUEUE_INIT,
2222   g_queue_init() and g_queue_clear().
2223
2224 * Add g_string_chunk_clear() for clearing a 
2225   GStringChunk.
2226
2227 * Add g_unichar_get_script() to obtain Unicode
2228   script information.
2229
2230 * Add g_unichar_iszerowidth() to obtain information
2231   about zero-width characters.
2232
2233 * Add G_GNUC_MAY_ALIAS which wraps the gcc may_alias 
2234   type attribute.
2235
2236 * G_GNUC_INTERNAL has a working definition for the
2237   Sun Studio compiler. This requires the macro to
2238   be positioned before the function declaration.
2239
2240 * The slice allocator can produce detailed debugging
2241   information with G_SLICE=debug-blocks.
2242
2243 * Modules support G_DEBUG flags resident-modules and
2244   bind-now-modules.
2245
2246 * Add G_DEFINE_DYNAMIC_TYPE() to make it easier
2247   to define types in modules.
2248
2249 * Bug fixes: too many to list them in detail here.
2250
2251 * New and updated translations (be,bg,bn,ca,cs,de,
2252   en_CA,en_GB,et,fa,fr,he,hu,it,ja,ku,lt,mg,mk,ml,
2253   nb,ne,nn,pt,pt_BR,ro,sr,sr@Latn,sv,ta,uk,vi,zh_CN,
2254   zh_HK,zh_TW)
2255
2256
2257 Overview of Changes from GLib 2.12.1 to GLib 2.12.2
2258 ===================================================
2259
2260 * Unicode updates:
2261  - Normalization is following Unicode TR #29
2262  - g_unichar_isxdigit() only accept characters
2263    for which g_unichar_xdigit_value() returns a value
2264  - g_unichar_toupper and g_unichar_tolower leave
2265    unconvertable characters in place instead of
2266    replacing them by NUL
2267
2268 * Bugs fixed
2269  348491 g_utf8_strup() and g_utf8_strdown() returns 
2270         string with NUL bytes
2271  349825 GKeyFile always inserts a newline before a group
2272  347842 g_unichar_isxdigit() is too general about what 
2273         it considers a digit
2274  348694 g_utf8_normalize() hasn't been updated to PR #29
2275  348785 Hint about G_DEBUG in Message Logging docs
2276  349792 Wrong english string (UI)
2277  349952 gparamspecs.c uses gcc feature
2278
2279 * Translation updates (ca,cs,de,dz,es,eu,fi,gu,ko,
2280   nl,pl,tr,uk,zh_HK,zh_TW)
2281
2282
2283 Overview of Changes from GLib 2.12.0 to GLib 2.12.1
2284 ===================================================
2285
2286 * Update to final Unicode Character Database 5.0.0
2287
2288 * Bugs fixed:
2289  346660 issues with base64 api documentation / g_base64_decode_cl...
2290  348136 Coverity reports allocation of wrong size CID #2839
2291  336281 Update to UCD 5.0
2292  346197 g_date_strftime %F option doesnt work for win32
2293  348011 Small optimization to real_toupper()
2294  246494 prototype mismatch in glib/gconvert.c
2295
2296 * New and updated translations (bg,bn_IN,ca,dz,eu,fi,
2297   fr,he,it,ja,mk,or,pt)
2298
2299
2300 Overview of Changes from GLib 2.11.4 to GLib 2.12
2301 =================================================
2302
2303 * Bugs fixed:
2304  344905 leap-year bug in g_time_val_from_iso8601 w/o HAVE_TIMEGM
2305
2306 * Updated translations (cy,nb,nl)
2307
2308
2309 Overview of Changes from GLib 2.11.3 to GLib 2.11.4
2310 ===================================================
2311
2312 * GBookmarkFile:
2313  - g_bookmark_file_remove_item returns a boolean
2314  
2315 * g_mkstemp accepts the XXXXXX in the middle of
2316   the template
2317  
2318 * Bugs fixed:
2319  344868 g_key_file_to_data should separate groups 
2320
2321 * Updated translations (de,es,fr,gu,hi,ko,th)
2322
2323
2324 Overview of Changes from GLib 2.11.2 to GLib 2.11.3
2325 ===================================================
2326
2327 * GBookmarkFile:
2328   - g_bookmark_file_move_item: Return TRUE in case of
2329     an empty target
2330
2331 * Bugs fixed: 
2332  343919 gunicollate.c: strxfrm bug on VC8
2333
2334 * Updated translations (fi)
2335
2336 Overview of Changes from GLib 2.11.1 to GLib 2.11.2
2337 ===================================================
2338
2339 * Add g_ascii_stroll to parse signed 64bit integers
2340
2341 * GMarkup: add a flag to treat CDATA as text
2342
2343 * GHashTable: add functions to remove all entries
2344
2345 * GMainLoop: add functions to find the currently
2346   running source, and determine if it is destroyed
2347
2348 * Bug fixes:
2349  342563  g_atomic_thread_init() needs to be called before 
2350          other _g_*_thread_init() functions
2351  343548  Potential use after free in callers of g_string_free() 
2352  168538  Wish: Clearing contents of GHashTables
2353  321886  GTK+ cannot be reliably used in multi-threaded 
2354          applications
2355  341826  goption.c: 'strtoll' is C99's function
2356  343899  g_ascii_formatd dosn't work as expected for all 
2357          format strings
2358  317793  Make GEnumValue strings const
2359  337129  Compile warnings in G_IMPLEMENT_INTERFACE
2360  303622  What is G_TYPE_CHAR?
2361
2362 * Updated translations (bg,dz,eu,gl,ja,ko,nl,th,vi)
2363  
2364
2365 Overview of Changes from GLib 2.11.0 to GLib 2.11.1
2366 ===================================================
2367
2368 * GOption  
2369   - Support 64-bit integers 
2370   - Allow optional text before and after the options
2371     in help output
2372
2373 * Bug fixes:
2374  340538 gbase64-test writes OOB 
2375  340816 GKeyFile set_string_list invalid memory reads 
2376  339105 g_key_file_parse_value_as_double
2377  340434 convert-test.c fails (function test_one_half)
2378  311043 Memory leaks (and potential infinite loops) 
2379         when using G_ERRORCHECK_MUTEXES
2380  335198 Error checking mutexes are fubar  
2381  341237 Add a G_OPTION_ARG_INT64
2382  341192 g_io_channel_set_flags not implemented on win32
2383  336120 Allow adding description before/after GOption 
2384         --help output body
2385  341191 misplaced check in g_relation_delete
2386  340530 mismatched calloc / g_free in win32 threads
2387
2388 * Updated translation (es)
2389
2390 Overview of Changes from GLib 2.10.x to GLib 2.11.0
2391 ===================================================
2392
2393 * GBookmarkFile: a parser for files containing bookmarks
2394   stored using the Desktop Bookmark specification.
2395
2396 * Base64 encoding support
2397         
2398 * Unicode 5.0 support
2399
2400 * GOption supports floating point numbers 
2401
2402 * GKeyFile supports floating point numbers
2403
2404 * Bug fixes:
2405  155884 gatomic.c should be based on new SDK
2406  157877 update-desktop-database doesn't handle duplicate entries
2407  164719 keyfile parser doesn't support floats
2408  327662 Import BookmarkFile from libegg
2409  329548 Add G_OPTION_ARG_DOUBLE
2410  329789 option-test.c type confusion
2411  332841 Segmentation Fault when %llu is passed to vasnprintf and 
2412         HAVE_SNPRINTF is not defined
2413  333879 gthread/gthread-win32.c: IsDebuggerPresent needs '#define 
2414         _WIN32_WINDOWS 0x0401'
2415  333916 g_timer_elapsed docs should mention that microseconds 
2416         may be NULL
2417  334440 dlerror() portability issue causes crash on (old) a.out 
2418         NetBSD platform
2419  334646 goption + error out params
2420  334799 g_remove() must check return value of remove()
2421  334943 make check FAIL: threadpool-test
2422  335215 Some breakages with GThreadPool
2423  336085 g_option_context_new parameter lacks better explanation
2424  336677 Documentation for g_object_ref_sink() is incorrect
2425  337027 gbookmarkfile.c: sys/time.h include error
2426  337553 Wrong escaping of URIs
2427  338572 Dereferencing NULL value in g_key_file_get_group_comment
2428  338845 g_completion_complete_utf8 crashes when NULL is passed to it
2429  339337 g_bookmark_file_set_description
2430  339338 gbookmarkfile.c, function expand_exec_line
2431  339340 gbookmarkfile.c, function bookmark_app_info_dump
2432
2433 * Translation updates (bg,en_GB,et,gl,gu,he,hi,ka,nb,nl,nn,
2434                        or,pt_BR,ro,tr,vi,zh_CN)
2435
2436
2437 Overview of Changes from GLib 2.10.0 to GLib 2.10.1
2438 ===================================================
2439
2440 * Bugs fixed:
2441  314794 Broken pthread detection on Darwin [Gregor Riepl]
2442  322476 Missing check for .dylib [Vladimir Panov]
2443  333651 Inconsistent _g_charset_get_aliases prototype [Julio 
2444         M. Merino Vidal]
2445  333761 GInitiallyUnowned breaks application code [Sven Herzberg]
2446
2447 * Win32 changes:
2448  - Fix g_listenv() implementation.
2449  - Allow up to 100 GPrivate structs
2450
2451 * Translation updates (fr,hu,lt,pl,sv)
2452
2453
2454 Overview of Changes from GLib 2.9.6 to GLib 2.10.0
2455 ==================================================
2456
2457 * Bugs fixed:
2458  328997 64bit pointer trunction in glib slab-allocator
2459         [Pascal Hofstee]
2460  331110 g_cond_broadcast(inform_cond) without holding 
2461         inform_mutex [Chris Wilson, Sebastian Wilhelmi]
2462  332093 Fix some leaks in the tests [Kjartan Maraas]
2463  332435 g_utf8_strlen returns wrong value if a maximum 
2464         number of bytes to check is specified 
2465         [Matthias Clasen]
2466  331367 gslice requires more POSIX-like semantics for 
2467         GPrivate destructors [Tor Lillqvist]
2468
2469 * Documentation improvements [Matthias, Kang Jeong-Hee,
2470   Tor Lillqvist, Stefan Kost]
2471
2472 * Translation updates (el,eu,ka,uk)
2473
2474 Overview of Changes from GLib 2.9.5 to GLib 2.9.6
2475 =================================================
2476
2477 * Bugs fixed: 
2478  329124 distclean removes README [Kjartan Maraas, Tim Janik]
2479  317679 GRelation field type not documented [Behdad Esfahbod]
2480  329123 Typo in GTime docs [Kjartan Maraas]
2481
2482 * Documentation improvements [Sven Herzberg, David
2483   Schleef, Kjartan Maraas, Behdad Esfahbod]
2484
2485 * Translation updates (cs,cy,it,ko,pt,sq,sr,sr@Latn,ru
2486
2487 Overview of Changes from GLib 2.9.4 to GLib 2.9.5
2488 =================================================
2489
2490 * Memory management: 
2491   Runtime debugging support: The slice allocator
2492   can be turned off by setting G_SLICE=always-malloc
2493   in the environment. Zeroing of freed memory can
2494   now be turned on at runtime by setting
2495   G_DEBUG=gc-friendly in the environment. [Tim Janik]
2496
2497 * Bugs fixed:
2498  328253 HP-UX/IA-64 uses ".so" as default shared library 
2499         extension [Albert Chin]
2500  143380 unicode-encoding test fails converting to UTF-16 
2501         with libiconv [Marc Moorcroft]
2502  328254 Build breakage (GSlice) [Jens Ganseuer]
2503  328705 C99ism in glib/gmem.c [Kazuki Iwamoto]
2504
2505 * Translation updates (da,et,zh_CN)
2506
2507 Overview of Changes from GLib 2.9.3 to GLib 2.9.4
2508 =================================================
2509
2510 * Type system:
2511   Fix a problem with g_object_compat_control() which 
2512   can lead to segfaults in GTK+ applications on 64bit 
2513   platforms. 
2514
2515 * Thread suppport: 
2516   Unused threads now fall back to the global pool after 
2517   500 milliseconds, where they wait for another 
2518   max-idle-time milliseconds. [Sebastian Wilhelmi]
2519
2520 * Fix a memory allocation problem in GKeyFile. [Morten 
2521   Welinder]
2522
2523
2524 Overview of Changes from GLib 2.9.2 to GLib 2.9.3
2525 =================================================
2526
2527 * GTree:
2528  - Replace the simple recursive implementation by
2529    a nonrecursive, threaded one  [Maurizio Monge]
2530
2531 * Change g_filename_display_name and
2532   g_filename_display_basename to use the Unicode
2533   replacement character U+FFFD instead of a question
2534   mark, and don't append "(invalid encoding)"  [Matthias]
2535
2536 * Documentation improvements [Sven Herzberg, Federico
2537   Mena Quintero, Stefan Kost]
2538
2539 * Bugs fixed:
2540  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X 
2541         [Bogdan Nicula]
2542  326558 Some test failures on IRIX 6.5 [Daichi Kawahata]
2543  169285 "threaded" tree implementation for GTree 
2544         [Maurizio Monge]
2545  326747 g_filename_display_basename adds (invalid encoding) 
2546         [Alberto Ruiz]
2547
2548 Other contributors: Christian Kellner, Murray Cumming
2549
2550 New and updated translations (bg,ca,de,es,et,gu,ja,nl,th,vi)
2551
2552
2553 Overview of Changes from GLib 2.9.1 to GLib 2.9.2
2554 =================================================
2555
2556 * Memory management:
2557  - Add tests for cache colorization [Tim Janik]
2558  - Minimize space consumption if small amounts of differently
2559    sized slices are allocated, at a small performance cost.  [Tim]
2560
2561 * Thread support:
2562  - Add g_atomic_pointer_set() and g_atomic_int_set() [Tim Janik,
2563    Sebastian Wilhelmi]
2564  - Add g_thread_pool_set_sort_function() to allow sorting the 
2565    tasks of a threadpool.  [Martyn Russell]
2566  - Add g_thread_pool_set_idle_time() to allow unused threads
2567    to exit after a certain time.  [Martyn]
2568
2569 * Type system:
2570  - introduce a new type GInitiallyUnowned, which has an initial
2571    floating reference. [Tim]
2572  - Add support for GType parameters. [Matthias]
2573
2574 * Main loop:
2575  - Add g_main_context_is_owner() to determine if the current
2576    thread is the owner of the context.  [Michael Meeks]
2577
2578 * Provide g_access(), g_chdir(), g_unlink(), g_rmdir() as 
2579   wrapper functions instead of macros.  [Manish Singh]
2580
2581 * Documentation improvements [Tim, Matthias, Federico Mena Quintero,
2582   Stefan Kasal, Dan Williams]
2583
2584 * New and updated translations (en_CA,fi,fr,gl,ml,nb,no,zh_HK,zh_TW)
2585
2586 * Bugs fixed:
2587  324179 g_allocator_new() returns pointer to const dummy which Gtk+ 2.8 
2588         tries to modify [J. Ali Harlow]
2589  324332 g_option_context_parse() returns false without setting error 
2590         [Tim-Philipp Müller]
2591  324950 GLIB 2.9.1 testcase errors [Dan Yefimov]
2592  325015 gslice.c: process.h is needed on Windows [Kazuki Iwamoto]
2593  321978 G_DATALIST_GET_FLAGS() macro is not casting datalist to 
2594         gpointer [Andrew Paprocki]
2595  316221 G_LOCK warns about breaking strict-aliasing [Michal Benes, 
2596         Stanislav Brabec]
2597  325273 Error in documentation for glib_check_version () [Declan Naughton]
2598  325310 g_spawn_sync hangs when catching both stdout and 
2599         stderr [Tor Lillqvist]
2600  325249 gcc warning when using g_rmdir from <glib/gstdio.h> [Jani Monoses]
2601  325864 glib/gthreadpool.c:"#define debug(...)" is C99 [Kazuki Iwamoto]
2602  325874 Should say somewhere that source IDs are > 0 [Dan Williams]
2603  325438 a typo (compatability) [Stefan Kasal]
2604  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X [Bogdan Nicula]
2605
2606
2607 Overview of Changes from GLib 2.9.0 to GLib 2.9.1
2608 =================================================
2609
2610 * Memory management
2611  - The slice allocator is implemented [Tim Janik]
2612  - g_slice_free_chain() has been renamed to 
2613    g_slice_free_chain_with_offset()  [Tim, Behdad Esfahbod]
2614  - Mem chunks are deprecated [Matthias Clasen]
2615
2616 * Data structures
2617  - Hash tables are refcounted, and have a boxed type [Tim]
2618
2619 * Thread support
2620  - Support for Solaris threads has been removed 
2621    [Sebastian Wilhelmi, Andrew Paprocki]
2622  - g_async_queue_sort(), g_async_queue_push_sorted() have 
2623    been added to allow GAsyncQueue to be used as a priority 
2624    queue, together with the corresponding _unlocked 
2625    variants  [Martyn Russell]
2626
2627 * GObject:
2628  - The concept of a floating initial reference has been
2629    moved from GtkObject to GObject [Tim]
2630
2631 * Win32 changes:
2632  - Make g_rename() replace existing files [Tor Lillqvist]
2633
2634 * Misc new API:
2635  - G_GUINT64_CONSTANT macro to define guint64 
2636    constants [Andrew Paprocki]
2637  - G_GNUC_WARN_UNUSED_RESULT macro to instruct the 
2638    compiler to emit a warning if the value returned
2639    by a function is ignored. [Arjan van de Ven, Alex Larsson]
2640  - GList and GSList now have sort functions which take an
2641    extra user data argument [Martyn Russell]
2642  - g_param_spec_ref_sink() has been added for consistency [Tim]
2643
2644 * $LOGNAME is respected when determining user data. [Laszlo Peter]
2645
2646 * Other changes and bug fixes [Tim, Matthias, Behdad, 
2647   Christian Persch, Benedikt Meurer, Andrew Paprocki, 
2648   Kazuki Iwamoto, Alexis S. L. Carvalho, Stanislav Brabec,
2649   Andreas Schwab, Kalle Vahlman]
2650
2651 * Documentation
2652  - Deprecation warnings carry version information [Matthias]
2653  - The slice allocator has been documented [Matthias, Tim]
2654  - Other improvements [Morten Welinder]
2655
2656 Overview of Changes from GLib 2.8.x to GLib 2.9.0
2657 =================================================
2658 * Unicode support:
2659  - The Unicode tables have been updated to Unicode 4.1, 
2660    adding several new values to the GUnicodeBreakType 
2661    enumeration. This breaks Pango <= 1.10 
2662    [Behdad Esfahbod]
2663  - The various Unicode character predicate functions 
2664    (g_unichar_isalpha, g_unichar_isdigit,...) have
2665    been optimized
2666    [Behdad]
2667  - g_utf8_pointer_to_offset, g_utf8_offset_to_pointer:
2668    These functions handle negative offsets now, and
2669    going backwards in g_utf8_offset_to_pointer uses
2670    "stutter stepping".
2671    [Larry Ewing, Matthias Clasen]
2672
2673 * Memory management:
2674  - Mem chunks are no longer used internally in GLib and
2675    GObject. GMemChunk will be deprecated in GLib 2.10
2676  - All APIs based on GAllocator (g_list_push/pop_allocator,
2677    and similar push/pop_allocator functions for other
2678    data structures) have been deprecated, since they
2679    never worked as intended.
2680  - The g_slice_* functions have been added as a 
2681    new API for fast allocation of small memory blocks. 
2682    The implementation in GLib 2.9.0 is just a simple 
2683    wrapper around malloc. GLib 2.10 will have an
2684    efficient and scalable implementation. 
2685    [Tim Janik, Matthias]
2686
2687 * Pattern matching:
2688  - g_pattern_match has been optimized to avoid
2689    unnecessary recursion.
2690    [Tim, Matthias]
2691
2692 * g_intern_string, g_intern_static_string: 
2693  - New functions to intern strings. These are now used 
2694    by GObject to avoid duplicating static strings 
2695    [Matthias]
2696
2697 * g_thread_foreach: 
2698  - New function to iterate over all GThreads 
2699    [Tim, Matthias]
2700
2701 * g_date_set_time_t, g_date_set_time_val:
2702  - New functions to set a GDate from a time_t or
2703    GTimeVal value. g_date_set_time has been deprecated 
2704    in favor of these.
2705    [Roger Leigh]
2706
2707 * g_snprintf and g_vsnprintf:
2708  - These functions are no longer declared in gprintf.h, 
2709    since they are in glib.h
2710    [Matthias]
2711
2712 Overview of Changes from GLib 2.8.0 to GLib 2.8.1
2713 =================================================
2714 * Optimize single-character insertions in GString [Ross Burton]
2715 * Fix build problems on OS X
2716 * Fix build problems on Win32 [Tor Lillqvist, Hans Breuer]
2717 * Other bug fixes [Matthew F. Barnes, Stepan Kasal] 
2718 * Documentation improvements [Tristan van Berkom, Behnam
2719   Esfahbod, Gustavo Carneiro, Stepan Kasal, Matthias]
2720 * New and updated translations (ca,cy,ko,ro,uk)
2721
2722 Overview of Changes from GLib 2.7.7 to GLib 2.8.0
2723 =================================================
2724 * Make g_value_transform() handle enum values
2725   correctly on ppc64.  [Michael Lorenz]
2726   (Third-party code accessing enumeration values 
2727   in GValues should also be changed to access 
2728   v_long, not v_int, in order to work on bigendian 
2729   64bit machines.)
2730 * Make g_flags_get_first_value() handle a value
2731   of 0 meaningfully. [Tim-Philipp Müller] 
2732
2733 Overview of Changes from GLib 2.7.6 to GLib 2.7.7
2734 =================================================
2735 * Make atomic operations on s390 work [Matthias]
2736 * Fix C++ guards in gstdio.h [Tor Lillqvist]
2737
2738 Overview of Changes from GLib 2.7.5 to GLib 2.7.6
2739 =================================================
2740 * Add native implementations of atomic operations 
2741   on s390 [Matthias]
2742 * Make atomic reference counting of closures
2743   work on s390 [Matthias]
2744 * Avoid an infinite loop in g_convert_with_iconv().
2745   [Sebastian Bacher]
2746 * Documentation improvements [Ross Burton]
2747
2748 Overview of Changes from GLib 2.7.4 to GLib 2.7.5
2749 =================================================
2750 * Thread-related changes
2751  - Fix build issues on HP-UX [Paul Cornett]
2752  - Threadsafe access to flags stored in datasets [Tim Janik]
2753  - Fix several issues with atomic refcounting for 
2754    closures, objects and paramspecs [Tim]
2755  - Improve tests for atomic refcounting changes [Tim]
2756 * Fix handling of stateful encodings in g_convert_* [Matthias]
2757 * Fix translation of GOption help output [Dan Winship]
2758 * Catch format errors in translations. This may cause 
2759   "make check" to fail when using older versions
2760   of gettext [Matthias]
2761 * Win32 bug fixes [Tor Lillqvist]
2762 * Documentation improvements [Ross Burton, Jochen Baier, 
2763   Matthias, Tim]
2764 * New and updated translations (de,fi,gu,pl,pt,tr,zh_TW)
2765
2766 Overview of Changes from GLib 2.7.3 to GLib 2.7.4
2767 =================================================
2768 * Fix g_atomic_pointer_compare_and_exchange 
2769   on Sparc64 [Gert Doering]
2770 * Fix a hang in g_thread_pool_free. [Hong Jen Yee]
2771 * Win32 bug fixes [Tor Lillquist]
2772 * Other bug fixes [Benoit Dejean, Manish Singh]
2773 * Documentation improvements [Bryan Silverthorn,
2774   Callum McKenzie] 
2775 * New and updated translations (de,lt,sq,zh_CN)
2776
2777 Overview of Changes from GLib 2.7.2 to GLib 2.7.3
2778 =================================================
2779 * GOption
2780  - Allow callbacks with optional arguments [Pawel Sliwowski]
2781  - Allow to turn off the automatic long option name
2782    disambiguation  [Adam McLaurin]
2783  - Only allow printable ASCII as short option names [Matthias]
2784 * Win32
2785  - Build fixes [Tor Lillqvist]
2786  - Rewrite iochannel socket implementation [Tor]
2787 * GObject
2788  - Threadsafety improvements; in particular, refcounting
2789    of objects is done atomically now. [Wim Taymans, Tim Janik]
2790 * Bug fixes [Morten Welinder, Matthias, Wim Taymans]
2791 * Documentation improvements [Richard Laager, Matthias]
2792 * New and improved translations (bf,cs,hu,nb,nl,no)
2793
2794 Overview of Changes from GLib 2.7.1 to GLib 2.7.2
2795 =================================================
2796 * Win32 build fixes [Hans Breuer]
2797 * Bug fixes [Mikael Magnusson]
2798 * Documentation improvements [Matthias Clasen]
2799 * New and updated translations (en_CA,es,et,ja,sr,sr@Latn,zh_TW)
2800
2801 Overview of Changes from GLib 2.7.0 to GLib 2.7.1
2802 =================================================
2803 * GOption 
2804  - Allow callback arguments without parameters [Dan Winship]
2805 * GMappedFile: an mmap wrapper [David Schleef, Behdad Esfahbod]
2806 * Misc new functions:
2807  - g_get_host_name [Tor Lillqvist]
2808  - g_mkdir_with_parents [Tor]
2809  - g_build_pathv, g_build_filenamev [Todd A. Fisher, 
2810    Matthias Clasen]
2811 * Bug fixes [Roger Leigh, Masatake YAMATO, Kjartan Maraas,
2812   Manish Singh, Tor, Murray Cumming, Kian Duffy, Morten Welinder]
2813 * Documentation improvements [Hong Gang XU, Dan Winship, Matthias]
2814 * New and updated translations (bg,cs,da,en_CA,es,et,nb,nl,no,
2815   sk,th,zh_TW)
2816
2817 Overview of Changes from GLib 2.6.x to GLib 2.7.0
2818 =================================================
2819 * GKeyFile
2820  - Add unit tests [Matthias Clasen, Suren A. Chilingaryan]
2821  - Accept \r\n as line end [Bastian Nocera]
2822  - Don't interpret leading zeros as octal numbers. [Matthias]
2823  - Make key and group removal work [David Hoover, Matthias Hasselmann]
2824 * GOption
2825  - Improve formatting of --help output [Matthias, Noah Levitt]
2826  - Accept -? [Matthias]
2827  - Warn about duplicate main groups [Jeff Franks]
2828  - Treat '-' as non-option argument [Tim Musson, Thomas Leonard]
2829  - Report missing arguments as errors [Björn Lindqvist]
2830  - Add a boxed type for GDate [Tim-Philipp Müller]
2831 * GTree
2832  - g_tree_remove() and g_tree_steal() return status information [Matthew F. Barnes]
2833 * Stdio wrappers
2834  - Work regardless of large file support [Manish Singh]
2835  - Add g_access(), g_chmod(), g_creat(), g_chdir [Tor Lillqvist]
2836 * GObject
2837  - Implement "toggle references" to help language bindings [Owen Taylor]
2838  - Allow to mark names, nicks and blurbs of pspecs as static [Ben Maurer, Matthias]
2839  - Make pspec lookup a bit faster [Morten Welinder]
2840 * Add g_listenv() to list all set environment variables [Hans Petter Jansson]
2841 * Add g_file_set_contents() to atomically write a file.  [Søren Sandmann,
2842   Sven Neumann, Manish, Alexis S. L. Carvalho]
2843 * Add g_try_malloc(), g_try_new(), g_try_new0() and g_try_renew() [Stefan Kost]
2844 * Add g_utf8_collate_key_for_filename() to sort filenames taking
2845   extensions and numeric suffixes into account.  [Ole Laursen, Alex Larsson]
2846 * Add G_GNUC_NULL_TERMINATED to mark varargs function with 
2847   NULL-terminated argument lists. [Marc Meissner]
2848 * Win32 changes
2849  - Improved debugability [Ulf Lamping, Hans Breuer]
2850  - Make filename handling more robust [Tor, Billy Skaggs]
2851  - Improve g_get_system_data_dirs() [Tor]
2852  - Use more precise timers [Tor]
2853  - Build fixes [Kazuki Iwamoto, Hans, Tor, Robert Ögren]
2854 * Other bug fixes [Roger Leigh, Owen, Matthias, Morten, Kjartan Maraas, 
2855   Pawel Sakowski, Tor, Simon Budig, Ed Avis, Manish, Nicolas Laurent, 
2856   Bastien, Fabrício Barros Cabral, Michael Banck, Daniel Atallah, 
2857   J. Ali Harlow, Tim Janik, Hazael Maldonado Torres, Sven, Jon-Kare Hellan,
2858   Dave Benson, Tommi Komulainen, Benjamin Otte, Brian Cameron, Changwoo Ryu, 
2859   Christian Biere, Noah, Benoît Carpentier]
2860 * Documentation improvements [Vincent Untz, Matthias, Tim-Philipp Müller,
2861   Morten, Matthew, Federico Mena Quintero, Sebastian Bacher, Oliver Sessink, 
2862   Stefan, Jared Lash, Tor, Owen, Daniel Vaillard, Mathieu Lacage]
2863 * New and updated translations (ca,cs,da,el,en_CA,en_GB,es,et,eu,fa,fr,gl,
2864   hu,id,it,lt,mn,ne,nl,pl,pt,pt_BR,ro,rw,sk,sq,sr,sr@Latn,tl,uk,xh,zh_CN)
2865
2866 Overview of Changes from GLib 2.6.0 to GLib 2.6.1
2867 =================================================
2868 * GOption
2869  - Make gtk_init(NULL, NULL) work again [Marcin Krzyzanowski]
2870  - Improve handling of -- [Matthias Clasen]
2871  - Don't show G_OPTION_REMAINING in --help output [Matthew F. Barnes]
2872 * g_find_program_in_path() doesn't return directories [Tommi Komulainen]
2873 * Add gmodule-export-2.0.pc [Matthias]
2874 * Win32 changes
2875  - Improve hangling of UNC paths [Tor Lillqvist]
2876  - g_getenv(), g_setenv(), g_unsetenv(), g_find_program_in_path()
2877    take and return UTF-8 now [Tor] 
2878  - Make g_file_test() work more reliably, and use PATHEXT
2879    when check for executables [Tor]
2880  - Build and cross-compilation fixes [J. Ali Harlow]
2881 * Other bug fixes [Jens Hatlak, Morten Welinder, 
2882   Tor, Kalpesh Shah, Adrian Bunk]
2883 * Documentation improvements [Marcin Krzyzanowski, Tor, Crispin
2884   Flowerday, Mariano Suárez-Alvarez, Christian Biere, Danny Milo,
2885   Vincent Untz, Bastien Nocera]
2886 * New and updated translations (cy,de,nl,ru,sq,sv)
2887
2888 Overview of Changes from GLib 2.4.x to GLib 2.6.0
2889 =================================================
2890
2891 * Major new APIs
2892   - GOption, a commandline option parser
2893   - GKeyFile, a parser/editor for the .ini like files 
2894   - Functions to support the XDG basedir specification
2895   - Wrappers for common POSIX pathname functions to handle filename
2896     encodings consistently. On Windows, these use UTF-8.
2897
2898 * Miscellaneous new functions
2899   - g_filename_display_name() converts filenames in displayable UTF-8 strings
2900   - g_uri_list_extract_uris() splits uri lists
2901   - g_date_get_iso8601_week_of_year() gets ISO 8601 week numbers
2902   - g_log_set_default_handler() installs an alternate default log handler
2903   - g_get_language_names() obtains a list of applicable locale names
2904   - g_strv_length() calculates the length of NULL-terminated string arrays
2905   - g_win32_get_windows_version() determines the Windows version 
2906   - G_GNUC_INTERNAL marks functions as non-exported
2907   - glib_check_version() checks the GLib version at runtime
2908   - g_debug() completes the family of logging functions
2909
2910 * Performance improvements
2911   - Optimize g_utf8_validate()
2912   - Optimize g_markup_parse_context_parse()
2913   - Reduce signal connection complexity from O(n) to O(1) 
2914   - Get rid of many PLT entries for internally used exported symbols
2915   - Reduce code size by removing literal strings from g_return_if_fail()
2916
2917 * Other changes
2918   - On Windows, GLib functions that take file name arguments now require
2919     those to be in UTF-8. Functions that return file names return UTF-8.
2920   - Use higher precision for mathematical constants
2921   - Don't convert to/from UTF-8 in g_filename_to_uri/g_filename_from_uri
2922   - Support ll as printf format modifier for long long on all platforms
2923   - Clean up the ABI and enforce the list of exported symbols
2924   - Add a .pc file for using gmodule in libraries
2925   - Require ngettext
2926
2927 Overview of Changes from GLib 2.5.7 to GLib 2.6.0
2928 =================================================
2929 * GOption: Don't list help options if group-specific
2930   options have been requested [Glynn Foster]
2931 * Make g_get_language_names() track locale changes [Christian Persch]
2932 * Win32 bug fixes [Tor Lillqvist]
2933 * Bug fixes [Philippe Blain, Owen Taylor, Sebastian Wilhelmi]
2934 * New and updated translations (da,es,ja,lt,zh_CN)
2935 Bugs fixed: 159530,100697,160271,160645,157255
2936
2937 Overview of Changes from GLib 2.5.6 to GLib 2.5.7
2938 =================================================
2939 * Optimize g_utf8_validate() [Owen Taylor, Matthias Clasen]
2940 * Optimize g_markup_parse_context_parse() [Havoc Pennington, 
2941   Morten Welinder]
2942 * Reduce signal connection complexity from O(n) to O(1) 
2943   [Sven Neumann]
2944 * Add a .pc file for using gmodule in libraries [Owen]
2945 * Add G_GNUC_MALLOC to mark functions returning newly 
2946   allocated memory  [Matthias]
2947 * Win32 bug fixes [Hans Breuer, Tor Lillqvist, Robert Ögren,
2948   Bruce Hochstetler]
2949 * Bug fixes [Kazuki IWAMOTO, Matthias, Manish Singh, Morten,
2950   Frederic Crozat, Tor]
2951 * Documentation improvements [Matthias, Tor, Owen]
2952 * New and updated translations (cs,da,de,en_CA,en_GB,es,nb,nl,sq,zh_CN)
2953
2954 Overview of Changes from GLib 2.5.5 to GLib 2.5.6
2955 =================================================
2956 * GOption
2957   - Add G_OPTION_FLAG_REVERSE to allow options 
2958     which unset a  boolean variable [Tor Lillqvist]
2959 * GChildWatch
2960   - Use sigaction instead of signal [Jonas Jonnson, 
2961   Archana Shah]
2962   - Make the very first SIGCHLD work [Gustavo Carneiro]
2963 * Bug fixes [Morten Welinder, Tor, David MacLachlan,
2964   Manish Singh, J. Ali Harlow]
2965 * Documentation improvements [Matthias Clasen, Tor]
2966 * Updated translations (da,ja,tr,zh_CN)
2967
2968 Overview of Changes from GLib 2.5.4 to GLib 2.5.5
2969 =================================================
2970 * GKeyFile
2971   - Cleanups, add more error checking [Ray Strode]
2972   - Fall back to the untranslated string when getting 
2973     locale strings [Mark McLoughlin]
2974 * GOption
2975   - Document GOption [Matthias Clasen]
2976   - Better support for rest arguments [Owen Taylor, Matthias]
2977   - Handle conflicts between groups [Matthias]
2978 * Add g_lstat() to the stdio wrappers [Tor Lillqvist]
2979 * Add g_filename_display_name() to convert filenames
2980   in displayable UTF-8 strings  [Alex Larsson, Matthias]
2981 * Win32 bug fixes [Kazuki IWAMOTO, Hans Breuer, Tor]
2982 * Bug fixes [Christophe Fergeau, Morten Welinder, 
2983   Owen, Kjartan Maraas, Mark]
2984 * Documentation improvements [Matthias, Tor]
2985
2986 Overview of Changes from GLib 2.5.3 to GLib 2.5.4
2987 =================================================
2988 Add GKeyFile, a parser/editor for the .ini like files used in various
2989    freedesktop.org specifications. [Ray Strode]
2990 Make the handling of filename encodings consistent across all
2991    GLib functions, introduce wrappers for common POSIX 
2992    functions which accept the same filename encoding. [Tor Lillqvist, 
2993    Owen Taylor]
2994 GOption
2995  - Rename g_context_option_error_quark() to a more language-binding
2996    friendly name [Murray Cumming]
2997  - Accept backslashes in filenames on Win32 [Tor Lillqvist]
2998 * Strip the internal aliasing prefix IA__ from function names in 
2999   assertions [Matthias Clasen]
3000 * Add a function to split uri lists. [Matthias]
3001 * Win32 bug fixes 
3002  - Don't open console windows [Tor]
3003 * Other bug fixes [Philippe Blain, Robert Ögren, Hidetaka Iwai, Matthias,
3004  Morten Welinder, Mats-Ola Persson, Tor, Nickolay V. Shmyrev, Kjartan Maraas,
3005   Anders Carlsson, Tim-Philipp Müller, Lucas Rocha, Andrea Campi, Manish
3006   Singh, Thomas Fitzsimmons, Kazuki IWAMOTO]
3007 * Documentation improvements [Matthias, Linus Walleij, Nickolay, Philippe, 
3008  Adam Hooper, Gustavo Carneiro]
3009 * New and updated translations (cs,en_CA,en_GB,ja,nb,nl,or,sr,sr@Latn,sq)
3010
3011 Overview of Changes from GLib 2.5.2 to GLib 2.5.3
3012 =================================================
3013 * GOption
3014  - set the program name from argv[0] [Masatake YAMATO] 
3015  - make contexts work without a main group [Anders Carlsson]
3016 * Performance 
3017  - Get rid of many PLT entries for internally used exported symbols,
3018    and clean up the ABI at the same time and make make check check the
3019    list of exported symbols.  [Matthias Clasen]
3020 * Add API to get ISO 8601 week numbers [Niklas Lundell]
3021 * Add API to install an alternate default log handler [Darin Adler]
3022 * Add API to obtain a list of applicable locale names [Hidetoshi Tajima]
3023 * Reduce code size bloat by removing literal strings from
3024  the g_return_if_fail() macros [Owen Taylor]
3025 * Add g_strv_length [Tim-Philipp Müller]
3026 * Win32 changes
3027  - Add API to determine the Windows version [Tor Lillqvist]
3028 * Other bug fixes [Stepan Kasal, Anders, Tor, Kazuki Iwamoto,
3029   Manish Singh]
3030 * Documentation improvements [Morten Welinder, Matthias]
3031 * New and updated translations (es,nn,ro)
3032
3033 Overview of Changes from GLib 2.5.1 to GLib 2.5.2
3034 =================================================
3035 * Add G_GNUC_INTERNAL macro [Arjan van de Ven]
3036 * Add GOption, a commandline option parser [Anders Carlsson]
3037 * Add glib_check_version [Michael Natterer]
3038 * Add XDG basedir API [Ray Strode]
3039 * Require ngettext [Danilo Segan]
3040 * Bug fixes [Manish Singh, Ray Strode, Vincent Noel, 
3041   Jon-Kare Hellan, Jody Goldberg]
3042 * Win32 bug fixes [Tor Lillqvist, Hans Breuer, Peter Zelezny]
3043 * Documentation improvements [Matthias Clasen, Vincent Untz, Christian Persch]
3044 * New and updated translations (bs,eu,fi,gu,ne,pa)
3045
3046 Overview of Changes from GLib 2.5.0 to GLib 2.5.1
3047 =================================================
3048
3049 * Bug fixes [Oliver Guntermann, Sven Neumann, James 
3050   Henstridge, Hiroyuki Ikezoe, Matthias Clasen, Robert 
3051   Ögren, Tommi Komulainen]
3052 * Documentation improvements [Soeren Sandmann, 
3053   Christophe Fergeau, Danek Duvall]
3054 * New and updated translations (eu,hi)
3055   
3056 Overview of Changes from GLib 2.4.1 to GLib 2.5.0
3057 =================================================
3058
3059 * New functions g_debug [Sven Herzberg]
3060 * Use higher precision for mathematical constants [Morten 
3061  Welinder]
3062 * Don't convert to/from UTF-8 in g_filename_{to,from}_uri 
3063  [Federico Mena Quintero]
3064 * Win32
3065  - Handle empty digit string in printf() functions 
3066    correctly [Tor Lillqvist]
3067  - Support ll as format modifier for long long [Tor]
3068  - Be more careful about HOME [Tor, Ivan Wong]
3069  - Bug fixes [John Ehresman]
3070 * Miscellaneous bug and portability fixes [Danilo Segan, 
3071  Owen Taylor, Nikolai Weibull, Benoît Carpentier, Morten 
3072  Welinder, Manish Singh, Sven Neumann, Julio M. Merino Vidal,
3073  Kaz Sasayama, Murray Cumming, Federico, Mariano Suarez-Alvarez]
3074 * Documentation updates [Matthias Clasen, Crispin Flowerday,
3075  Tommi Komulainen, Federico Mena Quintero, Ed Griffiths]
3076 * New and updated translations (ja,ne,no,wa)
3077  
3078 Overview of Changes from GLib 2.4.0 to GLib 2.4.1
3079 =================================================
3080
3081 * Win32 bug fixes [Tor Lillqvist, Roger Leigh, John Ehresman]
3082 * Miscellaneous bug and portability fixes [Owen Taylor,
3083   Matthias Clasen, Jonas Jonsson, Christian Krause,
3084   Nickolay V. Shmyrev, Christophe Saout, Philippe Blain,
3085   Piotr Klaban]
3086 * Documentation updates [Matthias]
3087 * New and updated translations (ca,cs,cy,el,en_CA,en_GB,es,eu,fi,
3088   fr,gu,he,id,nl,pt,pl,ru,sr,sr@ije,sr@Latn,sv,uk)
3089
3090 Overview of Changes from GLib 2.3.6 to GLib 2.4.0
3091 =================================================
3092
3093 * Handle invalid-UTF-8 in g_log() properly [Matthias Clasen]
3094 * Win32 bug fixes [Tor Lillqvist, Bruce Hochstetler]
3095 * Miscellaneous bug and portability fixes [Olivier Biot, David L. Cooper II, 
3096   Kjartan Maraas, Frédéric L. W. Meunier, Christof Petig, Manish Singh, 
3097   Sebastian Wilhelmi]
3098 * Documentation updates [Owen]
3099 * Updated translations (hr,ro)
3100
3101 Overview of Changes from GLib 2.3.5 to GLib 2.3.6
3102 =================================================
3103
3104 * GAtomic bug fixes [Sebastian Wilhelmi, Mark McLoughlin]
3105 * GMain threading fixes and improvements [Sebastian]
3106 * Win32 [Tor Lillqvist]
3107  - restore some symbols extraneously exported from gobject to maintain ABI compatibility
3108  - Misc build improvements and fixes [Tor, Cedric Gustin, Hans Breuer]
3109 * Documentation updates [Sebastian, Takeshi AIHANA, Matthias, Sven Herzberg]
3110 * New and updated translations (be,es,fi,ga,pa,sr@ije,zh_CN)
3111
3112 Overview of Changes from GLib 2.3.3 to GLib 2.3.5
3113 =================================================
3114
3115 * Make glib-mkenums parse initializers with macros. [Matthias Clasen, muppet]
3116 * Respect locale era in g_date_set_parse(). [Theppitak Karoonboonyanan] 
3117 * Add atomic operations and use it for the async queue and
3118   gonce implementation. [Sebastian Wilhelmi]
3119 * Documentation improvements [Sebastian, Matthias, Sven Herzberg]
3120 * Add g_main_depth() for finding the recursion depth of the main
3121   loop [Owen Taylor, Tim Janik, Stefan Westerfeld]
3122 * Add g_spawn_close_pid(), needed on win32 [J. Ali]
3123 * Win32 fixes. [Hans Breuer, J. Ali Harlow]
3124 * Misc bugfixes [Sebastian, Matthias, Balazs Scheidler, Owen]
3125 * Updated translations (cy,et,ga,sq)
3126
3127 Overview of Changes from GLib 2.3.2 to GLib 2.3.3
3128 =================================================
3129
3130 * Add a native AIX gmodule implementation. [Laurent Vivier]
3131 * Add g_node_copy_deep().  [James M. Cape, Matthias Clasen]
3132 * Extend GQueue API to match the GList API. [Soeren Sandmann]
3133 * Add g_hash_table_find().  [Tim Janik]
3134 * Add a G_MODULE_BIND_LOCAL flag. [David Schleef]
3135 * Inline g_string_append_c() when possible. [Owen Taylor, Tim]
3136 * Wrap waitpid() as a GSource. [Jonathan R. Blandford]
3137 * Add g_completion_complete_utf8(). [Theppitak Karoonboonyanan, 
3138   Matthias]
3139 * Add g_strsplit_set(). [Soeren]
3140 * Documentation improvements. [Vincent Untz, Sebastian Wilhelmi, 
3141   Soeren, Matthias]
3142 * Win32 build fixes. [Tor Lillqvist]
3143 * Misc bugfixes [Manish Singh, Noah Levitt, Simon Josefsson, 
3144   Morten Welinder, Damien Carbery, Julio M. Merino Vidal, Sebastian, 
3145   Matthias]
3146 * Updated translations (nn,cs,it,ko,sq,ms,az,hr,uk,sr,sr@Latn,sq,ta)
3147
3148 Overview of Changes from GLib 2.3.1 to GLib 2.3.2
3149 =================================================
3150
3151 * Add G_MAXSIZE. [Manish Singh]
3152 * Add g_rand_new_with_seed_array(), g_rand_set_seed_array(),
3153   implementing the init-by-array functionality of the 
3154   original mersenne twister. Add g_rand_copy(). Improve seeding. 
3155   [George Lebl]
3156 * Add a lowercase_name option to glib-mkenums. [Murray Cumming]
3157 * Add g_ptr_array_foreach(). [Matthias Clasen]
3158 * Add g_timer_continue(). [Tim-Philipp Müller]
3159 * Fix a threadsafety issue in mem chunks. [Matthias, Balazs Scheidler]
3160 * Fix g_filename_{to,from}_utf8() on Win32 and improve 
3161   g_file_test() there too [Hans Breuer] 
3162 * Add a boxed type for NULL-terminated string arrays.  [Matthias]
3163 * Add G_DEFINE_TYPE() plus variants to ease the constuction
3164   of GObject boilerplate code.  [Tim Janik]
3165 * Support & in password GECOS field [Matthias, Soeren Boll Overgaard]
3166 * Documentation improvements [Matthias, Manish]
3167 * Win32 build fixes [Hans]
3168 * Misc bug fixes [Damien Carbery, Matthias, Manish, Olivier Poncet, 
3169   Zack Rusin]
3170 * Updated translations (ar,de,fa,ga,mn,nn,no,sq)
3171
3172 Overview of Changes from GLib 2.3.0 to GLib-2.3.1
3173 =================================================
3174
3175 * Add glib/gi18n.h and glib/gi18n-lib.h for common
3176   gettext support, including a Q_() macro for translation
3177   with context [Matthias Clasen]
3178 * Add a more flexible G_FILENAME_ENCODING variable
3179   as a replacement for G_BROKEN_FILENAMES [Matthias]
3180 * Fix the return value g_main_context_iterate() for
3181   newly ready sources [Padraig O'Briain]
3182 * Handle Hangul composition for normalization [Noah Levitt]
3183 * Add G_{MIN,MAX,MAXU}INT{8,16,32}. [Mark Jones, Matthias]
3184 * Add G_GSIZE_FORMAT/G_SSIZE_FORMAT [Manish Singh]
3185 * Add G_STRFUNC as a portable wrapper for __func__ [Tim Janik]
3186 * Documentation improvements [Matthias]
3187 * GObject [Tim Janik]
3188  - Support '-' in g_signal_connect()/disconnect() names
3189    like 'swapped-signal'.
3190  - Add g_type_class_peek_static() and use to optimize
3191    g_object_new() for static types [Tim]
3192  - Allow setting construct-only properties from within
3193    init() implementations
3194  - Enforce readability/writeability in g_object_set/get()
3195 * Fix bug with g_ascii_strtod and multi-byte separator.
3196   [Behdad Esfahbod, Roozbeh Pournader]  
3197 * Misc bug fixes [Matthias, John Ehresman, Andrew Lanoix,
3198   Tor Lillqvist, Mark McLoughlin, Tim-Philipp Müller, Manish, 
3199   Morten Welinder]
3200 * Updated translations (ca,cs,da,es,fr,ja,nn,no,pt,ru)
3201
3202 Overview of Changes from GLib 2.2.x to GLib-2.3.0
3203 =================================================
3204
3205 * Replace Trio printf by gnulib vasnprintf [Matthias Clasen]
3206 * Update Unicode data to Unicode 4.0 [Noah Levitt]
3207 * Support XML-safe formatted output with 
3208   g_markup_[v]printf_escaped [Owen Taylor]
3209 * Add g_file_read_link to read symbolic links [Matthias]
3210 * Add g_unichar_get_mirror_char to obtain the 
3211   mirrored variant of a character [Noah]
3212 * Support for one-time initialization functions. 
3213   [Sebastian Wilhelmi]
3214 * Miscellaneous API additions: g_vasprintf
3215   g_string_chunk_insert_len, g_setenv, g_unsetenv [Matthias]
3216 * Docs improvements [Matthias]
3217 * Add support instance-private data on classed types
3218   [Mark McLoughlin, Tim Janik, Owen]
3219 * Optimize signal emissions [Soeren Sandmann, Tim]
3220 * Support a "default vtable" per interface [Tim]
3221 * Add support for properties on interfaces [Owen, Tim]
3222 * Miscellaneous API additions: g_value_take_string(),
3223   g_value_take_param(), g_value_take_object(), 
3224   g_value_take_boxed(). [Matthias]
3225 * Win32 build fixes [Tor Lillqvist]
3226
3227 Overview of Changes from GLib 2.1.5 to GLib-2.2.0
3228 =================================================
3229
3230 * Fix a problem with g_thread_init() on 64-bit problems
3231   [Alceste Scalas, Sebastian Wilhelmi]
3232 * Add assembly implementations of byteswap macros
3233   for ia64 and x86_64. [Manish Singh]
3234 * IOChannel fixes for Win32 [Tor Lillqvist, Thorsten Maerz]
3235 * Updated translations (bg,ca,es,da,fi,lv,ru,sk)
3236
3237 Overview of Changes from GLib 2.1.4 to GLib-2.1.5
3238 =================================================
3239
3240 * Win32 bug fixes [Tor Lillqvist]
3241 * Various post-rewrite fixes for glib-gettext.m4 [Owen Taylor,
3242   Jody Goldberg, Kjartan Maraas, Johannes Stezenbach]
3243 * Ensure we have a GUINT64_FORMAT by pulling in Trio
3244   if necessary [Manish Singh]
3245 * Further Trio build fixes [Matthias Clasen, Owen]
3246 * Hack around gcc, libtool issues with -pthread [Owen]
3247 * Docs improvements [Matthias]
3248 * Bug and portability fixes 
3249 * Updated and new translations (bg,de,fi,fr,sq,fr)
3250
3251 Other contributors: Kai Poitschke, Morten Welinder
3252
3253 Overview of Changes from GLib 2.1.3 to GLib-2.1.4
3254 =================================================
3255
3256 * autoconf changes to make it possible to cross compile
3257   GLib. [Owen Taylor, Dan Kegel, Amy Lin, Dimi Shahbaz, 
3258   Johannes Stezenbach]
3259 * Use libintl when it has bind_textdomain_codeset() and
3260   GLib doesn't. [Owen]
3261 * Improve generation of pseudo-random integers [Morten Welinder, 
3262   Sebastian Wilhelmi]
3263 * Avoid literal UTF-8 in favor of octal escapes [Owen, Tomas Ogren]
3264 * Cleanup include order [Sven Neumann]
3265 * autoconf cleanups and bug fixes [Daniel, Matthias Clasen, Owen]
3266 * Doc fixes and additions [Matthias]
3267
3268 Other contributors: James M. Cape, Frederic Crozat, Martin Gansser,
3269   Phuc LeHong, Manish Singh, Joshua Weage, Morten Welinder
3270
3271 Overview of Changes from GLib 2.0.x to GLib-2.1.x
3272 =================================================
3273
3274 * Add copy of the Trio library to build and use for printf() when 
3275   system printf isn't good enough. Add g_printf()/etc. [Matthias Clasen]
3276 * Add g_str_has_suffix()/g_str_has_prefix() [Alex Larsson]
3277 * Add g_markup_parse_context_get_element() [Matthias]
3278 * Add g_utf8_strreverse [Matthias]
3279 * Add g_ascii_strtoull() [Tim Janik]
3280 * Support scanning of 64-bit values with GScanner [Tim]
3281 * Add g_set/get_application_name() [Havoc Pennington]
3282 * Add G_LIKELY()/G_UNLIKELY() macros for hinting branch probabilities. 
3283   Use for g_return_if_fail(). [Matthias Clasen]
3284 * Add G_GNUC_DEPRECATED macro [Tom Tromey]
3285 * Improve the seeding algorithm of GRandom to avoid problems
3286   with certain pathological seeds. Support G_RANDOM_VERSION=2.0
3287   environment variable. [Sebastian Wilhelmi]
3288 * Improve thread configure checks, use -pthread where applicable
3289   [Sebastian]
3290 * Improve handlng of thread priorities [Sebastian]
3291 * Fix up parameter names that might shadow functions from
3292   system headers [Soeren Sandmann]
3293 * Clean up usage of deprecated functions [Manish Singh]
3294 * Docs fixes and improvements. In particular, include "Since" information.
3295   [Matthias, Soeren, Martin Schulze, Daryll Strauss, Bill Janssen, 
3296   Owen Taylor, Morten Welinder]. 
3297
3298 Overview of Changes in GLib 2.0.7
3299 =================================
3300
3301 * Fix C++ warnings in gtype.h [Dom Lachowicz]
3302 * Fix g_type_fundamental_next() [Tim Janik]
3303 * Fix various missing includes of config.h [Morten Welinder]
3304 * Handle main loop initialization before g_thread_init [Sebastian Wilhelmi]
3305 * Various 64-bit fixes [Manish Singh]
3306 * Fix GPoll on Win32 [Tor Lillqvist, Herman Bloggs]
3307 * Fix bug with buffering on UTF-8 IOChannels [Daniel Elstner]
3308 * Misc bug and build fixes [Soren Andersen, Gustavo Carneiro, Tor,
3309      Tim, Havoc Pennington,  Matthias Clasen, Sebastian Rittau,
3310      Masahiro Sakai, Arvind Samptur, HideToshi Tajima, Owen Taylor]
3311 * Updated and new translations (be,cs,de,*fa,it,lv,pt_BR,tr)
3312
3313 Overview of Changes in GLib 2.0.6
3314 =================================
3315
3316 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
3317 * Clean up debug spew from GObject [Anders Carlsson]
3318 * Compiler warning fixes [David L. Cooper II]
3319 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
3320 * Fixes for --disable-debug [Sebastian Wilhelmi]
3321 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
3322   Rajkumar Sivasamy, Laurent Vivier]
3323 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
3324   Sebastian Rittau, Linus Welleij]
3325 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
3326 * Updated translations (bg,ko,vi)
3327
3328 Overview of Changes in GLib 2.0.5
3329 =================================
3330
3331 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
3332 * Clean up debug spew from GObject [Anders Carlsson]
3333 * Compiler warning fixes [David L. Cooper II]
3334 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
3335 * Fixes for --disable-debug [Sebastian Wilhelmi]
3336 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
3337   Rajkumar Sivasamy, Laurent Vivier]
3338 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
3339   Sebastian Rittau, Linus Welleij]
3340 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
3341 * Updated translations (bg,ko,vi)
3342
3343 Overview of Changes in GLib 2.0.4
3344 =================================
3345
3346 * Fix some 64-bit problems. (George Lebl, David L. Cooper II)
3347 * Add note about Tru64 iconv to INSTALL. (Manuel Op de Coul)
3348 * Fix problem with timouts > MAXINT. (Tim Janik, Owen Taylor)
3349 * Updated translations (ca,es,fr,ja,gl,ms,nl,pl,pt,ru)
3350
3351 Overview of Changes in GLib 2.0.3
3352 =================================
3353
3354 * Handle sorting 0-length arrays (Ron Arts)
3355 * Threading fixes (Sebastian Wilhelmi)
3356 * Portability fixes (Miroslaw Dobrzanski-Neumann, Jacob Berkman, Gareth Pierce, 
3357   Sebastian, Qingjiang Yuan)
3358 * Various fixes for glib-2.0.m4. (Jim Gettys, others.)
3359 * Locate right glib-genmarshal when cross-compiling. (Mitch Natterer)
3360 * Win32 fixes (Tor Lillqvist)
3361 * Try to fix g_get_charset() related segfaults. (Owen)
3362 * Fixes for gettext detection. (Dan Winship, HideToshi Tajima, Boyd Lynn Gerber,
3363   Andrew P. Lentvorski, Jr.)
3364 * Fix g_scanner_unexp_token() (Tim Janik, Sven Neumann)
3365 * g_markup fixes. (Matthias Clasen.)
3366 * Bug fixes and cleanups (Daniel Elstner, Matthias, Laszlo Peter, Morten Welinder,
3367   Wayne Schuller)
3368
3369 Overview of Changes in GLib 2.0.1
3370 =================================
3371
3372 * Portability fixes for Sun's Forte compiler [Erwann Chenede]
3373 * Performance improvements for GObject parameter lookup, 
3374   g_filename_to/from_utf8() [Alex Larsson]
3375 * Actually check interface prerequisites [Matthias Clasen,
3376   Miroslaw Dobrzanski-Neumann]
3377 * Fix problem with glib-mkenums taking huge amounts of stack. [Owen Taylor]
3378 * Fix g_signal_handlers_disconnect_by_func() for C++ [Damien Sandras]
3379 * Fixes for g_log() and threading.
3380   [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, Tim Janik]
3381 * Make g_print(), g_printerr(), g_warning(), etc, convert from
3382   UTF-8 to the encoding of the locale [Sebastian Wilhelmi, Tim]
3383 * Fixes for GIOChannel on windows. [Tor Lillqvist]
3384 * Fix gsize/gint mismatches in giochannel.c [Miroslaw Dobrzanski-Neumann]
3385 * Fix file descriptor leak in g_file_get_contents() [Matthias]
3386 * Workaround iconv() problems on older Solaris [Lauri Alanko]
3387 * Fix warnings with gcc-3.1 about asm const [Cody Russel]
3388 * Minor bug fixes.
3389
3390 Other contributors: Hans Breuer, LEE Sau Dan, Sven Neumann, Salmaso Raffaele,
3391   Akira Tagoh, Morten Welinder
3392
3393
3394 Overview of Changes in GLib 2.0.0
3395 =================================
3396
3397 * Thread portability fixes [Sebastian Wilhelmi]
3398 * Documentation updates [Owen Taylor]
3399 * Make g_strerror(), g_strsignal() properly return UTF-8,
3400   call bind_text_domain_codeset() so that error strings
3401   are in UTF-8 as well. [Owen, Tor Lillqvist]
3402
3403 Overview of Changes in GLib 2.0.0 rc1:
3404 ======================================
3405
3406 * Win32 fixes [Tor Lillqvist]
3407 * Portability fixes [Finlay Dobbie, Miroslaw Dobrzanski-Neumann]
3408 * Fix up g_date_strftime [Daniel Elstner]
3409 * Add some structure padding [Tim Janik]
3410 * Make g_get_homedir() prefer the users home directory to $HOME
3411
3412 Other contributors: Matthias Clasen, Paolo Maggi, Christian Rose
3413
3414 Overview of Changes in GLib 1.3.15:
3415 ===================================
3416
3417 * Speed up marshalers by using private access to GValue 
3418   [Anders Carlsson, Tim Janik]
3419 * Reduce GValue to 2 elements [Tim]
3420 * Add G_DEBUG environment variable, G_DEBUG=fatal_warnings [Matthias Clasen]
3421 * Fixes for AIX compilation [Miroslaw Dobrzanski-Neumann]
3422 * Add padding to various structures [Owen Taylor, Tim]
3423 * Win32 fixes [Tor Lillqvist]
3424
3425 Other contributors: James Henstridge, Ryan Lovett, Morten Welinder,
3426   Daniel Elstner
3427
3428 Overview of Changes in GLib 1.3.14:
3429 ===================================
3430
3431 * Register value transformations for gint64, guint64 [Andy Wingo]
3432 * Build with large-file support [Sven Neumann, Owen Taylor]
3433 * Fix handling of hostnames in URI's [Darin Adler]
3434 * Main loop bug fixes [Havoc Pennington, Owen]
3435 * Doc fixes and improvements [Manish Singh, Tim Janik]
3436 * Support ' as attribute delimiters in GMarkup [Matthias Clasen]
3437 * Win32 fixes [Hans Breuer, Tor Lillqvist]
3438 * Threading bug and build fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann]
3439 * Miscellaneous bug fixes
3440
3441 Other contributors: Matthias Clasen, James Henstridge, Mitch Natterer, 
3442   Morten Welinder.
3443
3444 Overview of Changes in GLib 1.3.13:
3445 ===================================
3446
3447 * Fix g_filename_to/from_uri for Win32 [Tor Lillqvist, Darin Adler]
3448 * Miscellaneous win32 fixes [Tor, Hans Breuer]
3449 * Fix thread options for gcc on AIX [Jerome Zago, Sebastian Wilhelmi]
3450 * Documentation improvements [Ron Steinke, Matthias, Sebastian]
3451 * Cache iconv converters as used by g_convert() [Jeffrey Stedfast]
3452 * Bug fixes [Sven Neumann, Owen Taylor, Matthias Clasen, Jeffrey,
3453   Laszlo Peter, Havoc Pennington, Tim Janik]
3454
3455 Overview of Changes in GLib 1.3.12:
3456 ===================================
3457
3458 * Implement closure chaining, fixing up API (Tim Janik)
3459 * Closure chaining test case (James Henstridge)
3460 * Make GType long not int where both are equal width (Tim)
3461 * Win32 fixes and improvements (Hans Breuer, Tor Lillqvist)
3462 * Fixes for NetBSD. (Dan Winship)
3463 * Use snprintf() for g_printf_string_upper_bound() where possible. (Matthias Clasen)
3464 * Save space for GBSearchArray (Tim Janik)
3465 * Documentation improvements. (Matthias, Sven Neumann, Havoc Pennington)
3466
3467 Other contributors: Darin Adler, Chris Blizzard, Anders Carlson, Daniel Elstner, Michael Meeks, 
3468   Mark McLoughlin, Dave Neary, Manish Singh, Owen Taylor, HideToshi Tajima, 
3469   Sebastian Wilhelmi.
3470
3471
3472 Overview of Changes in GLib 1.3.11:
3473 ===================================
3474
3475 * Win32 fixes [Hans Breuer, Tor Lillqvist]
3476 * Documentation improvements [Matthias Clasen]
3477 * Portable directory handling API [Hans]
3478 * Threading fixes [Sebastian Wilhelmi, Havoc Pennington]
3479 * Fix excess relocations in Unicode tables [Andrew Taylor]
3480 * Fix gpattern for UTF-8 [Matthias Clasen]
3481 * Support overriding class closures [Tim Janik]
3482 * Support for derivation from G_TYPE_POINTER [Owen Taylor]
3483 * Hide pointers to type information inside GType to reduce locking
3484   [Alex Larsson, Tim]
3485 * Adds check for direct inclusion of gobject/*.h [Owen]
3486 * GObject API cleanups [Tim]
3487
3488 Other contributors: Darin Adler, Jacob Berkman, Daniel Egger, Eric Lemings, 
3489   Michael Meeks, Mark McLoughlin, Arkadiusz Miskiewicz, Dan Winship
3490
3491
3492 Overview of Changes in GLib 1.3.10:
3493 ===================================
3494
3495 * Many Win32 fixes and improvements [Tor Lillqvist]
3496 * Documentation improvements [Matthias Clasen]
3497 * g_string_printfa() renamed to g_string_append_printf()
3498 * Use libcharset from libiconv to implement charset detection
3499   more portably. [Owen Taylor, Hidetoshi Tajima]
3500 * Add 64 bit type support to GObject [Joshua Pritikin, Mathieu Lacage, Owen]
3501 * Make support for 64 bit integers a requirement [Joshua]
3502 * GPattern improvements [Tim Janik, Matthias]
3503 * Locale independent g_ascii_strtod / g_ascii_dtostr [Alex Larsson]
3504 * Many bug fixes and minor tweaks.
3505
3506 Other Contributors: Darin Adler, Jakub Jelinek, James Antill, Andrew Taylor,
3507   Ben Gertzfield, Elliot Lee, Manish Singh, Abel Cheung, Laszlo Peter,
3508   Sven Neumann, George Lebl, Raja Harinath, Sebastian Wilhelmi,
3509   Jacob Berkman
3510
3511
3512 Overview of Changes in GLib 1.3.9:
3513 ==================================
3514
3515 * Fixes for comparison of threads [Sebastian Wilhelmi]
3516 * Use vasprintf() when possible for g_strdup_printf [Matthias Clasen]
3517 * Win32 fixes [Tor Lillqvist, Hans Breuer]
3518 * Add a len argument to g_ascii_strup/strdown
3519 * Bug, portability fixes, cleanups.
3520
3521 Other Contributors: Darin Adler, Katsuhiro Okuno, Joshua N. Pritikin
3522
3523
3524 Overview of Changes in GLib 1.3.8:
3525 ==================================
3526
3527 * Documentation updates [Owen]
3528 * Made GType interfaces overridable in derived types
3529 * Many win32 fixes [Tor Lillqvist]
3530 * Miscellaneous cleanups and fixes
3531
3532 Other contributors:
3533   Darin Adler, Matthias Clasen, Ron Steinke, Hans Breuer, Alex Larsson
3534
3535
3536 Overview of Changes in GLib 1.3.7:
3537 ==================================
3538
3539 * Integrate GClosure support into the main loop [Owen Taylor]
3540 * More GSignal convenience functions (macros) [Sven Neumann, Tim Janik]
3541 * Introduced weak references for GObject [James Henstridge, Sven, Tim] 
3542 * Minor hash table optimizations
3543 * Main loop and threading improvements [Sebastian Wilhelmi]
3544 * Added g_ascii_* functions to be used for locale insensitive UTF-8
3545   compliant code instead of old string functions  [Darin Adler, Alex Larsson]
3546 * Add functions for Unicode case-conversion, normalization, and 
3547   collation [Owen]* GString improvements [Owen]
3548 * Reworked the GIOChannel code [Hidetoshi Tajima, Ron Steinke]
3549 * Removed glib-config-2.0 in favour of pkgconfig [Sebastian]
3550 * Make code 64bit clean [Mark Murnane]
3551 * More G_CONST_RETURN fixes
3552 * Many improvements to the win32 code [Tor Lillqvist, Hans Breuer]
3553 * Miscellaneous bug and API fixes
3554
3555 Other contributors:
3556   Michael Natterer, Christopher James Lahey, Padraig O'Briain,
3557   Matthias Clasen, Josh Pritikin, Steve Baker, Cesar Rincon, Garry R. Osgood,
3558   Michael Meeks, Laszlo Peter,  Martin Baulig, Kjartan Maraas, Andrew Lanoix,
3559   Peter Williams
3560
3561
3562 Overview of Changes in GLib 1.3.6:
3563 ==================================
3564
3565 * Threads have a "return value" from g_thread_join
3566 * Removed ability to adjust thread stack size
3567 * Prefix warnings with progname/PID by default, change toggle for this to 
3568   be an env variable G_MESSAGES_PREFIXED not a compile-time option
3569 * GMarkup speedups
3570 * GDate const, convenience fixups
3571 * Include test cases that headers are compilable by C++ compiler
3572 * Add ability to spawn processes with argv[0] != executable path.
3573 * g_strstr_len, g_strrstr, g_strrstr_len
3574 * Add length argument to g_utf8_strchr and g_utf8_strrchr.
3575 * Misc bug fixes
3576
3577
3578 Overview of Changes in GLib 1.3.5:
3579 ==================================
3580
3581 * Added an installed glib-mkenums Perl program for parsing enumeration
3582   declarations from header files.
3583 * Mark some additional deprecated functions.
3584 * Bug and Portability fixes
3585
3586
3587 Overview of Changes in GLib 1.3.4:
3588 ==================================
3589
3590 * Efficiency improvements for GThreadPool
3591 * A few bug fixes
3592 * Build fixes
3593 * Documentation improvements
3594
3595
3596 Overview of Changes in GLib 1.3.3:
3597 ==================================
3598
3599 GLib:
3600
3601 * More user_data support in various functions.
3602 * Main loop API revamps to support per-thread main loops.
3603 * Unicode handling improvements.
3604 * Implemented debugging traps.
3605 * G_CONST_RETURN specification all over the place.
3606 * Various new small utility functions.
3607 * Random number generator precision improvements.
3608 * New configure option --disable-mem-pools.
3609 * Many Win32 improvements.
3610 * Added g_try_malloc() friends varinats.
3611 * Many documentation improvements.
3612 * Many threading improvements, support for dynamic allocation
3613   of static mutexes.
3614 * GHookLIst API cleanups.
3615 * Improved format support of GDate parser.
3616 * String function speed improvements with new g_stpcpy().
3617 * Hashtable API additions.
3618 * New GPatternSpec for shell-style pattern matching (from GtkPatternSpec).
3619 * Optimizations, cleanups, bug fixes.
3620
3621 GObject:
3622
3623 * Added many convenience functions.
3624 * GClosure and GParamSpec use float/sink ref-counting scheme now.
3625 * Reworked property change notification.
3626 * Binary searchable array cleanups, so it's widely usable now.
3627 * Added static content keeping for some GValue types.
3628 * Support for statically scoped signal parameters.
3629 * Extinguished property trailer args in set/get interface.
3630 * Added support for abstract types.
3631 * G_CONST_RETURN specification all over the place.
3632 * Split parameter exchange functionality into value transforms
3633   and parameter conversions.
3634 * Added signal emission hooks and signal accumulators.
3635 * Added interface prerequisites to support is_a (interface, object)
3636   relations.
3637 * Implemented GValueArray.
3638 * New types, boxed: G_TYPE_VALUE, G_TYPE_CLOSURE, G_TYPE_GSTRING
3639   GParamSpecs: G_TYPE_PARAM_PARAM, G_TYPE_PARAM_POINTER, G_TYPE_PARAM_CLOSURE,
3640   G_TYPE_VALUE_ARRAY, G_TYPE_PARAM_UNICHAR, G_TYPE_PARAM_VALUE_ARRAY.
3641 * Varrags value collection improvements.
3642 * Implemented debugging traps.
3643 * Made things thread-safe.
3644 * Many documentation improvements.
3645 * Many cleanups, optimizations and bug fixes.
3646
3647
3648 Overview of Changes in GLib 1.3.2:
3649 ==================================
3650
3651 GLib:
3652
3653 * Win32 build improvements  [Tor]
3654 * Improvements to error reporting  
3655   (g_critical(), g_return_if_reached()) [Darin]
3656 * Add g_strlcpy/g_strlcat  [David Wheeler]
3657 * New IO channel implementation for Win32  [Tor] 
3658 * Make g_array_free, g_string_free return pointer to memory requested
3659   not to be freed.  [Darin]
3660 * Added GError based error reporting for thread functions.  [Sebastian]
3661 * Moved reference docs into GLib distribution. [Owen]
3662 * Added g_convert() for doing convenient character set conversions based
3663   on iconv. (GLib now requires libiconv or a native iconv.) [Havoc/Owen]
3664 * Various Unicode handling additions (g_ucs4_to_utf8, g_utf8_validate(),
3665   g_{locale,filename}_{to,from}_utf8)  [Robert/Havoc/Owen]
3666 * Portability fixes for threading.  [Sebastian]
3667 * Added convenient functions for launching new processes (g_spawn_*),
3668   and shell quoting/unquoting functions.  [Havoc]
3669 * Split glib.h into many headers.  [Sebastian]
3670 * Added a simple callback-based parser for XML-like files (GMarkup).  [Havoc]
3671 * Fixed confusions between comparison functions that return <0, 0, >0
3672   and equaility functions that return FALSE,TRUE.  [Sebastian]
3673 * Added safe/portable temporary file manipulation functions.  [Tor]
3674 * autoconf improvements.  [Raja]
3675 * Many documentation improvements.
3676 * Bug fixes.
3677
3678 GObject:
3679
3680 * Added boxed and pointer types.  [Tim/Jonathan]
3681 * Added callback abstraction (GClosure)  [Tim]
3682 * Added signal system (GSignal)  [Tim]
3683 * Make GTypePlugin an interface  [Tim]
3684 * Added GTypeModule - a simple GTypePlugin instantiation  [Owen]
3685 * Bug fixes.
3686
3687
3688 What's new in GLib 1.3.1:
3689 =========================
3690
3691 * New GObject library added including object system based on
3692   the GTK+ object system. 
3693 * Functions for getting the properties of Unicode characters, 
3694   computing the canonical decomposition and ordering combining
3695   characters aand manipulating UTF-8 string manipulation based
3696   on libunicode.
3697 * GString now properly handles embedded nuls.
3698 * Multiple fixes from the 1.2.x branch.
3699 * Upgrade to libtool 1.3.3
3700 * Full thread support (thread creation and destruction).
3701 * BeOS port, BeOS dynamic modules.
3702 * Many improvements to the Windows ports.
3703 * Improvements to the OS/2 port, OS/2 module support.
3704 * Double ended queue implementation.
3705 * GLib macros for printf() formatting, e.g. G_GULONG_FORMAT = "lu"
3706 * New configure option --enable-msg-prefix to prefix messages, warnings
3707   et ceteri with the program name and the process id.
3708 * New thread-safe random number generator Mersenne Twister.
3709 * g_strcompress() added, g_strescape() had a slight API change, and
3710   more tightly defined semantics.
3711 * the g_string(x) macro has been removed, #x may be used instead.
3712                                 
3713 * bugs fixed: