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