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