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