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