GLib 2.39.0
[platform/upstream/glib.git] / NEWS
1 Overview of changes from GLib 2.38.0 to GLib 2.39.0
2 ====================================================
3
4  * prep for the 2.40 series (version macros, docs index, etc.)
5
6  * GNotification
7
8    - new API for sending persistent notifications via the desktop shell
9
10    - notifications persist when the application has quit and clicking on
11      them can restart the application with an action (via
12      DBusActivatable)
13
14  * GSubprocess
15
16    - new API for launching subprocesses
17
18    - nice GIO integration like async functions, cancellability, etc.
19
20    - a convenient communicate() API inspired by the same API in Python
21
22    - related: the gspawn API now has a CLOEXEC flag for the created
23      pipes for stdin/stdout/stderr
24
25  * New gapplication(1) commandline tool
26
27    - intended to be used with DBusActivatable apps
28
29    - can be used for launching apps, opening files, invoking application
30      actions and listing apps and actions
31
32    - bash tab completion is supported
33
34  * GDesktopAppInfo changes:
35
36    - g_file_get_path() can implicitly cause a FUSE mount so don't call
37      it until we know we need it (for an app that doesn't support URIs)
38
39    - don't crash when trying to load from a keyfile with
40      DBusActivatable=true
41
42    - remove some dead code, refactor the search path handling a bit and
43      do a large-scale whitespace cleanup (prep work for the pending
44      desktop file index)
45
46  * File monitors
47
48    - fix broken handling of mount point monitoring
49
50    - remove some strange use of GObject::constructor() from the base
51      class and inotify backend
52
53    - fix GFileMonitor to work in the non-default main context even when
54      the main context is not running (or is blocked)
55
56    - add internal private API for easily creating a file monitor in the
57      GLib worker thread
58
59  * GSettings
60
61    - g_settings_list_children: only list viable schemas.  This fixes a
62      longstanding issue where 'gsettings list-recursively' will crash
63      when there are invalid schemas installed
64
65    - don't accept invalid paths on g_settings_new_with_path, etc.
66
67  * GIO
68
69    - GFile now has a thumbnail::is-valid attribute to check if the
70      thumbnail in thumbnail::path needs to be regenerated
71
72    - GDBusProxy now has a flag to control autostarting of services at
73      construction time
74
75    - for GSeekable, properly introduce the concept of "resizable" vs.
76      "fixed-sized" streams in the docs, explaining the expected
77      semantics of the interface in each case
78
79    - fix some cases in GMemoryOutputStream that were violating the above
80      expectations (which may cause a slight API incompatibility)
81
82    - clean up GCredentials code and add support for Hurd and Solaris
83
84    - improve splicing by using different codepaths for the case where we
85      have real _read_async() and _write_async() implementations on the
86      stream vs. the case where they are internally emulated (via
87      dispatching the sync variant of the call in a thread)
88
89  * GKeyFile
90
91    - fix a leak in g_key_file_get_(u)int64 when we fail to parse the
92      value as an integer
93
94    - add long-requested API g_key_file_save_to_file()
95
96  * Portability improvements
97
98    - avoid using O_DIRECTORY on platforms that don't have it
99
100    - be careful about systems that define SOCK_CLOEXEC but don't
101      actually support it (like Hurd)
102
103    - only use SA_RESTART if it exists
104
105  * Other small API changes/additions
106
107    - a pair of functions to support matching strings for the type of
108      search functionality that you'd expect to have with things like
109      GtkSearchBar.  This will also be used by the desktop file index.
110
111    - g_str_is_ascii() with obvious purpose
112
113    - g_test_expect_message() no longer appears to allow you to catch
114      G_LOG_ERROR messages
115
116  * GMainContext/GSource
117
118    - fix handling of overflowing the 'next source id' counter
119
120    - g_source_remove() will not throw a critical in the case that you
121      try to remove a non-existent source.  We expect that there is some
122      code in the wild that will fall afoul of this new critical but
123      considering that we now reuse source IDs, this code is already
124      broken and should probably be fixed.
125
126    - simplify handling of the 'current dispatching source' to not
127      require use of a linked list
128
129  * GObject
130
131    - the long-broken (and leaky) pattern of destroying a just-allocated
132      object from inside of a custom GObject::constructor is now
133      officially completely illegal and will abort the program
134
135  * Unicode: update to 6.3.0
136
137  * Bug fixes
138
139    - g_file_copy() now falls back to pathname queryinfo.  This should
140      clear up the bugs with copying from some GVfs backends (afp,
141      gphoto, archive, at least).
142
143    - fix an out-of-bounds read in the xdgmime code
144
145    - fix a typo in the /org/freedesktop/DBus path on the object manager
146      client
147
148    - skip emitting path_namespace='/' in match rules in order to
149      workaround a bug in the D-Bus daemon and fix our own implementation
150      (which shared exactly the same bug)
151
152    - fix crashes on precondition violations for GParamSpec constructors
153
154    - many other small fixups (see bug list)
155
156   * Many documentation improvements
157
158 Bugs fixed:
159  309224 g_key_file_save_to_file missing
160  583321 QNX: no SA_RESTART
161  661576 fix handling of constructors that destroy half-constructed objects
162  672102 GSubprocess class
163  684842 Seeks on GMemoryOutputStream don't have opaque semantics
164  688492 Add a notification API
165  691581 g_output_stream_real_splice_async doesn't use overriden read/write_async functions
166  702516 gfileutils: Make -Werror=format-nonliteral happy
167  704218 New gapplication(1) tool
168  704593 g_setenv: on some systems (BSD, OSX…), setting a variable to NULL crashes the system
169  704882 GLocalDirectoryMonitorClass mount_notify field is useless
170  704887 file monitoring improvements
171  705029 Support for Solaris credentials
172  705688 g_settings_list_children: only list viable schemas
173  706254 Afp backend cannot copy files
174  707887 Attempting to create GObject Property with underscore prefix segfaults
175  708042 gapplication: don't rely on cmdline being finalized immediately
176  708265 add support for GNU/Hurd in GLib D-Bus Library
177  708266 fix error code checks when SOCK_CLOEXEC is defined but not supported
178  708529 xdgmime: valgrind warns about invalid reads
179  708677 incorrect object path 'deskop' used in gio/gdbusobjectmanagerclient.c
180  708714 Typo in docs of GLIB_VERSION_2_40 macro.
181  708753 gdesktopappinfo: Call g_file_get_path() on demand
182  708793 glib build fails with clang < 3.1: error: expected ';' after top level declarator
183  708828 GDBusProxy: add the ability to call methods on non autostarted proxies
184  708860 glib-2.38.0 doesn't build on Solaris 10
185  708972 gnetworking.h in tarball screws up out-of-source builds
186  709113 [PATCH] Main loop dispatch path has needless linked list
187  709227 Update to unicode 6.3.0
188  709301 goutputstream: Add clear warning about short writes to _write_bytes() and async version
189  709326 GDesktopAppInfo crashes creating a DBusActivatable app without a filename
190  709440 Fix overloading of "source" and "target" terminology in GBinding
191  709615 Cannot use g_test_expect_message with g_error
192  709753 Add helpers for string matches when using GtkSearchBar-like widget
193  709898 Expose thumbnail validity in GFile attributes
194  709966 Remove outdated documentation
195  709994 Minor fix for HACKERS doc to direct hackers to proper help file
196  709995 Obsolete makefile rules
197  710002 G_MAXUINT may be assigned as duplicate source id
198  710313 Memory leak in g_key_file_get_(u)int64 with invalid integer values
199  710345 [Patches] Fix some redundant-decls
200  710496 g_locale_to/from_utf8() doc updated.
201  710625 g_file_error_from_errno: Remove unneeded breaks
202  710666 Frame clock related bug fixes
203  710724 gmain: Warn when g_source_remove() fails
204  710726 Work around D-Bus bug with path_namespace='/' match rules
205
206 Translations:
207  Assamese
208  Brazilian Portuguese
209  Indonesian
210  Russian
211  Tamil
212  Traditional Chinese
213
214 What's new in Glib 2.38
215 ========================
216
217  * Application support
218
219   - GIO now provides an implementation of Desktop Actions from the
220     desktop entry specification
221
222   - GApplication now implements the org.freedesktop.Application
223     interface as per the desktop entry specification, allowing for
224     standards-based D-Bus launching of GLib-based applications
225
226   - GDesktopAppInfo now supports DBusActivatable as per the desktop
227     entry specification, allowing GLib-based applications to use D-Bus
228     to launch other applications
229
230   - GApplication now has a "busy" flag that can be set on an application
231     to allow the shell to show that it is busy
232
233  * GObject
234
235   - the private offset for a given class type is now always constant.
236     This was done by reorganising the memory layout of instances so that
237     the private data comes before the "official" pointer for the object
238     (ie: at a negative offset).  Valgrind macros were added to mitigate
239     any problems that this may have caused.
240
241   - a new G_DEFINE_TYPE_WITH_PRIVATE has been added along with a
242     generated function *_get_instance_private() that can now serve as an
243     equally-performing alternative to ->priv pointers in instances
244     (allowing memory savings)
245
246   - new G_PRIVATE_FIELD, G_PRIVATE_FIELD_P and G_PRIVATE_OFFSET macros
247     provide a convenient method of converting between named variables in
248     private structures and their (now constant) offsets
249
250   - installing properties on a GObjectClass must now be done from
251     class_init.  It is no longer valid to install them after class_init
252     has returned.
253
254   - it is now possible to manually break a GObject property binding
255     without destroying one of the objects involved
256
257  * Icons
258
259   - the requirements for implementing the GIcon interface have changed
260     in order to make it possible to consume all implementations of GIcon
261     with a finite number of cases
262
263   - a new GBytesIcon type was added for an icon represented by an
264     in-memory binary blob in a known image format (ideally png).
265
266   - new APIs g_icon_serialize() and g_icon_deserialize() replace the old
267     to/from_string APIs and will always work, irrespective of which
268     types have been initialised in the calling process, allowing for a
269     serialised GdkPixbuf to be deserialised in a process that doesn't
270     have GdkPixbuf
271
272   - support for icons has been added to GMenuModel using the new APIs
273
274  * Actions and menus
275
276   - GPropertyAction provides a convenient way of creating a stateful
277     property corresponding to a property on a GObject, such as the
278     "visible-child-name" property of a GtkStack
279
280   - new API g_menu_remove_all()
281
282   - we now have established rules about what is a "valid" action name
283     and an API to check them
284
285   - a new API for converting detailed action names to and from the
286     split-out name and parameter value (as GVariant)
287
288   - for backwards compatibility, invalid action names can still be used
289     with most functions, but this is not recommended
290
291  * Other GIO
292
293   - GDBus now supports services that wish to handle some of all
294     properties on an interface asynchronously, without requiring the
295     service to reimplement the entire org.freedesktop.DBus.Properties
296     interface
297
298   - GFile now has a new _measure_disk_usage() (and async) API for
299     recursively determining the amount of disk space used by a
300     particular directory (akin to 'du').
301
302   - asynchronous version of g_file_trash() and g_file_make_directory()
303     have been added
304
305  * Other new API
306
307   - GRegex has a new function to query the maximum lookbehind length to
308     allow for regexp matching on streams
309
310   - GVariant has two new APIs for constructing strings that allow
311     avoiding copies in some cases: g_variant_new_take_string() and
312     g_variant_new_printf()
313
314  * Testing
315
316   - we can now generate TAP output
317
318   - new support functions for simplifying the process of dealing with
319     data files for srcdir != builddir and installed test cases
320
321   - g_test_trap_subprocess() provides a portable alternative to
322     g_test_trap_fork()
323
324  * Other
325
326   - GLib now builds on Android against the bionic C library
327
328 Overview of changes from GLib 2.37.93 to 2.38.0
329 ================================================
330
331 * fix the documentation for GSourceFuncs
332
333 * fix compilation on OS X/ppc64
334
335 Bugs fixed: 708445, 647145
336
337 Translations updated:
338  Danish
339  French
340  Portuguese
341  Punjabi
342
343 Overview of changes from GLib 2.37.92 to 2.37.93
344 ================================================
345
346 * a couple of bugfixes in the new g_file_measure_disk_usage() API
347
348 * updated Traditional Chinese translation
349
350 Overview of changes from GLib 2.37.7 to 2.37.92
351 ===============================================
352
353 * new API g_file_measure_disk_usage() similar to du(1)
354
355 * minor fixes
356
357 * Translation updates:
358  Assamese
359  Belarusian
360  Brazilian Portuguese
361  Catalan
362  Czech
363  Galician
364  German
365  Hungarian
366  Indonesian
367  Italian
368  Korean
369  Korean
370  Latvian
371  Lithuanian
372  Polish
373  Serbian
374  Slovenian
375  Spanish
376
377 Overview of changes from GLib 2.37.6 to 2.37.7
378 ==============================================
379
380 * GDateTime now supports %:z formatting variations
381   for timezones. This is a GNU date extension.
382
383 * Bugs fixed:
384  685387 Segfault with GObject.signal_handler_is_connected()...
385  686786 g_socket_get_available_bytes() returns wrong value ...
386  705027 GSocket GSource not threadsafe on Windows
387  706469 Fix G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE documentation
388  706706 Fix Gir annotations on g_loadable_icon_load_finish
389  706888 gtype: fix a no-op assertion
390  706958 configure.ac: fix atomic opts detection
391  707092 "File Utilities" page for GLib documentation doesn'...
392  707151 gdatetime: Extend the '%z' timezone format
393
394 * Translation updates:
395  Catalan
396  Hungarian
397  Japanese
398  Polish
399  Slovak
400  Tamil
401
402
403 Overview of changes from GLib 2.37.5 to 2.37.6
404 ==============================================
405
406 * Tests using the g_test facilities can now generate TAP output
407
408 * Bugs fixed:
409  680926 generic type fallback logic is broken for -symbolic
410  684327 setting null icon to icon list
411  689245 GSocket unable to reuse (address,port) on Mac OS X
412  692125 Support TAP as GTest output format
413  693335 build: fix dtrace-related warnings
414  696633 gdbus-codegen trips over unicode chars when using python 3.x
415  696970 Compiling 2.36.0 for win64 fails
416  697185 GSocket – Allow specifying the multicast interface from...
417  700268 Add support for using the clang analyzer
418  701318 Add G_SPAWN_DEFAULT to GSpawnFlags
419  701529 glib/tests/gdatetime: use UTC time in test_GDateTime_diff()
420  701800 a new approach to reporting critical errors
421  702674 g_date_time_new_utc crash
422  704165 GLib.IOChannel read_unichar() fails
423  705075 Simplify g_get_tmp_dir()
424  705152 Race in glib/task.test
425  705398 gtype: Fix typo in g_type_class_add_private() error message
426  705570 Check ref_count in g_object_notify_by_pspec
427  705600 Deprecate GSimpleActionGroup functions?
428
429 * Updated translations:
430  Assamese
431  Brazilian Portuguese
432  Czech
433  Dutch
434  Galician
435  Gujarati
436  Hebrew
437  Italian
438  Lithuanian
439  Marathi
440  Norwegian bokmål
441  Russian
442  Slovenian
443  Spanish
444  Thai
445  Traditional Chinese
446
447
448 Overview of changes from GLib 2.37.4 to 2.37.5
449 ==============================================
450
451 * Implement the Desktop Action specification: In the case that the
452   application is a GApplication and DBusActivatable, actions from the
453   desktop file are translated into GActions that have been added to
454   the  application with g_action_map_add_action().
455
456 * GPropertyAction is a new type of GAction that represents the value
457   of a property on an object, and allows to change the value when
458   activated.
459
460 * GNetworkMonitorNetlink can now handle default routes via a device.
461
462 * The gsettings tool now reports failure to write a key (e.g. because
463   the key was locked down)
464
465 * Miscellaneous new api:
466  - g_variant_new_printf
467  - g_action_print_detailed_name
468  - g_regex_get_max_lookbehind
469
470 * Bugs fixed:
471  664444 Support additional application actions in .desktop files
472  684123 glib build only tries -D_GNU_SOURCE if glibc is detected
473  689794 support incremental matching
474  699259 add org.freedesktop.Application support to GIO
475  700460 rewrite tests to not rely on precise timing of timeouts
476  701511 updates to various GSource types
477  701609 gnetworkmonitornetlink: handle default route via device
478  703270 add GPropertyAction
479  704157 GAction: add function for printing detailed names
480  704250 Doc: various fixes
481  704267 regression gsourceclosure: segfault in gedit file chooser
482  704322 glib-unix: fix handling of multiple signal source for the...
483  704424 No error when failing to override a locked key
484  704447 Fix build/use of g_child_watch_closure_callback on Windows
485  704523 g_thread_create_full() can dereference NULL pointer
486  704543 Add implementations for G_GNUC_*_IGNORE_DEPRECATIONS for ...
487  704567 gdbusnameowning: Don't spew an error if we're releasing a...
488  704585 libc printf can give mixed-case strings for NaN and Inf
489  704587 FTBFS: statfs_result is undeclared for statvfs()
490  704699 gmain: Reset signal handlers to default when source is
491  704704 AI_NUMERICSERV cannot be used with ai_socktype = 0
492  704873 inotify: don't assume mainloop is running
493  704999 glib/convert.test crashing due to lack of iconv cache
494  704931 GMenuModel: add annotations to virtual functions
495
496 * Translation updates:
497  Assamese
498  Czech
499  German
500  Gujarati
501  Spanish
502  Tamil
503
504
505 Overview of changes from GLib 2.37.3 to 2.37.4
506 ==============================================
507
508 * Bugs fixed:
509  701283 g_source_add_child_source() segfault
510  702147 inconsistency of G_STRFUNC
511  703191 new private macros interact poorly with versioning macros
512  703254 Doc: various fixes
513  703407 g_spawn_async() keeps child_pid_report_pipe open in child process
514  703437 GDBusConnection: be more careful with async GetAll
515  703478 Missing G_BEGIN/END_DECLS in gsettingsschema.h
516
517 * Translation updates:
518  Catalan
519
520 Overview of changes from GLib 2.37.2 to 2.37.3
521 ==============================================
522
523 * add a new API for instance private data: G_DEFINE_TYPE_WITH_PRIVATE
524
525 * fix timestamps in tarball to prevent automake from being required to
526   build the unmodified source
527
528 * add new D-Bus API for async property handling
529
530 * add back fsync() on ext4 for g_file_set_contents() after it was
531   discovered that despite statements in the ext4 documentation
532   suggesting that this is safe, it is not safe.
533
534 * Translations:
535  Italian
536  Norwegian bokmål
537
538 * Bugs fixed:
539  698375 - D-Bus async properties
540  700350 - timestamp issue
541  701560 - fsync issue (fixed again)
542  700035 - new API for instance private data
543
544 Overview of changes from GLib 2.37.1 to 2.37.2
545 ==============================================
546
547 * The GLib test utilities have grown some file-related APIs
548   to support tests that can be used installed and uninstalled.
549
550 * Installing properties after class initialization is deprecated,
551   and will trigger a warning.
552
553 * GApplication:
554  - Support org.freedesktop.Application, including D-Bus activation
555    from desktop files
556  - Set prgname to appid for services
557
558 * Bugs fixed:
559  549783 gtester lacks framework for tests with data files
560  692848 Fix property example in gobject tutorial
561  698018 Add an explicit g_binding_release()
562  698614 GObject: prevent installing properties after init
563  699259 add org.freedesktop.Application support to GIO
564  699959 g_file_copy(): Ensure we create private files by default
565  700123 Test failure: g_inet_socket_address_get_scope_id
566  700725 GIcon: NULLify the `type' out param in the sync methods too
567  701401 gtest: add function for testing for WINE
568  701456 Error in gnome/glib/gio/tests/file.c
569  701474 Error building glibmm due to extra comma in glib/gtestutils.h
570  701560 various improvements for g_file_set_contents()
571  701680 GFileEnumerator: Add some documentation about ordering
572  701878 Check wakeup() before iteration(TRUE) doesn't block
573
574 * Translations:
575  Assamese
576  Czech
577  Galician
578  Gujarati
579  Kannada
580  Marathi
581  Odia
582  Polish
583  Slovenian
584  Spanish
585  Telugu
586
587
588 Overview of changes from GLib 2.37.0 to 2.37.1
589 ==============================================
590
591  * add support for installed tests:
592    https://live.gnome.org/GnomeGoals/InstalledTests
593
594  * add a new g_test_trap_subprocess() that works on Windows as a
595    replacement for the (now deprecated) g_test_trap_fork()
596
597  * support for explicitly cancelling a gobject property binding
598
599  * performance improvements for signal argument handling
600
601  * stop using `quotes' in very many log messages generated by GLib, for
602    favour of 'this style'.  This may cause testcases in other packages
603    to fail if they were matching on the previous text.
604
605  * improve manpages: add missing arguments and flags
606
607 Translations: 
608  Aragonese
609  Assamese
610  Gujarati
611  Hindi
612  Kannada
613  Norwegian bokmål
614  Odia
615  Slovenian
616  Spanish
617  Tamil
618  Telugu
619
620 Bugs fixed:
621  679683 replace g_test_trap_fork()
622  694380 Improve signal argument collection performance
623  695233 Strings require plural forms
624  697849 spelling fixes in cross.xml and running.xml
625  698877 GProxyAddressEnumerator calls g_network_address_parse_uri without port
626  698981 [PATCH] test /gdbus/connection/large_message could hang forever
627  699079 Prototype support for installed tests
628  699485 [PATCH] tests/mappedfile: Also handle ENOMEM
629  699493 SOCKS5 proxy code crashes if it cannot authenticate
630  699500 gbitlock: fix this to not unconditionally use futex emulation
631  699779 [PATCH] G_GNUC_FORMAT: documentation error
632  700263 m4macros/glib-gettext.m4: Don't use AC_HEADER_STDC
633  700714 [PATCH] gtestutils: Ensure test subprocesses don't dump core
634  700746 Use 'dumb quotes' rather than `really dumb quotes'
635
636 Overview of changes fron GLib 2.36.0 to 2.37.0
637 ==============================================
638
639 * The syntax for detailed action names has been documented,
640   and a parser API for them is now provided
641
642 * GApplication has gained a busy state. This feature is intended for
643   clients that want to signal a desktop shell their busy state, for
644   instance because a long-running operation is pending.
645
646 * GLib can now be built with the bionic C library
647
648 * GIcon can now be serialized to a GVariant
649
650 * Bugs fixed:
651  548353 Finish implementing GFile interface (mostly asynchron...
652  645881 Full port of glib-2.28.1 onto Android-ARM
653  665445 Glib mistakes nl_langinfo() from plibc for the real t...
654  672018 Need API to set global application state (busy, count...
655  687659 drop support for adding interfaces after class_init
656  688820 GIcon is a bad interface
657  688954 extend 'detailed action' syntax, provide parser
658  689223 Fix compilation on Android with the bionic C library
659  695156 Add support for arg0namespace matching in signal_subs...
660  696108 gdbus-codegen: avoid warnings in generated code
661  696629 fix sed(1) usage
662  696652 GTask won't free its error member variable on finalize
663  696857 GThreadedResolver: set an error if no records could b...
664  696973 Compiling 2.36.0 for win64 fails in gdbusmessage.c
665  697131 No --version
666  697160 [PATCH] gmacros: Mark G_UNAVAILABLE() functions as de...
667  697229 Custom Interface implementations will be broken with ...
668  697250 Documentation glitch of G_DEFINE_TYPE_EXTENDED causes...
669  697365 Fix usage of hasmntopt in gunixmounts.c
670  697367 Remove warning on gio/gunixmounts.c
671  697386 Except const argument with atomic is not lock free
672  697595 g_main_context_unref unlocks a mutex twice
673  697601 reduce GMenuModel D-Bus traffic
674  697626 Allow posix threads to be used on w32
675  697652 Help options generated even when help disabled
676  697771 fix a typo of "fo" to "of" in building.xml
677  697887 GVariant: fix transfer annotation
678  697942 abicheck.sh fails on mips
679  698056 rewrite g_object_new()
680  698081 Pidgin hangs in g_spawn_command_line_sync
681  698455 GVariant: add new g_variant_new_take_string() API
682  698457 g_variant_get_data_as_bytes() always returns toplevel...
683  698478 gactionmap: don't require GActionGroup
684  698595 the valgrind/priv-before-instance bug
685  698655 desktop-app-info test relies on true being in /usr/bin/
686  698686 GUnixSocketAddress: fix construct parameter issue
687  698716 Use of g_mem_set_vtable() breaks after gobject automa...
688  698999 bytesicon: fix a memory leak
689  699001 bytesicon: don't use g_object_unref() on GBytes
690  699361 gio: fix small leak
691
692 * Translation updates:
693  Assamese
694  Gujarati
695  Hungarian
696  Italian
697  Kannada
698  Norwegian bokmål
699  Polish
700  Spanish
701  Tamil
702
703
704 Overview of changes fron GLib 2.35.9 to 2.36.0
705 ==============================================
706
707 This release contains only small bugfixes and translations updates.
708
709  - g_file_copy(): fix bug where attributes were not applied properly to
710    the destination file
711
712  - fix some 'available since' annotations
713
714  - fix gdbus-codegen to produce more pedantically-correct code
715
716 * Bugs fixed:
717  696108 gdbus-codegen: avoid warnings in generated code
718  696014 g_file_copy(): Ensure G_FILE_COPY_OVERWRITE preserves permissions
719
720 * Translations updated:
721  Basque
722  Czech
723  Gujarati
724  Hindi
725  Hungarian
726  Japanese
727  Malayalam
728  Marathi
729  Odia
730  Punjabi
731  Russian
732  Tadjik
733  Tamil
734  Telugu
735
736 Overview of changes from GLib 2.35.8 to 2.35.9
737 ==============================================
738
739 This release drops the old codepage ABI from gutils.c. This is a
740 source-compatible change and only breaks ABI with respect to truly
741 ancient binaries (and those binaries are already broken for other
742 reasons).  This change only affects Windows.
743
744 * Bugs fixed:
745  682896 glib doesn't build on mingw32
746  693204 split up g_get_{hostname,username,realname,home_dir} etc.
747  694181 Handle GNetworkAddress better in g_network_monitor_base_...
748  694253 occasional /gdbus/unref-pending test failure
749  694350 Add type names to gsignal warnings
750  694757 Use separate GLIB_WARN_CFLAGS that can be overridden ext...
751  568405 Which is the correct replacement for g_strncasecmp, if...
752  630284 g_hash_table_get_keys docs
753  659428 docs: Small clean-up of howto subsection headers
754  675333 Cannot forget association in Open With dialog: program...
755  694669 consider unicode corrigendum #9
756  694843 g_base64_decode_step () produces invalid data
757  695147 Don't use PATH_MAX as it's not guaranteed to be defined
758  695191 Commit f641699 broke /appinfo/mime/api test case
759  695339 Swapped msgid plural forms for translation
760  695376 GDBusMethodInvocation leak and potential crash
761  695425 Untranslatable message in gsettings-tool
762  695887 Improvements to GObject API documentation
763  695925 GUINT32/64_SWAP_LE_BE macros do not enclose val argume...
764  696015 PATCH Add doc warning to g_base64_decode()
765
766 * Translation updates:
767  Assamese
768  Belarusian
769  Brazilian Portuguese
770  Catalan
771  Catalan (Valencian)
772  Danish
773  French
774  Galician
775  German
776  Greek
777  Gujarati
778  Italian
779  Korean
780  Latvian
781  Lithuanian
782  Polish
783  Portuguese
784  Punjabi
785  Serbian
786  Simplified Chinese
787  Slovak
788  Slovenian
789  Spanish
790  Thai
791  Traditional Chinese
792  Uyghur
793  Vietnamese
794
795
796 Overview of changes from GLib 2.35.7 to 2.35.8
797 ==============================================
798
799 This release contains one major change that may cause problems: type
800 modules are now never unloaded.  This is implemented by (effectively)
801 leaking the last reference on dynamic types.  Some testcases that check
802 for unloading of types have been observed to be broken by this change,
803 but we know of no actual cases of "real code" breaking.  Please report
804 any problems.
805
806 Other changes:
807  * A couple of build fixes for Solaris
808  * Fix signal emission for GDBusObjectManagerClient
809  * annotations fixes
810  * new API: g_dbus_address_escape_value()
811  * GSocketClient: add proxy-resolver property
812  * GSimpleProxyResolver: new simple GProxyResolver class
813  * documentation fixes
814  * gnetworkaddress: preserve IPv6 scope ID in IP literals
815
816 Bugs fixed:
817  691105 Allow GSocketClient to override GProxyResolver for per client proxy settings.
818  692827 configure test fails for arpa_nameser.h
819  692829 new Btrfs support causes build failure on Solaris
820  693285 GDBusObjectManagerClient: won't emit object-added|removed if name-owner arrives later
821  693502 Cross-compiling documentation: typo (np -> no)
822  693673 add g_dbus_address_escape_value()
823  693694 gio: Fix annotations on g_[async_]initable_new() and friends 
824
825 Translations:
826  Dutch
827  Galician
828  Polish
829  Serbian
830
831 Overview of changes from GLib 2.35.6 to 2.35.7
832 ==============================================
833
834 This is a quick follow-up release with a few bug fixes.
835
836 * Fix the build on systems with strict linkers by adding -pthread back
837   to the LDFLAGS for a testcase.
838
839 * Re-enable native atomic operations on some buggy versions of clang
840   that ship as part of the MacOS X SDK.
841
842 * Make G_IO_FLAG_IS_WRITEABLE an enum again (the #define broke bindings)
843
844 * a small docs fix
845
846 * Bugs fixed:
847  657045
848  636683
849  682818
850  693105
851
852 * Translations:
853  Italian
854
855 Overview of changes from GLib 2.35.4 to 2.35.6
856 ==============================================
857
858 * GUnixFdSource is a new way to add file descriptors
859   to the mainloop
860
861 * g_source_set_ready_time lets you mark a source to become
862   ready at a specified monotonic time
863
864 * The internal visibility handling of GLib has been reworked
865
866 * GFileMonitor will now automatically use fam instead of inotify
867   if $HOME is on NFS
868
869 * The file monitor implementation can now be overridden with
870   the GIO_USE_FILE_MONITOR environment variable
871
872 * Bugs fixed:
873  570572 2 make check errors on
874  592211 No monitoring over NFS mounts
875  625552 wrong behaviour of GVolume GVolumeMonitor related func...
876  657729 modernise GMainLoop
877  658020 GSource for a single GPollFD
878  678223 g_mutex_free
879  682560 leak fixes
880  682819 EINTR-harden all the things
881  684404 When using g_network_address_address_enumerator_next()...
882  686853 new GSource fd API
883  688169 G_DISABLE_DEPRECATED doesn't cover deprecated/gthread....
884  688681 build: Make .symbols file canonical on all platforms
885  690118 Crash when closing last tab of a window using Ctrl-w
886  691624 glib/gtester.c: missing include
887  691812 gioinputstream - give task as callback_data not task_data
888  691866 fails out of source build directory - gnetwork.h not f...
889  692029 Add new API checking utility
890  692034 Install an invalidation notifier for GClosure in g_sou...
891  692058 Broken makefile for gio tests
892  692079 build failure in gmarkup.c when using gcc 4.8 and buil...
893  692201 inotify: fix a memleak
894  692202 gfile: don't report completion twice on g_file_load_co...
895  692229 Incorrect string formatters in a translation string
896  692332 GNetworkMonitorNetlink: make the netlink socket cloexec
897  692360 possibly non-threadsafe code in g_content_type_guess()?
898  692404 tester: Use FD_CLOEXEC when creating pipes
899  692408 nautilus SIGSEGV in g_file_info_get_size()
900  692544 [PATCH] gfile: Ensure we create internal pipe with FD_C...
901  692583 atomic get doesn't accept a const argument on architect...
902  692618 Use g_timeout_add_seconds
903  692815 Using g_hash_table_insert() when using a hash table as ...
904  692865 Invalid docbook generated by gdbus-codegen
905  692928 Document G_MENU_{ATTRIBUTE,LINK}_*
906
907 * Translation updates:
908  Hebrew
909  Kannada
910  Lithuanian
911  Norwegian bokmål
912  Polish
913  Serbian
914  Slovenian
915  Spanish
916  Uyghur
917
918
919 Overview of changes from GLib 2.35.3 to 2.35.4
920 ==============================================
921
922 * New features:
923  - New API: g_get_num_processors
924  - New API: g_application_command_line_get_stdin
925  - New GFileMonitor flag: G_FILE_MONITOR_WATCH_HARD_LINKS
926  - Parse more timezone offset formats
927  - Better timezone support on Windows
928  - Make GParamSpec constructors introspectable
929
930 * Removed or deprecated features:
931  - Disallow adding interfaces after class_init
932
933 * Bug fixes:
934  532815 gio + inotify support for hardlinks
935  614930 add g_get_num_processors (), return the max concurrent...
936  626497 Btrfs clone/reflink ioctl support in g_local_file_copy
937  633117 glib fails stests if /etc/localtime is not properly set
938  661767 merge/improve various bits of run-in-thread functionality
939  668210 Add g_application_command_line_get_stdin()
940  675856 Use GDbus via gobject-introspection instead dbus-python
941  684103 make glib work with python3
942  684723 run-assert-msg-test.sh fails
943  686058 OpenBSD: disable ipv6_v4mapped test
944  686128 GTimeZone should be able to parse POSIX format for...
945  687223 cleverer GThreadPool management
946  687659 drop support for adding interfaces after class_init
947  687920 GCredentials should have an accessor for the process ID
948  688681 build: Make .symbols file canonical on all platforms
949  688829 Variable overflow in utils.c test on 32-bit machine
950  689324 Variable scoping in gunixmounts.c
951  689810 Include guard optimization
952  690043 Broken link for gsettings tutorial: gnome-utils in...
953  690084 gmarkup: Make GMarkupParseContext a boxed type
954  690388 Check if CMSG_FIRSTHDR() returns NULL when there is...
955  690538 gschema DTD is invalid
956  690543 Add test coverage for testing in-tree DBus services...
957  690670 local_command_line not introspectable/annotated
958  690902 G_END_DECLS needs to be at the end of gutils.h
959  690970 Unhelpful deprecation message for g_value_array_get_nth
960  691001 building docs is broken on master branch
961  691011 Automake-1.13 errors on obsolete AM_PROG_CC_STDC
962  691077 gio-querymodules crashes with SIGSEGV
963  691110 g_cond_wait() docs incomplete
964  691489 Crash in Oscars 2013 page
965  691558 Only check for .hidden files if standard::is-hidden...
966  691608 Support compilation with clang 3.2
967
968 * Translation updates:
969  Assamese
970  Bulgarian
971  Estonian
972  Galician
973  Greek
974  Hebrew
975  Norwegian bokmål
976  Polish
977  Slovak
978  Slovenian
979  Spanish
980  Tamil
981
982
983 Overview of changes from GLib 2.35.2 to 2.35.3
984 ==============================================
985
986 * This release contains an incompatible change to the g_get_home_dir()
987  function. Previously, this function would effectively ignore the HOME
988  environment variable and always return the value from /etc/password.
989  As of this version, the HOME variable is used if it is set and the
990  value from /etc/passwd is only used as a fallback.
991
992 * We now install a public "gnetworking.h" header that can be used to
993  include the relevant OS-dependent networking headers. This does not
994  really abstract away unix-vs-windows however; error codes, in
995  particular, are incompatible.
996
997 * Bugs fixed in this release:
998  142568 Allow $HOME to override passwd entry if the user really wants
999  587806 The file selector should honor .hidden files
1000  602715 [GChecksum] Please add support for SHA512
1001  623187 provide some support for arbitrary setsockopt()s?
1002  629301 .goutputstream files left behind when cancelling I/O
1003  652650 Optimize GDBusMessage serialization
1004  664627 /gapplication/basic test intermittently fails: cmdline re-or...
1005  675516 Win32: Don't start a DBus server when built as static library
1006  679683 replace g_test_trap_fork()
1007  684145 Current Git sources fails to cross-compile for Windows in Li...
1008  686895 file-info: catch thumbnail files in large directory as well
1009  687092 IPv6 <-> IPv4 mismatch when subscribing to multicast (send)
1010  688180 GObject: Minor error in description of floating reference
1011  688319 gthread: add missing AVAILABLE_IN_2_32 annotations
1012  688377 configure: add missing square bracket in AS_IF for memmove
1013  688419 gtask: source_object arguments and return values not annota...
1014  688497 AppInfo: Add sufficient api to port gnome-session from Egg...
1015  688681 build: Make .symbols file canonical on all platforms
1016  688704 Add boxed GType for GThread
1017  688886 Improve the i18n documentation
1018  688931 GMemoryOutputStream: Add new _resizable() constructor usab...
1019  689037 need helper for creating a GFile from a remote commandline...
1020  689377 Fix a compiler warning in GDBus
1021  689538 Source object tag set too late in gsocketlistener
1022  689800 Treat lost+found directory as a hidden file
1023  689847 Add fast repeated typename -> GType resolver
1024  689982 Make GChecksum more fully introspectable
1025  690069 g_unix_open_pipe: Add missing F_SETFD
1026  690083 gfileenumerator: Add a g_file_enumerator_get_child method
1027  690163 Add a pre-configured gio/gnetworking.h for Visual C++ builds
1028  690346 Remove an unneeded escaping in NAMESER_COMPAT_INCLUDE
1029  690348 Fix g_type_add_class_private() name in g_warning
1030
1031 * Translation updates:
1032  Assamese
1033  Galician
1034  Hebrew
1035  Hindi
1036  Kannada
1037  Odia
1038  Polish
1039  Spanish
1040
1041
1042 Overview of changes from GLib 2.35.1 to 2.35.2
1043 ==============================================
1044
1045 Note that the incompatible change to the ->constructed() vfunc that was
1046 made in the last unstable release (2.35.1) has been reverted due to
1047 causing regressions in applications.
1048
1049 A new incompatible change has been introduced in this version: it is no
1050 longer permitted to add interfaces to a class after the first
1051 instantiation (or more strictly: after g_type_class_ref()).  Bug #687659
1052 is tracking this.
1053
1054 Two private symbols (g_menu_{attribute,link}_hash_iter_get_type) which
1055 were accidentally exported have also been properly hidden.  This may
1056 cause some tools to issue warnings about ABI mismatch.
1057
1058 The remaining changes should be relatively harmless: 
1059
1060  * GIO now has kqueue support for GFileMonitor (BSDs, Mac OS)
1061
1062  * New g_variant_new_from_bytes() API
1063
1064  * UNIX signal sources now allow watching SIGUSR1 and SIGUSR2
1065
1066  * Many pedantic cleanups to adhere to a higher level of -W use
1067
1068  * GTask changes to avoid a deadlock
1069
1070  * many cleanups/fixes for Windows
1071
1072  * Boxing for GPollFD, GIOChannel, GBytes, GByteArray
1073
1074  * Fix URL-encoding of trashed files
1075
1076  * Many other docs and annotations fixes
1077
1078 Translations:
1079
1080  Galician
1081  Gujarati
1082  Lithuanian
1083  Serbian
1084  Slovak
1085  Slovenian
1086
1087 Bugs closed:
1088
1089  649302 Add support for GNU/FreeBSD
1090  668842 [GSocket] Add caching for the sender address in g_socket_receive_from()
1091  672924 Add annotations for g_filename_from_uri()
1092  673229 glib: Use Returns:, not @returns
1093  677062 (partial) GVariant: Make g_variant_new_from_bytes() public, add more GBytes API
1094  686185 g_date_time_format Transcoding Fails on OSX      
1095  686191 g_mutex_get_impl() should use g_atomic_pointer_get()
1096  686797 Box GPollFD to make it introspectable
1097  686810 [regression] Infinite wait in g_task_run_in_thread_sync()
1098  686822 possible dlopen()/dlclose() issue with automatic g_type_init()
1099  686839 mkinstalldirs: Move to glib-mkinstalldirs
1100  686895 file-info: catch thumbnail files in large directory as well
1101  686898 g_unix_signal_source_new: Allow SIGUSR1 and SIGUSR2
1102  686920 gdbus: Allow GDBusObjectManagerClient to work on peer connections
1103  686921 Remove some of the repetition from gio/tests/Makefile.am
1104  687075 g_spawn_sync diagnostic incorrectly complains about SIGCHLD
1105  687089 g_dbus_connection_export_menu_model(): fix a crash
1106  687098 Repeated g_timeout_add* use can lead to guint overflow
1107  687385 Add some stricter CFLAGS, fix up the code
1108  687441 ABI break in master: g_menu_attribute_hash_iter_get_type, g_menu_link_hash_iter_get_type removed
1109  687516 typo in string: KB should be kB
1110  687540 In Trash folder, Nautilus misinterprets "\n" in filename as a line break
1111  687541 GSignalQuery param_types field needs array annotation
1112  687600 gfileutils.c performs invalid cast of (varargs) open to non-vararg type
1113  687698 plural forms needed
1114  687700 ending spaces
1115  687742 Add support for internal linkage to glib-compile-resources
1116  687801 tests/buffered-input-stream: Fix size of parameter passed
1117  688109 win32 warning/error fixes
1118  688255 'make check' regressed in 138f4c1 because GMarkup error messages changed
1119  688338 [PATCH] gobject/gtype.c: Fix spelling of »exceed«
1120  688370 GDBusError documentation improvement for client-side
1121  688378 g_socket_join_multicast_group not working
1122  688518 gio-kqueue: use O_EVTONLY on MacOS
1123
1124
1125
1126 Overview of changes from GLib 2.34.0 to 2.35.1
1127 ==============================================
1128
1129 These two changes in particular may be slightly incompatible.  Please
1130 give feedback if they cause trouble:
1131
1132   * Signal handlers connected with g_signal_connect_object() are now
1133     automatically disconnected on target object destruction
1134
1135   * The ->constructed vfunc is now called after all properties are set
1136
1137 The remaining changes should not cause problems.
1138
1139   * g_type_init() is no longer necessary and has been deprecated
1140
1141   * GTask (the new GAsyncResult implementation) has landed 
1142
1143   * GLib version macros updated
1144
1145   * Update to Unicode 6.2
1146
1147   * Thread safety fixes for GFileMonitor in non-default main contexts
1148
1149   * GTimeZone support for old-format zoneinfo database (as on Mac OS)
1150
1151   * g_settings_bind() now works with non-canonical property names
1152
1153   * Fix crashes related to NULL connection passed to
1154     GBusNameVanishedCallback and document this situation
1155
1156 * Bugs fixed:
1157  118536 Make g_signal_connect_object'ed handlers disconnect when the data object is destroyed
1158  661767 merge/improve various bits of run-in-thread functionality
1159  682950 GFileMonitor crashing on high event count when running in different thread
1160  683642 Missing g_content_type_get_symbolic_icon
1161  684882 Gsettings should spaw a warning when binding against a low_underscored_property
1162  684909 codegen: Explicitly close output
1163  684912 Update to Unicode 6.2
1164  685037 g_strcmp0: Returns shall include values less and greater than zero
1165  685069 Leak in glib-compile-resources
1166  685208 missing g_return_if_fail
1167  685608 [Patch] Port gio tests from pygobject to pygi
1168  685697 Documentation typo in g_dbus_interface_skeleton_has_connection()
1169  685733 Call ->constructed() after all properties are set
1170  685787 gtestdbus: correct documentation typos
1171  685995 Crash in g_menu_exporter_name_vanished
1172  686091 Invalid reads in g_bytes_unref_to_data
1173  686119 dtrace, gobject_probes.d, the last three probes - semicolon missing
1174  686161 Deprecate g_type_init()
1175  686231 GBusNameVanishedCallback: document NULL connection
1176  686458 slightly increase poll duration in test_timed_wait 
1177
1178 * Translations updated
1179   Catalan (Valencian)
1180   Czech
1181   Danish
1182   Italian
1183   Lithuanian
1184   Norwegian bokmål
1185   Slovenian
1186
1187 Overview of changes from GLib 2.33.14 to 2.34.0
1188 ===============================================
1189
1190 * Bug fixes:
1191  654239 g_type_init()'s docs have no statement about how to...
1192  674620 Update GSettings migration guide for intltool updates
1193  676034 Fix doc annotation for g_ptr_array_ref()
1194  684278 Fix GIO build on Windows
1195
1196 * Translation updates:
1197  Brazilian Portuguese
1198  British English
1199  Bulgarian
1200  Catalan
1201  Galician
1202  German
1203  Hebrew
1204  Hindi
1205  Hungarian
1206  Kannada
1207  Latvian
1208  Marathi
1209  Spanish
1210  Telugu
1211
1212
1213 Overview of changes from GLib 2.33.12 to 2.33.14
1214 ================================================
1215
1216  * CVE-2012-3524: don't run dbus-launch from setuid binaries
1217
1218  * g_content_type_get_generic_icon_name():
1219      new API for getting the icon name for a mime type
1220
1221  * Introspection fixes:
1222   - GDBusConnection nullability fixes
1223   - give a box type to GTimeZone
1224
1225  * Drop GVFS_INOTIFY_DIAG
1226
1227  * Add a new "Writing GLib Applications" section to the reference
1228    documentation with general info on security, threads, etc.
1229
1230  * gwin32mount.c: Fix syntax error
1231
1232  * gresource tests: srcdir != builddir fixes
1233
1234  * tests/gvariant: Fix test on big endian architectures
1235
1236  * Fix regression in g_shell_parse_argv()
1237
1238 Bugs fixed:
1239  562907 g_shell_parse_argv() mishandles # (hash)
1240  683167 g_time_zone_new not introspectable
1241  683384 /gvariant/checksum-basic failure on big endian machines
1242  683641 Typo in gwin32mount.c
1243  683744 have a way to get the generic icon name for a mime type
1244
1245 Translation updates:
1246  Assamese
1247  Belarusian
1248  British English
1249  Czech
1250  Danish
1251  French
1252  Galician
1253  German
1254  Greek
1255  Hebrew
1256  Indonesian
1257  Indonesian
1258  Korean
1259  Lithuanian
1260  Marathi
1261  Marathi
1262  Polish
1263  Portuguese
1264  Punjabi
1265  Russian
1266  Serbian
1267  Slovenian
1268  Traditional Chinese
1269
1270 Overview of changes from GLib 2.33.10 to 2.33.12
1271 ================================================
1272
1273 * Add a G_DEFINE_QUARK macro
1274
1275 * Add symbolic icon support to drive, volume, and mount, file
1276   and content types
1277
1278 * Add API to allow thread-safe access to the same qdata item
1279
1280 * Bugs fixed:
1281  562907 g_shell_parse_argv() mishandles # (hash)
1282  627240 add G_DEFINE_QUARK
1283  672329 memory leaks in gutils.c and glib tests
1284  673012 Stable byte-level specification for normal form
1285  674805 gdbusproxy async test is broken
1286  679835 gvariant format string parsing (and assertions)...
1287  682075 gdbus: Fix double free and use after free of ob...
1288  682101 Provide a way to get a symbolic icon for a device
1289  682222 test_method_calls_on_proxy: assertion failed (e...
1290  682284 mount-op: use gint64 instead of guint64 for tim...
1291  682386 "make check" fails due to sys/resource.h not be...
1292  682560 leak fixes
1293  682586 gsettings-tool: make list-recursively really re...
1294  682819 EINTR-harden all the things
1295  682833 Handle EINTR for open()
1296  682849 drop the global lock for g_object_weak_ref
1297  682965 gdbus-tool: Check return value of strrchr()
1298  683088 gdbus-codegen: fix error when wrong interface n...
1299         Fix the build with gtk-doc-stub
1300         Don't crash if set_app_info is called before ad...
1301
1302 * Translation updates
1303  Assamese
1304  Galician
1305  Greek
1306  Indonesian
1307  Japanese
1308  Latvian
1309  Lithuanian
1310  Norwegian bokmål
1311  Polish
1312  Portuguese
1313  Punjabi
1314  Russian
1315  Spanish
1316  Traditional Chinese
1317  Vietnamese
1318
1319
1320 Overview of changes from GLib 2.33.8 to 2.33.10
1321 ===============================================
1322
1323 * New GTest API for testcases where log output is expected:
1324   g_test_expect_message()
1325
1326 * GMenuItem now has 'get' accessors and a construct-from-GMenuModel API
1327
1328 * GVariant now has a function to check a format-string for type
1329   compatibility
1330
1331 * win32: We now use overlapped IO to support multiple asynchronous
1332   operations (ie: reading and writing) at the same time.
1333
1334 * GMappedFile: Add g_mapped_file_get_bytes()
1335
1336 * The problems with g_file_make_directory_with_parents() should be
1337   resolved.
1338
1339 * The long-standing issues with placeholder generation of manpages are
1340   now resolved.
1341
1342 * gtlscertificate: Add GBytes based certificate and private-key props
1343
1344 * build: Switch back to using AS_IF for conditionals
1345
1346 * test coverage improvements, documentation improvements, leak fixes
1347
1348 * Bugs fixed
1349  326931 Better docs for G_GNUC_*
1350  550433 g_test_init doesn't recognize --help
1351  600751 GCompletion should better document if and how items memory is managed
1352  628193 Miscellaneous string fixes
1353  637460 man glib-genmarshal is hard to use
1354  674483 broken configure results when cross-compiling with gcc >= 4.5
1355  677065 GMappedFile: Add g_mapped_file_get_bytes()
1356  679288 win32: use overlapped events for streams
1357  679556 it's hard to use gtest when g_warning() is expected
1358  680823 g_file_make_directory_with_parents: Fix error propagation
1359  681319 gtlscertificate: Add certificate-bytes and private-key-bytes props
1360  681336 man pages not built if --enable-gtk-doc not specified
1361  681413 build: Switch back to using AS_IF for conditionals
1362  681501 gmem: array only partially filled with memcpy
1363  681854 Documentation fix for Howto compile a program with glib
1364  682025 Documentation correction
1365  682067 Fix problems with CLEANFILES and automake-1.11.1 
1366
1367 * Translations updated:
1368  Lithuanian
1369  Spanish
1370  Galician
1371  Telugu
1372  Serbian
1373  Assamese
1374  Marathi
1375  Indonesian
1376  Traditional Chinese
1377
1378 Overview of changes from GLib 2.33.6 to 2.33.8
1379 ==============================================
1380
1381 * GIO now has a g_file_delete_async function
1382
1383 * The defaults for GThreadPools max_unused_threads
1384   and max_idle_time values have been changed to
1385   2 and 15*1000, respectively.
1386
1387 * Bugs fixed:
1388  661767 merge/improve various bits of run-in-thread functionality
1389  680074 undefined symbol "get_C_locale"
1390  680121 g_cancellable_source_new: don't use a file descriptor
1391  680148 gthread: check for definition of PR_SET_NAME
1392  680310 Sorting of access points by strengh not working
1393  680704 g_utf8_strup() crash
1394  68076a0 GFile: Add g_file_delete_async()
1395  680787 Add .dir-locals.el to tell Emacs users not to use tabs...
1396  680823 g_file_make_directory_with_parents: Fix error propagation
1397  680994 STATIC_ASSERT in GDBusError docs don't have much utility
1398  681116 gtlscertificate: Add g_tls_certificate_equal() function
1399  681118 gtlsdatabase: Don't complain if no callbacks for async...
1400  669331 try to get gio tests working a little better on win32
1401  674314 Make gtk-doc not a hard dependency of GLib
1402  674800 gclosure: generic marshaller leaks return value
1403  675524 gsocket: FIONREAD undeclared (needs sys/filio.h)
1404  679509 use after free in g_dbus_action_group_describe_all_done()
1405  679996 gobject docs minor cleanup
1406  680459 Extra newline char in local implementation of g_applic...
1407  680505 object_path memory leak in gdbusobjectproxy.c
1408  680831 Deprecate and remove g_slice_[sg]et_config.*
1409  680912 gchecksum: Add g_compute_checksum_for_bytes()
1410  681151 checksum: Use functions instead of macros when buildin...
1411  681158 gtlscertificate: Don't confuse certificate and public ...
1412
1413 * Translation updates:
1414  Galician
1415  German
1416  Gujarati
1417  Hebrew
1418  Norwegian bokmål
1419  Serbian
1420  Slovenian
1421
1422
1423 Overview of changes from GLib 2.33.4 to 2.33.6
1424 ==============================================
1425
1426 * GAsyncInitable: partially revert the init_finish changes,
1427   some applications were found to rely on behaviour that
1428   was broken by these changes
1429
1430 * Bugs fixed:
1431  679617 win32: fix g_get_environ()
1432  679968 Add some annotations to GBytes, GVariantType...
1433  680111 GIOScheduler assumes GCancellable "cancelled...
1434
1435 * Translation updates:
1436  Spanish
1437
1438 Overview of changes from GLib 2.33.3 to 2.33.4
1439 ==============================================
1440
1441 * GMainContext: the source list has been reorganzied to
1442   avoid O(n) behaviour
1443
1444 * GRegex: Update included PCRE to 8.31 and expose new
1445   functionality in 8.x versions of PCRE
1446
1447 * GMountOperation gained a ::show-unmount-progress signal
1448   which provides information about slow unmount operations
1449
1450 * Bugs fixed:
1451  616892 gio: Add a boxed type for GFileAttributeMatcher
1452  619329 g_source_attach() O(n) in number of sources
1453  639771 g_dir_read_name() can also return NULL on error
1454  661767 merge/improve various bits of run-in-thread fun...
1455  667375 GAsyncInitable subclassing (and async subclassi...
1456  671545 Constify collect and lcopy strings in GTypeValu...
1457  674452 SEGFAULT in gio contenttype test
1458  674898 Deal with GLIB_VERSION_MIN_REQUIRED/MAX_ALLOWED...
1459  675504 Fix up GObject interface documentation
1460  677064 GString: Tweak documentation, add g_string_free...
1461  677578 error in PCRE error code conversion
1462  677579 update GRegexError for newer PCRE error codes
1463  678066 gdbus codegen does not work with python3
1464  678273 unicode othercasing is wrong in gregex
1465  678576 GIOScheduler performance enhancements
1466  678758 GTlsInteraction unlocks an unlocked mutex
1467  678808 GTestDBus issues
1468  678881 Test failures in /socket/timed_wait in some cas...
1469  678941 /contenttype/guess test case failure
1470  678944 gio returns the wrong default applications for ...
1471  678949 wrong definition of ulong_bool for 64 bit big e...
1472  678959 /mainloop/timeouts race condition: assertion fa...
1473  679193 update included pcre to 8.31
1474  679258 The 'Since' tag for G_SOURCE_CONTINUE and G_SOU...
1475  679473 Don't generate invalid property names
1476  679691 Add g_spawn_check_exit_status()
1477  679671 GDBusNodeInfo: the XML string must contain exac...
1478  676111 mount-operation: add show-unmount-progress signal
1479  679691 win32: fix build g_spawn_check_exit_status() wi...
1480  679813 Documentation bug on http://developer.gnome.org...
1481
1482 * Translation updates:
1483  Assamese
1484  Belarusian
1485  Bulgarian
1486  Galician
1487  Greek
1488  Norwegian bokmål
1489  Polish
1490  Spanish
1491  Traditional Chinese
1492  Vietnamese
1493
1494
1495 Overview of changes from GLib 2.33.2 to 2.33.3
1496 ==============================================
1497
1498 This release contains mostly bugfixes, cleanups and performance
1499 improvements (including many fixes contributed by Colin on the advice of
1500 Coverity).  There are a few notable externally-visible changes:
1501
1502 * Thumbnails are now in XDG_CACHE_HOME
1503
1504 * new GDBus API: per-thread g_dbus_connection_get_last_serial()
1505
1506 * GUnixOutputStream now has a can_poll() implementation
1507
1508 * New deep copy APIs for G(S)List: g_(s)list_copy_deep
1509
1510 * Bugs fixed:
1511  518309 Incorrect data*dir path in glib-gettextize output
1512  566994 Safer passing of -framework flag
1513  672889 GLib.utf8_validate does segfault
1514  673253 Not strict enough autconf test for libelf
1515  675024 adds g_list_copy_deep() and g_slist_copy_deep
1516  675168 prepare for thumbnails to move to XDG_CACHE_HOME
1517  675966 gresolver: More robust parsing of DNS responses
1518  676594 [Patch] fix g_reload_user_special_dirs_cache
1519  676825 Implement g_dbus_connection_get_last_serial ()
1520  677235 Clarify the comment at the top of gmarshal.list
1521  677527 OS X: gthread/spawn-async selftest failure
1522  677718 GDBusProxy: treat org.freedesktop.systemd1.Masked error as non-fatal
1523  677770 GUnixOutputStream does not implement can_poll
1524  677782 Install bash completion files in /usr/share
1525  677817 g_key_file_to_data adds extra blank lines in some cases
1526  677952 Missing annotation for GDBusConnection signal "closed"
1527  678052 g_wakeup_acknowledge is called too often.
1528  678273 unicode othercasing is wrong in gregex
1529  678333 gdbus-codegen code causes warnings under -Wfloat-equal
1530
1531 * Translations updated:
1532  Arabic
1533  Assamese
1534  Galecian
1535  Greek
1536  Spanish
1537  Telugu
1538
1539 Overview of changes from GLib 2.33.1 to 2.33.2
1540 ==============================================
1541
1542 * GLIB_VERSION_MIN_REQUIRED now defaults to the current stable version
1543
1544 * GIO input and output stream classes have grown GBytes-based methods
1545
1546 * GApplication now has hooks to register D-Bus objects before the bus
1547   name is taken
1548
1549 * Bugs fixed:
1550  605976 add g_type_ensure(), to ensure that a type has...
1551  660851 Breakage of code due to changes in the GThread...
1552  666386 Empathy doesn't open Redirect URI with particu...
1553  671139 need (transfer async) for io stream buffers
1554  672329 memory leaks in gutils.c and glib tests
1555  672548 g_utf8_validate: @str shouldn't end up annotat...
1556  674111 Provide an accessor for MimeType desktop entry...
1557  674483 broken configure results when cross-compiling ...
1558  674634 Add g_clear_pointer()
1559  674777 What's the (transfer) of g_variant_lookup()?
1560  675309 gkeyfile: Fix annotations for g_key_file_load_...
1561  675446 gfile: Plug memory leak in g_file_make_directo...
1562  675509 add extra dbus hooks
1563  675832 Incomplete gsettings bash auto-completion
1564  676208 The tmpl parameter to g_file_new_tmp can be NULL
1565  676265 GNetworkMonitor leaks a lot of memory
1566  676277 Document that g_app_info_create_from_commandli...
1567  676397 g_environ_* should work with NULL envp
1568  676398 g_spawn_* should take PATH from the passed env...
1569  676478 Broken gzip decoding
1570  676594 [Patch] fix g_reload_user_special_dirs_cache
1571  676816 Add more GLIB_AVAILABLE_IN_*
1572  676937 Document notify signal deduplication with free...
1573
1574 * Translation updates:
1575  Czech
1576  French
1577  German
1578  Greek
1579  Japanese
1580  Russian
1581  Slovenian
1582  Spanish
1583
1584
1585 Overview of changes from GLib 2.32.1 to 2.33.1
1586 ==============================================
1587
1588 * GApplication
1589  - can now have a NULL application ID
1590  - add accessors for determining dbus connection and object path
1591
1592 * g_clear_object: fix warnings when using it on C++ (due to lack of
1593   ability to implicitly cast void*)
1594 * add g_clear_pointer as a generic form of g_clear_object
1595
1596 * GDBus:
1597  - add our own implementation of the message bus for use on Windows only
1598  - fix up a few bugs that use of this bus uncovered in GDBus
1599  - escape nonce files in dbus addressess (think 'c:\')
1600  - support initial underscores in dbus codegen namespace (for private)
1601  - add GTestDBus for bringing up a session bus for testing purposes
1602  - gdbus-codegen: Avoid warnings in generated code
1603  - GDBusAuthObserver: Add a way to control what authentication mechanisms to use
1604  - 
1605
1606 * Fix misdetection of GNUstep as Cocoa (for the MacOS GSettings backend)
1607
1608 * make sure configure fails if AC_CHECK_ALIGNOF cannot detect the alignment
1609
1610 * GAppInfo
1611  - overwrite the DISPLAY only if it is set in the launch context
1612  - add accessor for StartupWMClass
1613
1614 * glib/tests/date: force US locale running the GDateTime tests
1615
1616 * Resources:
1617  - fix broken use of GVDB on big endian machines
1618  - set a 'display name' so that pretty file names appear in Gtk CSS
1619    warning messages
1620
1621 * GMainContext:
1622  - block child sources when blocking the parent
1623  - introduce more testcases for child sources
1624
1625 * GResolver: add support for MX, TXT, NS and SOA records
1626
1627 * GSocketControlMessage: Don't warn about unknown messages
1628
1629 * GIO:
1630  - implement GSeekable for the data and buffered stream classes
1631  - implement GPollable for many more classes as well
1632  - fix GConverterInputStream infinite loop when fill_buffer returns an error
1633  - fileinfo: document the correct type for trash::orig-path
1634
1635 * test coverage improvements and general fixes
1636
1637 * new 2.34 stuff: version macros, docs index section, etc.
1638
1639 * Build:
1640  - add --disable-modular-tests build option
1641  - don't require host binaries if tests are not enabled for cross-builds
1642
1643 * Translations updated
1644  Brazilian Portuguese
1645  Bulgarian
1646  Czech
1647  French
1648  Galician
1649  German
1650  Hebrew
1651  Hindi
1652  Italian
1653  Norwegian bokmål
1654  Polish
1655  Russian
1656  Russian
1657  Serbian
1658  Simplified Chinese
1659  Slovenian
1660  Spanish
1661  Telugu
1662
1663 Overview of changes from GLib 2.32.0 to 2.32.1
1664 ==============================================
1665
1666 * Bugs fixed:
1667  670254 glib-2.30.2: Fails /GDateTime/new_from_unix test
1668  672541 glib-compile-resources prepends --sourcedir to absolute paths
1669  673139 URL to mailing lists in README incorrect
1670  673174 g_input_stream_read[_finish]: document returning 0 on EOF
1671  673191 glib/gchecksum.c warning: dereferencing type-punned pointer...
1672  673216 [W32] gtestutils does not use path separators consistently
1673  673439 Properly deprecate g_value_{set,get}_char
1674  673612 Fails to decode dictionaries wrapped in two layers of array
1675  673803 gclosure: Support return values of GVariants
1676  669285 glib/tests/markup-parse fails under non-english locale
1677  673911 gio-2.0.pc lists full path to executables, breaking cross com..
1678  673762 gnextstepsettingsbackend.c:343: error: parse error before 'in'
1679
1680 * Updated translations:
1681  Belarusian
1682  British English
1683  Bulgarian
1684  Catalan
1685  Czech
1686  French
1687  German
1688  Hebrew
1689  Hindi
1690  Hungarian
1691  Italian
1692  Japanese
1693  Kannada
1694  Latvian
1695  Lithuanian
1696  Marathi
1697  Norwegian bokmål
1698  Odia
1699  Polish
1700  Serbian
1701  Slovenian
1702  Spanish
1703  Swedish
1704  Telugu
1705
1706
1707 Overview of changes from GLib 2.31.22 to 2.32.0
1708 ===============================================
1709
1710 * Bugs fixed:
1711  671988 Quickly registering / unregistering objects on bus...
1712  672095 glib needs stable sort function
1713  672406 glib/tests/include.c fails to build on FreeBSD
1714
1715 * Updated translations:
1716  Telugu
1717
1718
1719 Overview of changes from GLib 2.31.20 to 2.31.22
1720 ================================================
1721
1722 * Bugs fixed:
1723  531901 Use __builtin_bswap* for GUINT*_SWAP_LE_BE if building...
1724  653167 Out of tree build is broken on windows
1725  668973 Test /gvariant/parser fails on Solaris 10
1726  669797 gvfs now lists its fuse mounts
1727  670846 deadlock: GStreamer-WARNING **: wrong STREAM_LOCK count 0
1728  671664 gio-querymodules: unlink instead of writing empty cache
1729  671676 Glib can't be cross-compiled any more after merge of...
1730  671918 gnome-shell is inaccessible unless started while an AT...
1731  671942 GSocketMsgFlags: annotate as a flags
1732  671997 Unix signal handling assumes that volatile 1-byte writes...
1733  672013 GSimpleAsyncResult: support reliable cancellation
1734  672026 default log output should include pid and/or prgname
1735  672095 glib needs stable sort function
1736  672201 G_SPAWN_SEARCH_PATH should continue on ENODEV and ETIMEDOUT
1737  672239 request NO_REPLY from g_dbus_connection_call() with no as...
1738  672249 gdbusproxy leaks asyncresult in an error case instead of...
1739
1740 * Translation updates:
1741  Assamese
1742  British English
1743  Catalan
1744  Catalan (Valencian)
1745  Danish
1746  Esperanto
1747  Finnish
1748  French
1749  German
1750  Hungarian
1751  Korean
1752  Lithuanian
1753  Norwegian bokmål
1754  Polish
1755  Portuguese
1756  Russian
1757  Traditional Chinese
1758
1759
1760 Overview of changes from GLib 2.31.18 to 2.31.20
1761 ================================================
1762
1763 * Update to Unicode 6.1
1764
1765 * Update PCRE to 8.30
1766
1767 * Deprecations are now versioned, and new API is
1768   marked with the version it was introduced.
1769   Use these with GLIB_VERSION_{MIN,MAX}_REQUIRED
1770
1771 * The performance of signal emissions has been
1772   improved for simple cases
1773
1774 * Bugs fixed:
1775  529806 Cannot build in 64-bit Mac OS X due to libiconv
1776  580873 Documentation of register type functions incomplete
1777  592666 Document how to unset an attribute
1778  597785 g_type_class_add_private code snippet is a bad example
1779  621368 glib-2.24.1: FAIL: run-assert-msg-test.sh when updating...
1780  622149 --disable-regex breaks glib2 build
1781  639873 GBinding: Crash when binding two properties on the same...
1782  640202 For GLIB v. 2.23.6 and above: impossibility to build mu...
1783  668295 Need a way to classify GVolume instances
1784  669670 gasyncqueue: don't use deprecated g_cond_timed_wait()
1785  670542 Add version information for deprecations
1786  670557 gvaluetransform: Fix an infinite loop with GFlagsValue...
1787  670721 global variable for signal ID should be hidden
1788  670751 IceWM build fails due to the G_DEPRECATED_FOR macro
1789  670909 g_dbus_connection_call leaks when it receives an error...
1790  670922 Include path to gdbus-codegen in the pkgconfig file
1791  670969 GSequence lookup may fail if there was no sort prior to...
1792  671025 Constants and identifiers starting with a number are no...
1793  671270 make distclean failures
1794  671281 glib-compile-resources.xml is missing from the dist tar...
1795
1796 * Translation updates:
1797  Basque
1798  Belarusian
1799  Brazilian Portuguese
1800  Bulgarian
1801  Galician
1802  Hebrew
1803  Lithuanian
1804  Persian
1805  Punjabi
1806  Serbian
1807  Simplified Chinese
1808  Slovenian
1809  Telugu
1810  Traditional Chinese
1811  Uyghur
1812  Vietnamese
1813
1814
1815 Overview of changes from GLib 2.31.16 to 2.31.18
1816 ================================================
1817
1818 * GDBusProxy has now a flag, G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES,
1819   which can be set to make GDBus automatically reload
1820   changed properties even if the propertychanged signal
1821   does not contain the new values.
1822
1823 * GApplication puts non-unique applications on the bus
1824
1825 * GApplication now has g_application_quit()
1826
1827 * g_async_queue_timed_pop has been deprecated in favor of
1828   the new g_async_queue_timeout_pop, which uses relative
1829   delays in microseconds instead of a GTimeVal.
1830
1831 * a huge number of API documentation fixes
1832
1833 * Bugs fixed:
1834  647986 put non-unique apps on D-Bus
1835  658484 vpn connection vs NetworkSecretDialog
1836  664237 GDateTime falls back to UTC if TZ is set
1837  669329 gthread-win32: update for g_get_monotonic_time() changes
1838  669330 glocalfile: fix error code when opening a directory on win32
1839  669372 glib/tests memory leaks.
1840  669412 mem leak in g_environ_unsetenv
1841  669538 Fix compilation of glib-compile-resources.c on Windows
1842  669544 gdbus-codegen example introspection XML is not complete
1843  669595 glib-mkenums: fix handling of forward enum declarations
1844  669670 gasyncqueue: don't use deprecated g_cond_timed_wait()
1845  669671 gobject: use #pragmas to avoid deprecated function warnings
1846  669689 Retrieve cwd and environ in local GApplicationCommandLine
1847  669810 socket/win32: flush pending read before signaling HUP
1848  669865 g_regex_fetch()
1849  670085 memory leak in g_output_stream_write_async
1850  670138 gbytes.h is missing the G_BEGIN/END_DECL guards
1851  670485 Simplify session API (shared bug with gtk+)
1852
1853 * Updated translations:
1854  Belarusian
1855  Danish
1856  Galician
1857  Serbian
1858  Telugu
1859  Hebrew
1860
1861
1862 Overview of changes from GLib 2.31.14 to 2.31.16
1863 ================================================
1864
1865 * GResource:
1866  - The resource compiler can now convert pngs into
1867    pixel data that can be used without parsing at runtime
1868    (requires gdk-pixbuf-pixdata to be present)
1869
1870 * Bugs fixed:
1871  669123 resource compiler: failing to-pixdata should...
1872  669173 resource: fix xml preprocess entity handling
1873  669224 Cross-compilation broken by data-to-c
1874  669253 gsettings set buggy on array values
1875  669334 fix memory leak in bookmark file parser
1876
1877 * Translation updates:
1878  Norwegian bokmål
1879  Spanish
1880
1881
1882 Overview of changes from GLib 2.31.12 to 2.31.14
1883 ================================================
1884
1885 * GResource:
1886  - GLib now includes a commandline utility, gresource,
1887    to explore resources in ELF files
1888  - The resource compiler can now optionally strip
1889    ignorable whitespace from XML resources
1890  - The resource compiler can now generate build dependencies
1891  - The resource compiler will now autoselect output formats
1892
1893 * GApplication:
1894  - The menu markup parser API has been dropped, the
1895    menu XML support lives in GTK+ now
1896
1897 * GValueArray has been deprecated
1898
1899 * Bugs fixed:
1900  626258 N-ary Trees - 'nodes' can be inserted before and after...
1901  634232 Core Dump / Aborted using g_key_file_to_data
1902  639099 schema compiler chokes on valid schema
1903  667228 Deprecate GValueArray
1904  667243 Add an element clear function to GArray
1905  667929 glib-compile-resources: xml resources doesn't need to...
1906  668250 g_date_time_format() produces a non-UTF8 string
1907  668468 'IP_ADD_SOURCE_MEMBERSHIP' undeclared
1908  668532 resources: add dependency generator to the resource compiler
1909  668539 resources: compiler should autoselect output format...
1910  668561 gresource-tool not internationalized
1911  668572 glib_cv_g_atomic_lock_free config.cache setting not honored...
1912  668650 GRealArray->clear_func should be initialized
1913  668756 GKeyFile: allow loading from empty strings
1914  668857 fix couple of typos in comments
1915  669024 goption: implement platform_get_argv0() for OpenBSD
1916
1917 * Updated translations:
1918  Galician
1919  Norwegian bokmål
1920  Spanish
1921  Traditional Chinese
1922
1923 Overview of changes from GLib 2.31.10 to 2.31.12
1924 ================================================
1925
1926 * GApplication:
1927  - Drop support for exporting menus - this functionality
1928    will be provided in GtkApplication
1929  - Add a way to create actions that change settings
1930
1931 * Bugs fixed:
1932  629503 Add async versions of g_unix_connection_{receive,send}_credentials
1933  656301 glib-compile-schemas should not create an empty file
1934  668071 mingw-gcc build fails on gio/gsocket.[c|h]
1935  668118 the big appmenu switcheroo
1936  668158 base64 encode and line termination
1937  668163 GDBusConnection: note that exit-on-close is sometimes TRUE
1938  668269 gsignal: add g_signal_handlers_disconnect_by_data
1939  668279 create GAction from GSettings
1940
1941 * Translation updates:
1942  Norwegian bokmål
1943
1944
1945 Overview of changes from GLib 2.31.8 to 2.31.10
1946 ===============================================
1947
1948 * GResource:
1949  - A new facility to allow linking data files into binaries
1950    and make them available as resources
1951  - Resources are compiled using glib-compile-resources
1952  - GIO supports resource:/// uris to access resources
1953
1954 * Bugs fixed:
1955  619126 Missing dependency libs
1956  658315 g_key_file_get_keys() should set length to 0...
1957  660371 is it ever valid to have 0 as a GError domain?
1958  666700 Add some missing (allow-none) annotations
1959  667375 GAsyncInitable subclassing (and async subclassing...
1960  667447 Missing many introspection annotations
1961  667790 Protect call to pthread_condattr_setclock with define
1962  667938 wrong gtypes generated for empty flags enums
1963
1964 * Translation updates:
1965  Hebrew
1966  Spanish
1967
1968
1969 Overview of changes from GLib 2.31.6 to 2.31.8
1970 ==============================================
1971
1972 * GObject:
1973  - The type checks for overriding properties have been loosened.
1974    In particular, it is now possible to add the CONSTRUCT flag
1975    to an overridden property
1976  - GWeakRef is a new API for weak references; unlike g_object_weak_ref
1977    and g_object_add_weak_pointer, it is thread-safe.
1978
1979 * GHashTable has grown new convenience api for use as a set:
1980   g_hash_table_add, g_hash_table_contains
1981
1982 * GSocketConnection has gained API for managing connection status
1983
1984 * GSettings: a native OS X backend has been added, under the
1985   name 'nexstep'
1986
1987 * Bugs fixed
1988  455640 Something fishy with GRegex and unicode
1989  548954 weak references are not threadsafe
1990  625751 Add G_FILE_ATTRIBUTE_FILESYSTEM_USED
1991  658871 gbacktrace: g_get_prgname () isn't called for a NULL argu...
1992  664069 gvariant: Never break out of g_variant_iter_loop
1993  664830 g_strescape doesn't natively handle \v (vertical tab)
1994  665211 GDBusConnection singleton access can race with disposal
1995  665805 Add GSocketClient::action, for tracking socket client status
1996  666116 some tests provoke undefined behaviour, which is undesira...
1997  666422 Unreachable code in gio gnetworkmonitornetlink.c
1998  666551 Crash in g_thread_xp_SleepConditionVariableSRW
1999  666595 menu parser disallows id='' on submenu and section
2000  666615 loosen property override flag restrictions
2001  666616 gobject: fix property override type checks
2002  666803 g_utf8_validate() fails to validate strings with known size
2003  666804 g_ateaxit deprecation warning in devhelp points in wrong ...
2004  666951 g_mkdtemp: Since version incorrect in docs
2005  666978 Fails to compile glib applications with ISO C90 compiler
2006  667098 ginetaddressmask leaks its address property
2007  667225 GSocket: add missing type checks to public methods
2008  667226 GSocket: fix an error return value
2009  667279 Sometimes crashes when launching commandline-crea...
2010  667285 Wrong keyname listed in documentation for g_deskt...
2011  667331 Use g_queue_free_full() convenience function
2012  667420 GHashTable GDB pretty printing is broken
2013
2014 * Updated translations
2015  Belarusian
2016  Bulgarian
2017  Hebrew
2018  Norwegian bokmål
2019  Norwegian Nynorsk
2020  Spanish
2021  Vietnamese
2022
2023
2024 Overview of changes from GLib 2.31.4 to 2.31.6
2025 ==============================================
2026
2027 * GApplication no longer has APIs for setting menus.  Those have been
2028   moved to GtkApplication.
2029
2030 * the GActionGroup import/export functionality has been decoupled from
2031   GApplication by the introduction of a new interface for the purpose of
2032   handling platform data: GRemoteActionGroup.  This allows Gtk to
2033   properly deal with platform data (and gdk threads) on window actions.
2034
2035 * lots of documentation improvements
2036
2037 * bug fixes and a huge number of memory leak fixes
2038
2039 * the test suite now passes on ARM and some of the GDBus testcase hangs
2040   we've been seeing have been resolved (although others could remain)
2041
2042 * g_bytes_get_data() API changed: now includes 'size' out parameter
2043
2044 * new g_queue_free_full() API similar to g_[s]list_free_full()
2045
2046 * desktop files: use standard "Keywords" now, not "X-GNOME-Keywords"
2047
2048 * gsettings commandline tool now has --schemadir option for schemas not
2049   installed in the usual place (ie: as part of plugins)
2050
2051 * Bugs fixed:
2052  643736 GApplication doesn't emit dbus signals on action updates
2053  657433 g_queue_free_full() missing
2054  664699 glib: documentation fixes
2055  665737 acquire/release gdk threads lock on incoming dbus
2056  665879 GBytes: add a size argument to g_bytes_get_data
2057  666113 various leaks in GLib, GIO are visible in the regression tests
2058  666115 various tests leak memory, obscuring real leaks in the library
2059  666145 Doc could be more explicite that g_thread_init calls can be droped
2060  666173 Configure warning - linux/netlink.h usability... no
2061  666296 Race condition in g_thread_xp_get_srwlock
2062  666415 Settings tools should allow specifying a schema directory 
2063
2064 * Translations updated:
2065  French
2066  Spanish
2067
2068 Overview of changes from GLib 2.31.2 to 2.31.4
2069 ==============================================
2070
2071 * EXPERIMENTAL: Menu support has been added to GApplication.  Menus
2072   are exported on the bus, alongside the actions that are already there.
2073   There have also been many related improvements to action group
2074   functionality.
2075
2076   These new APIs are subject to changes in the coming releases.  In
2077   particular, it seems somewhat likely that the APIs for registering
2078   menubars may change in order to accommodate windows with different
2079   types of menubars.
2080
2081 * GDBusConnection previously directly dispatched destroy notifies when
2082   unregistering objects if the current main context was the same context
2083   the object was exported on.  It now unconditionally dispatches these
2084   through an idle on the context.
2085
2086 * Clean up Requires in pc files. Linking against GIO no
2087   longer drags in gmodule. This may require dependency
2088   fixes here and there.
2089
2090 * Introduce GBytes, a data type for immutable, fixed-size
2091   byte sequences. This makes the pre-existing GBuffer
2092   API available outside GLib
2093
2094 * GDBusInterfaceSkeleton can now be exported on multiple
2095   connections
2096
2097 * Bugs fixed:
2098  600161 Do not use static GTypeInfo and GInterfaceInfo
2099  640077 GFileMonitor: Always send CHANGES_DONE_HINT after a move...
2100  641720 Misleading definition for local_command_line() in GApplic...
2101  648516 Little comment error and 2 useless lines of code
2102  651997 Dummy backend for gapplication
2103  652560 Test for g_ascii_strtod is failing
2104  662208 failure to initialize a GInitable should be considered...
2105  662718 GDBusInterfaceSkeleton should be able to export on multi...
2106  663291 GBytes: Immutable, refcounted sequence of bytes
2107  664406 Need context for a proper translation
2108  664455 Build fixes for GLib GIT master (2.31.x)
2109  664558 GDBusWorker.frozen has a value > 1 in a gboolean
2110  664559 sys/wait.h not available on windows
2111  664617 gdbus segfault error 4 in libgio-2.0.so.0.3102.0
2112  664635 GMemory{Out,In}putStream _async functions break sub-class...
2113  664809 Add command line option to gtester to allow skipping tests
2114  665067 cryptic assertion failure if nonsensical flag combinations...
2115  665184 Check ref. count before reffing/unreffing
2116  665298 Add 'Requires.private: libpcre' to glib-2.0.pc
2117  665391 update documentation around mainloops
2118  665607 ./configure is there for fiddling with cross-compile enviro...
2119  665634 g_dbus_node_info_new_for_xml() errors on unknown attributes...
2120  665685 Add a #define for the max length of a Unicode decomposition
2121  665733 GDBusConnection holds lock while calling destroynotify
2122
2123 * Translation updates:
2124  Norwegian bokmål
2125  Spanish
2126
2127
2128 Overview of changes from GLib 2.31.0 to 2.31.2
2129 ==============================================
2130
2131 * Monotonic time is now properly supported on Windows
2132
2133 * glib-mkenums: fix @ENUMPREFIX@ with /*< underscore_name=... >*/
2134
2135 * EXPERIMENTAL: introduce new GSettingsSchema and GSettingsSchemaSource
2136   APIs for the convenience of plugin system authors and those who wish
2137   to introspect the contents of schemas.  This API may change.
2138
2139 * Improve the performance of GObject property notifies.
2140
2141 * GDBus:
2142  - fix a race when unowning a name immediately after owning it
2143  - thread safety improvements on GDBusConnection
2144  - fixes for exit-on-close functionality
2145
2146 * Deprecations:
2147  - add G_SIGNAL_DEPRECATED
2148  - don't use G_DISABLE_DEPRECATED masking for functions anymore
2149
2150 * docs
2151  - tmpl/ is finally dead for glib
2152
2153 * GIO:
2154  - GInetAddressMask: new type for internet address range matching
2155  - various GIO file and stream fixes
2156  - improvements to attribute and fileinfo handling
2157
2158 Overview of changes from GLib 2.29/2.30 to 2.31.0
2159 =================================================
2160
2161 This release contains a huge number of changes (500 commits worth).  The
2162 list below attempts to summarise, but not every change is listed.
2163
2164 * Major changes to threading and synchronisation
2165  - threading is now always enabled in GLib
2166  - support for custom thread implementations (including our own internal
2167    support for errorcheck mutexes) has been removed
2168  - a whole lot of dead code (to deal with the non-threaded case) has
2169    been ripped out.  This includes the racy path of GMainContext that
2170    caused deadlocks with respect to child process exits in
2171    single-threaded programs (such as gtester).
2172  - libgthread is now an empty shell and g_thread_init() is no longer
2173    required (and has been deprecated)
2174  - GMutex and GCond can now be statically allocated without explicit
2175    initialisation.  Dynamic allocation for these types is deprecated.
2176  - new types GRecMutex and GRWLock can also be statically allocated
2177    without explicit initialisation.
2178  - GPrivate can now be statically allocated and has an improved API.
2179    Dynamic allocation of GPrivate is deprecated.
2180  - GStaticMutex, GStaticRecMutex, GStaticRwLock, GStaticPrivate are
2181    deprecated.
2182  - GCond now uses monotonic time internally and a new API takes
2183    monotonic time for timed waits, deprecating the wallclock API
2184  - removal of the insane macro indirection used in the previous
2185    implementation of threading and synchronisation APIs
2186  - use SRWLock and CONDITION_VARIABLE APIs when available on Windows
2187    (Vista and later) and emulate them on XP
2188  - leaks of G(Static)Private-allocated data on some cases of thread exit
2189    have been fixed
2190  - simplified new thread creation API with the old API deprecated.  The
2191    concept of joinability has disappeared (all threads are joinable) as
2192    have priority levels, 'bound'ness (ie: kernel vs. userspace threads)
2193    and ability to manipulate the stack size.
2194  - GThread is now a refcounted type
2195  - other implementation details changed
2196
2197 * Move headers for some deprecated functionality to a separate
2198   deprecated/ directory.
2199
2200 * New support for attribute-based deprecations to issue compiler
2201   warnings instead of breaking the build and/or giving warnings about
2202   implicit declarations (and possibly miscompiling).
2203
2204 * GCache has been deprecated (after its last use was removed from our
2205   platform over a year ago).
2206
2207 * It is no longer possible to include individual headers (like
2208   "ghash.h") -- you must #include <glib.h>.
2209
2210 * The misguided experiment of allowing the program to stumble along with
2211   missing GSettings schemas is now over -- the abort is back.
2212
2213 * Clarify that fork() is not valid while using GMainContext.  This is
2214   because the internal resources of the GMainContext end up being shared
2215   by both processes.  We had an assert here but it was breaking existing
2216   (valid) use cases as well, so it has been removed for now.
2217
2218 * GApplication
2219   - add ::shutdown signal as logical dual to ::startup
2220   - don't use a GMainLoop: iterate the GMainContext directly (improves
2221     quit logic)
2222
2223 * Several portability fixes for Windows, OpenBSD, Solaris
2224
2225 * Add new GValue API to specifically deal in signed chars (in case the
2226   platform defines 'char' as unsigned)
2227
2228 * some new API to mitigate the problems associated with calling setenv()
2229   in a multi-threaded program
2230
2231 * Use CLOCK_MONOTONIC unconditionally if the libc has support at compile
2232   time (ie: stop checking for kernel support at runtime).
2233
2234 * pkg-config files:
2235   - drop -uninstalled variants
2236   - remove gobject dependency on gthread
2237
2238 * New macro G_ATOMIC_LOCK_FREE is defined if the atomic operations are
2239   implemented without use of a mutex.  Cleaned up atomic-related
2240   compilation issues with mingw compilers on win32 systems.
2241
2242 * SOCKS proxy and resolver improvements
2243
2244 * Fix the spelling of G_IO_FLAG_IS_WRITABLE (was WRITEABLE) and
2245   introduce a macro for backwards compatibility.
2246
2247 * GDBus:
2248   - many code generation updates and improvements
2249   - some race condition fixes, including testcase hangs
2250
2251 * GVariant:
2252   - new g_variant_new_from_fixed_array() API
2253   - substantial docs improvements/clarifications
2254
2255 * GKeyFile is now refcounted and boxed
2256
2257 * mount monitoring is now based on /proc/mounts (where available)
2258   instead of mtab
2259
2260 * new macros G_SOURCE_CONTINUE and G_SOURCE_REMOVE for returning from
2261   GSourceFunc (so you don't have to remember what TRUE and FALSE mean)
2262
2263 * use xlocale functions where available to avoid too much heavy lifting
2264   in functions like g_ascii_strtod()
2265
2266 * GMappedFile can now be created from an fd
2267
2268 * error message strings grammar/i18n fixes
2269
2270 * many docs updates
2271
2272 * Partial list of bugs closed:
2273  70598  Unify GStaticMutex and GMutex.
2274  320888 optimization for g_main_context_wakeup
2275  398418 GChildWatch race condition?
2276  527214 g_timer_elapsed() returns random values
2277  580505 add a way to set/get name for a thread
2278  583511 race condition means g_main_loop_quit() does not work
2279  590808 GKeyFile should have a refcount and a boxed type in GObject
2280  592715 Document that g_str_hash() and g_int_hash() are not NULL safe
2281  631413 Add macros for GSourceFunc return values
2282  632049 not immediately clear what g_variant_get_fixed_array expects
2283  640212 "Error stating file" is not a friendly message
2284  640293 Use xlocale functions to implement g_ascii_strtod()
2285  640975 Check that error exists before trying to set it
2286  643934 GApplication lacking a logical dual for the ::startup signal
2287  651268 assertion failed in GDBus worker thread
2288  653987 g_key_file_get_integer cannot interpret trailing spaces
2289  654412 Documentation for g_variant_get_child_value unclear
2290  654563 info capplet: Failed to calculate disk space
2291  655366 missing GSettings schemas lead to obscure crashes
2292  656621 g_spawn_*() calls executables in current directory
2293  656679 [gi] Add two annotations to gio
2294  657992 Add glib__private__() API to share between glib,gio
2295  658188 _set_as_last_used_for_type generates a broken mimeapps.list
2296  658206 gsocks5proxy.c has invalid gettext use
2297  658207 glib-compile-schemas says "can not"
2298  658558 simpleaction: Fix documentation of :enabled
2299  658683 clean up charset/language threading issues
2300  658692 add introspection annotations to g_time_val_from_iso8601()
2301  658715 Duplicite strings
2302  658769 Invalid reuse of GError in GThreadedResolver
2303  658806 sign error in string hash implementation
2304  658976 gdbus-codegen's C namespace option needs to support Ugly_Case
2305  659070 gdbus-codegen generated code segfaults when property changes
2306  659082 gdbus-codegen: Single letter namespaces get dropped from names
2307  659212 GMappedFile should fail on non-regular files
2308  659324 _SPLICE_CLOSE_TARGET doesn't mark the output stream as closed
2309  659423 Use adaptive mutexes when available
2310  659427 Move deprecated code to a separate directory
2311  659646 gdbus-codegen produce code that warnings at build
2312  659690 Possible build warning in code generated by gdbus-codegen
2313  659699 property name collision when generating code for "Connection"
2314  659754 Add API to GMappedFile that allows to pass FD
2315  659838 incorrect types in introspection for g_object_bind_property
2316  659866 pthread_rwlock_t requires defined __USE_UNIX98
2317  659870 gvalue: Fix signedness of g_value_get_char()
2318  659889 glib-2.29.92/gio-2.0.pc.in has a wrong line.
2319  659916 GObject size of 64K is not actively enforced
2320  659920 Missing setter for read/write property 'closed' of GIOStream
2321  659923 Add g_variant_new_fixed_array() function
2322  660013 Remove old g_atomic configure cruft
2323  660096 glib/rwlock tests failure (tests asserted)
2324  660130 Possible loss of user data when updating mimeapps.list
2325  660147 tracker causes g_critical in "gsettings list-recursively"
2326  660413 Make G_ASSERT_STATIC work with clang
2327  660498 Generated test code fails when the codegen changes
2328  660511 Use /proc/mounts for monitoring mounts, not /etc/mtab
2329  660536 Expose options for /etc/fstab entries
2330  660635 Deprecate g_thread_foreach
2331  660637 Pending dbus method calls not canceled on connection loss
2332  660739 kill off g_{mutex,cond}_{new,free}()
2333  660740 make GThread more standard
2334  660741 g_cond_timedwait is a disaster
2335  660743 macro wrappers for g_once_init_enter/leave
2336  660744 finish killing g_thread_init()
2337  660745 GPrivate leaks on Windows
2338  660791 [gio] Improve doc for g_file_make_directory_with_parents()
2339  660843 asyncqueue-test is broken
2340  660849 Remove cruft from g_strerror and g_strsignal
2341  660886 GDBusProxy: don't drop/complain about unknown props/signals
2342  660887 g_slice_set_config() is broken
2343  660994 Add g_main_context_ref_thread_default()
2344  661255 gio: enable test_peer regression test for OpenBSD
2345  661257 giomodules.c uses ":" instead of G_SEARCHPATH_SEPARATOR_S
2346  661318 tests use pthread without appropriate compiler/linker flags
2347  661421 Applications fail to initialize on GNU Hurd - commit
2348  661438 Implement G_GNUC_DEPRECATED/G_GNUC_DEPRECATED_FOR on Visual C++
2349  661711 Sorting keys for GDrive, GVolume and GMount instances
2350  661763 desktop-app-info: Add support for X-GNOME-Keywords
2351  661896 /gdbus/connection/life-cycle is racy
2352  661914 Gstreamer/Totem locks up
2353  662100 regression: g_dbus_connection_close() triggers exit-on-close logic
2354
2355 * Translations updates:
2356  Belarusian 
2357  Brazilian Portuguese
2358  British English 
2359  Bulgarian 
2360  Catalan 
2361  Catalan (Valencian)
2362  Czech 
2363  Danish 
2364  Esperanto
2365  French 
2366  Gujarati
2367  Hebrew 
2368  Hungarian 
2369  Italian 
2370  Japanese
2371  Lithuanian
2372  Norwegian bokmål
2373  Oriya
2374  Polish 
2375  Russian 
2376  Serbian
2377  Simplified Chinese
2378  Slovak 
2379  Slovenian
2380  Spanish 
2381  Tamil
2382  Vietnamese
2383
2384 Overview of changes from GLib 2.29.18 to 2.29.90
2385 ================================================
2386
2387 * API/ABI changes:
2388  - unix signal watches now match the API of all of the other sources
2389  - revert the addition of g_date_time_source_new () from last release
2390
2391 * networking and other fixes for Solaris
2392  - we no longer support symbolic port names (ie: from /etc/services)
2393  - check if -lsocket is needed
2394  - fix g_socket_details_from_fd()
2395  - avoid getmntinfo
2396  - fix some harmless warnings
2397
2398 * GDateTime improvements:
2399  - generally improved standards compliance (with C99)
2400  - support C99-specified format strings: %g, %G, %V, %c, %C, %w
2401  - consult the locale for the preferred 12-hour time format (%r)
2402  - drop support for non-standard %N and broken %W
2403  - better support for formatting non-POSIX (eg: Arabic) numerals
2404  - locale-related test case fixups, and fix some leaks
2405
2406 * GTlsInteraction: add interaction method invocation guarantees
2407
2408 * gdbus-codegen: post-process all interfaces when parsing >1 file
2409
2410 * make GMainLoop, GMainContext and GSource boxed types
2411
2412 * fix a race condition in the first use of g_get_monotonic_time()
2413
2414 * lots gtk-doc cleanups
2415
2416 * better intltool compatibility when generating pot file
2417
2418 * avoid GCC-specific compiler options when not using GCC
2419
2420 * Translation updates:
2421  Belarusian
2422  Brazilian Portuguese
2423  Canadian English
2424  Galician
2425  Indonesian
2426  Korean
2427  Lithuanian
2428  Norwegian bokmål
2429  Portuguese
2430  Spanish
2431  Swedish
2432
2433 Overview of changes from GLib 2.29.16 to 2.29.18
2434 ================================================
2435
2436 * GDateTime is now respecting LC_TIME when formatting
2437
2438 * GTimeZoneMonitor has been removed again
2439
2440 * A new API for wallclock functionality has been added:
2441   g_date_time_source_new(). This API is still experimental
2442   and may be changed or removed before 2.30.
2443
2444 * Bugs fixed:
2445  628904 Add credential support for FreeBSD and fix a socket issue
2446  650763 gdbus-codegen is broken with python 2.7
2447  655129 GDateTime could provide api for implementing wall clocks
2448  656341 gtlsconsoleinteraction.c uses getpass() which isn't avail...
2449  656387 GCancellable can be used concurrently
2450  656443 Make GTlsInteraction ask_password cancellable
2451  656675 void functions should not return in glib 2.29.16
2452  656772 g_variant_compare for uint64 incorrect
2453  656914 Load GIO_EXTRA_MODULES first, and ignore duplicates
2454  657083 The header langinfo.h is not available on all systems
2455  657084 gfileutils: fix docs/annotations for temp file methods
2456  657138 Some files missing in POTFILES.in
2457  657206 GInputStream leaked in g_file_icon_load_async()
2458  657243 g_cancellable_set_error_if_cancelled() documentation
2459  657274 Use detected PYTHON variable as shebang for gdbus-codegen
2460  657336 Speling fixes for glib found with codespell
2461  657452 plural forms needed
2462  657454 Translation comment needed
2463  657540 Print out file:// URL to coverage HTML report after building
2464  657593 g_test_trap_fork calls close(-1)
2465  646082 Addresses from GSocket should be normalized before returning
2466  657517 fix gio/tests/gdbus-peer on bsd
2467
2468 * Translation updates:
2469  Brazilian Portuguese
2470  Galician
2471  Norwegian bokmål
2472  Punjabi
2473  Russian
2474  Serbian
2475  Spanish
2476  Swedish
2477  Traditional Chinese
2478  Uighur
2479
2480
2481 Overview of changes from GLib 2.29.14 to 2.29.16
2482 ================================================
2483
2484 * GTlsDatabase: an abstract class that provides support
2485   or certificate and key lookup. An implementation will
2486   be provided in glib-networking
2487
2488 * GHmac: Support or HMAC digests
2489
2490 * Misc new API:
2491  - g_ptr_array_add_full: creates a GPtrArray with
2492    a preallocated size and a destroy function
2493  - g_desktop_app_info_get_show_in: checks if a GDesktopAppInfo
2494    should be shown in a given desktop environment
2495  - g_mkdtemp, g_mkdtemp_full, g_dir_make_tmp: create
2496    temporary directories
2497
2498 * Unify thread wakeup implementations of GMainContext
2499   and GCancellable, and use eventfd for it when available
2500
2501 * Show mounts in $XDG_USER_DIR in addition to /media and $HOME
2502
2503 * Bugs fixed:
2504  636572 GTlsCertificateDB
2505  644601 Some tests need a running dbus session
2506  652284 deal with small key lengths
2507  652827 glib-2.29.8 no longer builds with mingw.org's toolchain
2508  653063 PEM parser fails parsing private key when put first
2509  654078 Fail to static linking with Glib library
2510  654450 New functions: g_ptr_array_new_full()
2511  654793 Add G_VALUE_INIT
2512  655044 GDesktopAppInfo: Add g_desktop_app_info_get_show_in()
2513  655148 gdbusconnection is broken when compiling with mingw
2514  655241 glocalfile.c no longer compiles with MinGW GCC
2515  655598 g_cancellable_get_fd: silently return -1 for NULL cancellable
2516  655664 gdbus should not abort if no dbus session is available
2517  655769 Use ZLIB_CFLAGS when compiling gio
2518  656031 Improve GVariant annotations
2519  656048 glib-codegen requires Python >= 2.5
2520  656151 configure test logic inverted, doesn't match comments
2521  656152 GCC only syntax used, yet other compilers allowed by configure.
2522  656162 allow use of lcov 1.9 for coverage
2523  656282 GDBusProxy: uninitialized local variables can be freed
2524  656283 Failing tls connection cause assertion
2525  118563 Add g_mkdtemp in the spirit of g_mkstemp
2526  636405 Add g_return_if_fail() to g_settings_bind_with_mapping()
2527  656039 race condition between GDBusProxy signals and public API
2528  656492 g_io_channel_new_file failure (open(2) behavior wrt POSIX)
2529
2530 * Translation updates:
2531  Bulgarian
2532  Esperanto
2533  French
2534  Galician
2535  German
2536  Hebrew
2537  Indonesian
2538  Italian
2539  Norwegian bokmål
2540  Russian
2541  Spanish
2542  Swedish
2543
2544
2545 Overview of changes from GLib 2.29.12 to 2.29.14
2546 ================================================
2547
2548 * Unicode improvements
2549  - add g_unicode_script_{to,from}_iso15924
2550  - add G_UNICODE_SPACING_MARK define
2551  - more normalisation improvements
2552  - stop using deprecated g_unicode_canonical_decomposition()
2553
2554 * GParamSpec:
2555  - mark the 'name' field as 'const' and add a comment to the header to
2556    help avoid future problems caused by bad hacks
2557
2558 * Merge some (modified) patches from Debian:
2559  - 03_blacklist-directories.patch
2560    - add some blacklisted mount directories
2561  - 60_wait-longer-for-threads-to-die.patch
2562    - sleep longer in a test case, if needed to avoid failing
2563
2564 * Units policy change: prefer use of SI units
2565  - deprecate g_format_size_for_display, add g_format_size(_full)
2566
2567 * GSettings: don't call g_error() when the schema is missing
2568
2569 * GVariant support for arrays of object paths:
2570  - new g_variant_{new,get,dup}_objv API
2571  - support for g_variant_{new,get} '^ao' and '^a&o' similar to '^as'
2572
2573 * GDBus:
2574  - use new improved array-of-objects support and pass 'ao' as char**
2575    instead of GVariant*
2576  - improve handling of 'h' type (Unix file descriptor index)
2577
2578 * GIO:
2579  - fix compilation without USE_STATFS and USE_STATVFS
2580
2581 * Documentation fixes
2582
2583 * Bugs fixed:
2584  622921 Migrate from dbus-glib to glib's GDBus
2585  648271 Add g_unicode_script_to_iso15924()
2586  654948 Stop using deprecated g_unicode_canonical_decomposition()
2587  654988 g_atomic_int_add should document behaviour change
2588  655025 #define G_UNICODE_SPACING_MARK G_UNICODE_COMBINING_MARK
2589  655076 normalization misses some Full_Composition_Exclusion=True. 
2590
2591 * Translations updated:
2592  Spanish
2593
2594 Overview of changes from GLib 2.29.10 to 2.29.12
2595 ================================================
2596
2597 * Add new API to do Unicode (de-)composition in atomic steps,
2598   for use in Harfbuzz.
2599
2600 * Bugs fixed:
2601  615895 (indirectly) support non-NULL-terminated regexes in GRegex
2602  617949 glib trunk fails to compile on Solaris w/ Studio 12...
2603  620423 Document the possibility to unset attributes
2604  627974 Floating reference headaches
2605  644687 Not finding cross-links in current doc set
2606  649246 g_output_stream_splice() cannot be used on 32-bit machines...
2607  653841 a helper script to build glib from git master on win32
2608  653935 g_slist_free_full/g_list_free_full iterates twice in the list
2609  654017 tests: fix glib_translations_work() in gsettings unit test
2610  654085 Don't needlessly use "echo -e" when creating .def files
2611  654195 Add g_unichar_compose() and g_unichar_decompose()
2612  654232 GCancellable eventfd problems
2613  654394 suspicious use of floating references in GDBusInterfaceSkeleton
2614  654536 GSettings: lift key name length restriction to 64
2615  654627 GParamSpec: intern property names
2616  654651 Better g_unicode_canonical_decomposition()
2617  654917 Make g_cclosure_marshal_generic the default signal handler
2618
2619 * Translation updates:
2620  Belarusian
2621  Finnish
2622  Korean
2623  Latvian
2624  Lithuanian
2625  Norwegian bokmål
2626  Turkish
2627
2628
2629 Overview of changes from GLib 2.29.8 to 2.29.10
2630 ===============================================
2631
2632 * New features:
2633  - g_desktop_app_info_get_nodisplay: a function that is required
2634    to port gnome-menus to GDesktopAppInfo
2635  - g_hash_Table_iter_replace: new function to replace a value
2636    while iterating over a hash table
2637  - g_utf8_substring: convenience API to extract substrings from
2638    UTF-8 strings
2639  - g_action_group_add_entries: convenience API for creating lots
2640    of actions quickly
2641  - Use eventfd instead of pipes for waking up main contexts and
2642    for cancellation when available
2643  - GMatchInfo is now a refcounted boxed type
2644
2645 * API changes in GAction:
2646  - the 'set_state' entry in the GActionInterface vtable has been
2647    renamed to 'change_state
2648  - g_action_set_state has been renamed to g_action_change_state
2649  - the 'state' property has been changed to read-only
2650  - GSimpleAction can no longer be subclassed
2651
2652 * Bug fixes
2653  647796 g_variant_new_variant is not marked as constructor
2654  652072 gmain: make use of signalfd()
2655  652168 Crosscompiling Fails if build<=2.24 and host >2.24
2656  652750 make dist fails
2657  652758 GDataInputStream: Clarify g_data_input_stream_read_line docs...
2658  652822 Add a g_hash_table_iter_replace
2659  652897 tiny docs clarification for g_utf8_to_ucs4_fast
2660  653140 gmain: use Linux eventfd() for main context wake up
2661  653429 drop AM_MAINTAINER_MODE or enable it by default
2662  653484 GAsyncCallbacks should default to allow-none
2663         Add missing fundamental types to the generic marshaller
2664
2665 * Translation updates
2666  Belarusian
2667  Galician
2668  Russian
2669
2670 Overview of changes from GLib 2.29.6 to 2.29.8
2671 ==============================================
2672
2673 * Bug fixes
2674  646608 export_symbols variable for gio dynamic library is wrong
2675  646635 Fix introspection of GLib
2676  647930 Documentation: GDataInputStream _read_upto() version
2677  651745 Switch to _ prefixing rather than G_GNUC_INTERNAL
2678  651920 Improve qsort_r detection
2679  651959 gbitlock: "asm goto" is not available in gcc < 4.5
2680  651998 gdbus-codegen: Use relative Python imports
2681  652000 Fix for gatomic.c on Windows/MSVC
2682  652002 Proposal to clean up gvaluetransform.c for MSVC
2683  652025 g_dbus_connection_register_object: error is not set...
2684  652081 Typos in a GBinding warning message
2685  652197 Improper handling of double values in GDBusMessage
2686         Fix a deadlock in gobject finalization
2687
2688 * Translation updates:
2689  Czech
2690  Galician
2691  German
2692  Hebrew
2693  Norwegian bokmål
2694  Spanish
2695  Uighur
2696
2697
2698 Overview of changes from GLib 2.29.4 to 2.29.6
2699 ==============================================
2700
2701 * Atomic operations have been rewritten from scratch to make use
2702   of gcc builtins where possible. As a side-effect of this, calls
2703   to g_atomic_ API with explicit casts may now be problematic; if
2704   that happens to you, try first to remove the casts. Another
2705   side-effect of the rewrite is that g_atomic_int_exchange_and_add
2706   has been deprecated in favor of g_atomic_int_add.
2707
2708 * A full set of atomic operations on pointers has been added,
2709   including bit locks in pointer-size locations.
2710
2711 * Access to quarks is now lockless
2712
2713 * GObject data scalability has been greatly improved
2714
2715 * g_data_time_format now supports alternative digits and padding
2716
2717 * Introspection improvements:
2718  - Add a boxed type for GVariantBuilder
2719  - Annotation fixes in GDBus, GVariant, g_base64_
2720
2721 * Bugs fixed:
2722  502560 g_rand_double_range returns 'inf'
2723  612729 g_mkdir_with_parents can fail if the directory already exists
2724  617491 g_once() implementation is inefficient
2725  619418 Add a performance test for UTF-8 decoding functions
2726  619435 Make g_utf8_to_ucs4_fast() yet faster
2727  626549 G_STATIC_ASSERT_EXPR
2728  631231 bitlock: Fix detection and usage of futexes with Bionic
2729  632294 g_queue_remove() should return a boolean
2730  640518 GMainLoop has quadratic complexity when all pollfd's...
2731  642026 Race condition in g_static_private_free
2732  646635 Fix introspection of GLib
2733  648678 g_date_time_format(): support %O flags for localized numbers
2734  649480 Use MSG_CMSG_CLOEXEC in recvmsg in gio/gsocket.c
2735  649506 GTestFunc et al lacking Since tag
2736  649657 Don't return gboolean for functions that throw
2737  649775 glib-gio-gdbuscodegen-Makefile.patch
2738  649915 gsettings accepts unquoted strings longer than two characters
2739  649973 gthread: build unix tests only on unix
2740  649988 gdbus-codegen: Drop dependency on argparse
2741  650078 forkbomb building glib/tests/protocol
2742  650211 Optimization in key file parsing
2743  650236 Application over DBus implements action state incorrectly
2744  650345 g_key_file_has_key_full: New function to fix g_key_file_has_key...
2745  650458 reduce overhead in g_object_set/get_data
2746  650459 hash table consistency while calling destroy notify funcs
2747  650688 enforce rules about hash table modification
2748  650823 expand the set of atomic ops
2749  650874 codegen chokes on docs
2750  650882 use stdout instead of stderr for informational messages
2751  650884 fix compilation with gcc2
2752  650885 implement glib credentials on OpenBSD (hackish)
2753  650935 G_GNUC_MAY_ALIAS and atomic ops
2754  651009 minor documentation fix
2755  651034 Regarding g_cond_wait after g_thread_pool_push in gthreadedresolver
2756  651133 race condition in GDBusConnection's emit_signal_instance_in_idle_cb
2757  651141 hashtable infinite loop
2758  651219 fix path to true(1) on OpenBSD
2759  651223 Fix some compile warnings on OpenBSD
2760  651327 Minor fixes for the gsocket API
2761  651467 Add pointer sized bitlocks
2762  651650 gdbus: Avoid busy wait loop
2763  651725 gmain: Cleanups and a new test case
2764  651745 Switch to _ prefixing rather than G_GNUC_INTERNAL
2765
2766 * Updated translations:
2767  Catalan (Valencian)
2768  Esperanto
2769  Hebrew
2770  Hungarian
2771  Russian
2772  Spanish
2773
2774
2775 Overview of changes from GLib 2.29.2 to 2.29.4
2776 ==============================================
2777
2778 * GDBus:
2779  - Includes several new types to support modeling D-Bus
2780    objects and interfaces more fully, and also introduces
2781    an 'object manager' pattern:
2782    GDBusInterface, GDBusObject, GDBusObjectManager
2783    These interfaces have client-side implementations:
2784    GDBusProxy, GDBusObjectProxy, GDBusObjectManagerClient
2785    And server-side implementations:
2786    GDBusInterfaceSkeleton, GDBusObjectSkeleton, GDBusObjectManagerServer
2787  - The new gdbus-codegen utility uses these new classes
2788    to generate C code and documentation from D-Bus interface
2789    descriptions in XML
2790
2791 * GTest:
2792  - There is now a g_test_fail() function to mark
2793    tests as failed
2794
2795 * GDesktopAppInfo
2796  - Now has a binding-friendly filename property
2797  - Other new API to more fully expose desktop file contents:
2798    g_desktop_app_info_get_categories(),
2799    g_desktop_app_info_get_generic_name()
2800
2801 * GHashTable:
2802  - Several optimizations to reduce space consumption of
2803    large hash tables, in particular tables that are used
2804    to store sets.
2805
2806 * Unix-specific APIs:
2807   GLib now installs a separate header, glib-unix.h, that is
2808   meant to collect Unix-specific APIs. For now, it contains
2809   g_unix_open_pipe(), g_unix_set_fd_non_blocking() for dealing
2810   with pipes and fds, as well as APIs to create mainloop
2811   sources which can trigger callbacks on certain Unix
2812   signals (SIGTERM, SIGHUP, SIGINT).
2813
2814 * Bugs fixed:
2815  631379 GDBus nonce-tcp test failing
2816  632631 GLib-CRITICAL **: g_variant_new_string: assertion `g_utf8_validate (string, -1, NULL)' failed
2817  635694 gdbus aborting due to unauthorized socket in DBUS_SESSION_BUS_ADDRESS
2818  637561 Crash when using G_DBUS_SERVER_FLAGS_RUN_IN_THREAD
2819  642935 g_date_time_format() prints wrong value for %z and timezone -0800
2820  643134 g_dbus_message_copy
2821  644941 glib-unix: New Unix-specific API
2822  646013 g_hash_table_remove_all_nodes optimization
2823  646309 glib cannot be cross-compilled for mingw32
2824  646435 GTimeZone doesn't seem to be thread-safe
2825  646957 GIO chained calls don't work with a thread default context
2826  647594 README link to mailing list is broken
2827  647602 Cannot connect to remote message bus via TCP
2828  647746 The GSocketService documentation is incomplete.
2829  647826 API: gtester: Add g_test_fail()
2830  647903 GDesktopAppInfo: Add g_desktop_app_info_get_categories()
2831  648416 g_app_info_create_from_commandline ignores SUPPORTS_STARTUP_NOTIFICATION
2832  648423 Support G_DEBUG=trap-warnings
2833  648425 GDesktopAppInfo: Add "filename" property for bindings
2834  648966 Update g_unichar_iswide and g_unichar_iswide_cjk
2835
2836 * Updated translations
2837  Norwegian bokmål
2838  Spanish
2839  Turkish
2840  Uighur
2841
2842
2843 Overview of Changes from GLib 2.28.0 to 2.29.2
2844 ==============================================
2845
2846 * GApplication
2847  - The documentation has been enhanced and clarified
2848  - An opt-out for uniqueness has been added: G_APPLICATION_NON_UNIQUE
2849  - GApplication now syncs settings before g_application_run() returns
2850
2851 * GDBus
2852  - Interface lookups are now happening in constant time
2853  - Signature checking and handling of various unexpected
2854    situations has been improved
2855
2856 * GVariant
2857  - The format accepted by the GVariant parser has beend documented
2858  - GVariant accepts G_VARIANT_TYPE_VARDICT for a{sv}
2859
2860 * GDateTime:
2861  - The return value of g_datetime_compare() has been fixed to
2862    match strcmp() semantics
2863  - In order to handle problems with changing timezones, a GTimeZoneMonitor
2864    has been added to GIO, and g_time_zone_refresh_local() can be
2865    called to update the cached information about the local timezone
2866
2867 * GOption now uses /proc/self/cmdline to set the program name instead
2868   and only falls back to "<unknown>" if that is unavailable
2869
2870 * GSettings:
2871  - The schema compiler now warns about references to non-existing schemas
2872
2873 * Commandline utilities are now fully translated
2874
2875 * Signals can now indicate that collecting their arguments must
2876   always happen, even in the absence of connected signal handlers,
2877   using the G_SIGNAL_MUST_COLLECT flag.
2878
2879 * Bugs fixed:
2880  635099 Memory leak in gdbus introspection when parsing xml
2881  640489 $ and ^ do not match lines if G_REGEX_MULTILINE|G_R...
2882  642042 Overriding GDBus org.freedesktop.DBus.Properties im...
2883  642052 g_timeout_add(_seconds) cannot handle large intervals
2884  642490 notify_desktop_launch() "g_variant_new_bytestring:...
2885  613269 g_type_get_qdata() doesn't work as I expected on subtypes
2886  624943 G_VALUE_NOCOPY_CONTENTS is undocumented
2887  637738 object_interface_check_properties never actually executes
2888  638185 GIOCondition should be annotated as "flags"
2889  639478 GDBusServer's g_dbus_server_new_sync() function should just...
2890  641755 Add g_settings_get/set_uint() helpers
2891  641768 dconf gsettings backend silently drops writes if it can't...
2892  642797 g_app_info_get_default_for_type() broken for subtypes
2893  642825 Unnecessary assertion failure in g_option_context_parse()
2894  642944 NULL key lookup using g_hash_table_lookup_extended()
2895  643074 Incorrect documentation for g_socket_receive() and g_socket...
2896  643197 g_application_id_is_valid docs imply no valid ids
2897  643468 GApplication docs: Warn that handling "command-line" means...
2898  643478 GApplication::local_command_line vfunc documentation seems wrong
2899  643624 Can g_variant_unref() on an already free'd variant
2900  643649 g_application_run() should say that argc/argv can be NULL
2901  643780 shouldn't need to create an action group to use actions...
2902  643795 g_timeout_add_seconds fires with intervals 1 second longer...
2903  644309 Program name is not set when using GtkApplication
2904  644428 Crash in failure section of g_markup_collect_attributes()
2905  644465 undefined reference to `_usleep'
2906  644552 g_timeout_add_seconds(1, ...) may have a latency of up to 2...
2907  644607 Correct internal definition of C_()
2908  645789 annotations for g_file_*_contents
2909  646039 g_settings_list_children() returns child that cannot be opened
2910  646310 Accept range with only min or max
2911  646420 g_dbus_method_invocation_get_parameters() docs should say...
2912  646843 occasional abort on autologin
2913  646985 add G_APPLICATION_NON_UNIQUE flag
2914  647579 gsettings: Implement reset-recursively
2915  647600 gsettings description has typo
2916
2917 * Translation updates
2918  Afrikaans
2919  Bulgarian
2920  Bengali India
2921  British English
2922  Bulgarian
2923  Catalan
2924  Czech
2925  Danish
2926  French
2927  Galician
2928  German
2929  Greek
2930  Gujarati
2931  Hebrew
2932  Hungarian
2933  Italian
2934  Japanese
2935  Korean
2936  Lithuanian
2937  Polish
2938  Portuguese
2939  Romanian
2940  Serbian
2941  Simplified Chinese
2942  Spanish
2943  Swedish
2944  Traditional Chinese
2945  Uighur
2946  Vietnamese
2947
2948
2949 Overview of Changes from GLib 2.27.93 to 2.28.0
2950 ===============================================
2951
2952 * Bugs fixed:
2953 641363 GInitable documentation isn't clear about that finalize...
2954 641395 Add more data about the origin application to the "Lau...
2955 641411 gdesktopappinfo signals lost if it's the session bus...
2956 641477 glib-mkenums uses unportable #! line
2957 641572 Add @EXEEXT@ to pkgconfig binary name
2958 641688 glib installs GSettings.html and gsettings.html
2959
2960 * Translation updates:
2961  Galician
2962  Italian
2963  Korean
2964  Punjabi
2965
2966
2967 Overview of Changes from GLib 2.27.92 to 2.27.93
2968 ================================================
2969
2970 * Bugs fixed:
2971  637013 gio/gdbusmessage.c fails to compile on Solaris
2972  640192 Error creating a Gio.Settings object through py...
2973  640261 Minimum version for external pcre needs to be..
2974  640262 GActionGroup contains redundant TYPE macros
2975  640436 Make load_user_special_dirs() resistant to non...
2976  640695 g_key_file_load_from_file() mishandles a CR-LF...
2977  640724 can't compile gio due to format string issues
2978  640725 can't compile tests due to format string issue
2979  640807 improve GVariant behaviour with invalid pointers
2980  640823 wrong documentation for g_source_add_child_source
2981
2982 * Translation updates:
2983  Bulgarian
2984  Galician
2985  Hebrew
2986  Norwegian bokmål
2987  Spanish
2988  Traditional Chinese
2989
2990
2991 Overview of Changes from GLib 2.27.91 to 2.27.92
2992 ================================================
2993
2994 * Update to Unicode 6.0
2995
2996 * Update PCRE to 8.12
2997
2998 * Bugs fixed:
2999  637696 g_unix_connection_send_fd() doesn't work
3000  638872 null settings backend bug
3001  640042 GtkApplication's warning about not connecting...
3002
3003 * Translation updates:
3004  Arabic
3005  Basque
3006  Estonian
3007  Greek
3008
3009 Overview of Changes from GLib 2.27.90 to 2.27.91
3010 ================================================
3011
3012 * Bugs fixed:
3013  638838 gdesktopappinfo: Don't crash if we don't have a desktop filename
3014  638894 Splitting on \s* gives no result
3015  639064 Update gschema.dtd
3016  639084 Copy/paste error in GSettings::writable-changed signal
3017  639177 SIGSEGV for GApplications with G_APPLICATION_IS_SERVICE
3018
3019 * Translation updates:
3020  Estonian
3021  Galician
3022  Indonesian
3023
3024
3025 Overview of Changes from GLib 2.27.5 to 2.27.90
3026 ===============================================
3027
3028 * Test reports created by gtester-report can now
3029   include revision information
3030
3031 * The g_desktop_app_info_launch_* family of functions
3032   now emit a DBus signal when an application is launched.
3033   Additionally, there is a new variant
3034   g_desktop_app_info_launch_uris_as_manager(), which
3035   gives more control over the launched process.
3036
3037 * The memory and null GSettings backends are now available
3038   as public API
3039
3040 * g_get_locale_variants() is a new function that returns a
3041   list of variants of a locale identifier
3042
3043 * Bugs fixed:
3044  587898 I/O timeouts for GSocket
3045  606960 gio: Add extension point for informing parties...
3046  631980 Handle an optional <revision> node in the report...
3047  634569 Document that g_variant_builder_add_value consumes...
3048  635998 Make _g_compute_locale_variants public
3049  636806 Add g_{memory,null}_settings_backend_get_default
3050  637262 Need a binary DER version of ::accepted-cas
3051  637544 Skip fsync() on btrfs
3052  637720 void functions should not return a value.
3053  637738 object_interface_check_properties never actually...
3054  637759 GIOChannel: fix a crash in g_io_channel_read_chars()
3055  637852 Updates to glib.vsprops file for MSVC 2008 builds...
3056  637858 Updates to test/testglib.c...
3057  638349 parameter name of g_variant_new_* may conflict...
3058
3059 * Translation updates:
3060  Hebrew
3061  Norwegian bokmål
3062  Simplified Chinese
3063  Spanish
3064  Swedish
3065  Uyghur
3066  Vietnamese
3067
3068
3069 Overview of Changes from GLib 2.27.4 to 2.27.5
3070 ==============================================
3071
3072 * Network support:
3073  - Add g_tls_certificate_verify() to verify a certificate
3074  - Add GTlsConnection:use-system-certdb
3075  - Other TLS api additions
3076
3077 * GIO:
3078  - Add g_io_stream_splice_async()/_finish() to splice two iostreams
3079  - Add g_emblemed_icon_clear_emblems() and make GEmblemedIcon derivable
3080  - Remove GPeriodic; it did not receive the necessary review and
3081    integration work to declare it stable
3082
3083 * GSequence:
3084  - New methods g_sequence_lookup() and g_sequence_lookup_iter()
3085
3086 * Bugs fixed:
3087  617254 Missing g_sequence_lookup
3088  632544 g_dbus_connection_send_message can not send a locked message...
3089  633350 g_hostname_to_ascii() ignores non-ascii dots
3090  634583 Better error reporting for g_variant_parse()
3091  635007 gsetting enum rule don't work for out-of-srcdir builds
3092  635626 GDBus message idle can execute while flushes are pending
3093  636100 Can't read GSettings:backend property
3094  636305 Typo on g_queue_remove_all() function description
3095  636311 appinfo: tweak application positioning for content-types
3096  636351 g_simple_async_result_is_valid lacks a version tag
3097  636387 gdb autoload files shadow the "dir" builtin
3098  636673 g_simple_async_report_error_in_idle should allow object...
3099  637147 Add a "delay-apply" property to GSettings
3100  637171 emblemedicon: add g_emblemed_icon_clear_emblems()
3101  637237 gapplication: plug a memory leak
3102
3103 * Translation updates:
3104  Estonian
3105  Galician
3106  Hebrew
3107  Norwegian bokmål
3108  Simplified Chinese
3109  Spanish
3110  Traditional Chinese
3111  Vietnamese
3112
3113
3114 Overview of Changes from GLib 2.27.3 to 2.27.4
3115 ==============================================
3116
3117 * GIO
3118  - Mounts are treated as hidden if they have a path element
3119    that starts with a dot
3120  - GAppInfo gained API to differentiate between recommended
3121    and fallback mime handlers
3122  - g_cancellable_create_source: creates a GSource that triggers
3123    when the GCancellable is canceled
3124  - GPollableInput/OutputStream: Interfaces for pollable streams
3125  - TLS support has landed, with an extension point that is
3126    implemented in glib-networking
3127
3128 * GLib
3129  - Mainloop sources can now have 'child sources'
3130  - g_get_runtime_dir: New function to return the XDG_RUNTIME_DIR
3131
3132 * Bugs fixed:
3133  530786 GFileMonitor "changed" signal underdocumented
3134  588189 TLS support for GSocket*
3135  630357 g_object_new_valist uses uninitialized memory
3136  630559 typo in public string in gsocks: 'The SOCKSv5 require...
3137  632445 Documentation refers to removed GNOME 2.0 porting guide
3138  634239 Child GSources
3139  634241 Add pollable input/output streams
3140  634504 allow passing a NULL emblem to g_emblemed_icon_new()
3141  634613 unsufficient g_get_user_runtime_dir() documentation
3142  635640 schema should inherit gettext-domain from schemalist
3143  635768 Protect g_file_monitor_set_rate_limit() against negative...
3144  635882 Fix the wrong-category schema test
3145  635187 Wrong type of GVariant received in an action...
3146
3147 * Updated translations:
3148  Galician
3149  Italian
3150  Norwegian bokmål
3151  Uyghur
3152
3153
3154 Overview of Changes from GLib 2.27.2 to 2.27.3
3155 ==============================================
3156
3157 * The GTimeSpec type that was introduced in the 2.27.2 has been
3158   dropped again in favour of APIs that return microseconds as
3159   64-bit integer.
3160   Affected functions:
3161   g_source_get_time
3162   g_periodic_unblock
3163   g_get_monotonic_time
3164   g_get_real_time
3165   The similar GTimeVal struct is still around, but its use is
3166   discouraged.
3167
3168 * GTimer is now using monotonic time unconditionally
3169
3170 * There are some new functions to facilitate error reporting
3171   in async GIO APIs:
3172   g_simple_async_result_take_error
3173   g_simple_async_result_new_take_error
3174   g_simple_async_report_take_gerror_in_idle
3175
3176 * There is new convenience API to us GVariant dictionaries:
3177   g_variant_lookup
3178
3179 * It is now possible to delay sending match rules to the
3180   D-Bus daemon in GDBus:
3181   G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE
3182
3183 * Support has been added for XDG_RUNTIME_DIR:
3184   g_get_user_runtime_dir
3185
3186 * Various fixes for Win64/MSVC builds have been committed
3187
3188 * Bugs fixed:
3189  620263 Add g_clear_object, g_clear_pointer, g_clear_boxed
3190  633075 update Project Files and sources for MSVC 2008/C89
3191  633381 gsettings Makefile rules should handle empty list...
3192  633685 Use g_simple_async_result_{new_,}take_error
3193  633686 Add g_simple_async_report_take_gerror_in_idle
3194
3195 * Translation updates:
3196   Belarusian
3197   Galician
3198   Hebrew
3199   Punjabi
3200   Spanish
3201
3202
3203 Overview of Changes from GLib 2.27.1 to 2.27.2
3204 ==============================================
3205
3206 * GApplication
3207  - Export actions over DBus and support activating them from remote instances
3208  - Support environment passing
3209
3210 * GSettings
3211  - The gsettings utility has a list-recursively command
3212  - The gsettings utility has commandline completion for enum values
3213
3214 * GLib is now linked against librt and uses monotonic time for
3215   timeouts and GPeriod sources. GSource has a new g_source_get_time()
3216   which returns monotonic time, and g_source_get_current_time() has
3217   been deprecated
3218
3219 * Bugs fixed:
3220  158725 free linked list with data
3221  626320 GVariant: Avoid locking in g_variant_get_child_value() if possible
3222  629247 add gsimpleasyncresult methods to take over a GError
3223  629274 GNetworkService does not do fallback when there is no SRV record
3224  631264 gsettings-tool choice/range support
3225  631482 g_date_time_from_instant: 1000000000000000000
3226  632169 docs for manual use of gsettings-data-convert
3227  632571 Add equivalent to gconftool-2's -R option
3228  633115 GSettings m4 doesn't fail the build for broken schemas
3229  633206 Default g_application_local_command_line() doesn't set exit_status...
3230  633339 support more complex gapplication setups
3231  633356 Make timeout G_MAXINT mean "no timeout"
3232
3233 * Translation updates:
3234  Catalan (Valencian)
3235  Indonesian
3236  Japanese
3237
3238
3239 Overview of Changes from GLib 2.27.0 to 2.27.1
3240 ==============================================
3241
3242 * GDateTime now has full week number support.
3243   New API: g_date_time_get_week_numbering_year
3244
3245 * The GSettings schema compiler will now skip over
3246   broken .xml schema files instead of aborting altogether
3247
3248 * GSettings now works properly on bigendian systems
3249
3250 * GSettings has more complete support for ranges
3251   New API:
3252     g_settings_get_range
3253     g_settings_range_check
3254   The gsettings commandline tool supports ranges too.
3255
3256 * GApplication has been rewritten; see the API docs for details
3257   and examples. The action support is not complete yet.
3258
3259 * The GLib mainloop has gained 'dispatch to context' functionality,
3260   which can replace manually created idles in many cases.
3261   New API:
3262     g_main_context_invoke
3263     g_main_context_invoke_full
3264
3265 * The gio-desktop-app-info-lookup extension point has been
3266   removed from GIO. GIO now uses x-scheme-handler mimetypes when
3267   looking for default applications.
3268
3269 * On win32, make g_get_user_data_dir() return the CSIDL_LOCAL_APPDATA
3270   folder on Windows, and not CSIDL_PERSONAL. This matches what Qt does,
3271   and has been widely requested. Also make g_get_user_config_dir() return
3272   this and not the (roaming) CSIDL_APPDATA folder.
3273
3274 * A periodic event clock has been added in GIO: GPeriodic. Note that this
3275   API is still experimental and expected to undergo changes before it
3276   will be incorporated into a stable GLib release. Use at your own risk.
3277
3278 Bug fixes:
3279  613822 gobject signal connect/disconnect not thread safe
3280  618737 "dispatch to context" functionality
3281  620710 g_get_user_data_dir() uses CSIDL_PERSONAL and not CSIDL_APPDATA
3282  623400 acquire context before dispatching
3283  627126 gsettings schema files don't get installed on FreeBSD
3284  627171 g_socket_new_from_fd() doesn't set the right protocol
3285  628876 Wrong error description
3286  628937 gracefully handle broken schemas
3287  629274 GNetworkService doesn't fallback when there is no SRV record
3288  629289 g_error() used wrong, produces core dump
3289  629687 leaks class refcount in gsocketcontrolmessage
3290  629849 GLib-CRITICAL **: g_source_get_context: assertion `!SOURCE_...
3291  629945 GDBus deadlock in g_bus_get_sync()
3292  630000 g_date_time_difference
3293  630077 GDateTime week number support
3294  630185 Allow NULL strings in g_quark_try_string()
3295  630797 docs mention non-existent g_object_dispose()
3296  630968 gschema-compile problems on power g5
3297  631263 GSettings needs range/choice APIs
3298  631264 gsettings-tool choice/range support
3299  631379 GDBus nonce-tcp test failing
3300  631410 Port gapplookupgconf.c to using x-scheme-handler/
3301  632884 Possible deadlock in g_object_remove_toggle_ref()
3302
3303 Transation updates:
3304  Basque
3305  Brazilian Portuguese
3306  British English
3307  Bulgarian
3308  Czech
3309  Dutch
3310  Estonian
3311  French
3312  Galician
3313  German
3314  Greek
3315  Hebrew
3316  Hungarian
3317  Japanese
3318  Lithuanian
3319  Polish
3320  Portuguese
3321  Romanian
3322  Simplified Chinese
3323  Slovenian
3324  Spanish
3325
3326
3327 Overview of Changes from GLib 2.25.15 to GLib 2.27.0
3328 ====================================================
3329
3330 Build:
3331   - massive restructuring to reduce #include abuse
3332   - tweaks to silence some harmless compiler warnings
3333   - rename gschema-compile.c to glib-compile-schemas.c
3334   - Windows fixes
3335   - fix building with zlib < 1.2.4 on win32
3336
3337 GDateTime:
3338   - better msgctxt for translating month and weekday names
3339   - API is changed quite a lot, implementation is improved
3340   - GTimeZone is now exposed
3341
3342 GObject:
3343   - make ordering for overridden interface properties consistent
3344   - ->priv structures are limited to 64k but this was not documented,
3345     and exceeding this limit produced bad results.  Add docs and enforce
3346     the limit properly.
3347   - add g_object_class_install_properties() to install multiple
3348     properties in one go
3349   - improve debugging output for GValue containing G_TYPE_STRV
3350
3351 GIO:
3352   - fix priority sorting of GIO extensions
3353   - add GCredentials support on FreeBSD
3354   - fix support for IPv6 addresses in URI parsing functions
3355   - GSocketClient fixes for when g_socket_connect succeeds immediately
3356   - clarify string encoding for GFile constructors in docs
3357   - new functions g_data_input_stream_read_upto{,async,finish}
3358   - tweak confusing documentation for g_output_stream_write()
3359
3360 GDBus:
3361   - GDBusMessage can now be locked and copied (like in libdbus)
3362   - GDBusConnection filter function API has changed again
3363   - GDBusServer: ::new-connection now declares if the connection was claimed
3364   - add a partial workaround for GObject bug 627724.
3365   - very many memory leaks fixed
3366
3367 GVariant:
3368   - check for size == 0 in g_variant_get_bytestring to avoid a crash
3369     when attempting to get_bytestring() from an empty array
3370   - improve gobject-introspection annotations
3371
3372 GSettings:
3373   - add GSettings Windows registry backend
3374   - some internal tweaks to the backend API
3375   - remove g_settings_list_items
3376   - add g_settings_list_children and _list_keys to replace it
3377   - add schema compiler restrictions for dealing with lists
3378   - don't automatically emit value changed signals on writability
3379     changes
3380
3381 Other:
3382   - constify the 'parser' vtable param to g_markup_parse_context_push()
3383   - plug many memory leaks in test cases
3384
3385 Bugs closed:
3386   50076 Time API to go with date API
3387  584284 g_data_input_stream_read_until_async different from sync version
3388  624546 Modification of GDBusMessage in filter function
3389  626919 Let g_object_class_install_property() return the installed GParamSpec*
3390  628029 GDateTime missing get_week_of_year method
3391  628253 Interface properties not listed in a consistent order
3392  628331 Plug lots of mem leaks in gio test suite
3393  628345 Plug a mem leak
3394  628436 Plug a mem leak
3395  628505 Fix building with zlib < 1.2.4 on win32
3396  628839 [PATCH] datetime: Rename shadowing variables
3397  628904 [PATCH] Add credential support for FreeBSD and fix a socket issue
3398  628952 incorrect glib_major_version and other variables on cygwin.
3399  629192 g_strdup_value_contents(): dump GStrv more usefully
3400  629251 g_socket_client_async_connect_complete: assertion failed
3401  629259 Failed to connect to "::1"
3402  629328 g_markup_parse_context_push doesn't respect const structs
3403  629429 month "May" short and full form same with "GDateTime" msgctxt
3404  629689 GDBusConnection leaks its GCredentials
3405  629698 Segfault in g_variant_get_bytestring() 
3406
3407 Updated translations:
3408   Arabic
3409   Armenian
3410   Basque
3411   British English
3412   Czech
3413   Finnish
3414   Galician
3415   German
3416   Hungarian
3417   Indonesian
3418   Japanese
3419   Lithuanian
3420   Norwegian bokmål
3421   Polish
3422   Portuguese
3423   Punjabi
3424   Simplified Chinese
3425   Slovenian
3426   Spanish
3427   Swedish
3428   Swedish
3429   Traditional Chinese
3430
3431 Overview of Changes from GLib 2.25.14 to GLib 2.25.15
3432 =====================================================
3433
3434  * GIO
3435   - Memory leak fixes
3436   - The GZip(De}Compressor can now process header information
3437   - Support for network proxies has been added, with the GProxy
3438     interface and the gio-proxy-resolver extension point. GIO
3439     includes SOCKSv4 and SOCKSv5 implementations, and libproxy
3440     is also going to provide an implementation of this extension
3441     point.
3442   - There are GAction and GActionGroup interfaces now, which will
3443     be used in GApplication in the near future.
3444
3445  * GObject
3446   - There are now convenience macros for defining boxed and
3447     pointer types
3448
3449  * GDBus
3450   - Memory leak fixes
3451   - GDBusProxy for well-known names can now auto-restart
3452     the service if the name owner disapperas
3453   - Filter functions are now allowed to modify messages
3454
3455  * GLib
3456   - GDateTime is a replacement for GDate that supports time
3457     and timezone information.
3458
3459  * Bugs fixed:
3460   50076 Time API to go with date API
3461  449565 Add G_DEFINE_BOXED_TYPE()
3462  617691 Add GZIP header processing to GZlibCompressor/GZlibDecompressor
3463  622184 add g_memory_output_stream_steal_data
3464  624546 Modification of GDBusMessage in filter function
3465  627088 Build failure in gdbus-peer.c on FreeBSD
3466  627181 save a memdup
3467  627182 Plug a mem leak in the gdbus-connection test
3468  627187 Plug some gdbus mem leaks
3469  627188 gdbus-non-socket test occasionally fails
3470  627252 G_OPTION_FLAG_NO_ARG is only for callback options
3471  627392 gdbus commit 8a3a4596 breaks win32 compile
3472  627407 FTBFS on !linux UNIX platforms
3473  627604 String error: 'that' twice in a row
3474  627969 ABR in g_file_open_tmp
3475  628084 gdbus-peer fails with assertion
3476  628193 Miscellaneous string fixes
3477  628296 abort() in gsocketconnection.c
3478  628309 Plug a mem leak in GConverterOutputStream
3479  628317 GEmblemedIcon:equal implementation is buggy
3480  628323 Fix invalid reads
3481  628327 Plug a mem leak
3482  628328 Plug a mem leak
3483  628329 Don't leak the FD list
3484  628324 Invalid reads in gdbus-export test
3485
3486  * Updated translations:
3487   British English
3488   Danish
3489   Galician
3490   Hebrew
3491   Punjabi
3492   Serbian
3493   Spanish
3494   Traditional Chinese
3495
3496
3497 Overview of Changes from GLib 2.25.13 to GLib 2.25.14
3498 =====================================================
3499
3500 * GDBus
3501  - Make the closure variants of GDBus apis work
3502  - Make error unregistration work
3503  - Use async IO in the IO thread (626748)
3504
3505 * GIO
3506  - Make g_simple_async_result_is_valid work without source (626208)
3507  - GSocketClient: add a timeout property
3508  - Fix memory leaks in GSocketClient
3509  - Handle async vs. sync correctly in GSocketConnection stream (616458)
3510  - Declare stream base classes as abstract
3511  - Clarify semantics of g_output_stream_write() (627071)
3512
3513 * Other
3514  - Improve test coverage for GDBus, GRegex, GAsyncResult
3515  - Drop dead code in pcre, xdgmime
3516  - Fix a race condition in gtester (578295)
3517  - Avoid an extra allocation in GAsyncQueue (626704)
3518  - Add test case for non-socket GIOStream (626841)
3519  - More explicit GVariant docs (622770)
3520  - Imroved docs for GAsyncInitable and GSimpleAsyncResult (602417)
3521
3522 * Translation updates:
3523  - Galician
3524  - Norwegian bokmål
3525  - Punjabi
3526  - Simplified Chinese
3527  - Swedish
3528
3529
3530 Overview of Changes from GLib 2.25.12 to GLib 2.25.13
3531 =====================================================
3532
3533 +-------------------------------------------------------------------+
3534 |   WARNING: There have been no breaks in API or ABI.  Weird, eh?   |
3535 +-------------------------------------------------------------------+
3536
3537 The primary purpose of this release is to fix a serious problem with
3538 glib 2.25.12: glibconfig.h (as generated on a Fedora amd64 system) was
3539 being distributed in the tarball.  It was being used to build some parts
3540 of glib on other systems (eg: 32bit ones).  This was causing some very
3541 serious problems.
3542
3543 There have been many other improvements, however:
3544
3545  Build and testing:
3546   - vastly improved test coverage
3547   - old tests moved to the gtester framework
3548   - gtester Makefile modified so that the tests only run once
3549   - cleanup of how we handle includes while building glib
3550
3551  GVariant:
3552   - add a g_return_if_fail (utf8) to g_variant_new_string()
3553
3554  GDBus:
3555   - perform extra sanity checks when serialising messages
3556   - add API to query and set the byteorder of a GDBusMessage
3557   - improve debug output, add some extra options
3558   - if exiting due to the bus disconnecting us, print an error message
3559     explaining why
3560   - sort property names correctly
3561   - don't bother sending RemoveMatch when we will close the connection
3562     anyway
3563   - use effective uid/gid for credential passing
3564
3565  GSettings:
3566   - add G_SETTINGS_BIND_INVERT_BOOLEAN for inverting boolean bindings
3567     without mapping functions
3568   - mark all strings in the schema compiler for translation
3569
3570  Binding:
3571   - improve closure support for bindings
3572   - copy GSettings INVERT_BOOLEAN flag
3573
3574  Other:
3575   - fix another complicated GCancellable deadlock possibility
3576
3577 Bugs closed:
3578  599590 glib build doesn't look for correct pkg-config
3579  619026 avoid warning in gutils.h when using gcc with -Wconversion
3580  624739 Please fix POTFILES.in
3581  625472 Valgrind claims uninitialized bytes used
3582  625500 g_date_set_time_val documentation doesn't mention local time
3583  625628 GDBusProxy: wrong property name sorting
3584  625753 Incorrect flags used in g_dbus_connection_call_sync()
3585  625827 Expand documentation about error quark naming
3586  625988 builddir != srcdir issues
3587  626107 glibconfig.h is being disted
3588
3589 Updated translations:
3590  French
3591  Galician
3592  Hebrew
3593  Norwegian bokmål
3594  Spanish
3595
3596
3597 Overview of Changes from GLib 2.25.11 to GLib 2.25.12
3598 =====================================================
3599
3600 +-------------------------------------------------------------------+
3601 | WARNING: There have been many API changes in GDBus -- sending     |
3602 | messages, subscribing to signals, closing connections and         |
3603 | registering subtrees are affected.  The ABI for GSettingsBackend  |
3604 | has also been changed.  For both reasons, a new dconf release is  |
3605 | required (and will be along soon).                                |
3606 +-------------------------------------------------------------------+
3607
3608 Build:
3609   - cleanup automake setup
3610   - rename configure.in to configure.ac
3611   - various docs fixups
3612   - move glibconfig.h to glib/
3613   - disable dtrace support on Mac OS (which has incompatible 'dtrace')
3614
3615 GSettings:
3616   - add support for vendor override files (to change the default values
3617     in a schema)
3618   - change GSettingsBackend vtable
3619   - add g_settings_reset()
3620   - support binding to G_TYPE_STRV properties
3621
3622 GDBus:
3623   - many bug fixes, including a serialisation fix
3624   - stop handling incoming connections as soon as stop() is called
3625   - proper support for file descriptor passing
3626   - new flags parameter for sending messages
3627   - new flags parameter for subscribing to signals
3628   - always reset the message serial when sending a message unless
3629     G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL is given
3630   - constness fixes for introspection structures
3631   - clean ups to subtree registration API
3632
3633 Other:
3634   - fix divide by zero bug in g_malloc_n functions
3635   - GIO: don't blindly assume that SOCK_CLOEXEC is supported
3636   - make GObject property notify freezes threadsafe
3637   - GIO: clean up credentials passing
3638   - GApplication: make default-quit not apply if register=FALSE
3639   - GIO: add annotations for gobject-introspection
3640
3641 Bugs closed:
3642  166020 use GAtomic for refcounting
3643  617483 Credentials passing
3644  622005 [GApplication] no way to modify the "default-quit" property
3645  623293 vendor override files
3646  623810 Message serialization bug
3647  623815 Don't check sender for GDBusProxy objects where name is not set
3648  624473 GDBusSubtreeIntrospectFunc return type
3649  624483 GDBusSubtreeEnumerateFunc clarification
3650  624484 GDBusSubtreeDispatchFunc clarification
3651  624754 gdbusaddress.c missing sys/wait.h
3652  624968 div by zero in g_malloc_n family
3653  624991 GSettings mapping for G_TYPE_STRV 
3654  625383 Add missing GI annotations
3655
3656 Updated Translations:
3657  Armenian
3658  Galician
3659  German
3660  Hebrew
3661  Kazakh
3662  Romanian
3663  Simplified Chinese
3664  Spanish
3665
3666 Overview of Changes from GLib 2.25.10 to GLib 2.25.11
3667 =====================================================
3668
3669 +-------------------------------------------------------------------+
3670 | WARNING: There have been minor API changes in GDBus and GVariant. |
3671 | These API changes will not affect many users, but they do require |
3672 | a new version of GTK+ to be installed.                            |
3673 +-------------------------------------------------------------------+
3674
3675 Build:
3676   - add a --disable-Bsymbolic configure flag to disable linking with
3677     -Bsymbolic-functions
3678   - this release sees the complete removal of the old 'g*alias' hacks
3679   - honour the NOCONFIGURE environment variable from autogen.sh
3680   - use proper feature test macros for isnan
3681   - use pkg-config to check for zlib
3682   - add ACLOCAL_AMFLAGS to Makefile.am
3683
3684 GDBus:
3685   - hide Class and instance structures for all GDBus types except
3686     GDBusProxy.  This breaks API by preventing subclassing, but probably
3687     nobody was doing that.
3688   - add new GDBusConnection call to support flushing all pending
3689     outgoing messages
3690   - change the register_object API to add a reference to the
3691     GDBusInterfaceInfo object so the caller need not keep it alive
3692     themselves
3693   - don't rewrite the serial number when sending messages that already
3694     have a serial number
3695   - better error checking for DBUS_SESSION_BUS_ADDRESS environment
3696     variable
3697   - switch to g_parse_debug_string for G_DBUS_DEBUG and add a lot of new
3698     flags
3699   - add support for temporarily freezing a freshly created
3700     GDBusConnection.  Do this until after the ::new-connection signal
3701     has finished running on GDBus services.
3702   - never require non-closed connections (the user is incapable of doing
3703     this due to the obvious race)
3704   - remove weird/misleading redundant check on NameOwnerChanged signal
3705   - emit GDBusProxy::g-properties-changed on NameOwnerChanged
3706
3707 GVariant:
3708   - the 'g_variant_{new,get}_byte_array' APIs have been removed
3709   - g_variant_{new,get,dup}_bytestring has been added, with different
3710     arguments and different behaviour
3711   - g_variant_{new,get,dup}_bytestring_array has been added, doing
3712     essentially the same thing as the 'strv' functions, but with byte
3713     strings instead of utf8 strings
3714   - G_VARIANT_TYPE_BYTESTRING ('ay'), BYTESTRING_ARRAY ('aay') and
3715     STRING_ARRAY ('as') constants have been added
3716   - the undocumented behaviour that g_variant_get_strv() deserialised
3717     arrays of object paths or signature strings has been dropped
3718   - additional varargs support for converting bytestrings or bytestring
3719     arrays with ^ay ^aay ^&ay and ^a&ay
3720   - improved gobject-introspection annotation
3721   - fix a problem with GBuffer calling g_slice_free for the wrong type
3722   - fix leaks in the type inferencing code of the parser
3723
3724 GSettings:
3725   - improved documentation
3726   - updated schema XML DTD, now xincluded into the docs
3727   - added support for schemas that extend other schemas (using the
3728     'extends=' attribute).  Values of keys in the base schema can be
3729     overridden using <override>.
3730   - added theoretical support for lists (using the 'list-of=' attribute)
3731   - lots of new tests
3732   - add support for flags (implemented similarly to enums)
3733   - add support for generating .enums.xml files to gsettings.m4:
3734       gsettings_ENUM_NAMESPACE = org.example.myapp
3735       gsettings_ENUM_FILES = ../path/to/*.h
3736     will generate org.example.myapp.enums.xml with mappings for all
3737     enums and flags in the specified .h files.
3738   - warn with g_message() if the 'memory' backend is used by default
3739     (ie: because no other GSettings backends are installed)
3740   - fix get_property() for GSettings::schema
3741   - command line tool: fix a bug that prevented non-basic values from
3742     being set due to a premature free
3743   - command line tool: bash completion support
3744   - chain up in _finalize
3745   - add a new g_settings_get_mapped API to read settings that require
3746     post-processing
3747   - retry with the translated or schema default value if the
3748     GSettingsBindGetMapping function fails
3749   - schema compiler: never fail due to empty schema directories (but
3750     warn)
3751   - peek rather than ref/unref the GEnumClass in the mapping function
3752   - schema compiler: compile *.enums.xml before *.gschemas.xml to ensure
3753     that we have all the enums that the schemas may reference
3754   - schema compiler: improve accuracy of line numbers in error reports
3755   - fix crashes in the keyfile backend caused by invalid group names in
3756     the keyfile
3757
3758 Other:
3759   - always intern GBinding prop names
3760   - base64: remove asserts preventing conversion of empty strings
3761   - document NULL special-cases for GValueArray
3762   - GNode docs improvements
3763   - improve detection of 'system internal' mounts
3764   - fix leaks in the inotify GFileMonitor implementation
3765   - annotate all custom GIO GSources to improve debugging (e.g. using
3766     SystemTap)
3767
3768 Tests:
3769   - Turn on glibc malloc checking features for make check
3770   - improvements for GSettings tests, plus new tests
3771   - improved tests for GKeyfile
3772   - new tests for GDir, GSList, GSList, GAppLaunchContext,
3773     CharsetConverter, GIcon, ...
3774   - move some tests to GTester (tree tests, uri tests)
3775   - generally, really an awful lot of new tests
3776   - don't try to allocate 2gigs of memory anymore for the array test
3777
3778  552363 g_value_array_{insert,prepend,append}'s special cases for NULL
3779  561248 Improve return value description from g_node_prev/next_sibling()
3780  570036 Add ACLOCAL_AMFLAGS to Makefile.am
3781  576833 g_sprintf add a reference to g_strdup_printf
3782  576854 g_strconcat() documentation should provide a hint about bad l10n
3783  582227 reference: add other URI functions to 'URI Functions' section
3784  599223 should provide g_spawn_* variants that take a GAppLaunchContext
3785  610784 array test failing
3786  613057 Leak in inotify GFileMonitor implementation
3787  620536 Annotate all custom GIO GSource using g_source_set_name
3788  620913 More control with G_DBUS_DEBUG
3789  622124 implement flags
3790  622127 GSettings extended key validation
3791  622128 retry with default value for failed mapping
3792  622294 More annotations for GVariant
3793  622565 glib-compile-schemas fails when no schemas
3794  622600 Fix missing prototype warning
3795  622813 gsettings mapping & enum buglet
3796  623142 Ensure ::new-connection runs before processing D-Bus messages
3797  623143 Never require non-closed connections
3798  623319 use g_parse_debug_string for dbus debug flags
3799  623401 process enums first
3800  623402 schema compiler reports wrong line numbers
3801  623407 g_keyfile_settings_backend_new crashes with the key "/"
3802  623473 zlib should be checked with pkg-config
3803  623537 GDBusProxy has weird checking on NameOwnerChanged
3804  623538 GDBusProxy::g-properties-changed emission for corner cases
3805  623692 directory with file at multiple MLS levels may display empty
3806  623720 gschema.dtd does not contain enum definitions
3807  623770 quoting of expand_macro in gdesktopappinfo.c
3808  623772 gdesktopappinfo.c, function child_setup
3809  623780 g_unix_is_mount_path_system_internal
3810  623954 g_settings_finalize
3811  623955 Dubious return values
3812
3813 Updated translations:
3814  Galician
3815  Hebrew
3816  Norwegian bokmål
3817  Spanish
3818
3819 Overview of Changes from GLib 2.25.9 to GLib 2.25.10
3820 ====================================================
3821
3822 +----------------------------------------------------------------+
3823 | WARNING: There have been API changes in GDBus. Users of these  |
3824 | APIs will need to be adapted.  In particular, a new release of |
3825 | dconf is required to go along with this one.  There has also   |
3826 | been a change in the GSettings backend API used for keyfiles.  |
3827 +----------------------------------------------------------------+
3828
3829 * GDBus:
3830  - add direction parameter to filter functions (API change)
3831  - allow calling other interfaces with a GDBusProxy
3832  - padding added to class struct fields (ABI change)
3833  - fixes for closures-based functions
3834
3835 * GVariant:
3836  - new is_floating() call
3837  - add g_value_take_variant() call (required for marshallers)
3838
3839 * GSettings:
3840  - support for binding GParamSpecEnum properties
3841  - ifelse-style condition support for GLIB_GSETTINGS m4 macro
3842  - remove gsettings-schema-convert tool (now in GConf)
3843  - allow introspection of all installed schemas
3844  - allow introspection of the keys in a schema
3845  - rewrite keyfile backend (API change)
3846
3847 * GNIO:
3848  - don't implicitly close GSocket until it is destroyed
3849  - windows fixups
3850
3851 * Other:
3852  - allow GChecksum to take (NULL, 0) for data/length
3853  - GRelation and GCompletion are now deprecated
3854  - introduce G_PARAM_DEPRECATED and G_ENABLE_DIAGNOSTIC
3855  - add working directory to GApplication platform data
3856  - lots of documentation cleanups
3857  - PCRE updated to 8.02
3858
3859 * Build:
3860  - the IA__g_* style symbol aliasing has been disabled and replaced with
3861    the -Bsymbolic-functions linker flag on platforms that support it.
3862    Please be on the watch for portability issues and report them to us.
3863  - many test cases have been moved to the GTester framework
3864  - lcov support has been added for tests
3865  - many windows fixes
3866
3867 * Bugs fixed:
3868  501057  lcov coverage suite and GLib integration
3869  551271  deprecate GRelation
3870  601686  Implement diagnostic mode
3871  603309  GSocketOutputStream broken on Windows (?)
3872  616718  GLIB_GSETTINGS macro can't be used conditionally
3873  616855  GSocketConnection: don't close the socket if it's still reffed
3874  618866  g_ptr_array_remove_index_fast memory leak
3875  619878  keyfile backend calls keys_changed with invalid argument
3876  619879  keyfile backend doesn't make use of expected_type
3877  621092  Add with_closures() variants for bindings
3878  621172  Cross compiling fails
3879  621838  Actually add cwd to platform data
3880  621945  Filter outgoing messages in GDBusConnection
3881  621947  add g_value_take_variant
3882  622038  GSettings: "It is a programmer error" documentation is unclear
3883  622154  [patch] update documentation for g_application_new
3884  622281  binding: Add SYNC_CREATE to the flags
3885  622480  Improve documentation for g_strcmp0()
3886  622554  g_error called if schema not installed
3887  622601  Return interned strings from g_settings_list_keys
3888
3889 * Translation updates:
3890  - Galician
3891
3892 Overview of Changes from GLib 2.25.8 to GLib 2.25.9
3893 ===================================================
3894
3895 +----------------------------------------------------------------+
3896 | WARNING: There have been API changes in GDBus, GSettings and   |
3897 | GApplication. Users of these APIs will need to be adapted. In  |
3898 | particular, a new release of GTK+ is required to go along with |
3899 | this one.                                                      |
3900 +----------------------------------------------------------------+
3901
3902 * GDBus
3903  - Use Gio's default async implementation
3904  - Fix proxy construction for objects with no properties
3905  - Fix error handling in synchronous initialization
3906  - Do not dispatch calls to unregistered objects
3907  - Add _with_closures alternative functions
3908  - Allow constructing GDBusProxy with well-known names
3909  - Remove GType parameters from GDBusProxy constructors
3910  - Nuke g_bus_watch_proxy API
3911  - Add --xml to gdbus-tool to print raw introspected XML
3912
3913 * GSettings
3914  - schema file format change: store (default, options) in gvdb
3915  - Add g_settings_sync()
3916  - Add support for enums and ranges
3917  - 'context' support has been replaced by direct use of
3918    GSettingsBackend
3919
3920 * GApplication
3921  - Switch to using variants for timestamps
3922  - Use GInitable
3923
3924 * GObject
3925  - Introduce g_object_notify_by_pspec
3926  - Add GBinding
3927  - The GVariant gtype G_TYPE_VARIANT was changed from boxed
3928    to fundamental. We believe there were no existing users
3929    of the boxed type, so this should not cause any applications
3930    to break.
3931
3932 * Test framework
3933  - Add package and version to the test report XML
3934  - Use optparse to parse gtester-report commandline
3935  - Add subunit support to gtester-report
3936  - Prevent division by zero if no tests
3937
3938 * Bugs fixed:
3939  621782 Crash using gbinding
3940  619945 GConverterOutputStream triggers assertion and corrupts data
3941  621319 more leaked GVariants in GSettings
3942  621168 GKeyFile memory leak on Windows platform
3943  621002 Switch to using variants for timestamps, split out signals
3944  620953 tiny docs addition
3945  618904 Lies in gunixmounts documentation
3946  621702 Correctly initialize GError
3947  611778 minor cleanup of gtester-report
3948  621213 GDBusProxy and well-known names
3949  621034 Rewrite apps test to ensure children are killed
3950  620954 gapplication gvariant simplifications
3951  611869 add subunit out feature to gtester-report
3952  621119 GDBusProxy and objects with no properties
3953  620990 Use Gio's default async implementation again
3954  620952 g_application_register_with_data is an ugly API
3955  621252 GSettings leaks context
3956  618715 fork() in GSettings test cases is problematic 618715
3957  621905 Assume a ref when doing async work
3958  621266 GSettings "context" clarification
3959
3960 * Translation updates:
3961  Chinese
3962
3963
3964 Overview of Changes from GLib 2.25.7 to GLib 2.25.8
3965 ===================================================
3966
3967 * Initial support for dtrace and systemtap profiling:
3968  - mainloop sources can be named
3969  - probes for memory allocation with g_malloc and gslice
3970  - gquark name tracking
3971  - type creation
3972  - object life-cyle (creation, finalization, ref, unref)
3973  - signal creation and emission
3974
3975 * GVariant
3976  - has been fixed to work with the FreeBSD malloc
3977  - added introspection annotations
3978  - new function: g_variant_builder_add_parsed
3979
3980 * GSettings:
3981  - g_settings_set/get_strv functions have lost their length parameter
3982  - g_settings_set_strv accepts NULL
3983  - added introspection annotiations
3984
3985 * GPermission: an abstract interface for representing permissions,
3986   with a minimal implementation named GSimplePermission
3987
3988 * GApplication: a basic application support class, with a D-Bus based
3989   implementation
3990
3991 * Bugs fixed:
3992  619585 glib-compile-schemas asserts on FreeBSD
3993  620384 Annotate GVariant and GSettings _strv() functions
3994  606044 Add support for dtrace/systemtap static markers
3995  620350 add g_variant_builder_add_parsed() API
3996  620349 utf8ify GVariant printer
3997  620767 Typo in GSettings documentation: "INTLTOOL_NOMERGE_RULE"
3998  620312 Fix g_settings_[gs]et_strv() API
3999  620519 GPermission
4000  620582 GPermission needs a simple implementation
4001  620496 GSettings schema compiler should reject invalid paths
4002  620173 missing single header inclusion guards
4003  620265 g_assertion_message_error should take const GError *
4004
4005 * Translation updates:
4006  Esperanto
4007  Galician
4008  Hebrew
4009  Indonesian
4010  Norwegian bokmål
4011  Slovenian
4012  Spanish
4013
4014
4015 Overview of Changes from GLib 2.25.6 to GLib 2.25.7
4016 ===================================================
4017
4018 * NOTE: API/ABI breaks since 2.25.6 release:
4019   - g_dbus_connection_sync{,_sync} takes a new 'reply_type' argument
4020   - GSettingsBackendClass 'list' virtual function changed
4021
4022   GSettings backends and things using GDBus may need to be rebuilt.
4023
4024 * GDBus: many build-related fixes
4025
4026 * GDBus (service): return a DBus error when receiving a method call for
4027   an unknown interface.
4028
4029 * GSettings: fix 'make install' bug in gsettings.m4 for generated schema
4030   files
4031
4032 * GSettings: avoid non-portable use of LC_MESSAGES
4033
4034 * better approach to handling man pages
4035
4036
4037 * Bugs fixed:
4038  619527 please improve docs on g_file_make_symlink
4039  619391 send-with-reply should have expected result signature
4040  618616 Use stack-allocated GVariantBuilders
4041  617004 Build with "--disable-nls" fails under MinGW/Win32
4042  619142 Build fixes (GDBus)
4043
4044 * Updated translations:
4045  Estonian
4046  Galician
4047  Norwegian bokmål
4048
4049 Overview of Changes from GLib 2.25.5 to GLib 2.25.6
4050 ===================================================
4051
4052 * GDBus: introspection improvements
4053 * GDBus: build fixes
4054
4055 * GSettings: GSettingsBackend ABI changed               **** NOTE ****
4056 * GSettings: --uninstall option for schema compiler
4057 * GSettings: new m4 macro with more power
4058 * GSettings: thread support
4059
4060 * rework of file notification on Solaris
4061 * fixes for gold linker
4062
4063 * Bugs fixed:
4064  619038 increase gsettings.m4 power
4065  619031 method-calls-in-thread test failing
4066  618839 Typo at translation message
4067  616864 GSETTINGS_CHECK_RULE doesn't work with multiple files
4068  618730 gunixcredentialsmessage.c doesn't compile on GNU/kfreebsd
4069  616314 Make GSettings (partially) threadsafe
4070
4071 * Updated Translations:
4072  Indonesian
4073  Galician
4074  Spanish
4075
4076 Overview of Changes from GLib 2.25.4 to GLib 2.25.5
4077 ===================================================
4078
4079 * GDBus: Fix serialization of empty arrays
4080
4081 * GDBus: Plug various memory leaks
4082
4083 * GSettings: Fix problems with GSETTINGS_CHECK_RULE
4084
4085 * Bugs fixed:
4086  616731 GSETTINGS_CHECK_RULE doesn't work in non-srcdir builds
4087  616864 GSETTINGS_CHECK_RULE doesn't work with multiple files
4088  618615 mem leaks in parse_value_from_blob
4089  618622 Plug some mem leaks in gdbus
4090  618650 Plug a mem leak in gdbusauth
4091  618663 Plug mem leaks in gdbus tests & examples
4092
4093 * Updated translations:
4094  Spanish
4095
4096
4097 Overview of Changes from GLib 2.25.3 to GLib 2.25.4
4098 ===================================================
4099
4100 * GDBus D-Bus support has been merged. This provides an API
4101   to replace dbus-glib
4102
4103 * GVariant no requires strings to be UTF-8. You can use byte
4104   arrays for non-UTF-8 strings.
4105
4106 * GSettings allows to bind string properties to byte arrays
4107
4108 * The schema compiler supports range restrictions
4109
4110 * Bugs fixed:
4111  618051 socket-server|client.c fail to compile under AIX...
4112  616102 GSettings ignores <choice> and <range>
4113  616720 Chunked quark allocation
4114  616877 Several issues with g_socket_receive_message
4115  616892 gio: Add a boxed type for GFileAttributeMatcher
4116  616967 Add g_regex_get_compile_flags() and g_regex_get_match_flags()
4117  617767 g_settings_[gs]et_strv() 'length' argument has missing docs...
4118  617914 gtester-report: cope with binaries with no test cases
4119  617937 output_stream_close vs output_stream_close_async semantics
4120  615494 Connction timeouts produce partially invalid error messages
4121  617823 glib-compile-schemas problems with an out of source build
4122  617947 glib-mkenums: add @valuenum@ support
4123
4124 * Translation updates:
4125  Galicaian
4126  Norwegian bokmål
4127  Shavian
4128  Spanish
4129
4130
4131 Overview of Changes from GLib 2.25.2 to GLib 2.25.3
4132 ===================================================
4133
4134 * New macro: G_GNUC_DEPRECATED_FOR, a variant of G_GNUC_DEPRECATED
4135   that lets you add replacement information (requires gcc 4.5)
4136
4137 * Rename AM_GSETTINGS autoconf macro to GLIB_GSETTINGS
4138
4139 * Rename gschema-compile utility to glib-compile-schemas
4140
4141 * Add support for timeouts in GSocket
4142
4143 * Bugs fixed:
4144  589989 Compilation error on Solaris 9
4145  616648 Change AM_GSETTINGS macro to GLIB_GSETTINGS
4146  587898 I/O timeouts for GSocket
4147  614541 Add G_TYPE_ERROR boxed type for GError
4148
4149
4150 Overview of Changes from GLib 2.25.0 to GLib 2.25.2
4151 ===================================================
4152
4153 * Include a 'gsettings' utility, for commandline access to GSettings
4154
4155 * Install a AM_GSETTINGS autoconf macro similar to AM_GCONF
4156
4157 * GSettings can bind the writability of a key explicitly
4158
4159 * There is now a predefined boxed type for GError
4160
4161 * Bugs fixed:
4162  615379 g_new macros crash if sizeof(struct_type) == 0
4163  616312 Add m4 rule equivalent to GCONF_SCHEMAS_INSTALL
4164  616295 mapping bug for uint64
4165  616216 glib compile from remote directory fails
4166  615960 Fix size passed to connect() for abstract sockets
4167  616432 Crash in gschema-compile
4168  616331 gsettings-schema-convert uses imaginary types
4169  616309 gsettings-schema-convert should output gettext-domain
4170  616384 Add mention of GConfBridge in conversion docs
4171  616311 gschema-compile outputs in current directory
4172  616276 simplify gschema-compile test setup
4173  616156 keys with unnecessary empty options arrays
4174  616405 gsettings missing g_return_if_fail's
4175  616245 Use G_DEFINE_INTERFACE macro
4176  614541 Add G_TYPE_ERROR boxed type for GError
4177
4178 * Updated translations:
4179  Catalan (Valencian)
4180  Galician
4181  Kannada
4182  Spanish
4183
4184
4185 Overview of Changes from GLib 2.24.0 to GLib 2.25.0
4186 ===================================================
4187
4188 * The GSettings framework has been merged. This provides the API to
4189   replace GConf. DConf will provide a backend implementation for it.
4190   GConf will also provide a backend implementation to ease the
4191   transition. We provide utilities to assist with schema conversion
4192   and data migration, as well as a porting guide.
4193
4194 * Translation updates:
4195  Bengali
4196  Catalan
4197  Danish
4198  Gujarati
4199  Marathi
4200  Thai
4201  Traditional Chinese
4202
4203
4204 Overview of Changes from GLib 2.23.6 to GLib 2.24.0
4205 ===================================================
4206
4207 * Bug fixes:
4208  613601 buglet in dup_close_on_exec_fd
4209  584284 g_data_input_stream_read_until_async behaves confusingly
4210  613748 Write errors in middle of copy cause hang
4211  613923 splice_stream_with_progress: wrong error handling
4212  613667 Typo in GObject documentation
4213  613618 gvariant format string docs unclear
4214
4215 * Translation updates:
4216  Basque
4217  Ukrainian
4218  Vietnamese
4219
4220
4221 Overview of Changes from GLib 2.23.5 to GLib 2.23.6
4222 ===================================================
4223
4224 * Class private data:
4225   - support for private data associated with a GTypeClass
4226
4227 * GVariant merge is now complete:
4228   - loading functions and parser merged
4229
4230 * Windows improvements:
4231   - socket fixes
4232   - various build improvements
4233   - removal of GCC/C99isms in favour of portable code
4234   - drop unmaintained Visual Studio 8 support
4235
4236 * Minor API addition:
4237   - g_desktop_app_info_get_filename()
4238
4239 * Bugs fixed:
4240  521707 Class private data
4241  612502 build fails on glib/tests/gvariant.c
4242  612832 [GDesktopAppInfo] New function g_desktop_app_info_get_filename
4243  612702 [PATCH] Fix GSocket-related crash on Windows
4244  612736 Improve the documentation about single include
4245  610858 gvariant test fails sometimes
4246  612327 uninitialized variable
4247
4248 * New translations:
4249  Afrikaans
4250  LowGerman
4251
4252 * Updated translations:
4253  Czech
4254  Finnish
4255  Galician
4256  Greek
4257  Punjabi
4258  Romanian
4259  Serbian
4260
4261
4262 Overview of Changes from GLib 2.23.4 to GLib 2.23.5
4263 ===================================================
4264
4265 * New API addition: g_malloc_n() and friends used to implement an
4266   overflow-safe family of g_new() macros.
4267
4268 * GVariant:
4269  - GVariantBuilder and GVariantIter are now merged.
4270  - The variable arguments API is now merged.
4271  - The parser will be in a future release.
4272
4273 * GIO:
4274  - Remove GUtf8InputStream (which never appeared in a stable release)
4275    for now since it doesn't satisfy the needs of its main intended use
4276    case.  We hope to reimplement this feature in a better form in a
4277    future release.
4278
4279 * Bugs fixed:
4280  609531 missing licence headers
4281  612107 Missing G_FILE_ATTRIBUTE_TRASH_ORIG_PATH
4282  611897 g_io_modules_scan_all_in_directory leaks
4283  608196 Overflow-safe g_new family
4284  611696 gio uses GetAddrInfo which requires special handing on windows 2k
4285  605667 Don't use G_PARAM_SPEC_VALUE_TYPE when we know the pspec is valid
4286  610860 test_g_file_open_readwrite fails if $HOME is unwritable
4287  552912 glib-2.18 /live-g-file/test_copy_move failed when run as root
4288  609813 Renaming a file discards file notes
4289
4290 * Updated translations:
4291  Basque
4292  Brazilian Portuguese
4293  British English
4294  Bulgarian
4295  Catalan
4296  Danish
4297  Estonian
4298  French
4299  German
4300  Hungarian
4301  Italian
4302  Lithuanian
4303  Norwegian bokmål
4304  Portuguese
4305  Russian
4306  Slovenian
4307  Spanish
4308  Swedish
4309  Traditional Chinese
4310
4311
4312 Overview of Changes from GLib 2.23.3 to GLib 2.23.4
4313 ===================================================
4314
4315 * GVariant: The core of GVariant has been merged now, with some
4316  API still to follow.
4317
4318 * GIO:
4319  - There is a new interface GFileDescriptorBased for file descriptor
4320    based IO. GLocalFile{Input,Output}Stream implement it
4321  - Use splice(2) to transfer data between file descriptors without
4322    extraneous copies
4323  - Add a way to request move events from file monitors
4324
4325 * Bugs fixed:
4326  609143 *result_uncertain is never assigned in g_content_type_guess
4327  604086 Use splice(2) when doing local file copies
4328  547890 No move events for GFileMonitorEvent?
4329  568760 nautilus freezes due to a bug in garray.c:322
4330  609962 Add info about the use of G_DEFINE_INTERFACE
4331  609564 g_base64_encode_close docs should mention outbuf size...
4332  610484 g_variant_equal bug
4333  610131 libasyncns does not compile on Solaris 8
4334  609530 missing single header include guards
4335
4336 * Updated translations:
4337  Czech
4338  Estonian
4339  Galician
4340  German
4341  Korean
4342  Polish
4343  Slovenian
4344  Spanish
4345  Traditional Chinese
4346
4347
4348 Overview of Changes from GLib 2.23.2 to GLib 2.23.3
4349 ===================================================
4350
4351 * GLib now has a facility for locks that consume only one bit of
4352   storage inside an integer: g_bit_lock()
4353
4354 * GVariant: The serializer has been merged, with more API to follow
4355
4356 * Bugs fixed
4357  548967 1 bit mutex lock
4358  604967 2.22.3 libasyncns build fails on HP-UX 11.11
4359  608602 G_VALUE_COLLECT_INIT variables shadow those in G_VALUE_COLLECT
4360  608743 Crash in g_hostname_to_ascii visiting certain website in epiphany
4361  599197 array ref and unref functions crash on NULL array.
4362  608159 mem leak in g_io_modules_scan_all_in_directory
4363
4364 * Translation updates
4365  Brazilian Portuguese
4366  Czech
4367  French
4368  Norwegian bokmål
4369  Slovenian
4370  Spanish
4371  Thai
4372
4373
4374 Overview of Changes from GLib 2.23.1 to GLib 2.23.2
4375 ===================================================
4376
4377 * We are now using gcc builtins for atomic operations when available
4378
4379 * g_assert() grew the ability to store assertions in core dumps
4380
4381 * GIO supports lazy loading of GIO modules, and there is a new
4382   gio-querymodule utility that goes along with this.
4383   Packagers will need to adapt to this.
4384
4385 * Threading changes:
4386  - The requirements for g_thread_init() have been relaxed slightly,
4387    it can be called multiple times, and does not have to be the first
4388    call.
4389  - GObject now links to GThread and threads are enabled automatically
4390    when g_type_init() is called.
4391  - Thread-safety issues with boxed types in GObject have been fixed.
4392
4393 * GObject:
4394  - Another bunch of performance work has landed
4395
4396 * GVariant:
4397  - GVariantType has been merged, with the rest of the GVariant
4398    API to follow.
4399
4400 * Bugs fixed:
4401  568760 nautilus freezes due to a bug in garray.c:322
4402  602417 Document lifecycles of GSimpleAsyncResult and friends
4403  604824 crash in Epiphany: Selecting my Slashdot bo...
4404  448888 don't init g_slice for always-malloc
4405  531902 Use GCC atomic buildins for g_atomic*
4406  554887 boxed type registration is not thread safe
4407  586150 unresolved symbols when building glib 2.21.2 on OS X Tiger
4408  589176 row gvalue transform array exponentially
4409  594872 Support storing assertion messages into core dump
4410  602240 Upgrade libasyncns to 0.8
4411  603590 Speed up G_VALUE_COLLECT
4412  604457 gutf8inputstream.c: increasing unknown size pointer
4413  605686 GCharsetConverter doesn't flush
4414  605733 g_memory_output_stream_new violates GObject standards
4415  605883 g_object_new() processes varargs even when there are none
4416  605977 invalid utf-8 conversion in g_local_file_get_parse_name(...
4417  606775 Enable threads by default in gobject
4418
4419 * Translation updates:
4420  Asturian
4421  Basque
4422  Bengali
4423  Bulgarian
4424  Estonian
4425  Norwegian bokmål
4426  Spanish
4427  Thai
4428  Ukrainian
4429
4430
4431 Overview of Changes from GLib 2.23.0 to GLib 2.23.1
4432 ===================================================
4433
4434 * GObject performance work has landed:
4435  - Construction of simple objects is much faster
4436  - Interface lookup is lock-free and constant-time now
4437  - Reduced locking overhead when dealing with types
4438
4439 * GType now has a G_DEFINE_INTERFACE convenience macro
4440
4441 * GIO gained GUtf8InputStream, an input stream that
4442   performs utf-8 validation
4443
4444 * GLib now has byte-swap macros for gsize and gssize
4445
4446 * Bugs fixed:
4447 557151 Determining the newly_constructed boolean in gobject.c...
4448 557100 Performance improvements for GObjectClasses that don't...
4449 501166 Warning message says IA__g_type_init instead of g_type_init
4450 585375 Performance and Contention problems with g_type_class_ref...
4451 587892 Race in GType when instantiating the same class for the...
4452 603270 Input Stream validating utf8
4453 603476 gioenums.h:62: error: comma at end of enumerator list
4454 603540 g_time_val_from_iso8601 uses uninitialised variable
4455 603982 Stack overflow when reading file async with filter
4456 604645 G_DEFINE_INTERFACE_* documentation is not generated
4457 604875 Use of sa_len conflicts with system header
4458 320482 provide G_DEFINE_TYPE like macros for interfaces
4459
4460 * Updated translations:
4461  Estonian
4462  Hebrew
4463  Norwegian bokmål
4464  Vietnamese
4465  Welsh
4466
4467
4468 Overview of Changes from GLib 2.22.x to GLib 2.23.0
4469 ===================================================
4470
4471 * GIO:
4472  - GConverter: a generic interface for stateful conversions of data,
4473    suitable for charset conversion, compression, decompression, regexp
4474    replacement. Concrete implementations are GCharsetConverter,
4475    GZlibCompressor and GZlibDecompressor. GConverterInputStream,
4476    GConverterOutputStream are stream implementations that convert data
4477    while loading or saving it.
4478  - GMounts can now have a 'default location': a path that reflects
4479    the main entry point for the user (e.g. the home directory).
4480  - As a consequence of the compression support, GIO depends on zlib now.
4481
4482 * GObject:
4483  - G_IMPLEMENT_INTERFACE_DYNAMIC: a convenience macro for adding
4484    interfaces to dynamic types.
4485
4486 * GModule:
4487  - The -pthread flag has been added to all gmodule .pc files, because
4488    it is not generally permissible to load modules that are linked
4489    against libpthread if the program has not been compiled with threading
4490    support.
4491
4492 * Bugs fixed:
4493  601637 GUnixFDMessage should contain a GUnixFDList
4494  585566 GSocketListener API issues
4495  572252 Bug in g_file_test() function.
4496  600550 g_app_info_create_from_commandline doesn't treat arguments properly
4497  541236 not detecting exact content type
4498  350200 [PATCH] GTypeModule derived class unref does not unload plugin
4499  589631 Please enclose literal values with double quotes
4500  577711 cross compile check for g++ broken
4501  600620 Support X-GNOME-FullName in GAppInfo
4502  598899 GWin32DirectoryMonitor is broken
4503  593809 Nautilus does not restore the position of the icons on the desktop...
4504  563627 g_get_prgname() threadsafety
4505  600141 Add -pthread to gmodule pkg-config
4506  593856 file and directory monitors don't work when glib is compiled...
4507  324930 Nautilus should disallow copying of symlink to FAT drive early
4508  587300 Deadlock when calling g_cancellable_disconnect in a...
4509  595138 GFile not robust with invalid input
4510  591216 Warning building resolver.o
4511  590016 Does not compile under MinGW32 + Wine
4512  591214 Warnings building gcancellable.o
4513  561998 Have specific entry points (paths) for mounts...
4514  508157 Add G_IMPLEMENT_INTERFACE_DYNAMIC
4515  535159 g_file_has_parent
4516
4517 * Updated translations:
4518  Brazilian Portuguese
4519  Catalan
4520  Estonian
4521  Galician
4522  Norwegian bokmål
4523  Shavian
4524  Slovenian
4525  Spanish
4526  Swedish
4527
4528
4529 Overview of Changes from GLib 2.22.1 to GLib 2.22.2
4530 ===================================================
4531
4532 * GIO:
4533  - Support case-sensitive globs in the shared mime database,
4534    including support for the newer cache format that allows these.
4535    Case-sensitive globs have been introduced in shared-mime-info
4536    version 0.70
4537
4538 * GObject:
4539  - Speed up creation of simple objects
4540
4541 * Bugs fixed:
4542  597194 Typo in _G_TYPE_CVH macro
4543
4544 * Updated translations:
4545  Russian
4546
4547
4548 Overview of Changes from GLib 2.22.0 to GLib 2.22.1
4549 ===================================================
4550
4551 * Bugs fixed:
4552  596064 Test file marked for translation
4553  595972 possibly invalid search in mime_info_cache_dir_add_...
4554  596561 C99 style of declaration of variable in gmessages.c
4555  596314 g_utf16_to_utf8 returns an invalid UTF8 string
4556  596748 g_async_result_get_source_object returns a new ref
4557  593809 Nautilus does not restore the position of the icons...
4558  593775 uses inotify_init1 unconditionally
4559
4560 * Updated translations:
4561  Bengali
4562  Hebrew
4563
4564
4565 Overview of Changes from GLib 2.21.6 to GLib 2.22.0
4566 ===================================================
4567
4568 * Add gdb python macros to make gobject debugging more pleasant
4569
4570 * Bugs fixed:
4571  579050 Allow making selected critical and warning messages non-fatal
4572  594759 g_socket_send_message fails due to invalid sendmsg params
4573  593941 GNetworkAddress skipping addresses when enumerating
4574  594597 Fix build with srcdir != builddir
4575  595619 Include gdb pretty printers
4576
4577 * Changes that might affect bindings:
4578  - The error parameter of g_simple_async_result_set_from_error has been
4579    made const.
4580
4581 * Updated translations:
4582  Assamese
4583  Bengali India
4584  British English
4585  Bulgarian
4586  Catalan
4587  Czech
4588  Danish
4589  Finnish
4590  Galician
4591  Greek
4592  Gujarati
4593  Hindi
4594  Japanese
4595  Kannada
4596  Malayalam
4597  Marathi
4598  Norwegian bokmål
4599  Oriya
4600  Polish
4601  Punjabi
4602  Romanian
4603  Serbian
4604  Simplified Chinese
4605  Slovenian
4606  Spanish
4607  Tamil
4608  Telugu
4609  Thai
4610  Traditional Chinese
4611  Ukrainian
4612  Vietnamese
4613
4614
4615 Overview of Changes from GLib 2.21.5 to GLib 2.21.6
4616 ===================================================
4617
4618 * Minor API additions:
4619   g_mkstemp_full is a variant of g_mkstemp that allows to specify flags
4620   and permissions
4621
4622 * Bugs fixed:
4623  593232 g_rand_new: read no more than requested from /dev/urandom
4624  591995 use saved errno
4625  589491 g_time_val_from_iso8601 doesn't handle some cases
4626  593406 Permissions set to 777 after copying via Nautilus
4627  594034 Add g_mkstemp_full()
4628
4629 * Updated translations:
4630  Assamese
4631  Basque
4632  Brazilian Portuguese
4633  Czech
4634  Estonian
4635  French
4636  German
4637  Hungarian
4638  Italian
4639  Kannada
4640  Malayalam
4641  Marathi
4642  Norwegian bokmål
4643  Oriya
4644  Portuguese
4645  Swedish
4646  Tamil
4647  Turkish
4648
4649
4650 Overview of Changes from GLib 2.21.4 to GLib 2.21.5
4651 ===================================================
4652
4653 * A performance problem with trashing of many files has been fixed
4654
4655 * GResolver now invalidates the libc resolv.conf cache as needed
4656
4657 * Minor api additions:
4658  - g_cancellable_make_pollfd returns a boolean now. And there is a
4659    new function g_cancellable_release_fd that can be used to released
4660    the resources used by a GCancellable.
4661
4662 * Bugs fixed:
4663  589988 Compilation error on Solaris 9 (missing stdint.h)
4664  588901 gtcpconnection.c won't compile
4665  584246 GResolver needs to call res_init() when network state changes
4666  591714 Figure out failure handling for g_cancellable_make_pollfd()
4667  591532 redundent '/' returned from g_file_resolve_relative_path
4668  591378 Use MSG_NOSIGNAL in GSocket if it's available
4669  589649 API documentation migration for Base64 Encoding
4670  591840 configure fails with autoconf 2.64
4671
4672 * Updated translations:
4673  Basque
4674  Brazilian Portuguese
4675  Bulgarian
4676  Danish
4677  Estonian
4678  Finnish
4679  Galician
4680  Gujarati
4681  Hndi
4682  Irish
4683  Japanese
4684  Korean
4685  Norwegian bokmål
4686  Polish
4687  Portuguese
4688  Punjabi
4689  Spanish
4690  Swedish
4691  Telugu
4692  Traditional Chinese
4693  Thai
4694
4695
4696 Overview of Changes from GLib 2.21.3 to GLib 2.21.4
4697 ===================================================
4698
4699 * GTree is now refcounted
4700
4701 * Bugs fixed:
4702  587938 Undocumented limitation for g_str_equal
4703  587773 refcounts for GTree
4704
4705 * Updated translations:
4706  French
4707  Hebrew
4708  Norwegian bokmål
4709  Spanish
4710  Swedish
4711  Traditional Chinese
4712  Ukrainian
4713
4714
4715 Overview of Changes from GLib 2.21.2 to GLib 2.21.3
4716 ===================================================
4717
4718 * GMappedFile is refcounted now
4719
4720 * Mainloop: It is now possible to set per-thread default contexts,
4721   with g_main_context_push_thread_default.
4722
4723 * glib-mkenums supports a @basename@ substitution, in addition
4724   to @filename@.
4725
4726 * GIO:
4727  - Vfs implementations can support storing of per-file metadata.
4728  - GCancellable can now be subclassed.
4729  - Unmount and eject methods now optionally allow interaction, via
4730    variants that take a GMountOperation object.
4731
4732 * Bugs fixed:
4733  556706 Inconsistent help arguments -h, -?
4734  579449 FileChoosers no longer work if an idle handler is active
4735  579933 mainloop FD_CLOEXEC has a race condition
4736  579984 alternate GMainContext support
4737  585937 gio/gsocket.c (glib 2.21.2) does not compile (Windows/mingw)
4738  586675 Runtime library location
4739  586797 Add GCancellables to GSocket ops
4740  586868 g_filename_complete_get_completions doesn't always return...
4741  587415 g_resolver_lookup_by_name_finish returns a freed list
4742  587434 regression tests fail, at least on x86_64
4743  586928 Avoid g++ warning in g_error()
4744
4745 * Updated translations:
4746  Estonian
4747  Hebrew
4748
4749
4750 Overview of Changes from GLib 2.21.1 to GLib 2.21.2
4751 ===================================================
4752
4753 * GIO:
4754   - g_socket_speaks_ipv4 is a new function to check if a socket can
4755     speak IPv4.
4756   - g_socket_listener_add_address gained a new effective_address out
4757     parameter.
4758   - GIO now returns special icons for XDG user directories, by the
4759     name folder-music, folder-documents, etc.
4760   - GIO gained support for starting/stopping of drives, which can be used
4761     in connection with external hard disk enclosures, disk arrays, iSCSI
4762     devices, etc. See g_file_start/stop_mountable.
4763
4764 * GLib:
4765  - g_reload_user_special_dirs_cache is a new function to force GLib to
4766    reload the XDG user directory mapping from disk.
4767
4768 * Bug fixes:
4769  584574 glib compile failure on Mac OS X with gunixresolver.c and...
4770  585566 GSocketListener API issues
4771  584255 Incorrect freeing of thread pool in GThreadedSocketService
4772  585088 g_string_chunk_insert_len stops at nul bytes
4773  585360 Monitor fontconfig configuration files using gio causes m...
4774  580103 Terminal starts on Display :0.0 when started on :0.1 in D...
4775  580301 network: a few issues on old darwin
4776  583398 SRV weight sorting is incorrect
4777  584176 build fixes on FreeBSD
4778  585189 g_cancellable_reset() must be called in same thread as g_...
4779  585280 compilation dies on gio/gsocket.c, needs sys/uio.h to con...
4780  585281 gio/gunixfdmessage.c needs sys/types.h for platforms that...
4781  585478 don't leak the inotify fd
4782  585575 g_socket_listener_add_inet_port() doesn't do the right thing
4783  585599 g_socket_listener_add_socket() consumes the socket
4784  585676 GEmblem doesn't reference its 'icon' if that is set as a ...
4785  585717 "bytes" nautilus translation to french is not shown in th...
4786  541276 XDG directories should have their own icons
4787  585726 Grammatical error in GList documentation
4788  585520 Wrong warning option in documentation
4789  585673 GNOME Goal: Remove deprecated glib symbols
4790  585591 Starting/stopping drives
4791
4792 * Updated translations:
4793  Bengali India
4794  Norwegian bokmål
4795
4796
4797 Overview of Changes from GLib 2.21.0 to GLib 2.21.1
4798 ===================================================
4799
4800 * GIO:
4801  - Support for network IO has been added, including a low-level
4802    socket API and a high-level API for network connections and
4803    services.
4804  - Support for read-write access with GIOStream and its subclasses.
4805  - GMount gained a pre-unmount signal.
4806
4807 * Bug fixes:
4808  576104Implement GMount::pre-unmount
4809  578769 implement GWinHttpFileInputStream::close_fn
4810  582856 gsocket.c doesn't compile on Solaris
4811  569375 g[u]intptr undocumented
4812  573246 [FIX] g_desktop_app_info_dup() can access NULL pointer
4813  575013 g_cancellable_push_current() does not allow NULL
4814  577884 live-g-file.c:461: error: format ‘%d’ expects type ...
4815  578499 g_output_stream_splice and stream closing with gnio strea...
4816  579558 Application employing gvfs crashes with only libgvfscommo...
4817  583001 SIGPIPE (grr!)
4818  583061 Please add convenience function to connect to machines by...
4819  583198 typo in error message
4820  583206 use g_set_error_literal where appropriate
4821  583229 void function g_async_initable_init_async returns value
4822  583324 locking problem in g_main_context_iterate()
4823  583408 void function g_socket_control_message_serialize returns ...
4824  578786 wrong and confusing error message
4825  583205 g_inet_address_to_bytes has no length outparam
4826  583196 mem leak in keyfile test
4827  583663 GSocketType enum ends with a comma
4828  569024 Make g_error_new_valist public
4829  569376 missing G_G[U]INTPTR_FORMAT
4830  580347 off-by-1 bug in GWinHttpFile
4831
4832 * Updated translations:
4833  Oriya
4834  Spanish
4835  Valencian-Catalan
4836
4837
4838 Overview of Changes from GLib 2.20.x to GLib 2.21.0
4839 ===================================================
4840
4841 * GIO:
4842  - New helper functions g_cancellable_connect/disconnect to avoid
4843    race conditions when connecting to the "cancelled" signal on
4844    GCancellable.
4845  - New types and methods for dealing with IPv4 and IPv6 addresses (and
4846    UNIX domain socket addresses under UNIX). This does not include code
4847    for actual socket I/O.
4848  - GResolver provides asynchronous and cancellable APIs for resolving
4849    hostnames, reverse lookup of IP addresses and resolving SRV records.
4850
4851 * Glib now provides hash and comparison functions for int64 and double
4852   types, suitable for use with GHashTable.
4853
4854 * GArray, GPtrArray and GByteArray can be ref counted now, and have
4855   boxed types.
4856
4857 * Bugs fixed:
4858  572844 Helper for GCancellable::cancelled connect/disconnect
4859  578363 goption docs should be improved
4860  548466 async/cancellable DNS resolver
4861  579830 param spec strings should use P_()
4862  579862 requesting xattr::foo ends up calling getxattr(..., user...
4863  580453 Hash and equal functions for gint64 and gdouble
4864  580450 Reference counting and boxed types for arrays
4865  580194 gresolver doesn't build on Solaris
4866  580301 network: a few issues on old darwin
4867  580299 network: include sys/types.h before sys/socket.h to insur...
4868  572508 gmarkup speedup
4869  580546 g_strtoull() referenced in documentation...
4870  580656 g_key_file_set_string_list erroneously asserts list != NULL
4871  579272 leaks in g_simple_async_result_set_op_res_gpointer
4872
4873
4874 * Updated translations:
4875  Catalan (ca)
4876  Pashto (ps)
4877  Spanish (es)
4878
4879
4880 Overview of Changes from GLib 2.20.0 to GLib 2.20.1
4881 ===================================================
4882
4883 * Bug fixes:
4884  575555 Use fsync() when replacing files to avoid data loss on
4885  575708 runaway inotify madness
4886  575270 GVolumeMonitor::mount-pre-unmount not being emitted
4887  577128 glib make check Failed to execute child process...
4888  573673 Always show "backup" directories
4889  578369 g_time_val_from_iso8601() parses timezones incorrectly
4890  578002 Fix a small typo in GFile docs
4891  578017 G_DEFINE_TYPE_EXTENDED docs
4892
4893 * Updated translations:
4894  Arabic
4895  Assamese
4896  Basque
4897  Bularian
4898  Brazilian Portuguese
4899  British English
4900  Catalan
4901  Danish
4902  French
4903  Galician
4904  German
4905  Greek
4906  Hungarian
4907  Italian
4908  Japanese
4909  Kannada
4910  Lithuanian
4911  Malayalam
4912  Norwegian bokmål
4913  Oriya
4914  Polish
4915  Punjabi
4916  Russian
4917  Simplified Chinese
4918  Slovenian
4919  Spanish
4920  Swedish
4921  Tamil
4922
4923
4924 Overview of Changes from GLib 2.19.9 to GLib 2.20.0
4925 ===================================================
4926
4927 * Base64 support: Avoid integer overflows. CVE-2008-4316
4928
4929 * Bugs fixed:
4930  574019 GChecksum: document and guarantee hex characters in lower case
4931  573454 Unable copy/move files to directories symlinked to gvfs share
4932  561172 gnome-open fails on local URIs with anchors
4933  573970 crash in gunixvolumemonitor:update_mounts when unmounting
4934  573843 g_get_current_dir returns non-absolute path
4935
4936 * Updated translations:
4937  Assamese (as)
4938  Bengali (bn_IN)
4939  Czech (cs)
4940  Hindi (hi)
4941  Italian (it)
4942  Japanese (ja)
4943  Lithuanian (lt)
4944  Malayalam (ml)
4945  Marathi (mr)
4946  Oriya (or)
4947  Polish (pl)
4948  Romanian (ro)
4949  Telugu (te)
4950
4951
4952 Overview of Changes from GLib 2.19.8 to GLib 2.19.9
4953 ===================================================
4954
4955 * GMarkup:
4956  - Considerable speedup
4957
4958 * GIO
4959  - Add G_FILE_CREATE_REPLACE_DESTINATION flag to allow replacing
4960    the destination of a copying operation as if it did not exit before.
4961  - Be more careful when classifying files as desktop files
4962  - Support desktop file key X-GIO-NoFuse which disables the use
4963    of fuse pathnames for %u and %U arguments
4964
4965 * Bugs fixed:
4966  572672 glib/gthread.c: argument is different type
4967  572464 Doc for g_file_get_contents
4968  572151 “it's” and “its” confused in docs and comments
4969  570501 g_win32_get_system_data_dirs uses invalid conversion...
4970  167569 g_string_append_printf crashes on win32 when used...
4971  572508 gmarkup speedup
4972  560564 Replacing a symlink with its linked file truncates... 
4973  549298 impossible to copy files with p (pipe) flag
4974  543183 Clarify docs for g_file_has_prefix
4975  540461 g_memory_output_stream_get_data_size() doesn't behave...
4976  573462 GEmblemedIcon leak
4977  573421 Clarify message format in GMountOperation
4978  573658 Deadlock in giomodule.c
4979  556706 Inconsistent help arguments -h, -?
4980  573527 Wrong shell to run config.status in Makefile.in.in
4981  573128 A couple of typos in GObject documentation
4982
4983 * Updated translations:
4984  Catalan (ca)
4985  British English (en_GB)
4986  Spanish (es)
4987  Basque (eu)
4988  Finnish (fi)
4989  French (fr)
4990  Gujarati (gu)
4991  Hebrew (he)
4992  Hungarian (hu)
4993  Korean (ko)
4994  Maithili (mai)
4995  Norwegian bokmål (nb)
4996  Dutch (nl)
4997  Portugese (pt)
4998  Swedish (sv)
4999  Thai (th)
5000  Traditional Chinese (zh_HK)
5001  Traditional Chinese (zh_TW)
5002
5003
5004 Overview of Changes from GLib 2.19.7 to GLib 2.19.8
5005 ===================================================
5006
5007 * GIO: Fix missing exports of new API
5008
5009 * Fix strict aliasing warnings and violations to make Glib work
5010   with gcc 4.4
5011
5012
5013 Overview of Changes from GLib 2.19.6 to GLib 2.19.7
5014 ===================================================
5015
5016 * GIO
5017  - GFile gained an attribute for the actual file size in bytes
5018  - GMountOperation gained an "aborted' signal that allows to abort
5019    a mount operation from the backend side
5020
5021 * Bugs fixed:
5022  523742 Use noinst for non-installable libraries
5023  566747 URIs opened with firefox %u load as local files
5024  541225 Can't compile gio on AIX duplicate case value in gioerror.c
5025  571598 GAsyncResult with NULL gobject
5026  505042 add file attribute for actually used file size in bytes
5027
5028 * Updates translations:
5029  Basque (eu)
5030  Gujarati (gu)
5031  Italian (it)
5032  Japanese (ja)
5033  Norwegian bokmål (nb)
5034  Dutch (nl)
5035  Portugese (pt)
5036  Thai (th)
5037  Vietnamese (vi)
5038
5039
5040 Overview of Changes from GLib 2.19.5 to GLib 2.19.6
5041 ===================================================
5042
5043 * New format macro to print goffset data: G_OFFSET_FORMAT
5044
5045 * GIO: 
5046  - Add a GFilter{Input,Output}Stream::close-base-stream properties which
5047    determine whether the base stream will be closed when the filter stream
5048    is finalized.
5049  - g_data_input_stream_read_line and ..._read_until have asynchronous
5050    variants now.
5051
5052 * Bugs fixed:
5053  568294 A wrong reference in the description of g_bookmark_file_...
5054  563141 RFE: define G_OFFSET_FORMAT
5055  569105 g_time_val_to_iso8601() assumes time_t==long
5056  568394 dropping the last reference to a stream filter closes...
5057  568741 g_buffered_input_stream_fill_async doesn't work
5058  568723 g_buffered_input_stream_fill_async doesn't take count == -1
5059  568575 _async functions for GDataInputStream
5060
5061 * Updated translations:
5062  Bulgarian (bg)
5063  Finnish (fi)
5064  Hungarian (hu)
5065  Oriya (or)
5066  Swedish (sv)
5067  Traditional Chinese (zh_HK)
5068  Traditional Chinese (zy_TW)
5069
5070
5071 Overview of Changes from GLib 2.19.4 to GLib 2.19.5
5072 ===================================================
5073
5074 * Update included PCRE to 7.8
5075
5076 * g_base64_decode_inplace: New function to do base64 decoding in place
5077
5078 * Bugs fixed:
5079  567138 get_package_directory_from_module() does not free ...
5080  566569 gregex docs clarification
5081  566573 g_match_info_fetch_pos docs
5082  564728 Add function to decode base64 encoded data in place
5083  567838 G_STRUCT_OFFSETOF fails to compile under icc 9.1
5084  567977 textdomain() macro should not return NULL ...
5085  512779 --disable-regex breaks compilation
5086  566770 error code 0 for Too many open files is useless
5087  565484 g_content_type_guess passes non-UTF8 text to XDG ...
5088
5089 * Updated translations:
5090  Catalan (ca)
5091  Spanish (es)
5092  Italian (it)
5093  Swedish (sv)
5094
5095  
5096 Overview of Changes from GLib 2.19.3 to GLib 2.19.4
5097 ===================================================
5098
5099 * GIO:
5100   - Use O_NOATIME when sniffing mimetypes
5101   - Add a convenience method to check if a GSimpleAsyncResult
5102     is valid
5103
5104 * Bugs fixed:
5105  560676 function access for g_threads_supported
5106  565905 There is no g_context_group_set_translation_domain
5107  564210 SUN Studio 12 has supported visibility attribute
5108  565136 GObject's "notify" signal parameters are wrong in gtk-doc
5109  565831 error in interface creation sample
5110  566348 g_file_open_tmp uses the wrong g_mkstemp on win32
5111  566064 Add NOATIME flag to query_info_flags
5112  566170 g_async_result_verify_source_object
5113
5114 * Updated translations:
5115  Spanish (es)
5116  Norwegian bokmål (nb)
5117  Brazilian Portugese (pt_BR)
5118  Simplified Chinese (zh_CN)
5119
5120
5121 Overview of Changes from GLib 2.19.1 to GLib 2.19.3
5122 ===================================================
5123
5124 * Bugs fixed:
5125  508021 Add support for the CRIS and CRISv32 architectures
5126  526320 should not list mounts that the user doesn't have permission to use
5127  558458 Cannot build gio tests on Solaris using SUN cc
5128  555465 GUnix{Input,Output}Stream lacks fd/close_fd_at_close property
5129  558298 Hide ecryptfs mounts
5130  515777 incorrect date&time on copy
5131  562452 Ensure we return G_IO_ERROR_CANCELLED if cancelling
5132         g_simple_async_result_run_in_thread
5133  473150 g_type_module_use inconsistently increases the use
5134         counter in case of error
5135  563150 G_GU?INT*_MODIFIER/FORMAT docs
5136  563156 Document printing and scanning gunichar values
5137
5138 * Updated translations:
5139  Hebrew (he)
5140  Italian (it)
5141  
5142
5143 Overview of Changes from GLib 2.19.0 to GLib 2.19.1
5144 ===================================================
5145
5146 * GIO: 
5147   - g_icon_to_string, g_icon_new_for_string: GIcon serialization support
5148   - G_FILE_ATTRIBUTE_PREVIEW_ICON: new file attribute for preview images
5149   - g_app_info_get_commandline: new function to get the full commandline
5150   - g_mount_shadow, g_mount_unshadow, g_mount_is_shadowed: New functions 
5151     to 'shadow' mounts (i.e. hide them from the UI when they already
5152     have a different representation, like a bookmark) 
5153
5154 * Bugs fixed:
5155  556186 gpoll.h breaks gmain.h inclusion
5156  557087 mem leak in g_content_types_get_registered
5157  556921 gpoll.h breaks hal compilation
5158  557210 g_compute_checksum_for_* asserts with less than 2 bytes
5159  558381 Add support for compile time assertions
5160  558185 'parent' variable in g_local_file_get_child_for_display_name()
5161         hits g_object_unref(NULL) assertion
5162  558513 g_warn_if_fail FIXME in gtestutils
5163  558672 NULL key lookup using g_hash_table_lookup_extended() 
5164  555740 gicon serialization
5165  557182 preview functionality
5166  528320 Incorrect icons displayed for files with custom mimetype icons
5167  556910 Memory leak: sub
5168  557592 Missing include in gwinhttpfile.c
5169  556415 Crash on Windows 2000 in g_winhttp_vfs_init()
5170  555935 Clarify the mechanism of overwriting properties
5171  552776 ac_cv_func_posix_getgrgid_r not mentioned
5172  559448 GObject Reference Manual (typo)
5173  561212 GFileReadMoreCallback API doc refers to non-existant function
5174  560569 gkeyfile doesn't use the set list_separator in some cases
5175  560568 gkeyfile docs buglet
5176  559413 g_option_group_set_error_hook docs buglet
5177  562378 callback return value not respected for callback option
5178         with no arg
5179  559110 Do not include libintl.h after glibintl.h
5180  557603 carbon check output misplaced
5181  562544 g_key_file_get_string and g_key_file_get_value
5182         documentation does not explain the difference
5183  547264 Missing "no flags" flag
5184  562638 GDebugKey key member should be const
5185  562639 g_parse_debug_flags() parsing "help"
5186  562549 g_byte_array_free should tell how free data
5187  559452 GObject Reference Manual (typo)
5188  559462 GObject Reference Manual (typo)
5189  559517 GObject Reference Manual (typo)
5190  562538 GObject interface tutorial shouldn't finalise with
5191         "Please forget everything"
5192  561352 Leak of icon description
5193  561375 Leaks mountpoint description
5194  561807 inotify_sub.c: dup_dirname() fails to remove trailing '/'
5195  562393 g_buffered_input_stream_read_byte broken if data available
5196  541715 win32 : patch for warnings and signature problems in recent code
5197  547481 g_data_input_stream_read_line behaves not as stated in the docs
5198  548163 Nautilus displays wrong error message for too long file names
5199  559633 gtk_image_new_from_gicon does not always work for .desktop files
5200  555486 – No way to recover command line from GAppInfo
5201
5202 * Translation updates:
5203  Spanish (es)
5204  Ukrainian (uk)
5205
5206
5207 Overview of Changes from GLib 2.18.1 to GLib 2.19.0
5208 ===================================================
5209
5210 * Rewrite GHashTable to use open addressing with quadratic probing instead 
5211   of chaining. This has the potential to reduce memory fragmentation 
5212   significantly, while being slightly faster due to better locality and 
5213   no need to call alloc/free functions for nodes. Benchmarks suggest it 
5214   also uses less memory overall.
5215
5216 * Make g_poll available as public api
5217
5218 * New macros g_assert_error and g_assert_no_error to assert 
5219   that a GError is set or unset
5220
5221 * g_cancellable_make_pollfd: New method to make a GPollFD for a cancellable
5222
5223 * g_app_info_can_delete, g_app_info_delete, g_app_info_reset_type_associations:
5224   New functions to clean up app infos and content types
5225
5226 * When launching applications, always pass fuse file:// uris when possible,
5227   and let gio convert such uris back to gio uris.
5228
5229 * Bugs fixed:
5230  505361 gunixinputstream.c assumes poll() available
5231  509446 portable blocking gio cancellation
5232  553820 gpoll.c: undeclared identifier
5233  553724 python interpretter path not patched in correctly
5234  553857 gbacktrace.h requires signal.h
5235  553447 g_assert_no_error()
5236  554092 glib doesn't return G_FILE_ERROR_NOENT et al on OS X
5237  528670 Always pass file:/// uri's in GAppLaunchContext
5238  555224 Improve g_format_size_for_display doc
5239  555309 giochannel breaks on error
5240  554790 g_convert() misbehaves with winiconv versions
5241  555314 mem leak in gmarkup
5242  555313 GFileAttribute boxed type get_type function should...
5243  552861 glib-2.0.m4 calls system(3) without storing its result
5244  554557 Patch to fix gcc warnings about missing format specifiers
5245  552107 Small libtool fixes
5246  551355 Make glib build with libtool 2.2
5247  555311 format not a string literal and no format arguments
5248  556101 static mutex yields warnings with g++
5249  556186 gpoll.h breaks gmain.h inclusion
5250  526456 Open addressing in GHashTable
5251  553426 cancellable clarifications
5252  545350 GAppInfo deletion
5253  545351 Reset associations for content type
5254  552168 volume's mount not mounted after g_volume_mount_finish
5255  554970 segfault when update-desktop-database is not available...
5256  554745 GFileAttributeInfoList should be boxed
5257  555121 Improved build-time handling of gio module-dir
5258  555711 Wrong fallback order of mimetype icons
5259  555331 Deprecate adoption of mounts
5260  556335 make check fails in abicheck.sh
5261  556334 Warning when building without selinux support
5262  556422 g_file_enumerator_next_file: unclear...
5263
5264 * Updated translations:
5265  Arabic (ar)
5266  Danish (da)
5267  Polish (pl)
5268  Brazilian Portugese (pt_BR)
5269  Romanian (ro)
5270  Russian (ru)
5271
5272
5273 Overview of Changes from GLib 2.18.0 to GLib 2.18.1
5274 ===================================================
5275
5276 * Bugs fixed:
5277  550433 g_test_init doesn't recognize --help
5278  523463 Core dump in gmain.c:2482:IA__g_main_context_check
5279  551228 G_STRFUNC on recent Sun compiler should be expanded...
5280  551410 gtestutils.c: using printf without prototype
5281  551731 g_date_set_time[_t] docs should mention what timezone
5282  548321 <string.h> is not included in gi18n-lib.h
5283  551149 xdgmime mem leak
5284  550647 synchronous pipe I/O when reading mount reply
5285  551887 Docs for g_desktop_app_info_new_from_filename aren't...
5286  551681 g_content_type_guess() too naive with filenames
5287  552352 g_app_info_launch doesn't work if "Path" key...
5288  551408 gmodule.def generated to builddir...
5289  552359 g_file_info_get_icon should return GThemedIcon, and...
5290
5291 * Updated translations:
5292  Arabic (ar)
5293  Bengali India (bn_IN)
5294  British English (en_GB)
5295  Hindi (hi)
5296  Croatian (hr)
5297  Korean (ko)
5298  Oriya (or)
5299  Turkish (tr)
5300  Telugu (te)
5301
5302
5303 Overview of Changes from GLib 2.17.7 to GLib 2.18.0
5304 ===================================================
5305
5306 * Win32:
5307   - rework the g_poll() implementation to match poll() semantics more closely
5308
5309 * Bugs fixed:
5310  324234 Using g_io_add_watch_full() to wait for connect() to return...
5311  548278 Async GETs connections are always terminated unexpectedly...
5312  500246 Bug fixes for giowin32
5313  523939 Example program for GValue
5314  550096 GBookmarkFile parser is not forward compatible
5315  550040 Move GString, rand and printf tests to the unit test framework
5316  550104 trivial documentation fix for g_get_home_dir
5317  548988 g_file_replace fails on Windows when the target file exists
5318  550059 Wrong docs for g_emblemed_icon_add_emblem
5319  548800 Missing a g_object_get_type function
5320  550056 Missing documentation for g_emblemed_icon_get_emblems
5321
5322 * Updated translations:
5323  Bulgarian (bg)
5324  Czech (cs)
5325  German (de)
5326  Estonian (et)
5327  Basque (eu)
5328  French (fr)
5329  Hebrew (he)
5330  Hungarian (hu)
5331  Italian (it)
5332  Japanese (ja)
5333  Lithuanian (lt)
5334  Maithili (mai)
5335  Dutch (nl)
5336  Swedish (sv)
5337  Thai (th)
5338  Ukrainian (uk)
5339  Vietnamese (vi)
5340
5341
5342 Overview of Changes from GLib 2.17.6 to GLib 2.17.7
5343 ===================================================
5344
5345 * More fixes for 64-bit Windows
5346
5347 * GIO
5348  - Add a vfs implementation for HTTP and HTTPS URIs on Windows
5349
5350 * Bugs fixed:
5351  546329 API docs for g_utf8_normalize() are incorrect
5352  546876 Modify GMarkup parser to accept &#x1; .. &#x1f;
5353  547200 g_utf8_find_next_char() issues
5354  547637 unconditional #include of sys/statfs.h in configure
5355  547337 G_DISABLE_DEPRECATED breaks tests build
5356  547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
5357  502498 Test framework assertion failures should follow gcc
5358  546371 Improve docs re g_file_monitor
5359  546483 GThemedIcon:use-default-fallbacks is not readable without...
5360  546132 GFileIcon is bindings-unfriendly
5361  542156 zfs mount in home directory shown on nautilus desktop 
5362  535124 umask 002 not being applied for new directories...
5363  547080 g_file_copy leaks expected errors
5364  546582 Callbacks from GFileMonitor present a GFile...
5365  547262 Missing link in the docs
5366
5367 * Updated translations:
5368  Arabic (ar)
5369  Catalan (ca)
5370  Spanish (es)
5371  Basque (eu)
5372  Finnish (fi)
5373  Galician (gl)
5374  Hebrew (he)
5375  Marathi (mr)
5376  Norwegian bokmål (nb)
5377  Portugese (pt)
5378  Brazilian Portugese (pt_BR)
5379  Swedish (sv)
5380  Thai (th)
5381
5382
5383 Overview of Changes from GLib 2.17.4 to GLib 2.17.6
5384 ===================================================
5385
5386 * Fix problems on 64-bit Windows
5387
5388 * g_markup_context_get_user_data: New function to access
5389   the user_data outside of callbacks
5390
5391 * GIO
5392  - g_mount_guess_content_type_sync: synchronous version of
5393    g_mount_guess_content_type
5394  - GEmblem: A GIcon implementation that adds emblem-related
5395    metadata to icons
5396  - GEmblemedIcon: A GIcon implementation that can add emblems
5397    to icons
5398
5399 * Bugs fixed:
5400  544088 option_test_LDADD is left in tests/Makefile.am
5401  544465 gmarkup makes it hard to use pre-rolled parsers
5402  545485 Implicit declaration of utime()
5403  545798 "Since: 2.18" mark is missing in g_set_error_literal...
5404  544140 fam-helper 64-bit issue
5405  529694 SELinux context setting support
5406  545157 wrong/no list of "open with" applications for .cc...
5407  545203 gfile.c: argument is different type
5408  545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
5409  544177 Fix trivial cut and paste error in documentation
5410  545395 Language tweak for g_value_set_string* docs
5411  541036 Gnumeric crashes when trying to open Desktop...
5412  546079 leak in xdgmime
5413  545395 Language tweak for g_value_set_string* docs
5414  546017 Don't copy attributes when copying a symlink
5415
5416 * Updated translations:
5417  Arabic (ar)
5418  Estonian (et)
5419  Galician (gl)
5420  Italian (it)
5421  Japanese (ja)
5422  Korean (ko)
5423  Norwegian bokmål (nb)
5424  Pashto (ps)
5425  Portugese (pt)
5426
5427
5428 Overview of Changes from GLib 2.17.3 to GLib 2.17.4
5429 ===================================================
5430
5431 * GIO:
5432  - New API to handle content types: g_mount_guess_content_type,
5433    g_content_type_guess_for_tree.
5434  - Export the eject-button signal on the volume monitor class
5435  - New API to enable out-of-process volume monitors: 
5436    g_volume_get_activation_root
5437
5438 * GObject:
5439  - New API to handle signals without slots in the class structure:
5440    g_signal_new_class_handler, g_signal_override_class_handler   
5441
5442 * Internationalization:
5443  - Add an NC_ macro that is a no-op equivalent of C_
5444
5445 * GMarkup:
5446  - Add two new functions g_markup_parse_context_push,
5447    g_markup_parse_context_pop to support "subparsers"
5448
5449 * Bugs fixed:
5450  541208 Functions to easily install and use signals without...
5451  541507 Ambiguous description of assigned characters in the...
5452  543040 async reading on dummy file will crash on GIO_USE_VFS=local
5453  543560 enable gio-FEN back-end warnings on Solaris will crash...
5454  528317 GRegex does not allow recursion limit
5455  337518 GMarkup: Subparser support
5456  541794 drive-eject-button signal
5457  541793 activation root for volumes
5458  467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
5459  428048 2 of 51 tests fail on Solaris
5460  542332 small fix for error message in GMarkup
5461  482413 get_contents_stdio -- overflow and memory corruption
5462  406120 g_ascii_strtod
5463  334234 "printf" format error
5464  536996 Missing noop i18n macro equivalent to C_
5465  540616 mem leak in filechooser button
5466  539229 gobject-query calls itself query
5467  521589 [RFC] gobject documentation should mention Vala
5468  543168 Description of G_SLICE=debug-blocks discourages its use
5469  543220 Case collision on gio-extension-points.html
5470  530759 update the gobject tutorial to the XXI century
5471  535223 gbookmark file inefficiency ...
5472  543504 crash in Epiphany Web Browser: Opening local file
5473
5474 * Updated translation:
5475  German (de)
5476  Estonian (et)
5477  Pashto (ps)
5478  Albanian (sq)
5479  Thai (th)
5480  Traditional Chinese (zh_HK)
5481  Traditional Chinese (zh_TW)
5482
5483
5484 Overview of Changes from GLib 2.17.1 to GLib 2.17.3
5485 ===================================================
5486
5487 * PCRE
5488  - fix for CVE-2008-2371 
5489
5490 * Bugs fixed:
5491  538119 glib's mainloop leaks a pipe to sub-processes
5492  537635 Corrections and improvements to g_time_val_{to,from}_iso8601
5493  539067 The document g_io_channel_win32_new_fd() says...
5494  535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
5495  539123 annotate g_d[n]gettext with G_GNUC_FORMAT
5496  539074 Cannot get exit status with g_spawn_command_line_sync
5497  316221 G_LOCK warns about breaking strict-aliasing rules
5498  539770 migrate gstrfunc unit tests to gtest
5499  539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
5500  538044 unconditional use of LC_MESSAGES
5501  540545 Monotonic time and timer offset
5502  535947 want g_set_error_literal
5503  539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF 
5504  536252 GFileEnumerator should allow access to the containing GFile
5505  538362 Get Win32 icons back in the file chooser
5506  540802 g_list_prepend doesn't concat lists
5507  540423 unrecoverable error after g_seekable_truncate
5508  538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
5509  539090 g_content_type_from_mime_type() should unalias
5510  540331 g_file_append_to () documentation: can return NULL
5511  534639 add g_desktop_app_info_new_from_keyfile
5512  536733 gio build failure on Irix
5513  536160 Add g_file_monitor()
5514  538127 FileChooser broken on win32
5515  531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
5516  538564 gio should have gio-types.h
5517  540047 glib-genmarshal.c: '#include <io.h>' is too before
5518
5519 Updated translations:
5520  Korean (ko)
5521  Occitan (oc)
5522
5523
5524 Overview of Changes from GLib 2.17.0 to GLib 2.17.1
5525 ===================================================
5526
5527 * New function: g_utime(), a gstdio wrapper for utime()
5528
5529 * New functions: g_dgettext() and g_dngettext(), wrappers
5530   for corresponding gettext functions with added functionaliy
5531
5532 * Support the latest version of the shared-mime spec, including
5533   icons for mime types 
5534
5535 * New function: g_themed_icon_prepend_name()
5536
5537 * Bugs fixed: 
5538  535418 Please document which glib version defines goffset
5539  528715 Misprint in the description of the interface g_type_class_add_private
5540  528714 Misprint in the description of the interface g_param_spec_flags
5541  537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
5542  530527 Misprint in the description of the interface 
5543         g_cclosure_marshal_VOID__FLAGS
5544  530526 Misprint in the description of the fields 'class_init' and 
5545         'class_finalize' of the structure GTypeInfo
5546  528719 Improvement to the documentation of the "g_object_connect" interface
5547  528172 gtk_signal_handlers_unblock_* functions return value
5548         amount of matched signals, not amount of actually unblocked
5549  528717 Misprint in the description of the parameter 'type_id' for 
5550         the interface g_type_register_fundamental
5551  528716 Misprint in the description of the parameter 'iface_data' for 
5552         the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc 
5553  537555 GObject instantiation not thread safe
5554  537546 'desktop' shortcut in file chooser looks like a generic folder
5555  537392 Additional colon in xattr name
5556  536641 Filesystem querying in gio does not list AFS and autofs file systems
5557  528600 g_dummy_file_get_parent("scheme://example.com/")
5558  503071 Application direction changes to right to left even if theres no 
5559         translation
5560  502511 g_assert_cmphex prints invalid message
5561  338162 Use po/LINGUAS
5562  314453 Nautilus crashes in Solaris when browsing the attached file
5563  529321 make check fails in glib/pcre
5564  455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD 
5565         fallback to $HOME/Desktop if xdg-user-dirs is not in use
5566  498732 g_key_file_to_data cannot fail
5567  511367 add g_file_make_directory_with_parents
5568  531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with 
5569         gcc 4.0 or newer
5570  536158 also bump GHashTable version when a node is removed via
5571         g_hash_table_iter_remove()/g_hash_table_iter_steal()
5572  531403 g_utf8_collate broken on Mac
5573  535628 test/patterntest.c still includes gpattern.h directly
5574  535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
5575
5576 * Translation updates:
5577  Arabic (ar)
5578  German (de)
5579  Italian (it)
5580  Norwegian bokmål (nb)
5581  Thai (th)
5582
5583
5584 Overview of Changes from GLib 2.16.x to GLib 2.17.0
5585 ===================================================
5586
5587 * Update to Unicode 5.1
5588
5589 * Update included libcharset to the one shipped with libiconv 0.12
5590
5591 * Update included PCRE to 7.7
5592
5593 * Enforce that only toplevel headers are directly included.
5594   This is turned on by default for GObject and GIO. To turn
5595   it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
5596
5597 * Fix library version of GIO.  GLib 2.16 shipped with libgio-2.0.so.0.0.0
5598
5599 * On Solaris, use FEN for file monitoring in GIO
5600
5601 * Use the GIO_EXTRA_MODULES environment variable to find
5602   additional GIO modules 
5603
5604 * G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
5605   function attribute
5606
5607 * g_checksum_reset: New function to reset the state of a GChecksum 
5608
5609 * g_unix_mount_monitor_set_rate_limit: New function to limit the 
5610   rate at which events are reported
5611
5612 * g_file_query_file_type: New utility function to query the type of
5613   a file
5614
5615 * g_memory_output_stream_get_data_size: New function to obtain the
5616   size of the written data.
5617
5618 * Bugs fixed:
5619  522292 Gives warnings in glib/gutils.h with GCC in C99 mode
5620  523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
5621  518160 replace two g_strdup_printf calls in GBookmarkFile
5622  523877 gbookmarkfile: avoid using g_string_append_printf() and
5623         other optimizations 
5624  525192 100% CPU if run main loop with no IO sources
5625  315437 extern inline -> static inline
5626  524314 g_convert() on Win32 implicitly converts full width
5627         alphanumerics into half width
5628  525732 Error in documentation for g_list_first
5629  525674 A typo in gmarkup.c
5630  448943 g_timeout_add_seconds() problems
5631  525972 UCS-4 not in the new win_iconv implementation
5632  526619 make test-report crash
5633  491554 Update to Unicode 5.1.0
5634  519137 g_slice_dup macro needs cast for 64-bit platform
5635  528752 Win32 build and SSL not working
5636  530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
5637  528667 Typos in testing module documentation
5638  459905 Bug in wcwidth data
5639  534085 g_unichar_iswide_cjk() has a totally wrong table
5640  501651 Update glib/libcharset
5641  519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
5642  534319 GLib's .pc files could use Libs.private
5643  534137 Typo in g_spawn_async_with_pipes doc
5644  517419 gio win32 directory monitor
5645  526796 Wrong order of arguments in g_file_copy's fallback
5646  530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
5647  532965 Should not return filesystem::free for certain file systems
5648  525553 fix typo and nitpicking in GArray documentation
5649  526572 Missing * in declaration of parent_class in Object
5650         Destruction section of GObject Reference Manual
5651  528648 Extra >s in Object Construction section
5652  535021 g_param_spec_internal documentation should
5653         describe purpose of nick and blurb
5654  521513 Firefox crash when using file picker
5655  528433 gdesktopappinfo snafu ...
5656  533369 API g_file_info_get_attribute_string () unables to get "...
5657  521045 glib f_fstypename miscellany
5658  521672 compile error
5659  521946 control rate limit on GUnixMountMonitor
5660  522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
5661  523015 Implement sliding window based upload operation
5662  523019 Use new GCC 4 feature
5663  523338 list nfs4 as a nfs mount type
5664  524350 Make glib build without NLS again
5665  524579 g_file_copy reports wrong total on progress callback for ...
5666  524742 A typo in gtestutils.c.
5667  524950 Minor documentation typos.
5668  525866 the user directory should not be considered as a mount to...
5669  526320 should not list mounts that the user doesn't have permiss...
5670  527132 nautilus crash when making ftp connection
5671  532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
5672  534759 Build failure in gio
5673  534764 Typo in error produced by g_file_make_directory
5674  521851 Redudant tests in gunixmounts.c
5675  524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
5676  525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
5677  534177 Invalid description of the interface g_cclosure_marshal_S...
5678  520715 Add GFile method g_file_query_file_type
5679  523039 nautilus can't access to trash/computer/network if gvfs i...
5680  
5681 * Updated translations:
5682  Arabic (ar)
5683  Bulgarian (bg)
5684  Catalan (ca) 
5685  Czech (cs)
5686  Greek (el)
5687  Candian English (en_CA)
5688  British English (en_GB)
5689  Spanish (es)
5690  Estonian (et)
5691  Basque (eu)
5692  Galician (gl)
5693  Hebrew (he)
5694  Hungarian (hu)
5695  Japanese (ja)
5696  Lithuanian (lt)
5697  Norwegian bokmål (nb)
5698  Dutch (nl)
5699  Occitan (oc)
5700  Portugese (pt)
5701  Russian (ru)
5702  Slovak (sk)
5703  Albanian (sq)
5704  Swedish (sv)
5705  Turkish (tr)
5706  Vietnamese (vi)
5707
5708
5709 Overview of Changes from GLib 2.16.0 to GLib 2.16.1
5710 ===================================================
5711
5712 * Fix a crash in g_themed_icon_new
5713
5714 * Update the included PCRE to 7.6
5715
5716
5717 Overview of Changes from GLib 2.15.6 to GLib 2.16.0
5718 ===================================================
5719
5720 * Fix the definition of G_INLINE_FUNC to work with gcc 4.3.0
5721
5722 * GIO:
5723  - Add missing GMountMountFlags argument to g_unix_volume_mount
5724  - Fix the adopt_orphan_mount vfunc to take a volume monitor 
5725    reference
5726  - Add properties to GThemedIcon for bindings sake
5727
5728 * Bugs fixed:
5729  520484 gvfsd-trash crashed with SIGSEGV in g_path_is_absolute()
5730  510855 g_checksum_update(): Take -1 for length.
5731  517676 g_themed_icon_new*() do more than call g_object_new().
5732  518816 should handle rmdir returning EEXIST correctly
5733  519352 g_[s]list_delete_link() docs
5734  519489 Fixes for sparse warnings in gio
5735  520169 add monitor argument to vfunc for GVolumeMonitor
5736  520700 Add type check in g_file_query_exists
5737  521145 FILE_READ_ONLY_VOLUME not present on Mingw32
5738  518720 No MIME type for empty files
5739  521013 in documentation, goffset doesn't say "Since 2.x"
5740  521028 Missleading error messages from g_io_channel_set_encoding()
5741  517484 GMainLoop could set the thread "Alertable" for APCs to be... 
5742
5743 * Updated translations:
5744  Assamese (as)
5745  Bengali India (bn_IN)
5746  Czech (cs)
5747  German (de)
5748  Spanish (es)
5749  Estonian (et)
5750  Finnish (fi)
5751  French (fr)
5752  Gujarati (gu)
5753  Italian (it)
5754  Lithuanian (lt)
5755  Malayalam (ml)
5756  Marathi (mr)
5757  Norwegian bokmål (nb)
5758  Romanian (ro)
5759  Russian (ru)
5760  Slovak (sk)
5761  Ukrainian (uk)
5762
5763  
5764 Overview of Changes from GLib 2.15.5 to GLib 2.15.6
5765 ===================================================
5766
5767 * GIO:
5768  - New file attributes: trash::item-count, filesystem::use-preview
5769  - Rename g_file_contains_file to g_file_has_prefix
5770  - g_file_query_filesystem_info grew async variants
5771  - g_themed_icon_append_name: new convenience function
5772  - g_content_type_get_icon is implemented now
5773  - Only show mounts in /media and ~
5774  - g_file_contains_file has been renamed to g_file_has_prefix
5775
5776 * Win32:
5777  - g_win32_get_package_installation_directory_of_module: new function
5778    which supersedes g_win32_get_package_installation_directory
5779  - Use alertable wait functions so that I/O completion routines or 
5780    user-mode Asynchronous Procedure Calls can be run
5781  - Fix race conditions in g_spawn implementation on win32
5782
5783 * Other:
5784  - g_uri_get_scheme has been renamed go g_uri_parse_scheme
5785
5786 * Updated translations:
5787  Arabic (ar)
5788  Belarusian Latin (be@latin)
5789  Catalan (ca) 
5790  British English (en_GB)
5791  Finnish (fi)
5792  Galician (gl)
5793  Hebrew (he)
5794  Italian (it)
5795  Kannada (kn)
5796  Norwegian bokmål (nb)
5797  Dutch (nl)
5798  Brazilian Portugese (pt_BR)
5799  Vietnamese (vi)
5800
5801
5802 Overview of Changes from GLib 2.15.4 to GLib 2.15.5
5803 ===================================================
5804
5805 * Update the included PCRE to 7.6
5806
5807 * GIO:
5808  - g_volume_should_automount: new function to determine if a volume
5809    should be mounted automatically
5810  - g_file_query_default_handler: new convenience function to get
5811    the default handler for a file
5812  - g_app_info_launch_default_for_uri new convenience function to
5813    launch the default handler for a URI
5814  - Use mimeapps.list and defaults.list as discussed on xdg list
5815    recently
5816  - g_app_info_get_default_for_uri_scheme has a real implementation
5817    now (gvfs provides a GConf-based implementation)
5818  - There is the beginning of a test suite
5819  - standard::description:  new file attribute
5820  - GMountMountFlags flags argument added to mount calls
5821
5822 * GObject:
5823  - class initialization is now threadsafe
5824
5825 * Updated translations:
5826   Arabic (ar)
5827   Catalan (ca)
5828   Spanish (es)
5829   Basque (eu)
5830   Italian (it)
5831   Japanese (ja)
5832   Kannada (kn)
5833   Korean (ko)
5834   Macedonian (mk)
5835   Occitan (oc)
5836   Portugese (pt)
5837   Brazilian Portugese (pt_BR)
5838   Swedish (sv)
5839   Thai (th)
5840
5841
5842 Overview of Changes from GLib 2.15.3 to GLib 2.15.4
5843 ===================================================
5844
5845 * G_GNUC_PRETTY_FUNCTION has been deprecated
5846
5847 * GIO:
5848  - g_file_copy has an async variant now
5849  - Drives and volumes now have API to get identifiers
5850    like Hal UDIs or UUIDs.
5851  - There is now a registration API to let modules register
5852    extensions they provide, such as volume monitor implementations
5853
5854 * Bugs fixed:
5855   511807 g_time_val_to_iso8601() uses MT-unsafe gmtime() function
5856   316260 [patch] Doc patches for gnode (2.8.1)
5857   385132 solaris gettext support fix
5858   484261 ./configure check for system PCRE unicode support fails w...
5859   510292 GOption main help not shown
5860   511580 Implement g_file_copy_async
5861   511654 Compile errors due to C99 constructs
5862   487909 g_utf8_strreverse and combining marks
5863   512381 unused variable 'is_main_group' 
5864
5865 * Updated translations:
5866   Arabic (ar)
5867   Belarusian (be)
5868   Czech (cz)
5869   Spanish (es)
5870   French (fr)
5871   Galician (gl)
5872   Portugese (pt)
5873   Russian (ru)
5874   Swedish (sv)
5875   Thai (th)
5876
5877
5878 Overview of Changes from GLib 2.15.2 to GLib 2.15.3
5879 ===================================================
5880
5881 * GChecksum:
5882  - g_checksum_update can accept nul-terminated strings
5883  - The MD5 implementation works correctly on buffers 
5884    that are longer than 64 bytes
5885
5886 * GIO:
5887  - Don't include a copy of the inotify headers, rely on system headers
5888  - g_file_find_enclosing_mount has an async variant now
5889  - Reduntant seek API on file streams has been removed
5890
5891 * Bugs fixed:
5892   508602 gmemory{in|out}putstream.c: unknown pointer size
5893   508771 There is no g_file_test/exists() for GFile
5894   508773 g_uri_escape_string() documentation unclear.
5895   509465 AM_PATH_GLIB_2_0 doesn't support gio
5896   509626 async functions: Document allowed NULL callback?
5897   509990 GSeekable documentation unclear
5898   510448 No inotify support on ARM or SH5
5899   510855 g_checksum_update(): Take -1 for length. 
5900
5901 * Updated translations:
5902   Basque (eu)
5903   Marathi (mr)
5904   Swedish (sv)
5905   Ukrainian (uk)
5906
5907
5908 Overview of Changes from GLib 2.15.1 to GLib 2.15.2
5909 ===================================================
5910
5911 * GIO:
5912  - Mount operation API change: unhandled methods get reported via 
5913    the reply, rather than by the signal emission return value
5914  - File monitor API change: Add a GError argument to g_file_monitor_file
5915  - g_unix_mount_guess_should_display(): new function
5916
5917 * Bugs fixed:
5918   508224 [PATCH] FAM backend crashes due to double free
5919   508074 GAsyncResult documentation suggests g_freeing it.
5920   508108 GFile documentation slightly unclear.
5921   508309 rpc_pipefs mount points should be hidden
5922   508378 GFileInfo documentation implies that it changes attribute...
5923   508719 g_file_get_relative_path fails if parent is root
5924   508773 g_uri_escape_string() documentation unclear.
5925
5926 * Updated translations:
5927   Arabic (ar)
5928   Spanish (es)
5929   Hebrew (he)
5930   Italian (it)
5931   Korean (ko)
5932   Turkish (tr)
5933
5934
5935 Overview of Changes from GLib 2.15.0 to GLib 2.15.1
5936 ===================================================
5937
5938  * Portability fixes:
5939  - Assertion functions are marked as noreturn again
5940  - Handling of inline functions has been fixed to work with gcc 4.3
5941  - C99 comments have been removed from headers
5942  - The nonportable sed -i option is no longer used
5943
5944  * GIO:
5945   - Clarified the semantics of g_app_info_get_all()
5946   - API for memory input and output streams has been changed a bit
5947   - GDirectoryMonitor has been removed; GFileMonitor can monitor
5948     files and directories now
5949
5950  * Bugs fixed:
5951    504829 Invalid environment passed to g_spawn_async in g_desktop_...
5952    505258 crash in Users and Groups: Adding a user
5953    505815 g_content_types_get_registered should not g_free keys
5954    491218 g_timer_new() doesn't initialize timer->end
5955    315437 extern inline -> static inline
5956    476856 Inconsistency between standard and implementation of the ...
5957    480122 g_module_open fails to open modules with ".la" extension
5958    495589 gspawn.c failing to set FD_CLOEXEC
5959    500273 doesn't build with --disable-visibility
5960    504142 Do not show empty groups in --help output
5961    504879 giofam incorrectly linked
5962    505042 add file attribute for actually used file size in bytes
5963    505058 xattr namespace docs
5964    505674 Misprint in the definition of the macro G_CCLOSURE_SWAP_DATA
5965    505730 Fails to build on OSX 10.4: _NSGetEnviron not declared
5966    505887 older darwin lacks lchown
5967    506374 gmemoryinputstream api
5968    506461 Conversion of g_assert_not_reached() and friends into fun...
5969    503051 Small bug in glib interface
5970    506395 Updates to GIO documentation
5971    507628 Missing .pc entry for gio linking against glib
5972    505195 [patch] typo in g_try_new0 docs 
5973    507822 g{file,directory}monitor changes signal problem
5974    506377 gmemoryoutputstream write implementation
5975    507835 bug in gunixinputstream 
5976
5977  * Updated translations:
5978    Arabic (ar)
5979    Belarusian Latin (be@latin)
5980    Spanish (es)
5981    Basque (eu)
5982    Irish (ga)
5983    Hebrew (he)
5984    Occitan (oc)
5985    Vietnamese (vi)
5986
5987
5988 Overview of Changes from GLib 2.14.x to GLib 2.15.0
5989 ===================================================
5990
5991 Major new features:
5992
5993  * GIO: a VFS API, designed to replace GnomeVFS. The GIO implementation 
5994    in GLib has support for local filesystems. The new, separate gvfs 
5995    module contains various backend implementations (cifs, ftp, sftp,
5996    http, ...)
5997
5998  * GChecksum: provides various hash algorithms, such as MD5, SHA-1
5999    and SHA-256
6000  
6001  * GTest: a test framework 
6002  
6003 Smaller additions:
6004
6005  * GHash:
6006  - GHash has iterators, as an alternative to g_hash_table_foreach
6007
6008  * GMarkup: 
6009  - g_markup_parse_context_get_element_stack: New function to
6010    get the stack of open elements
6011  - G_MARKUP_PREFIX_ERROR_POSITION: New flag to improve error
6012    reporting
6013  - g_markup_collect_attributes: Convenience function for handling
6014    attributes
6015
6016 * GKeyFile: 
6017  - Functions that take a GError now return a boolean to indicate 
6018    success, instead of void
6019  - Various performance improvements
6020
6021 * GAsyncQueue:
6022  - g_async_queue_new_full: new function that allows to specify
6023    a free function for leftover elements
6024  
6025 * GError:
6026  - g_prefix_error and g_propagate_prefixed_error: New functions
6027    to ease error propagation
6028
6029 * Internationalization:
6030  - C_: A new 2-argument variant of the Q_() macro 
6031  - Use native character set conversion API on Windows
6032
6033 * GLib builds with automake 1.10
6034
6035 * Bugs fixed:
6036  455725 specific combination of g_utf8_strlen and g_pattern_match...
6037  467537 g_convert_with_iconv() not resetting iconv() state correc...
6038  497033 Commandline option parser should warn about missing optio...
6039  504527 gchecksum: Conditional jump or move depends on uninitiali...
6040  445362 Non-numeric local labels in gatomic.c are causing linker ...
6041  482313 gregex: no way to tell why compilation failed
6042  317775 main loops continues to run after g_main_loop_quit() has ...
6043  418778 Insufficient pkg-config version requirement
6044  436293 g_option_context_new() doc should mention that the string...
6045  466557 glib-mkenums shifts ARGV[0] to undefined
6046  468882 GKeyFile doesn't accept "True" as a true boolean value
6047  469551 application --help messages are garbaged on none UTF-8 lo...
6048  479724 Memory leak upon calling "g_main_loop_run" in the seconda...
6049  490061 outptrs uninitialized after g_parse_long_long
6050  490637 gobject documentation patch
6051  495294 glib-genmarshal prints warnings but returns 0
6052  496046 option to prefix location of errors for GMarkup
6053  498113 tests/regex-test fails on 64bit environment
6054  500506 Fails to build on OSX 10.4
6055  500638 gkeyfile speedup ...
6056  500875 Make check fails as there is no "test" target for "build"...
6057  502511 g_assert_cmphex prints invalid message
6058  502927 g_array_index triggers cast aligment warning
6059  503029 g_time_val_from_iso8601 parse non-ISO8601 dates
6060  503222 Need context to translate
6061  503420 gkeyfile leaks a hash table
6062  503470 Fix build when builddir != srcdir
6063  504227 Inverse variant for g_test_trap_assert_stdout, g_test_tra...
6064  71704  file include order
6065  491957 Misprint in the specification of the interface "g_main_co...
6066  491959 Misprint in description of the structure "GThreadPool"
6067  491965 Mistype in the specification of the function "g_hook_list...
6068  491966 Misprint in the specification of the interface "g_main_co...
6069  491968 The documentation does not mention the restriction for th...
6070  491970 The documentation for the interface "g_date_clamp" is inc...
6071  491974 The documentation of the interface "g_main_context_iterat...
6072  491975 The documentation for the interfaces "g_io_channel_read_u...
6073  491979 Misprint in the description of the interfaces g_key_file_...
6074  491982 Misprint in the description of the interface "g_key_file_...
6075  501107 EXTRA_DIST automake warnings
6076  501997 g_utf8_normalize() returns NULL on invalid string
6077  502590 C_/g_dpgettext efficiency
6078  464259 g_set_application_name() docs should say "Since 2.2"
6079  496518 gbase64.c API doc clarification
6080  498728 g_key_file_get_*_list should set length to 0 when returni...
6081  500361 Improve docs for g_array_free() and g_ptr_array_free()
6082  501853 g_checksum_get_digest docs
6083  503862 Allow NULL strings in g_parse_debug_string()
6084  142676 Q_
6085  367550 Add g_async_queue_new_full() with GDestroyNotify function
6086  375651 Minor enhancements to GKeyFile API
6087  443648 MD5 digest support
6088  449937 Upgrade auto* sources to be clean under automake1.9
6089  452887 gmarkup context "get element" function is useless when ca...
6090  491549 [PATCH] Eliminate libiconv dependency on Windows
6091  500507 GHashTableIter API 
6092
6093 * Translation updates
6094  Belarusian Latin (be@latin)
6095  Czech (cs)
6096  German (de)
6097  Spanish (es)
6098  Esperanto (et)
6099  French (fr)
6100  Korean (ko)
6101  Marathi (mr)
6102  Norwegian bokmål (nb)
6103  Brazilian Portugese (pt_BR)
6104  Slovenian (sl)
6105  Swedish (sv)
6106
6107
6108 Overview of Changes from GLib 2.14.2 to GLib 2.14.3
6109 ===================================================
6110
6111 * Update PCRE to 7.4
6112
6113 * Bugs fixed:
6114  487491 Fix some warnings from sparse
6115  488068 Small (one-time) memory leak in glib_gettext initialization
6116  493688 TYPE macro "_get_type ()" is documented wrong
6117
6118 * Updated translations:
6119  Arabic (ar)
6120  Belarusian Latin (be@latin)
6121  Estonian (et)
6122  Irish (ga)
6123  Slovenian (sl)
6124
6125  
6126 Overview of Changes from GLib 2.14.1 to GLib 2.14.2
6127 ===================================================
6128
6129 * Bugs fixed:
6130  476849 Invocation of the interface "g_hook_free" fails in certai...
6131  359165 marshallers can throw warnings with -Wunused
6132  477957 more discussion on g_value_set_object vs. g_value_take_ob...
6133  478459 G_DEFINE_DYNAMIC_TYPE_EXTENDED doesn't work with G_IMPLEM...
6134  483337 inline is disabled for MSVC when compiling C code
6135  478349 Broken link to gettext website
6136  469231 g_spawn optimization for setting all open fds to CLOEXEC 
6137
6138 * Updated translations:
6139 Arabic (ar)
6140 Galician (gl)
6141 Hebrew (he)
6142 Korean (ko)
6143
6144
6145 Overview of Changes from GLib 2.14.0 to GLib 2.14.1
6146 ===================================================
6147
6148 * Bugs fixed:
6149  476840 Invocation of the interface "g_utf8_strreverse" crashes f...
6150  444765 Fix FIXME in gregex.c when new pcre is out
6151  464145 g_markup_escape_text Produces Invalid XML
6152  465625 g_type_default_interface_ref() does not ensure working g_...
6153  466768 Clearify that comments can be put anywhere in a Key-file.
6154  474229 The GError documentation should give convention for the G...
6155  474899 G_BREAKPOINT() docs inaccurate
6156  475854 Overuse of -lpcre when using system pcre
6157  473879 Incorrect includes in gregex.c
6158  468694 Typoes in documentation
6159  469051 g_snprintf () talks about characters where it probably me...
6160  457601 Missing arch specific atomic implementation
6161  475923 Missing pcre flags when static-linking against glib
6162  475619 glibthread-2.0.la does not list -lpthread
6163
6164 * Updated translations:
6165  Bulgarian (bg)
6166  Catalan (ca)
6167  Danish (da)
6168  German (de)
6169  Canadian English (en_CA)
6170  British English (en_GB)
6171  Spanish (es)
6172  Estonian (et)
6173  Finnish (fi)
6174  French (fr)
6175  Gujarati (gu)
6176  Hungarian (hu)
6177  Italian (it)
6178  Georgian (ka)
6179  Kannada (kn)
6180  Lithuanian (lt)
6181  Makedonian (mk)
6182  Norwegian (nb)
6183  Dutch (nl)
6184  Polish (pl)
6185  Portugese (pt)
6186  Brazilian Portugese (pt_BR)
6187  Romanian (ro)
6188  Russian (ru)
6189  Albanian (sq)
6190  Serbian (sr, sr@Latn)
6191  Swedish (sv)
6192  Tamil (ta)
6193  Thai (th)
6194  Ukrainian (uk)
6195  Vietnamese (vi)
6196
6197
6198 Overview of Changes from GLib 2.13.7 to GLib 2.14.0
6199 ===================================================
6200
6201 * Last-minute API additions:
6202  - Make g_unichar_combining_class public
6203  - Add goffset type, add G_MAXSSIZE and G_MINSSIZE
6204
6205 * Update PCRE to 7.2
6206
6207 * Bugs fixed:
6208  453998 Make _g_unichar_combining_class() public
6209  462549 gregex.c: variable is declared at middle of block
6210  417068 g_file_test doc inconsistency
6211
6212 * Updated translations:
6213  Assamese (as)
6214  Basque (eu)
6215  Kannada (kn)
6216  Malayalam (ml)
6217  Dutch (nl)
6218  Polish (pl)
6219  Brazilian Portugese (pt_BR)
6220  Turkish (tr)
6221
6222
6223 Overview of Changes from GLib 2.13.6 to GLib 2.13.7
6224 ===================================================
6225
6226 * The memory corruption warning from the slice allocator that
6227   occurred when threads were initialized after the slice allocator
6228   has been removed, as the slice allocator now works fine
6229   in this scenario.
6230
6231 * New functions g_once_init_enter() and g_once_init_leave() make
6232   it easier to write threadsafe one-time initialization functions 
6233  
6234 * Bugs fixed:
6235  454473 Simple XML Subset Parser terminates on invalid XML
6236  445813 g_module_open error, add file name
6237  453796 errno gets clobbered by g_filename_display_name
6238  341988 don't use "-c" with msgfmt in Makefile.in.in
6239  447048 Please produce slightly more output during long tests
6240  454785 GModule documentation lists same block of code twice.
6241  454786 GModule documentation lists same paragraph twice.
6242  383155 small docs quirks in gobject/closure API documentation
6243  65041  _get_type() functions aren't thread safe
6244
6245 * Updated translations
6246  Assamese (as)
6247  Spanish (es)
6248  Gujarati (gu)
6249  Japanese (ja)
6250  Korean (ko)
6251  Macedonian (mk)
6252
6253
6254 Overview of Changes from GLib 2.13.5 to GLib 2.13.6
6255 ===================================================
6256
6257 * Reintroduce a GType typedef whose removal in 2.13.5
6258   caused trouble for C++ bindings
6259
6260 * Bugs fixed:
6261  450216 docs not explicit enough about g_free()
6262  451459 g_type_register_static_simple calls g_type_register_static
6263
6264 * Updated translations
6265  Norwegian bokmål (nb)
6266  Sinhala (si)
6267
6268
6269 Overview of Changes from GLib 2.13.4 to GLib 2.13.5
6270 ===================================================
6271
6272 * xdg-user-dirs support: 
6273  - the Desktop directory is guaranteed to be defined
6274  - user-dirs.dirs is no longer reloaded on changes
6275
6276 * Slice allocator: 
6277  - new api to duplicate slices
6278
6279 * Regular expression support:
6280  - GRegex is a boxed type now
6281
6282 * Bugs fixed:
6283  44793 make check failing in trunk
6284  354522 Small problem with PLT hiding 6 symbols
6285  363986 glib 2.12.4 does not compile with SGI IDO cc
6286  443869 g_type_class_add_private doesn't warn when adding 0-sized...
6287  446859 Legitimately return 0 for g_quark_from_string(NULL)
6288  447534 Small typo in g_timeout_add_seconds() doc
6289  447583 GStaticRWLock
6290  447935 g_get_current_dir SIGSEGV on long path
6291  448260 CLAMP has surprising result if low > high
6292  57693  g_string_vprintf()
6293  442029 add g_slice_dup()
6294  445065 Add GRegex boxed type
6295  448819 Add full version of g_timeout_add_seconds()
6296
6297 * Updated translations: 
6298  Swedish (sv)
6299  Oriya (or)
6300  Hebrew (he)
6301  Spanish (es)
6302  Estonian (et)
6303
6304  
6305 Overview of Changes from GLib 2.13.3 to GLib 2.13.4
6306 ===================================================
6307
6308 * Bugs fixed:
6309  444121 g_get_user_special_dir deadlocks
6310  444161 invalid UTF8 in key name shows up as valgrind error in g_...
6311  444130 g_option_context_get_help() is broken when there's a desc...
6312
6313
6314 Overview of Changes from GLib 2.13.2 to GLib 2.13.3
6315 ===================================================
6316
6317 * GKeyFile:
6318  - Added defines for easier handling of desktop files
6319
6320 * Unicode support:
6321  - Update g_unichar_iswide_cjk for Unicode 5.0
6322
6323 * Regular expression support:
6324  - GRegex structs can now be ref-counted
6325  - Some new functions for dealing with incremental 
6326    replacement have been added
6327  - The GRegexEvalCallback signature has been changed
6328
6329 * g_get_user_special_dir() has been added to support
6330   xdg-user-dirs
6331
6332 * Bugs fixed:
6333  419376 Functions using named subpatterns behave inconsistently w...
6334  434358 g_regex_fetch_named() and g_regex_fetch_named_pos() are b...
6335  423708 typo in the README.win32 file see patch below
6336  339225 Add new defines for easier handling of .desktop files 
6337  442265 API additions/changes for GRegex
6338  432651 Add a glib-ish xdg_user_dir_lookup
6339
6340 * Updated translations:
6341  Estonian (et)
6342  Norwegian bokmål (nb)
6343
6344
6345 Overview of Changes from GLib 2.13.1 to GLib 2.13.2
6346 ===================================================
6347
6348 * Unicode support:
6349  - Add g_unichar_ismark()
6350
6351 * GOption:
6352  - Allow to use callbacks for remaining args
6353
6354 * Updated translations:
6355   Belarusian Latin (be@latin)
6356   British English (en_GB)
6357   Galician (gl)
6358   Norwegian bokmål (nb)
6359   Oriya (or)
6360   Spanish (es)
6361   Thai (th)
6362
6363
6364 Overview of Changes from GLib 2.13.0 to GLib 2.13.1
6365 ===================================================
6366
6367 * GRegex:
6368  - Portability fixes
6369  - Split into immutable GRegex and GMatchInfo
6370  - Add g_regex_get_max_backref() and g_regex_get_capture_count()
6371    to obtain information about the compiled regex
6372
6373 * GKeyFile:
6374  - Fix roundtrip problems
6375  - Add g_key_file_load_from_dirs()
6376
6377 * Unicode support:
6378  - Fix corner cases in case conversion routines
6379
6380 * GOption:
6381   - Add a function to get the formatted help string
6382
6383 * GHash:
6384  - Add new functions g_hash_table_get_keys() and
6385    g_hash_table_get_values() to retrieve the keys and
6386    values in list form
6387
6388 * Updated transations:
6389   Simplified Chinese (zh_CN)
6390   Arabic (ar)
6391
6392
6393 Overview of Changes from GLib 2.12 to GLib 2.13.0
6394 =================================================
6395
6396 * Add GSequence, a list that is implemented using
6397   a balanced binary tree.
6398
6399 * Add GRegex, an implementation of Perl regular expressions,
6400   based on PCRE.
6401  
6402 * Use Posix monotonic clocks instead of gettimeofday()
6403   for GTimer when available.
6404
6405 * Support static initialization of GQeues with G_QUEUE_INIT,
6406   g_queue_init() and g_queue_clear().
6407
6408 * Add g_string_chunk_clear() for clearing a 
6409   GStringChunk.
6410
6411 * Add g_unichar_get_script() to obtain Unicode
6412   script information.
6413
6414 * Add g_unichar_iszerowidth() to obtain information
6415   about zero-width characters.
6416
6417 * Add G_GNUC_MAY_ALIAS which wraps the gcc may_alias 
6418   type attribute.
6419
6420 * G_GNUC_INTERNAL has a working definition for the
6421   Sun Studio compiler. This requires the macro to
6422   be positioned before the function declaration.
6423
6424 * The slice allocator can produce detailed debugging
6425   information with G_SLICE=debug-blocks.
6426
6427 * Modules support G_DEBUG flags resident-modules and
6428   bind-now-modules.
6429
6430 * Add G_DEFINE_DYNAMIC_TYPE() to make it easier
6431   to define types in modules.
6432
6433 * Bug fixes: too many to list them in detail here.
6434
6435 * New and updated translations (be,bg,bn,ca,cs,de,
6436   en_CA,en_GB,et,fa,fr,he,hu,it,ja,ku,lt,mg,mk,ml,
6437   nb,ne,nn,pt,pt_BR,ro,sr,sr@Latn,sv,ta,uk,vi,zh_CN,
6438   zh_HK,zh_TW)
6439
6440
6441 Overview of Changes from GLib 2.12.1 to GLib 2.12.2
6442 ===================================================
6443
6444 * Unicode updates:
6445  - Normalization is following Unicode TR #29
6446  - g_unichar_isxdigit() only accept characters
6447    for which g_unichar_xdigit_value() returns a value
6448  - g_unichar_toupper and g_unichar_tolower leave
6449    unconvertable characters in place instead of
6450    replacing them by NUL
6451
6452 * Bugs fixed
6453  348491 g_utf8_strup() and g_utf8_strdown() returns 
6454         string with NUL bytes
6455  349825 GKeyFile always inserts a newline before a group
6456  347842 g_unichar_isxdigit() is too general about what 
6457         it considers a digit
6458  348694 g_utf8_normalize() hasn't been updated to PR #29
6459  348785 Hint about G_DEBUG in Message Logging docs
6460  349792 Wrong english string (UI)
6461  349952 gparamspecs.c uses gcc feature
6462
6463 * Translation updates (ca,cs,de,dz,es,eu,fi,gu,ko,
6464   nl,pl,tr,uk,zh_HK,zh_TW)
6465
6466
6467 Overview of Changes from GLib 2.12.0 to GLib 2.12.1
6468 ===================================================
6469
6470 * Update to final Unicode Character Database 5.0.0
6471
6472 * Bugs fixed:
6473  346660 issues with base64 api documentation / g_base64_decode_cl...
6474  348136 Coverity reports allocation of wrong size CID #2839
6475  336281 Update to UCD 5.0
6476  346197 g_date_strftime %F option doesnt work for win32
6477  348011 Small optimization to real_toupper()
6478  246494 prototype mismatch in glib/gconvert.c
6479
6480 * New and updated translations (bg,bn_IN,ca,dz,eu,fi,
6481   fr,he,it,ja,mk,or,pt)
6482
6483
6484 Overview of Changes from GLib 2.11.4 to GLib 2.12
6485 =================================================
6486
6487 * Bugs fixed:
6488  344905 leap-year bug in g_time_val_from_iso8601 w/o HAVE_TIMEGM
6489
6490 * Updated translations (cy,nb,nl)
6491
6492
6493 Overview of Changes from GLib 2.11.3 to GLib 2.11.4
6494 ===================================================
6495
6496 * GBookmarkFile:
6497  - g_bookmark_file_remove_item returns a boolean
6498  
6499 * g_mkstemp accepts the XXXXXX in the middle of
6500   the template
6501  
6502 * Bugs fixed:
6503  344868 g_key_file_to_data should separate groups 
6504
6505 * Updated translations (de,es,fr,gu,hi,ko,th)
6506
6507
6508 Overview of Changes from GLib 2.11.2 to GLib 2.11.3
6509 ===================================================
6510
6511 * GBookmarkFile:
6512   - g_bookmark_file_move_item: Return TRUE in case of
6513     an empty target
6514
6515 * Bugs fixed: 
6516  343919 gunicollate.c: strxfrm bug on VC8
6517
6518 * Updated translations (fi)
6519
6520 Overview of Changes from GLib 2.11.1 to GLib 2.11.2
6521 ===================================================
6522
6523 * Add g_ascii_stroll to parse signed 64bit integers
6524
6525 * GMarkup: add a flag to treat CDATA as text
6526
6527 * GHashTable: add functions to remove all entries
6528
6529 * GMainLoop: add functions to find the currently
6530   running source, and determine if it is destroyed
6531
6532 * Bug fixes:
6533  342563  g_atomic_thread_init() needs to be called before 
6534          other _g_*_thread_init() functions
6535  343548  Potential use after free in callers of g_string_free() 
6536  168538  Wish: Clearing contents of GHashTables
6537  321886  GTK+ cannot be reliably used in multi-threaded 
6538          applications
6539  341826  goption.c: 'strtoll' is C99's function
6540  343899  g_ascii_formatd dosn't work as expected for all 
6541          format strings
6542  317793  Make GEnumValue strings const
6543  337129  Compile warnings in G_IMPLEMENT_INTERFACE
6544  303622  What is G_TYPE_CHAR?
6545
6546 * Updated translations (bg,dz,eu,gl,ja,ko,nl,th,vi)
6547  
6548
6549 Overview of Changes from GLib 2.11.0 to GLib 2.11.1
6550 ===================================================
6551
6552 * GOption  
6553   - Support 64-bit integers 
6554   - Allow optional text before and after the options
6555     in help output
6556
6557 * Bug fixes:
6558  340538 gbase64-test writes OOB 
6559  340816 GKeyFile set_string_list invalid memory reads 
6560  339105 g_key_file_parse_value_as_double
6561  340434 convert-test.c fails (function test_one_half)
6562  311043 Memory leaks (and potential infinite loops) 
6563         when using G_ERRORCHECK_MUTEXES
6564  335198 Error checking mutexes are fubar  
6565  341237 Add a G_OPTION_ARG_INT64
6566  341192 g_io_channel_set_flags not implemented on win32
6567  336120 Allow adding description before/after GOption 
6568         --help output body
6569  341191 misplaced check in g_relation_delete
6570  340530 mismatched calloc / g_free in win32 threads
6571
6572 * Updated translation (es)
6573
6574 Overview of Changes from GLib 2.10.x to GLib 2.11.0
6575 ===================================================
6576
6577 * GBookmarkFile: a parser for files containing bookmarks
6578   stored using the Desktop Bookmark specification.
6579
6580 * Base64 encoding support
6581         
6582 * Unicode 5.0 support
6583
6584 * GOption supports floating point numbers 
6585
6586 * GKeyFile supports floating point numbers
6587
6588 * Bug fixes:
6589  155884 gatomic.c should be based on new SDK
6590  157877 update-desktop-database doesn't handle duplicate entries
6591  164719 keyfile parser doesn't support floats
6592  327662 Import BookmarkFile from libegg
6593  329548 Add G_OPTION_ARG_DOUBLE
6594  329789 option-test.c type confusion
6595  332841 Segmentation Fault when %llu is passed to vasnprintf and 
6596         HAVE_SNPRINTF is not defined
6597  333879 gthread/gthread-win32.c: IsDebuggerPresent needs '#define 
6598         _WIN32_WINDOWS 0x0401'
6599  333916 g_timer_elapsed docs should mention that microseconds 
6600         may be NULL
6601  334440 dlerror() portability issue causes crash on (old) a.out 
6602         NetBSD platform
6603  334646 goption + error out params
6604  334799 g_remove() must check return value of remove()
6605  334943 make check FAIL: threadpool-test
6606  335215 Some breakages with GThreadPool
6607  336085 g_option_context_new parameter lacks better explanation
6608  336677 Documentation for g_object_ref_sink() is incorrect
6609  337027 gbookmarkfile.c: sys/time.h include error
6610  337553 Wrong escaping of URIs
6611  338572 Dereferencing NULL value in g_key_file_get_group_comment
6612  338845 g_completion_complete_utf8 crashes when NULL is passed to it
6613  339337 g_bookmark_file_set_description
6614  339338 gbookmarkfile.c, function expand_exec_line
6615  339340 gbookmarkfile.c, function bookmark_app_info_dump
6616
6617 * Translation updates (bg,en_GB,et,gl,gu,he,hi,ka,nb,nl,nn,
6618                        or,pt_BR,ro,tr,vi,zh_CN)
6619
6620
6621 Overview of Changes from GLib 2.10.0 to GLib 2.10.1
6622 ===================================================
6623
6624 * Bugs fixed:
6625  314794 Broken pthread detection on Darwin [Gregor Riepl]
6626  322476 Missing check for .dylib [Vladimir Panov]
6627  333651 Inconsistent _g_charset_get_aliases prototype [Julio 
6628         M. Merino Vidal]
6629  333761 GInitiallyUnowned breaks application code [Sven Herzberg]
6630
6631 * Win32 changes:
6632  - Fix g_listenv() implementation.
6633  - Allow up to 100 GPrivate structs
6634
6635 * Translation updates (fr,hu,lt,pl,sv)
6636
6637
6638 Overview of Changes from GLib 2.9.6 to GLib 2.10.0
6639 ==================================================
6640
6641 * Bugs fixed:
6642  328997 64bit pointer trunction in glib slab-allocator
6643         [Pascal Hofstee]
6644  331110 g_cond_broadcast(inform_cond) without holding 
6645         inform_mutex [Chris Wilson, Sebastian Wilhelmi]
6646  332093 Fix some leaks in the tests [Kjartan Maraas]
6647  332435 g_utf8_strlen returns wrong value if a maximum 
6648         number of bytes to check is specified 
6649         [Matthias Clasen]
6650  331367 gslice requires more POSIX-like semantics for 
6651         GPrivate destructors [Tor Lillqvist]
6652
6653 * Documentation improvements [Matthias, Kang Jeong-Hee,
6654   Tor Lillqvist, Stefan Kost]
6655
6656 * Translation updates (el,eu,ka,uk)
6657
6658 Overview of Changes from GLib 2.9.5 to GLib 2.9.6
6659 =================================================
6660
6661 * Bugs fixed: 
6662  329124 distclean removes README [Kjartan Maraas, Tim Janik]
6663  317679 GRelation field type not documented [Behdad Esfahbod]
6664  329123 Typo in GTime docs [Kjartan Maraas]
6665
6666 * Documentation improvements [Sven Herzberg, David
6667   Schleef, Kjartan Maraas, Behdad Esfahbod]
6668
6669 * Translation updates (cs,cy,it,ko,pt,sq,sr,sr@Latn,ru
6670
6671 Overview of Changes from GLib 2.9.4 to GLib 2.9.5
6672 =================================================
6673
6674 * Memory management: 
6675   Runtime debugging support: The slice allocator
6676   can be turned off by setting G_SLICE=always-malloc
6677   in the environment. Zeroing of freed memory can
6678   now be turned on at runtime by setting
6679   G_DEBUG=gc-friendly in the environment. [Tim Janik]
6680
6681 * Bugs fixed:
6682  328253 HP-UX/IA-64 uses ".so" as default shared library 
6683         extension [Albert Chin]
6684  143380 unicode-encoding test fails converting to UTF-16 
6685         with libiconv [Marc Moorcroft]
6686  328254 Build breakage (GSlice) [Jens Ganseuer]
6687  328705 C99ism in glib/gmem.c [Kazuki Iwamoto]
6688
6689 * Translation updates (da,et,zh_CN)
6690
6691 Overview of Changes from GLib 2.9.3 to GLib 2.9.4
6692 =================================================
6693
6694 * Type system:
6695   Fix a problem with g_object_compat_control() which 
6696   can lead to segfaults in GTK+ applications on 64bit 
6697   platforms. 
6698
6699 * Thread suppport: 
6700   Unused threads now fall back to the global pool after 
6701   500 milliseconds, where they wait for another 
6702   max-idle-time milliseconds. [Sebastian Wilhelmi]
6703
6704 * Fix a memory allocation problem in GKeyFile. [Morten 
6705   Welinder]
6706
6707
6708 Overview of Changes from GLib 2.9.2 to GLib 2.9.3
6709 =================================================
6710
6711 * GTree:
6712  - Replace the simple recursive implementation by
6713    a nonrecursive, threaded one  [Maurizio Monge]
6714
6715 * Change g_filename_display_name and
6716   g_filename_display_basename to use the Unicode
6717   replacement character U+FFFD instead of a question
6718   mark, and don't append "(invalid encoding)"  [Matthias]
6719
6720 * Documentation improvements [Sven Herzberg, Federico
6721   Mena Quintero, Stefan Kost]
6722
6723 * Bugs fixed:
6724  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X 
6725         [Bogdan Nicula]
6726  326558 Some test failures on IRIX 6.5 [Daichi Kawahata]
6727  169285 "threaded" tree implementation for GTree 
6728         [Maurizio Monge]
6729  326747 g_filename_display_basename adds (invalid encoding) 
6730         [Alberto Ruiz]
6731
6732 Other contributors: Christian Kellner, Murray Cumming
6733
6734 New and updated translations (bg,ca,de,es,et,gu,ja,nl,th,vi)
6735
6736
6737 Overview of Changes from GLib 2.9.1 to GLib 2.9.2
6738 =================================================
6739
6740 * Memory management:
6741  - Add tests for cache colorization [Tim Janik]
6742  - Minimize space consumption if small amounts of differently
6743    sized slices are allocated, at a small performance cost.  [Tim]
6744
6745 * Thread support:
6746  - Add g_atomic_pointer_set() and g_atomic_int_set() [Tim Janik,
6747    Sebastian Wilhelmi]
6748  - Add g_thread_pool_set_sort_function() to allow sorting the 
6749    tasks of a threadpool.  [Martyn Russell]
6750  - Add g_thread_pool_set_idle_time() to allow unused threads
6751    to exit after a certain time.  [Martyn]
6752
6753 * Type system:
6754  - introduce a new type GInitiallyUnowned, which has an initial
6755    floating reference. [Tim]
6756  - Add support for GType parameters. [Matthias]
6757
6758 * Main loop:
6759  - Add g_main_context_is_owner() to determine if the current
6760    thread is the owner of the context.  [Michael Meeks]
6761
6762 * Provide g_access(), g_chdir(), g_unlink(), g_rmdir() as 
6763   wrapper functions instead of macros.  [Manish Singh]
6764
6765 * Documentation improvements [Tim, Matthias, Federico Mena Quintero,
6766   Stefan Kasal, Dan Williams]
6767
6768 * New and updated translations (en_CA,fi,fr,gl,ml,nb,no,zh_HK,zh_TW)
6769
6770 * Bugs fixed:
6771  324179 g_allocator_new() returns pointer to const dummy which Gtk+ 2.8 
6772         tries to modify [J. Ali Harlow]
6773  324332 g_option_context_parse() returns false without setting error 
6774         [Tim-Philipp Müller]
6775  324950 GLIB 2.9.1 testcase errors [Dan Yefimov]
6776  325015 gslice.c: process.h is needed on Windows [Kazuki Iwamoto]
6777  321978 G_DATALIST_GET_FLAGS() macro is not casting datalist to 
6778         gpointer [Andrew Paprocki]
6779  316221 G_LOCK warns about breaking strict-aliasing [Michal Benes, 
6780         Stanislav Brabec]
6781  325273 Error in documentation for glib_check_version () [Declan Naughton]
6782  325310 g_spawn_sync hangs when catching both stdout and 
6783         stderr [Tor Lillqvist]
6784  325249 gcc warning when using g_rmdir from <glib/gstdio.h> [Jani Monoses]
6785  325864 glib/gthreadpool.c:"#define debug(...)" is C99 [Kazuki Iwamoto]
6786  325874 Should say somewhere that source IDs are > 0 [Dan Williams]
6787  325438 a typo (compatability) [Stefan Kasal]
6788  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X [Bogdan Nicula]
6789
6790
6791 Overview of Changes from GLib 2.9.0 to GLib 2.9.1
6792 =================================================
6793
6794 * Memory management
6795  - The slice allocator is implemented [Tim Janik]
6796  - g_slice_free_chain() has been renamed to 
6797    g_slice_free_chain_with_offset()  [Tim, Behdad Esfahbod]
6798  - Mem chunks are deprecated [Matthias Clasen]
6799
6800 * Data structures
6801  - Hash tables are refcounted, and have a boxed type [Tim]
6802
6803 * Thread support
6804  - Support for Solaris threads has been removed 
6805    [Sebastian Wilhelmi, Andrew Paprocki]
6806  - g_async_queue_sort(), g_async_queue_push_sorted() have 
6807    been added to allow GAsyncQueue to be used as a priority 
6808    queue, together with the corresponding _unlocked 
6809    variants  [Martyn Russell]
6810
6811 * GObject:
6812  - The concept of a floating initial reference has been
6813    moved from GtkObject to GObject [Tim]
6814
6815 * Win32 changes:
6816  - Make g_rename() replace existing files [Tor Lillqvist]
6817
6818 * Misc new API:
6819  - G_GUINT64_CONSTANT macro to define guint64 
6820    constants [Andrew Paprocki]
6821  - G_GNUC_WARN_UNUSED_RESULT macro to instruct the 
6822    compiler to emit a warning if the value returned
6823    by a function is ignored. [Arjan van de Ven, Alex Larsson]
6824  - GList and GSList now have sort functions which take an
6825    extra user data argument [Martyn Russell]
6826  - g_param_spec_ref_sink() has been added for consistency [Tim]
6827
6828 * $LOGNAME is respected when determining user data. [Laszlo Peter]
6829
6830 * Other changes and bug fixes [Tim, Matthias, Behdad, 
6831   Christian Persch, Benedikt Meurer, Andrew Paprocki, 
6832   Kazuki Iwamoto, Alexis S. L. Carvalho, Stanislav Brabec,
6833   Andreas Schwab, Kalle Vahlman]
6834
6835 * Documentation
6836  - Deprecation warnings carry version information [Matthias]
6837  - The slice allocator has been documented [Matthias, Tim]
6838  - Other improvements [Morten Welinder]
6839
6840 Overview of Changes from GLib 2.8.x to GLib 2.9.0
6841 =================================================
6842 * Unicode support:
6843  - The Unicode tables have been updated to Unicode 4.1, 
6844    adding several new values to the GUnicodeBreakType 
6845    enumeration. This breaks Pango <= 1.10 
6846    [Behdad Esfahbod]
6847  - The various Unicode character predicate functions 
6848    (g_unichar_isalpha, g_unichar_isdigit,...) have
6849    been optimized
6850    [Behdad]
6851  - g_utf8_pointer_to_offset, g_utf8_offset_to_pointer:
6852    These functions handle negative offsets now, and
6853    going backwards in g_utf8_offset_to_pointer uses
6854    "stutter stepping".
6855    [Larry Ewing, Matthias Clasen]
6856
6857 * Memory management:
6858  - Mem chunks are no longer used internally in GLib and
6859    GObject. GMemChunk will be deprecated in GLib 2.10
6860  - All APIs based on GAllocator (g_list_push/pop_allocator,
6861    and similar push/pop_allocator functions for other
6862    data structures) have been deprecated, since they
6863    never worked as intended.
6864  - The g_slice_* functions have been added as a 
6865    new API for fast allocation of small memory blocks. 
6866    The implementation in GLib 2.9.0 is just a simple 
6867    wrapper around malloc. GLib 2.10 will have an
6868    efficient and scalable implementation. 
6869    [Tim Janik, Matthias]
6870
6871 * Pattern matching:
6872  - g_pattern_match has been optimized to avoid
6873    unnecessary recursion.
6874    [Tim, Matthias]
6875
6876 * g_intern_string, g_intern_static_string: 
6877  - New functions to intern strings. These are now used 
6878    by GObject to avoid duplicating static strings 
6879    [Matthias]
6880
6881 * g_thread_foreach: 
6882  - New function to iterate over all GThreads 
6883    [Tim, Matthias]
6884
6885 * g_date_set_time_t, g_date_set_time_val:
6886  - New functions to set a GDate from a time_t or
6887    GTimeVal value. g_date_set_time has been deprecated 
6888    in favor of these.
6889    [Roger Leigh]
6890
6891 * g_snprintf and g_vsnprintf:
6892  - These functions are no longer declared in gprintf.h, 
6893    since they are in glib.h
6894    [Matthias]
6895
6896 Overview of Changes from GLib 2.8.0 to GLib 2.8.1
6897 =================================================
6898 * Optimize single-character insertions in GString [Ross Burton]
6899 * Fix build problems on OS X
6900 * Fix build problems on Win32 [Tor Lillqvist, Hans Breuer]
6901 * Other bug fixes [Matthew F. Barnes, Stepan Kasal] 
6902 * Documentation improvements [Tristan van Berkom, Behnam
6903   Esfahbod, Gustavo Carneiro, Stepan Kasal, Matthias]
6904 * New and updated translations (ca,cy,ko,ro,uk)
6905
6906 Overview of Changes from GLib 2.7.7 to GLib 2.8.0
6907 =================================================
6908 * Make g_value_transform() handle enum values
6909   correctly on ppc64.  [Michael Lorenz]
6910   (Third-party code accessing enumeration values 
6911   in GValues should also be changed to access 
6912   v_long, not v_int, in order to work on bigendian 
6913   64bit machines.)
6914 * Make g_flags_get_first_value() handle a value
6915   of 0 meaningfully. [Tim-Philipp Müller] 
6916
6917 Overview of Changes from GLib 2.7.6 to GLib 2.7.7
6918 =================================================
6919 * Make atomic operations on s390 work [Matthias]
6920 * Fix C++ guards in gstdio.h [Tor Lillqvist]
6921
6922 Overview of Changes from GLib 2.7.5 to GLib 2.7.6
6923 =================================================
6924 * Add native implementations of atomic operations 
6925   on s390 [Matthias]
6926 * Make atomic reference counting of closures
6927   work on s390 [Matthias]
6928 * Avoid an infinite loop in g_convert_with_iconv().
6929   [Sebastian Bacher]
6930 * Documentation improvements [Ross Burton]
6931
6932 Overview of Changes from GLib 2.7.4 to GLib 2.7.5
6933 =================================================
6934 * Thread-related changes
6935  - Fix build issues on HP-UX [Paul Cornett]
6936  - Threadsafe access to flags stored in datasets [Tim Janik]
6937  - Fix several issues with atomic refcounting for 
6938    closures, objects and paramspecs [Tim]
6939  - Improve tests for atomic refcounting changes [Tim]
6940 * Fix handling of stateful encodings in g_convert_* [Matthias]
6941 * Fix translation of GOption help output [Dan Winship]
6942 * Catch format errors in translations. This may cause 
6943   "make check" to fail when using older versions
6944   of gettext [Matthias]
6945 * Win32 bug fixes [Tor Lillqvist]
6946 * Documentation improvements [Ross Burton, Jochen Baier, 
6947   Matthias, Tim]
6948 * New and updated translations (de,fi,gu,pl,pt,tr,zh_TW)
6949
6950 Overview of Changes from GLib 2.7.3 to GLib 2.7.4
6951 =================================================
6952 * Fix g_atomic_pointer_compare_and_exchange 
6953   on Sparc64 [Gert Doering]
6954 * Fix a hang in g_thread_pool_free. [Hong Jen Yee]
6955 * Win32 bug fixes [Tor Lillquist]
6956 * Other bug fixes [Benoit Dejean, Manish Singh]
6957 * Documentation improvements [Bryan Silverthorn,
6958   Callum McKenzie] 
6959 * New and updated translations (de,lt,sq,zh_CN)
6960
6961 Overview of Changes from GLib 2.7.2 to GLib 2.7.3
6962 =================================================
6963 * GOption
6964  - Allow callbacks with optional arguments [Pawel Sliwowski]
6965  - Allow to turn off the automatic long option name
6966    disambiguation  [Adam McLaurin]
6967  - Only allow printable ASCII as short option names [Matthias]
6968 * Win32
6969  - Build fixes [Tor Lillqvist]
6970  - Rewrite iochannel socket implementation [Tor]
6971 * GObject
6972  - Threadsafety improvements; in particular, refcounting
6973    of objects is done atomically now. [Wim Taymans, Tim Janik]
6974 * Bug fixes [Morten Welinder, Matthias, Wim Taymans]
6975 * Documentation improvements [Richard Laager, Matthias]
6976 * New and improved translations (bf,cs,hu,nb,nl,no)
6977
6978 Overview of Changes from GLib 2.7.1 to GLib 2.7.2
6979 =================================================
6980 * Win32 build fixes [Hans Breuer]
6981 * Bug fixes [Mikael Magnusson]
6982 * Documentation improvements [Matthias Clasen]
6983 * New and updated translations (en_CA,es,et,ja,sr,sr@Latn,zh_TW)
6984
6985 Overview of Changes from GLib 2.7.0 to GLib 2.7.1
6986 =================================================
6987 * GOption 
6988  - Allow callback arguments without parameters [Dan Winship]
6989 * GMappedFile: an mmap wrapper [David Schleef, Behdad Esfahbod]
6990 * Misc new functions:
6991  - g_get_host_name [Tor Lillqvist]
6992  - g_mkdir_with_parents [Tor]
6993  - g_build_pathv, g_build_filenamev [Todd A. Fisher, 
6994    Matthias Clasen]
6995 * Bug fixes [Roger Leigh, Masatake YAMATO, Kjartan Maraas,
6996   Manish Singh, Tor, Murray Cumming, Kian Duffy, Morten Welinder]
6997 * Documentation improvements [Hong Gang XU, Dan Winship, Matthias]
6998 * New and updated translations (bg,cs,da,en_CA,es,et,nb,nl,no,
6999   sk,th,zh_TW)
7000
7001 Overview of Changes from GLib 2.6.x to GLib 2.7.0
7002 =================================================
7003 * GKeyFile
7004  - Add unit tests [Matthias Clasen, Suren A. Chilingaryan]
7005  - Accept \r\n as line end [Bastian Nocera]
7006  - Don't interpret leading zeros as octal numbers. [Matthias]
7007  - Make key and group removal work [David Hoover, Matthias Hasselmann]
7008 * GOption
7009  - Improve formatting of --help output [Matthias, Noah Levitt]
7010  - Accept -? [Matthias]
7011  - Warn about duplicate main groups [Jeff Franks]
7012  - Treat '-' as non-option argument [Tim Musson, Thomas Leonard]
7013  - Report missing arguments as errors [Björn Lindqvist]
7014  - Add a boxed type for GDate [Tim-Philipp Müller]
7015 * GTree
7016  - g_tree_remove() and g_tree_steal() return status information [Matthew F. Barnes]
7017 * Stdio wrappers
7018  - Work regardless of large file support [Manish Singh]
7019  - Add g_access(), g_chmod(), g_creat(), g_chdir [Tor Lillqvist]
7020 * GObject
7021  - Implement "toggle references" to help language bindings [Owen Taylor]
7022  - Allow to mark names, nicks and blurbs of pspecs as static [Ben Maurer, Matthias]
7023  - Make pspec lookup a bit faster [Morten Welinder]
7024 * Add g_listenv() to list all set environment variables [Hans Petter Jansson]
7025 * Add g_file_set_contents() to atomically write a file.  [Søren Sandmann,
7026   Sven Neumann, Manish, Alexis S. L. Carvalho]
7027 * Add g_try_malloc(), g_try_new(), g_try_new0() and g_try_renew() [Stefan Kost]
7028 * Add g_utf8_collate_key_for_filename() to sort filenames taking
7029   extensions and numeric suffixes into account.  [Ole Laursen, Alex Larsson]
7030 * Add G_GNUC_NULL_TERMINATED to mark varargs function with 
7031   NULL-terminated argument lists. [Marc Meissner]
7032 * Win32 changes
7033  - Improved debugability [Ulf Lamping, Hans Breuer]
7034  - Make filename handling more robust [Tor, Billy Skaggs]
7035  - Improve g_get_system_data_dirs() [Tor]
7036  - Use more precise timers [Tor]
7037  - Build fixes [Kazuki Iwamoto, Hans, Tor, Robert Ögren]
7038 * Other bug fixes [Roger Leigh, Owen, Matthias, Morten, Kjartan Maraas, 
7039   Pawel Sakowski, Tor, Simon Budig, Ed Avis, Manish, Nicolas Laurent, 
7040   Bastien, Fabrício Barros Cabral, Michael Banck, Daniel Atallah, 
7041   J. Ali Harlow, Tim Janik, Hazael Maldonado Torres, Sven, Jon-Kare Hellan,
7042   Dave Benson, Tommi Komulainen, Benjamin Otte, Brian Cameron, Changwoo Ryu, 
7043   Christian Biere, Noah, Benoît Carpentier]
7044 * Documentation improvements [Vincent Untz, Matthias, Tim-Philipp Müller,
7045   Morten, Matthew, Federico Mena Quintero, Sebastian Bacher, Oliver Sessink, 
7046   Stefan, Jared Lash, Tor, Owen, Daniel Vaillard, Mathieu Lacage]
7047 * New and updated translations (ca,cs,da,el,en_CA,en_GB,es,et,eu,fa,fr,gl,
7048   hu,id,it,lt,mn,ne,nl,pl,pt,pt_BR,ro,rw,sk,sq,sr,sr@Latn,tl,uk,xh,zh_CN)
7049
7050 Overview of Changes from GLib 2.6.0 to GLib 2.6.1
7051 =================================================
7052 * GOption
7053  - Make gtk_init(NULL, NULL) work again [Marcin Krzyzanowski]
7054  - Improve handling of -- [Matthias Clasen]
7055  - Don't show G_OPTION_REMAINING in --help output [Matthew F. Barnes]
7056 * g_find_program_in_path() doesn't return directories [Tommi Komulainen]
7057 * Add gmodule-export-2.0.pc [Matthias]
7058 * Win32 changes
7059  - Improve hangling of UNC paths [Tor Lillqvist]
7060  - g_getenv(), g_setenv(), g_unsetenv(), g_find_program_in_path()
7061    take and return UTF-8 now [Tor] 
7062  - Make g_file_test() work more reliably, and use PATHEXT
7063    when check for executables [Tor]
7064  - Build and cross-compilation fixes [J. Ali Harlow]
7065 * Other bug fixes [Jens Hatlak, Morten Welinder, 
7066   Tor, Kalpesh Shah, Adrian Bunk]
7067 * Documentation improvements [Marcin Krzyzanowski, Tor, Crispin
7068   Flowerday, Mariano Suárez-Alvarez, Christian Biere, Danny Milo,
7069   Vincent Untz, Bastien Nocera]
7070 * New and updated translations (cy,de,nl,ru,sq,sv)
7071
7072 Overview of Changes from GLib 2.4.x to GLib 2.6.0
7073 =================================================
7074
7075 * Major new APIs
7076   - GOption, a commandline option parser
7077   - GKeyFile, a parser/editor for the .ini like files 
7078   - Functions to support the XDG basedir specification
7079   - Wrappers for common POSIX pathname functions to handle filename
7080     encodings consistently. On Windows, these use UTF-8.
7081
7082 * Miscellaneous new functions
7083   - g_filename_display_name() converts filenames in displayable UTF-8 strings
7084   - g_uri_list_extract_uris() splits uri lists
7085   - g_date_get_iso8601_week_of_year() gets ISO 8601 week numbers
7086   - g_log_set_default_handler() installs an alternate default log handler
7087   - g_get_language_names() obtains a list of applicable locale names
7088   - g_strv_length() calculates the length of NULL-terminated string arrays
7089   - g_win32_get_windows_version() determines the Windows version 
7090   - G_GNUC_INTERNAL marks functions as non-exported
7091   - glib_check_version() checks the GLib version at runtime
7092   - g_debug() completes the family of logging functions
7093
7094 * Performance improvements
7095   - Optimize g_utf8_validate()
7096   - Optimize g_markup_parse_context_parse()
7097   - Reduce signal connection complexity from O(n) to O(1) 
7098   - Get rid of many PLT entries for internally used exported symbols
7099   - Reduce code size by removing literal strings from g_return_if_fail()
7100
7101 * Other changes
7102   - On Windows, GLib functions that take file name arguments now require
7103     those to be in UTF-8. Functions that return file names return UTF-8.
7104   - Use higher precision for mathematical constants
7105   - Don't convert to/from UTF-8 in g_filename_to_uri/g_filename_from_uri
7106   - Support ll as printf format modifier for long long on all platforms
7107   - Clean up the ABI and enforce the list of exported symbols
7108   - Add a .pc file for using gmodule in libraries
7109   - Require ngettext
7110
7111 Overview of Changes from GLib 2.5.7 to GLib 2.6.0
7112 =================================================
7113 * GOption: Don't list help options if group-specific
7114   options have been requested [Glynn Foster]
7115 * Make g_get_language_names() track locale changes [Christian Persch]
7116 * Win32 bug fixes [Tor Lillqvist]
7117 * Bug fixes [Philippe Blain, Owen Taylor, Sebastian Wilhelmi]
7118 * New and updated translations (da,es,ja,lt,zh_CN)
7119 Bugs fixed: 159530,100697,160271,160645,157255
7120
7121 Overview of Changes from GLib 2.5.6 to GLib 2.5.7
7122 =================================================
7123 * Optimize g_utf8_validate() [Owen Taylor, Matthias Clasen]
7124 * Optimize g_markup_parse_context_parse() [Havoc Pennington, 
7125   Morten Welinder]
7126 * Reduce signal connection complexity from O(n) to O(1) 
7127   [Sven Neumann]
7128 * Add a .pc file for using gmodule in libraries [Owen]
7129 * Add G_GNUC_MALLOC to mark functions returning newly 
7130   allocated memory  [Matthias]
7131 * Win32 bug fixes [Hans Breuer, Tor Lillqvist, Robert Ögren,
7132   Bruce Hochstetler]
7133 * Bug fixes [Kazuki IWAMOTO, Matthias, Manish Singh, Morten,
7134   Frederic Crozat, Tor]
7135 * Documentation improvements [Matthias, Tor, Owen]
7136 * New and updated translations (cs,da,de,en_CA,en_GB,es,nb,nl,sq,zh_CN)
7137
7138 Overview of Changes from GLib 2.5.5 to GLib 2.5.6
7139 =================================================
7140 * GOption
7141   - Add G_OPTION_FLAG_REVERSE to allow options 
7142     which unset a  boolean variable [Tor Lillqvist]
7143 * GChildWatch
7144   - Use sigaction instead of signal [Jonas Jonnson, 
7145   Archana Shah]
7146   - Make the very first SIGCHLD work [Gustavo Carneiro]
7147 * Bug fixes [Morten Welinder, Tor, David MacLachlan,
7148   Manish Singh, J. Ali Harlow]
7149 * Documentation improvements [Matthias Clasen, Tor]
7150 * Updated translations (da,ja,tr,zh_CN)
7151
7152 Overview of Changes from GLib 2.5.4 to GLib 2.5.5
7153 =================================================
7154 * GKeyFile
7155   - Cleanups, add more error checking [Ray Strode]
7156   - Fall back to the untranslated string when getting 
7157     locale strings [Mark McLoughlin]
7158 * GOption
7159   - Document GOption [Matthias Clasen]
7160   - Better support for rest arguments [Owen Taylor, Matthias]
7161   - Handle conflicts between groups [Matthias]
7162 * Add g_lstat() to the stdio wrappers [Tor Lillqvist]
7163 * Add g_filename_display_name() to convert filenames
7164   in displayable UTF-8 strings  [Alex Larsson, Matthias]
7165 * Win32 bug fixes [Kazuki IWAMOTO, Hans Breuer, Tor]
7166 * Bug fixes [Christophe Fergeau, Morten Welinder, 
7167   Owen, Kjartan Maraas, Mark]
7168 * Documentation improvements [Matthias, Tor]
7169
7170 Overview of Changes from GLib 2.5.3 to GLib 2.5.4
7171 =================================================
7172 Add GKeyFile, a parser/editor for the .ini like files used in various
7173    freedesktop.org specifications. [Ray Strode]
7174 Make the handling of filename encodings consistent across all
7175    GLib functions, introduce wrappers for common POSIX 
7176    functions which accept the same filename encoding. [Tor Lillqvist, 
7177    Owen Taylor]
7178 GOption
7179  - Rename g_context_option_error_quark() to a more language-binding
7180    friendly name [Murray Cumming]
7181  - Accept backslashes in filenames on Win32 [Tor Lillqvist]
7182 * Strip the internal aliasing prefix IA__ from function names in 
7183   assertions [Matthias Clasen]
7184 * Add a function to split uri lists. [Matthias]
7185 * Win32 bug fixes 
7186  - Don't open console windows [Tor]
7187 * Other bug fixes [Philippe Blain, Robert Ögren, Hidetaka Iwai, Matthias,
7188  Morten Welinder, Mats-Ola Persson, Tor, Nickolay V. Shmyrev, Kjartan Maraas,
7189   Anders Carlsson, Tim-Philipp Müller, Lucas Rocha, Andrea Campi, Manish
7190   Singh, Thomas Fitzsimmons, Kazuki IWAMOTO]
7191 * Documentation improvements [Matthias, Linus Walleij, Nickolay, Philippe, 
7192  Adam Hooper, Gustavo Carneiro]
7193 * New and updated translations (cs,en_CA,en_GB,ja,nb,nl,or,sr,sr@Latn,sq)
7194
7195 Overview of Changes from GLib 2.5.2 to GLib 2.5.3
7196 =================================================
7197 * GOption
7198  - set the program name from argv[0] [Masatake YAMATO] 
7199  - make contexts work without a main group [Anders Carlsson]
7200 * Performance 
7201  - Get rid of many PLT entries for internally used exported symbols,
7202    and clean up the ABI at the same time and make make check check the
7203    list of exported symbols.  [Matthias Clasen]
7204 * Add API to get ISO 8601 week numbers [Niklas Lundell]
7205 * Add API to install an alternate default log handler [Darin Adler]
7206 * Add API to obtain a list of applicable locale names [Hidetoshi Tajima]
7207 * Reduce code size bloat by removing literal strings from
7208  the g_return_if_fail() macros [Owen Taylor]
7209 * Add g_strv_length [Tim-Philipp Müller]
7210 * Win32 changes
7211  - Add API to determine the Windows version [Tor Lillqvist]
7212 * Other bug fixes [Stepan Kasal, Anders, Tor, Kazuki Iwamoto,
7213   Manish Singh]
7214 * Documentation improvements [Morten Welinder, Matthias]
7215 * New and updated translations (es,nn,ro)
7216
7217 Overview of Changes from GLib 2.5.1 to GLib 2.5.2
7218 =================================================
7219 * Add G_GNUC_INTERNAL macro [Arjan van de Ven]
7220 * Add GOption, a commandline option parser [Anders Carlsson]
7221 * Add glib_check_version [Michael Natterer]
7222 * Add XDG basedir API [Ray Strode]
7223 * Require ngettext [Danilo Segan]
7224 * Bug fixes [Manish Singh, Ray Strode, Vincent Noel, 
7225   Jon-Kare Hellan, Jody Goldberg]
7226 * Win32 bug fixes [Tor Lillqvist, Hans Breuer, Peter Zelezny]
7227 * Documentation improvements [Matthias Clasen, Vincent Untz, Christian Persch]
7228 * New and updated translations (bs,eu,fi,gu,ne,pa)
7229
7230 Overview of Changes from GLib 2.5.0 to GLib 2.5.1
7231 =================================================
7232
7233 * Bug fixes [Oliver Guntermann, Sven Neumann, James 
7234   Henstridge, Hiroyuki Ikezoe, Matthias Clasen, Robert 
7235   Ögren, Tommi Komulainen]
7236 * Documentation improvements [Soeren Sandmann, 
7237   Christophe Fergeau, Danek Duvall]
7238 * New and updated translations (eu,hi)
7239   
7240 Overview of Changes from GLib 2.4.1 to GLib 2.5.0
7241 =================================================
7242
7243 * New functions g_debug [Sven Herzberg]
7244 * Use higher precision for mathematical constants [Morten 
7245  Welinder]
7246 * Don't convert to/from UTF-8 in g_filename_{to,from}_uri 
7247  [Federico Mena Quintero]
7248 * Win32
7249  - Handle empty digit string in printf() functions 
7250    correctly [Tor Lillqvist]
7251  - Support ll as format modifier for long long [Tor]
7252  - Be more careful about HOME [Tor, Ivan Wong]
7253  - Bug fixes [John Ehresman]
7254 * Miscellaneous bug and portability fixes [Danilo Segan, 
7255  Owen Taylor, Nikolai Weibull, Benoît Carpentier, Morten 
7256  Welinder, Manish Singh, Sven Neumann, Julio M. Merino Vidal,
7257  Kaz Sasayama, Murray Cumming, Federico, Mariano Suarez-Alvarez]
7258 * Documentation updates [Matthias Clasen, Crispin Flowerday,
7259  Tommi Komulainen, Federico Mena Quintero, Ed Griffiths]
7260 * New and updated translations (ja,ne,no,wa)
7261  
7262 Overview of Changes from GLib 2.4.0 to GLib 2.4.1
7263 =================================================
7264
7265 * Win32 bug fixes [Tor Lillqvist, Roger Leigh, John Ehresman]
7266 * Miscellaneous bug and portability fixes [Owen Taylor,
7267   Matthias Clasen, Jonas Jonsson, Christian Krause,
7268   Nickolay V. Shmyrev, Christophe Saout, Philippe Blain,
7269   Piotr Klaban]
7270 * Documentation updates [Matthias]
7271 * New and updated translations (ca,cs,cy,el,en_CA,en_GB,es,eu,fi,
7272   fr,gu,he,id,nl,pt,pl,ru,sr,sr@ije,sr@Latn,sv,uk)
7273
7274 Overview of Changes from GLib 2.3.6 to GLib 2.4.0
7275 =================================================
7276
7277 * Handle invalid-UTF-8 in g_log() properly [Matthias Clasen]
7278 * Win32 bug fixes [Tor Lillqvist, Bruce Hochstetler]
7279 * Miscellaneous bug and portability fixes [Olivier Biot, David L. Cooper II, 
7280   Kjartan Maraas, Frédéric L. W. Meunier, Christof Petig, Manish Singh, 
7281   Sebastian Wilhelmi]
7282 * Documentation updates [Owen]
7283 * Updated translations (hr,ro)
7284
7285 Overview of Changes from GLib 2.3.5 to GLib 2.3.6
7286 =================================================
7287
7288 * GAtomic bug fixes [Sebastian Wilhelmi, Mark McLoughlin]
7289 * GMain threading fixes and improvements [Sebastian]
7290 * Win32 [Tor Lillqvist]
7291  - restore some symbols extraneously exported from gobject to maintain ABI compatibility
7292  - Misc build improvements and fixes [Tor, Cedric Gustin, Hans Breuer]
7293 * Documentation updates [Sebastian, Takeshi AIHANA, Matthias, Sven Herzberg]
7294 * New and updated translations (be,es,fi,ga,pa,sr@ije,zh_CN)
7295
7296 Overview of Changes from GLib 2.3.3 to GLib 2.3.5
7297 =================================================
7298
7299 * Make glib-mkenums parse initializers with macros. [Matthias Clasen, muppet]
7300 * Respect locale era in g_date_set_parse(). [Theppitak Karoonboonyanan] 
7301 * Add atomic operations and use it for the async queue and
7302   gonce implementation. [Sebastian Wilhelmi]
7303 * Documentation improvements [Sebastian, Matthias, Sven Herzberg]
7304 * Add g_main_depth() for finding the recursion depth of the main
7305   loop [Owen Taylor, Tim Janik, Stefan Westerfeld]
7306 * Add g_spawn_close_pid(), needed on win32 [J. Ali]
7307 * Win32 fixes. [Hans Breuer, J. Ali Harlow]
7308 * Misc bugfixes [Sebastian, Matthias, Balazs Scheidler, Owen]
7309 * Updated translations (cy,et,ga,sq)
7310
7311 Overview of Changes from GLib 2.3.2 to GLib 2.3.3
7312 =================================================
7313
7314 * Add a native AIX gmodule implementation. [Laurent Vivier]
7315 * Add g_node_copy_deep().  [James M. Cape, Matthias Clasen]
7316 * Extend GQueue API to match the GList API. [Soeren Sandmann]
7317 * Add g_hash_table_find().  [Tim Janik]
7318 * Add a G_MODULE_BIND_LOCAL flag. [David Schleef]
7319 * Inline g_string_append_c() when possible. [Owen Taylor, Tim]
7320 * Wrap waitpid() as a GSource. [Jonathan R. Blandford]
7321 * Add g_completion_complete_utf8(). [Theppitak Karoonboonyanan, 
7322   Matthias]
7323 * Add g_strsplit_set(). [Soeren]
7324 * Documentation improvements. [Vincent Untz, Sebastian Wilhelmi, 
7325   Soeren, Matthias]
7326 * Win32 build fixes. [Tor Lillqvist]
7327 * Misc bugfixes [Manish Singh, Noah Levitt, Simon Josefsson, 
7328   Morten Welinder, Damien Carbery, Julio M. Merino Vidal, Sebastian, 
7329   Matthias]
7330 * Updated translations (nn,cs,it,ko,sq,ms,az,hr,uk,sr,sr@Latn,sq,ta)
7331
7332 Overview of Changes from GLib 2.3.1 to GLib 2.3.2
7333 =================================================
7334
7335 * Add G_MAXSIZE. [Manish Singh]
7336 * Add g_rand_new_with_seed_array(), g_rand_set_seed_array(),
7337   implementing the init-by-array functionality of the 
7338   original mersenne twister. Add g_rand_copy(). Improve seeding. 
7339   [George Lebl]
7340 * Add a lowercase_name option to glib-mkenums. [Murray Cumming]
7341 * Add g_ptr_array_foreach(). [Matthias Clasen]
7342 * Add g_timer_continue(). [Tim-Philipp Müller]
7343 * Fix a threadsafety issue in mem chunks. [Matthias, Balazs Scheidler]
7344 * Fix g_filename_{to,from}_utf8() on Win32 and improve 
7345   g_file_test() there too [Hans Breuer] 
7346 * Add a boxed type for NULL-terminated string arrays.  [Matthias]
7347 * Add G_DEFINE_TYPE() plus variants to ease the constuction
7348   of GObject boilerplate code.  [Tim Janik]
7349 * Support & in password GECOS field [Matthias, Soeren Boll Overgaard]
7350 * Documentation improvements [Matthias, Manish]
7351 * Win32 build fixes [Hans]
7352 * Misc bug fixes [Damien Carbery, Matthias, Manish, Olivier Poncet, 
7353   Zack Rusin]
7354 * Updated translations (ar,de,fa,ga,mn,nn,no,sq)
7355
7356 Overview of Changes from GLib 2.3.0 to GLib-2.3.1
7357 =================================================
7358
7359 * Add glib/gi18n.h and glib/gi18n-lib.h for common
7360   gettext support, including a Q_() macro for translation
7361   with context [Matthias Clasen]
7362 * Add a more flexible G_FILENAME_ENCODING variable
7363   as a replacement for G_BROKEN_FILENAMES [Matthias]
7364 * Fix the return value g_main_context_iterate() for
7365   newly ready sources [Padraig O'Briain]
7366 * Handle Hangul composition for normalization [Noah Levitt]
7367 * Add G_{MIN,MAX,MAXU}INT{8,16,32}. [Mark Jones, Matthias]
7368 * Add G_GSIZE_FORMAT/G_SSIZE_FORMAT [Manish Singh]
7369 * Add G_STRFUNC as a portable wrapper for __func__ [Tim Janik]
7370 * Documentation improvements [Matthias]
7371 * GObject [Tim Janik]
7372  - Support '-' in g_signal_connect()/disconnect() names
7373    like 'swapped-signal'.
7374  - Add g_type_class_peek_static() and use to optimize
7375    g_object_new() for static types [Tim]
7376  - Allow setting construct-only properties from within
7377    init() implementations
7378  - Enforce readability/writeability in g_object_set/get()
7379 * Fix bug with g_ascii_strtod and multi-byte separator.
7380   [Behdad Esfahbod, Roozbeh Pournader]  
7381 * Misc bug fixes [Matthias, John Ehresman, Andrew Lanoix,
7382   Tor Lillqvist, Mark McLoughlin, Tim-Philipp Müller, Manish, 
7383   Morten Welinder]
7384 * Updated translations (ca,cs,da,es,fr,ja,nn,no,pt,ru)
7385
7386 Overview of Changes from GLib 2.2.x to GLib-2.3.0
7387 =================================================
7388
7389 * Replace Trio printf by gnulib vasnprintf [Matthias Clasen]
7390 * Update Unicode data to Unicode 4.0 [Noah Levitt]
7391 * Support XML-safe formatted output with 
7392   g_markup_[v]printf_escaped [Owen Taylor]
7393 * Add g_file_read_link to read symbolic links [Matthias]
7394 * Add g_unichar_get_mirror_char to obtain the 
7395   mirrored variant of a character [Noah]
7396 * Support for one-time initialization functions. 
7397   [Sebastian Wilhelmi]
7398 * Miscellaneous API additions: g_vasprintf
7399   g_string_chunk_insert_len, g_setenv, g_unsetenv [Matthias]
7400 * Docs improvements [Matthias]
7401 * Add support instance-private data on classed types
7402   [Mark McLoughlin, Tim Janik, Owen]
7403 * Optimize signal emissions [Soeren Sandmann, Tim]
7404 * Support a "default vtable" per interface [Tim]
7405 * Add support for properties on interfaces [Owen, Tim]
7406 * Miscellaneous API additions: g_value_take_string(),
7407   g_value_take_param(), g_value_take_object(), 
7408   g_value_take_boxed(). [Matthias]
7409 * Win32 build fixes [Tor Lillqvist]
7410
7411 Overview of Changes from GLib 2.1.5 to GLib-2.2.0
7412 =================================================
7413
7414 * Fix a problem with g_thread_init() on 64-bit problems
7415   [Alceste Scalas, Sebastian Wilhelmi]
7416 * Add assembly implementations of byteswap macros
7417   for ia64 and x86_64. [Manish Singh]
7418 * IOChannel fixes for Win32 [Tor Lillqvist, Thorsten Maerz]
7419 * Updated translations (bg,ca,es,da,fi,lv,ru,sk)
7420
7421 Overview of Changes from GLib 2.1.4 to GLib-2.1.5
7422 =================================================
7423
7424 * Win32 bug fixes [Tor Lillqvist]
7425 * Various post-rewrite fixes for glib-gettext.m4 [Owen Taylor,
7426   Jody Goldberg, Kjartan Maraas, Johannes Stezenbach]
7427 * Ensure we have a GUINT64_FORMAT by pulling in Trio
7428   if necessary [Manish Singh]
7429 * Further Trio build fixes [Matthias Clasen, Owen]
7430 * Hack around gcc, libtool issues with -pthread [Owen]
7431 * Docs improvements [Matthias]
7432 * Bug and portability fixes 
7433 * Updated and new translations (bg,de,fi,fr,sq,fr)
7434
7435 Other contributors: Kai Poitschke, Morten Welinder
7436
7437 Overview of Changes from GLib 2.1.3 to GLib-2.1.4
7438 =================================================
7439
7440 * autoconf changes to make it possible to cross compile
7441   GLib. [Owen Taylor, Dan Kegel, Amy Lin, Dimi Shahbaz, 
7442   Johannes Stezenbach]
7443 * Use libintl when it has bind_textdomain_codeset() and
7444   GLib doesn't. [Owen]
7445 * Improve generation of pseudo-random integers [Morten Welinder, 
7446   Sebastian Wilhelmi]
7447 * Avoid literal UTF-8 in favor of octal escapes [Owen, Tomas Ogren]
7448 * Cleanup include order [Sven Neumann]
7449 * autoconf cleanups and bug fixes [Daniel, Matthias Clasen, Owen]
7450 * Doc fixes and additions [Matthias]
7451
7452 Other contributors: James M. Cape, Frederic Crozat, Martin Gansser,
7453   Phuc LeHong, Manish Singh, Joshua Weage, Morten Welinder
7454
7455 Overview of Changes from GLib 2.0.x to GLib-2.1.x
7456 =================================================
7457
7458 * Add copy of the Trio library to build and use for printf() when 
7459   system printf isn't good enough. Add g_printf()/etc. [Matthias Clasen]
7460 * Add g_str_has_suffix()/g_str_has_prefix() [Alex Larsson]
7461 * Add g_markup_parse_context_get_element() [Matthias]
7462 * Add g_utf8_strreverse [Matthias]
7463 * Add g_ascii_strtoull() [Tim Janik]
7464 * Support scanning of 64-bit values with GScanner [Tim]
7465 * Add g_set/get_application_name() [Havoc Pennington]
7466 * Add G_LIKELY()/G_UNLIKELY() macros for hinting branch probabilities. 
7467   Use for g_return_if_fail(). [Matthias Clasen]
7468 * Add G_GNUC_DEPRECATED macro [Tom Tromey]
7469 * Improve the seeding algorithm of GRandom to avoid problems
7470   with certain pathological seeds. Support G_RANDOM_VERSION=2.0
7471   environment variable. [Sebastian Wilhelmi]
7472 * Improve thread configure checks, use -pthread where applicable
7473   [Sebastian]
7474 * Improve handlng of thread priorities [Sebastian]
7475 * Fix up parameter names that might shadow functions from
7476   system headers [Soeren Sandmann]
7477 * Clean up usage of deprecated functions [Manish Singh]
7478 * Docs fixes and improvements. In particular, include "Since" information.
7479   [Matthias, Soeren, Martin Schulze, Daryll Strauss, Bill Janssen, 
7480   Owen Taylor, Morten Welinder]. 
7481
7482 Overview of Changes in GLib 2.0.7
7483 =================================
7484
7485 * Fix C++ warnings in gtype.h [Dom Lachowicz]
7486 * Fix g_type_fundamental_next() [Tim Janik]
7487 * Fix various missing includes of config.h [Morten Welinder]
7488 * Handle main loop initialization before g_thread_init [Sebastian Wilhelmi]
7489 * Various 64-bit fixes [Manish Singh]
7490 * Fix GPoll on Win32 [Tor Lillqvist, Herman Bloggs]
7491 * Fix bug with buffering on UTF-8 IOChannels [Daniel Elstner]
7492 * Misc bug and build fixes [Soren Andersen, Gustavo Carneiro, Tor,
7493      Tim, Havoc Pennington,  Matthias Clasen, Sebastian Rittau,
7494      Masahiro Sakai, Arvind Samptur, HideToshi Tajima, Owen Taylor]
7495 * Updated and new translations (be,cs,de,*fa,it,lv,pt_BR,tr)
7496
7497 Overview of Changes in GLib 2.0.6
7498 =================================
7499
7500 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
7501 * Clean up debug spew from GObject [Anders Carlsson]
7502 * Compiler warning fixes [David L. Cooper II]
7503 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
7504 * Fixes for --disable-debug [Sebastian Wilhelmi]
7505 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
7506   Rajkumar Sivasamy, Laurent Vivier]
7507 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
7508   Sebastian Rittau, Linus Welleij]
7509 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
7510 * Updated translations (bg,ko,vi)
7511
7512 Overview of Changes in GLib 2.0.5
7513 =================================
7514
7515 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
7516 * Clean up debug spew from GObject [Anders Carlsson]
7517 * Compiler warning fixes [David L. Cooper II]
7518 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
7519 * Fixes for --disable-debug [Sebastian Wilhelmi]
7520 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
7521   Rajkumar Sivasamy, Laurent Vivier]
7522 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
7523   Sebastian Rittau, Linus Welleij]
7524 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
7525 * Updated translations (bg,ko,vi)
7526
7527 Overview of Changes in GLib 2.0.4
7528 =================================
7529
7530 * Fix some 64-bit problems. (George Lebl, David L. Cooper II)
7531 * Add note about Tru64 iconv to INSTALL. (Manuel Op de Coul)
7532 * Fix problem with timouts > MAXINT. (Tim Janik, Owen Taylor)
7533 * Updated translations (ca,es,fr,ja,gl,ms,nl,pl,pt,ru)
7534
7535 Overview of Changes in GLib 2.0.3
7536 =================================
7537
7538 * Handle sorting 0-length arrays (Ron Arts)
7539 * Threading fixes (Sebastian Wilhelmi)
7540 * Portability fixes (Miroslaw Dobrzanski-Neumann, Jacob Berkman, Gareth Pierce, 
7541   Sebastian, Qingjiang Yuan)
7542 * Various fixes for glib-2.0.m4. (Jim Gettys, others.)
7543 * Locate right glib-genmarshal when cross-compiling. (Mitch Natterer)
7544 * Win32 fixes (Tor Lillqvist)
7545 * Try to fix g_get_charset() related segfaults. (Owen)
7546 * Fixes for gettext detection. (Dan Winship, HideToshi Tajima, Boyd Lynn Gerber,
7547   Andrew P. Lentvorski, Jr.)
7548 * Fix g_scanner_unexp_token() (Tim Janik, Sven Neumann)
7549 * g_markup fixes. (Matthias Clasen.)
7550 * Bug fixes and cleanups (Daniel Elstner, Matthias, Laszlo Peter, Morten Welinder,
7551   Wayne Schuller)
7552
7553 Overview of Changes in GLib 2.0.1
7554 =================================
7555
7556 * Portability fixes for Sun's Forte compiler [Erwann Chenede]
7557 * Performance improvements for GObject parameter lookup, 
7558   g_filename_to/from_utf8() [Alex Larsson]
7559 * Actually check interface prerequisites [Matthias Clasen,
7560   Miroslaw Dobrzanski-Neumann]
7561 * Fix problem with glib-mkenums taking huge amounts of stack. [Owen Taylor]
7562 * Fix g_signal_handlers_disconnect_by_func() for C++ [Damien Sandras]
7563 * Fixes for g_log() and threading.
7564   [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, Tim Janik]
7565 * Make g_print(), g_printerr(), g_warning(), etc, convert from
7566   UTF-8 to the encoding of the locale [Sebastian Wilhelmi, Tim]
7567 * Fixes for GIOChannel on windows. [Tor Lillqvist]
7568 * Fix gsize/gint mismatches in giochannel.c [Miroslaw Dobrzanski-Neumann]
7569 * Fix file descriptor leak in g_file_get_contents() [Matthias]
7570 * Workaround iconv() problems on older Solaris [Lauri Alanko]
7571 * Fix warnings with gcc-3.1 about asm const [Cody Russel]
7572 * Minor bug fixes.
7573
7574 Other contributors: Hans Breuer, LEE Sau Dan, Sven Neumann, Salmaso Raffaele,
7575   Akira Tagoh, Morten Welinder
7576
7577
7578 Overview of Changes in GLib 2.0.0
7579 =================================
7580
7581 * Thread portability fixes [Sebastian Wilhelmi]
7582 * Documentation updates [Owen Taylor]
7583 * Make g_strerror(), g_strsignal() properly return UTF-8,
7584   call bind_text_domain_codeset() so that error strings
7585   are in UTF-8 as well. [Owen, Tor Lillqvist]
7586
7587 Overview of Changes in GLib 2.0.0 rc1:
7588 ======================================
7589
7590 * Win32 fixes [Tor Lillqvist]
7591 * Portability fixes [Finlay Dobbie, Miroslaw Dobrzanski-Neumann]
7592 * Fix up g_date_strftime [Daniel Elstner]
7593 * Add some structure padding [Tim Janik]
7594 * Make g_get_homedir() prefer the users home directory to $HOME
7595
7596 Other contributors: Matthias Clasen, Paolo Maggi, Christian Rose
7597
7598 Overview of Changes in GLib 1.3.15:
7599 ===================================
7600
7601 * Speed up marshalers by using private access to GValue 
7602   [Anders Carlsson, Tim Janik]
7603 * Reduce GValue to 2 elements [Tim]
7604 * Add G_DEBUG environment variable, G_DEBUG=fatal_warnings [Matthias Clasen]
7605 * Fixes for AIX compilation [Miroslaw Dobrzanski-Neumann]
7606 * Add padding to various structures [Owen Taylor, Tim]
7607 * Win32 fixes [Tor Lillqvist]
7608
7609 Other contributors: James Henstridge, Ryan Lovett, Morten Welinder,
7610   Daniel Elstner
7611
7612 Overview of Changes in GLib 1.3.14:
7613 ===================================
7614
7615 * Register value transformations for gint64, guint64 [Andy Wingo]
7616 * Build with large-file support [Sven Neumann, Owen Taylor]
7617 * Fix handling of hostnames in URI's [Darin Adler]
7618 * Main loop bug fixes [Havoc Pennington, Owen]
7619 * Doc fixes and improvements [Manish Singh, Tim Janik]
7620 * Support ' as attribute delimiters in GMarkup [Matthias Clasen]
7621 * Win32 fixes [Hans Breuer, Tor Lillqvist]
7622 * Threading bug and build fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann]
7623 * Miscellaneous bug fixes
7624
7625 Other contributors: Matthias Clasen, James Henstridge, Mitch Natterer, 
7626   Morten Welinder.
7627
7628 Overview of Changes in GLib 1.3.13:
7629 ===================================
7630
7631 * Fix g_filename_to/from_uri for Win32 [Tor Lillqvist, Darin Adler]
7632 * Miscellaneous win32 fixes [Tor, Hans Breuer]
7633 * Fix thread options for gcc on AIX [Jerome Zago, Sebastian Wilhelmi]
7634 * Documentation improvements [Ron Steinke, Matthias, Sebastian]
7635 * Cache iconv converters as used by g_convert() [Jeffrey Stedfast]
7636 * Bug fixes [Sven Neumann, Owen Taylor, Matthias Clasen, Jeffrey,
7637   Laszlo Peter, Havoc Pennington, Tim Janik]
7638
7639 Overview of Changes in GLib 1.3.12:
7640 ===================================
7641
7642 * Implement closure chaining, fixing up API (Tim Janik)
7643 * Closure chaining test case (James Henstridge)
7644 * Make GType long not int where both are equal width (Tim)
7645 * Win32 fixes and improvements (Hans Breuer, Tor Lillqvist)
7646 * Fixes for NetBSD. (Dan Winship)
7647 * Use snprintf() for g_printf_string_upper_bound() where possible. (Matthias Clasen)
7648 * Save space for GBSearchArray (Tim Janik)
7649 * Documentation improvements. (Matthias, Sven Neumann, Havoc Pennington)
7650
7651 Other contributors: Darin Adler, Chris Blizzard, Anders Carlson, Daniel Elstner, Michael Meeks, 
7652   Mark McLoughlin, Dave Neary, Manish Singh, Owen Taylor, HideToshi Tajima, 
7653   Sebastian Wilhelmi.
7654
7655
7656 Overview of Changes in GLib 1.3.11:
7657 ===================================
7658
7659 * Win32 fixes [Hans Breuer, Tor Lillqvist]
7660 * Documentation improvements [Matthias Clasen]
7661 * Portable directory handling API [Hans]
7662 * Threading fixes [Sebastian Wilhelmi, Havoc Pennington]
7663 * Fix excess relocations in Unicode tables [Andrew Taylor]
7664 * Fix gpattern for UTF-8 [Matthias Clasen]
7665 * Support overriding class closures [Tim Janik]
7666 * Support for derivation from G_TYPE_POINTER [Owen Taylor]
7667 * Hide pointers to type information inside GType to reduce locking
7668   [Alex Larsson, Tim]
7669 * Adds check for direct inclusion of gobject/*.h [Owen]
7670 * GObject API cleanups [Tim]
7671
7672 Other contributors: Darin Adler, Jacob Berkman, Daniel Egger, Eric Lemings, 
7673   Michael Meeks, Mark McLoughlin, Arkadiusz Miskiewicz, Dan Winship
7674
7675
7676 Overview of Changes in GLib 1.3.10:
7677 ===================================
7678
7679 * Many Win32 fixes and improvements [Tor Lillqvist]
7680 * Documentation improvements [Matthias Clasen]
7681 * g_string_printfa() renamed to g_string_append_printf()
7682 * Use libcharset from libiconv to implement charset detection
7683   more portably. [Owen Taylor, Hidetoshi Tajima]
7684 * Add 64 bit type support to GObject [Joshua Pritikin, Mathieu Lacage, Owen]
7685 * Make support for 64 bit integers a requirement [Joshua]
7686 * GPattern improvements [Tim Janik, Matthias]
7687 * Locale independent g_ascii_strtod / g_ascii_dtostr [Alex Larsson]
7688 * Many bug fixes and minor tweaks.
7689
7690 Other Contributors: Darin Adler, Jakub Jelinek, James Antill, Andrew Taylor,
7691   Ben Gertzfield, Elliot Lee, Manish Singh, Abel Cheung, Laszlo Peter,
7692   Sven Neumann, George Lebl, Raja Harinath, Sebastian Wilhelmi,
7693   Jacob Berkman
7694
7695
7696 Overview of Changes in GLib 1.3.9:
7697 ==================================
7698
7699 * Fixes for comparison of threads [Sebastian Wilhelmi]
7700 * Use vasprintf() when possible for g_strdup_printf [Matthias Clasen]
7701 * Win32 fixes [Tor Lillqvist, Hans Breuer]
7702 * Add a len argument to g_ascii_strup/strdown
7703 * Bug, portability fixes, cleanups.
7704
7705 Other Contributors: Darin Adler, Katsuhiro Okuno, Joshua N. Pritikin
7706
7707
7708 Overview of Changes in GLib 1.3.8:
7709 ==================================
7710
7711 * Documentation updates [Owen]
7712 * Made GType interfaces overridable in derived types
7713 * Many win32 fixes [Tor Lillqvist]
7714 * Miscellaneous cleanups and fixes
7715
7716 Other contributors:
7717   Darin Adler, Matthias Clasen, Ron Steinke, Hans Breuer, Alex Larsson
7718
7719
7720 Overview of Changes in GLib 1.3.7:
7721 ==================================
7722
7723 * Integrate GClosure support into the main loop [Owen Taylor]
7724 * More GSignal convenience functions (macros) [Sven Neumann, Tim Janik]
7725 * Introduced weak references for GObject [James Henstridge, Sven, Tim] 
7726 * Minor hash table optimizations
7727 * Main loop and threading improvements [Sebastian Wilhelmi]
7728 * Added g_ascii_* functions to be used for locale insensitive UTF-8
7729   compliant code instead of old string functions  [Darin Adler, Alex Larsson]
7730 * Add functions for Unicode case-conversion, normalization, and 
7731   collation [Owen]* GString improvements [Owen]
7732 * Reworked the GIOChannel code [Hidetoshi Tajima, Ron Steinke]
7733 * Removed glib-config-2.0 in favour of pkgconfig [Sebastian]
7734 * Make code 64bit clean [Mark Murnane]
7735 * More G_CONST_RETURN fixes
7736 * Many improvements to the win32 code [Tor Lillqvist, Hans Breuer]
7737 * Miscellaneous bug and API fixes
7738
7739 Other contributors:
7740   Michael Natterer, Christopher James Lahey, Padraig O'Briain,
7741   Matthias Clasen, Josh Pritikin, Steve Baker, Cesar Rincon, Garry R. Osgood,
7742   Michael Meeks, Laszlo Peter,  Martin Baulig, Kjartan Maraas, Andrew Lanoix,
7743   Peter Williams
7744
7745
7746 Overview of Changes in GLib 1.3.6:
7747 ==================================
7748
7749 * Threads have a "return value" from g_thread_join
7750 * Removed ability to adjust thread stack size
7751 * Prefix warnings with progname/PID by default, change toggle for this to 
7752   be an env variable G_MESSAGES_PREFIXED not a compile-time option
7753 * GMarkup speedups
7754 * GDate const, convenience fixups
7755 * Include test cases that headers are compilable by C++ compiler
7756 * Add ability to spawn processes with argv[0] != executable path.
7757 * g_strstr_len, g_strrstr, g_strrstr_len
7758 * Add length argument to g_utf8_strchr and g_utf8_strrchr.
7759 * Misc bug fixes
7760
7761
7762 Overview of Changes in GLib 1.3.5:
7763 ==================================
7764
7765 * Added an installed glib-mkenums Perl program for parsing enumeration
7766   declarations from header files.
7767 * Mark some additional deprecated functions.
7768 * Bug and Portability fixes
7769
7770
7771 Overview of Changes in GLib 1.3.4:
7772 ==================================
7773
7774 * Efficiency improvements for GThreadPool
7775 * A few bug fixes
7776 * Build fixes
7777 * Documentation improvements
7778
7779
7780 Overview of Changes in GLib 1.3.3:
7781 ==================================
7782
7783 GLib:
7784
7785 * More user_data support in various functions.
7786 * Main loop API revamps to support per-thread main loops.
7787 * Unicode handling improvements.
7788 * Implemented debugging traps.
7789 * G_CONST_RETURN specification all over the place.
7790 * Various new small utility functions.
7791 * Random number generator precision improvements.
7792 * New configure option --disable-mem-pools.
7793 * Many Win32 improvements.
7794 * Added g_try_malloc() friends varinats.
7795 * Many documentation improvements.
7796 * Many threading improvements, support for dynamic allocation
7797   of static mutexes.
7798 * GHookLIst API cleanups.
7799 * Improved format support of GDate parser.
7800 * String function speed improvements with new g_stpcpy().
7801 * Hashtable API additions.
7802 * New GPatternSpec for shell-style pattern matching (from GtkPatternSpec).
7803 * Optimizations, cleanups, bug fixes.
7804
7805 GObject:
7806
7807 * Added many convenience functions.
7808 * GClosure and GParamSpec use float/sink ref-counting scheme now.
7809 * Reworked property change notification.
7810 * Binary searchable array cleanups, so it's widely usable now.
7811 * Added static content keeping for some GValue types.
7812 * Support for statically scoped signal parameters.
7813 * Extinguished property trailer args in set/get interface.
7814 * Added support for abstract types.
7815 * G_CONST_RETURN specification all over the place.
7816 * Split parameter exchange functionality into value transforms
7817   and parameter conversions.
7818 * Added signal emission hooks and signal accumulators.
7819 * Added interface prerequisites to support is_a (interface, object)
7820   relations.
7821 * Implemented GValueArray.
7822 * New types, boxed: G_TYPE_VALUE, G_TYPE_CLOSURE, G_TYPE_GSTRING
7823   GParamSpecs: G_TYPE_PARAM_PARAM, G_TYPE_PARAM_POINTER, G_TYPE_PARAM_CLOSURE,
7824   G_TYPE_VALUE_ARRAY, G_TYPE_PARAM_UNICHAR, G_TYPE_PARAM_VALUE_ARRAY.
7825 * Varrags value collection improvements.
7826 * Implemented debugging traps.
7827 * Made things thread-safe.
7828 * Many documentation improvements.
7829 * Many cleanups, optimizations and bug fixes.
7830
7831
7832 Overview of Changes in GLib 1.3.2:
7833 ==================================
7834
7835 GLib:
7836
7837 * Win32 build improvements  [Tor]
7838 * Improvements to error reporting  
7839   (g_critical(), g_return_if_reached()) [Darin]
7840 * Add g_strlcpy/g_strlcat  [David Wheeler]
7841 * New IO channel implementation for Win32  [Tor] 
7842 * Make g_array_free, g_string_free return pointer to memory requested
7843   not to be freed.  [Darin]
7844 * Added GError based error reporting for thread functions.  [Sebastian]
7845 * Moved reference docs into GLib distribution. [Owen]
7846 * Added g_convert() for doing convenient character set conversions based
7847   on iconv. (GLib now requires libiconv or a native iconv.) [Havoc/Owen]
7848 * Various Unicode handling additions (g_ucs4_to_utf8, g_utf8_validate(),
7849   g_{locale,filename}_{to,from}_utf8)  [Robert/Havoc/Owen]
7850 * Portability fixes for threading.  [Sebastian]
7851 * Added convenient functions for launching new processes (g_spawn_*),
7852   and shell quoting/unquoting functions.  [Havoc]
7853 * Split glib.h into many headers.  [Sebastian]
7854 * Added a simple callback-based parser for XML-like files (GMarkup).  [Havoc]
7855 * Fixed confusions between comparison functions that return <0, 0, >0
7856   and equaility functions that return FALSE,TRUE.  [Sebastian]
7857 * Added safe/portable temporary file manipulation functions.  [Tor]
7858 * autoconf improvements.  [Raja]
7859 * Many documentation improvements.
7860 * Bug fixes.
7861
7862 GObject:
7863
7864 * Added boxed and pointer types.  [Tim/Jonathan]
7865 * Added callback abstraction (GClosure)  [Tim]
7866 * Added signal system (GSignal)  [Tim]
7867 * Make GTypePlugin an interface  [Tim]
7868 * Added GTypeModule - a simple GTypePlugin instantiation  [Owen]
7869 * Bug fixes.
7870
7871
7872 What's new in GLib 1.3.1:
7873 =========================
7874
7875 * New GObject library added including object system based on
7876   the GTK+ object system. 
7877 * Functions for getting the properties of Unicode characters, 
7878   computing the canonical decomposition and ordering combining
7879   characters aand manipulating UTF-8 string manipulation based
7880   on libunicode.
7881 * GString now properly handles embedded nuls.
7882 * Multiple fixes from the 1.2.x branch.
7883 * Upgrade to libtool 1.3.3
7884 * Full thread support (thread creation and destruction).
7885 * BeOS port, BeOS dynamic modules.
7886 * Many improvements to the Windows ports.
7887 * Improvements to the OS/2 port, OS/2 module support.
7888 * Double ended queue implementation.
7889 * GLib macros for printf() formatting, e.g. G_GULONG_FORMAT = "lu"
7890 * New configure option --enable-msg-prefix to prefix messages, warnings
7891   et ceteri with the program name and the process id.
7892 * New thread-safe random number generator Mersenne Twister.
7893 * g_strcompress() added, g_strescape() had a slight API change, and
7894   more tightly defined semantics.
7895 * the g_string(x) macro has been removed, #x may be used instead.
7896                                 
7897