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