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