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