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