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