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