Imported Upstream version 2.59.3
[platform/upstream/glib.git] / NEWS
1 Overview of changes in GLib 2.59.3
2 ==================================
3
4 * Fix support for g_get_user_special_dir() on macOS, including support for the Downloads directory (#1048)
5
6 * Ensure that cancelling a GTask cannot cause its callback to be called synchronously (in the same call chain as the original *_async() call) (#1608)
7
8 * Further fixes to the Happy Eyeballs (RFC 8305) implementation (#1644, #1680)
9
10 * Various fixes for installation of installed tests (thanks to Iain Lane) (!649, !651)
11
12 * Various fixes for tests when run on Windows (thanks to LRN) (!665, !667)
13
14 * Bugs fixed:
15  - #535 gmacros: Try to use the standard __func__ first in G_STRFUNC
16  - #875 gio-gvfs on Windows: Don't mishandle other non-native URIs in gwinhttpvfs.c
17  - #1048 "Desktop" shortcut appears twice in file chooser sidebar on OSX
18  - #1608 Cancellation might not be asynchronous under certain circumstances
19  - #1644 network-address test failure in CI: IPv6 Broken (g-io-error-quark, 24)
20  - #1680 Regression: g_socket_client_connect_to_host_async() sometimes gets "Connection refused" when connecting to localhost
21  - #1686 gdbus-peer test is sometimes timing out
22  - !613 Use win32 io channel on windows for the protocol test
23  - !634 Win32: gio/gsocket.c: Set WSAEWOULDBLOCK on G_POLLABLE_RETURN_WOULD_BLOCK
24  - !638 gvariant-parser: Fix parsing of G_MININT* values in GVariant text format
25  - !640 tests: Tag socket-service test as ‘flaky’
26  - !641 Minor typo fixes to GSpawn documentation
27  - !645 gsocketlistener: Fix multiple returns of GTask when accepting sockets
28  - !647 gsocketclient: Ensure task is always returned on cancel
29  - !648 gio/tests/task: Run the worker indefinitely until it's cancelled
30  - !649 gio tests: Install test1.overlay file when building installed tests
31  - !650 gstring: fully document semantics of @len for g_string_insert_len
32  - !651 tests: Install the slow-connect-preload.so library and use it
33  - !667 GSubprocess fixes for W32 test suite
34  - !668 tests: Mark gdbus-peer test as flaky
35  - !669 GWin32VolumeMonitor: Sort the volumes correctly
36  - !670 gpollableoutputstream: Fix the description of the interface
37  - !672 Fix some tests when running as root
38
39 * Translation updates:
40  - Catalan
41  - Danish
42  - French
43  - Indonesian
44  - Kazakh
45  - Portuguese (Brazil)
46  - Slovenian
47  - Turkish
48
49
50 Overview of changes in GLib 2.59.2
51 ==================================
52
53 * Fix check on GDBusMessage size when reading it. (#1642)
54
55 * Add async GIO API: g_file_query_default_handler_async(), g_app_info_launch_uris_async() (#1249, #1347)
56
57 * Fix some bugs in the Happy Eyeballs implementation. (#1646, #1649)
58
59 * Install a new generated header with enum types for Unicode enums. (!481)
60
61 * Support the XDG trash portal. (!276)
62
63 * Bugs fixed:
64  - #1224 TSAN patches
65  - #1249 xdg-open/gnome-open doesn't work if service isn't started
66  - #1347 g_app_info_launch_default_for_uri_async  is not really async
67  - #1376 gmarkup: Optimize g_markup_escape_text()
68  - #1642 minor mismatch between error and code in g_dbus_message_bytes_needed
69  - #1646 Criticals in g_socket_client_enumerator_callback()
70  - #1649 Critical in g_socket_client_connected_callback
71  - #1673 G_MININT constants broken in g-i
72  - !276 Support the trash portal
73  - !481 Define enum types for Unicode enums
74  - !585 gio: do not pass O_PATH file descriptors to portal APIs
75  - !593 Don't fail trash test if ~/.local doesn't exist or mount points can't be determined (master)
76  - !609 Make `g_app_info_launch_uris_async()` really asynchronous
77  - !619 gvariant: Fix a mistake in docs
78  - !622 Fixing warnings
79  - !626 gdbus: Avoid printing null strings
80  - !627 gsocketclient: Fix criticals
81  - !629 Various memory leak cleanups to GSettings tests (subset)
82  - !630 docs: Ignore more version macros
83
84 * Translation updates:
85  - Galician
86  - Hungarian
87  - Lithuanian
88  - Polish
89  - Spanish
90
91
92 Overview of changes in GLib 2.59.1
93 ==================================
94
95 * Autotools support is gone. (!580)
96
97 * g_format_size() now uses a no-break space to separate digits and units;
98   translations will need to be updated accordingly. (#1625)
99
100 * New g_queue_clear_full() API. (#1464)
101
102 * Fix argument quoting on win32 when spawning subprocesses. (!419)
103
104 * Allow polling more than 64 handles on win32 using g_poll(). (#1071)
105
106 * Tag various tests as ‘flaky’. These are no longer run routinely on our
107   upstream CI machines, and downstream packagers may want to not run them (or
108   not treat those test failures as package build failures) on their test
109   machines either. They are in the `flaky` test suite. (!579)
110
111 * Add overlay support to g_resources_get_info(). (#1445)
112
113 * Support defaults and locks in the keyfile GSettings backend. This will be
114   used for flatpaks. (!450)
115
116 * Accept unquoted strings in the keyfile GSettings backend to simplify things
117   for sysadmins. (!603)
118
119 * Update our contribution guidelines (`CONTRIBUTING.md`). (!590)
120
121 * Add writev() and writev_all() APIs to GOutputStream and GPollableOutputStream,
122   and provide implementations of them for many subclasses. (#1431)
123
124 * Bugs fixed:
125  - #424 Add 'proxy' debugging support
126  - #1055 Provide alignment macros
127  - #1071 Eliminate MAXIMUM_WAIT_OBJECTS limitation in g_poll() on Windows
128  - #1445 g_resources_get_info doesn't respect resource overlays
129  - #1464 Add g_queue_clear_full() API
130  - #1500 GListStore needs double checking on some warnings
131  - #1623 xdg-open: file with colon results in “The specified location is not supported”
132  - #1625 Unbreakable space needed when showing size of folder/file
133  - #1636 GTask getters don’t return TRUE/FALSE after bitfield changes
134  - #1637 EXCEPTION_ACCESS_VIOLATION in g_clear_pointer
135  - #1639 GListStore implementation of g_list_model_get_item() returns wrong results on integer overflow
136  - #1655 gvariant-parser warnings
137  - #1663 G_MININT32 triggers compiler warning C4146 with Visual C++
138  - #1666 `G_DEFINE_DYNAMIC_TYPE_EXTENDED` causes warnings with -Wcast-function-type
139  - !319 giomodule: Print the type of each default GIO module
140  - !333 Add writev() API to GOutputStream and GPollableOutputStream
141  - !419 gspawn, win32: qouted args - escape end backslash
142  - !450 Settings portal
143  - !512 gtype: Clarify type of GInterfaceInitFunc
144  - !516 gthread: Add g_private_set_alloc0() convenience API
145  - !535 win32 gpoll: overcome the 64 handles limit
146  - !545 goption: Fix an annotation on g_option_context_parse_strv()
147  - !560 docs: Fix dconf GSETTINGS_BACKEND name in gio overview
148  - !564 gtype: Document type for iface_default_init() function
149  - !568 Add separate definitions of g_assert_[non]null() for C++
150  - !571 docs: Add note on how to check a gboolean condition
151  - !575 gio: Update bad cert error in accept-certificate and GTlsError docs
152  - !579 Temporarily disable flaky tests
153  - !580 Drop autotools support
154  - !583 gmacros: MSVC supports the noreturn function attribute
155  - !587 Remove unused .pc.in files
156  - !588 MSVC: Move dirent implementation to glib/dirent/
157  - !590 Update contribution documentation
158  - !591 gfileinfo: Fix annotation for g_file_info_set_attribute_stringv
159  - !592 Remove leftover build/ directory
160  - !595 gtestutils: pass open file descriptors to subprocess
161  - !597 tests: Tag gsocketclient-slow test as ‘flaky’
162  - !598 gdbus-proxy test fails with GLib-GIO:ERROR:glib/gio/tests/gdbus-proxy.c:832:fail_test: code should not be reached
163  - !599 gdtlsconnection: do not return on a void method
164  - !601 gio: Support "help" in extension point env vars
165  - !602 Update POTFILES.in
166  - !603 keyfile settings: Accept unquoted strings
167  - !608 build: Add -Wno-pedantic flag to compiler arguments
168  - !611 gnetworkaddress: fix use-after-free for network address
169  - !612 gdir: shutup a warning when building with msvc
170  - !615 Fix a couple of wrong compiler warnings
171
172 * Translation updates:
173  - Spanish
174  - Swedish
175
176
177 Overview of changes in GLib 2.59.0
178 ==================================
179
180 * This will be the last development release with autotools support. As our
181   Meson support has been around since 2.56.x, and was used to release tarballs
182   in 2.58.x, the next development release (2.59.1) will drop autotools as used
183   to build GLib. The macros installed for other packages to use will remain.
184
185 * Add `G_TEST_OPTION_ISOLATE_DIRS` to redirect `XDG_*_HOME` to a temporary
186   directory for each unit test. (#538)
187
188 * Support `Property.EmitsChangedSignal` annotations in `gdbus-codegen`. (#542)
189
190 * Add `g_assert_cmpvariant()` API for unit tests. (#1191)
191
192 * Hide bind mounts from GIO mount listings. (#1271)
193
194 * Automatically realign data passed to `g_variant_new_from_bytes()` or
195   `g_variant_new_from_data()` if it is not correctly aligned. This prevents
196   misaligned accesses on architectures which don’t support them. Callers should
197   still aim to correctly align data to get higher performance. (#1342)
198
199 * Support `ld -b binary` (on platforms which support it; i.e. Linux) to provide
200   large pre-compiled `GResource` resources with a fast compilation time. (#1489)
201
202 * Unconditionally install GLib m4 macros, so that projects which depend on GLib
203   and which still build using autotools can continue to build even once GLib has
204   ported entirely to Meson. (#1520)
205
206 * Various fixes to the Meson build.
207
208 * Drop Python 2 support and require Python 3.4+. See discussion on
209   https://mail.gnome.org/archives/desktop-devel-list/2018-July/msg00004.html.
210   (!196)
211
212 * `GHashTable` performance and memory improvements for common cases. See
213   https://hpjansson.org/blag/2018/07/24/a-hash-table-re-hash/. (!208)
214
215 * Add flags that allow a `GApplication` to signal and replace a currently
216   running other instance of the same `GApplication`. This will be used for app
217   upgrades with flatpak. (!250)
218
219 * Autostart xdg-desktop-portal when using the network monitor and proxy monitor
220   portal backends. (!317)
221
222 * Add a g_task_set_name() API to allow `GTask`s to be described; useful for
223   debugging. (!384)
224
225 * Enable FreeBSD CI on every commit for upstream GLib. (!387)
226
227 * Various GVariant, GMarkup and GDBus fuzzing fixes, including buffer overflow
228   fixes. (!411)
229
230 * Various fixes to eliminate thread races, found by thread sanitizer (tsan).
231
232 * Deprecate TLS/DTLS rehandshaking, as it has been removed from the protocol in
233   TLS 1.3. (!478)
234
235 * Support reading arguments from a file with `glib-mkenums`, which is useful
236   for long argument lists due to having deeply nested build directories, on
237   systems with a low limit on the command line length. (!489)
238
239 * Make `g_environ_*()` case-insensitive on Windows, as the environment itself
240   is case-insensitive on Windows. (!500)
241
242 * Add Application Layer Protocol Negotiation (ALPN) support to `GTlsConnection`
243   and `GDtlsConnection`, so that higher layer protocols can be negotiated when
244   setting up a TLS connection, without additional round trips and latency. This
245   is needed for eventual HTTP/2 support. (!520)
246
247 * Add support for TPM keys in PEM files when loading TLS certificates. (!522)
248
249 * Add a `GRecMutexLocker` auto-pointer wrapper for `GRecMutex`. (!528)
250
251 * Bugs fixed:
252  - #107 The "g_key_file_get_comment" interface returns comment with unexpected new line symbol at the end
253  - #179 g_object_unref assert in debug code
254  - #277 'destroy_data' in g_cclosure_new is registered as finalize notifier instread invalidate.
255  - #538 Add helpers to redirect XDG_*_HOME to a temp dir for unit tests
256  - #542 gdbus-codegen does not honor "Property.EmitsChangedSignal" annotations
257  - #656 check for -Werror=format-security broken
258  - #734 Provide a way to instantiate a GDBusProxy-derived class from a GDBusConnection and a object path without blocking
259  - #827 gmain: Clarify that g_source_set_callback() is safe on attached sources
260  - #1055 Provide alignment macros
261  - #1119 GVolumeMonitor: Results don't reflect current state but state when application was launched
262  - #1191 add g_assert_equal_variants
263  - #1261 Add option to leave <default> in gschema empty
264  - #1271 fstab binds appear as mounts (x-gvfs-hide is being ignored)
265  - #1310 gdbusproxy: make g-name-owner property useful with unique names
266  - #1313 Meson: Rework the config.h generation
267  - #1342 Automatically realign data passed to g_variant_new_from_bytes() or g_variant_new_from_data()
268  - #1343 g_date_set_parse: Parses "September" in Polish incorrectly
269  - #1362 Incorrect documentation about GSettings child add/remove notifications
270  - #1452 GFileInfo: unable to retrieve correct modification time of links and mounted volumes on Windows
271  - #1471 Incorporate oss-fuzz fuzz targets into GLib
272  - #1489 Use `ld -b binary` to speed up GResource generation for linking
273  - #1498 distcheck fails in distclean
274  - #1506 error: redefinition of typedef 'GKqueueFileMonitor'
275  - #1509 test_timeval_to_iso8601_overflow: 'out' should be NULL
276  - #1513 GIcon regression?
277  - #1514 gio/appinfo test sometimes fails in CI
278  - #1518 /network-monitor/create-in-thread fails in (LXC) containers on glib-2-56
279  - #1520 Change conditions for installing m4 macros
280  - #1522 Trash not working on NTFS folder accessed from symlink
281  - #1523 GIO NetworkMonitor doesn't reflect the current network state
282  - #1525 GTask allows (buggy) application code to cause callback to be called twice, without warning
283  - #1527 Meson doesn't install data for installed-tests
284  - #1528 Meson tests are hard to debug in an autobuilder environment
285  - #1530 tests/mainloop-test appears to be flaky
286  - #1535 meson: installed-test metadata not run in TAP mode
287  - #1536 meson: spurious dependencies on convenience libraries in .pc files
288  - #1537 meson: absolute paths to ${builddir} included in gtk-doc HTML
289  - #1538 meson: G_HAVE_GROWING_STACK defined differently
290  - #1539 meson: Some files are unnecessarily installed executable
291  - #1541 meson: timeloop-closure test not installed
292  - #1542 meson: /usr/lib/glib2.0/installed-tests/glib/gdbus-peer: error while loading shared libraries: libgdbus-example-objectmanager.so: cannot open shared object file: No such file or directory
293  - #1544 meson: gtester-report #! not replaced with ${PYTHON}
294  - #1546 Cross-compilation fails in 2.58
295  - #1556 build: Too long file path issue with meson on Windows
296  - #1562 GDate test suite fails with latest glibc
297  - #1570 ghash.c:694:27: left shift of 1 by 31 places cannot be represented in type 'int'
298  - #1572 Flags validation fails
299  - #1575 g_date_time_format() should have format attribute
300  - #1576 Fails to build with Meson on Debian armel (armv5te EABI softfloat little-endian)
301  - #1580 glib-compile-resources using strings breaks building e.g. GTK+ on MS Visual C, which limits strings to 65535 chars
302  - #1581 Memory used for reference counted data might be misaligned.
303  - #1588 Moving a bookmark item to the same URI causes a crash
304  - #1589 g_log_writer_is_journald memoizes a single result, even though it accepts a parameter
305  - #1590 tests: g-file-info-filesystem-readonly fails if run more than once with fuse & bindfs installed
306  - #1594 Return value of g_dbus_connection_get_unique_name not annotated as nullable
307  - #1600 g_timeout_source_new_seconds overflows when given interval > (G_MAXUINT / 1000)
308  - #1601 appinfo test fix is defective
309  - #1605 g_date_time_format fails when used with non ASCII format string on POSIX locale
310  - #1615 gdbus-codegen not generating nullable annotation
311  - !196 [RFC] build: Drop Python 2 support and require Python 3.4+
312  - !200 Add a new GTlsError to indicate protocol downgrade attacks
313  - !208 GHashTable improvements
314  - !219 glocalfilemonitor: Fallback to poll file monitor for NFS
315  - !238 W32 GFileInfo improvements
316  - !250 Application replace
317  - !264 glib-compile-resources: encode data as string
318  - !268 build: simplify alloca checks. See #1313
319  - !272 dtrace: Add missing const attributes to types in glib_probes.d
320  - !273 gtlsbackend: add support for setting the default TLS database
321  - !277 Use "command -v" instead of "which"
322  - !282 meson: Add macOS libtool versioning for ABI compatibility
323  - !286 gspawn: Fix build on systems without O_CLOEXEC
324  - !287 glib-compile-resources: Fix generated code compiling with C++ compilers
325  - !289 tests: Add more tests to finish branch coverage of GHashTable
326  - !290 build: fix installation dir of glib-gettextize
327  - !292 Remove all ChangeLog files
328  - !293 Document new volume class `loop`
329  - !294 portal network monitor: Always emit changed signal on changed
330  - !295 meson: fix typo
331  - !296 Add G_GNUC_FALLTHROUGH for __attribute__(fallthrough))
332  - !297 build: Drop AC_C_CONST from configure.ac
333  - !302 Document that GTimeVal is subject to the year 2038 problem on 32-bit systems
334  - !303 liststore: Simplify code
335  - !304 Add more GListStore/GListModel tests
336  - !309 codegen: Change pointer casting to remove type-punning warnings
337  - !312 Enable GIO tests on Windows
338  - !316 gdbus: Improve error when well-known name is unowned
339  - !317 Autostart xdg-desktop-portal if needed
340  - !322 gnetworkmonitornm: Set a GError properly on an error handling path
341  - !332 gmarkup: Make the documentation even more explicit about untrusted input
342  - !334 gio: automake: Add libgmodule dependency
343  - !338 gcharset: fix leaking g_get_language_names_with_category
344  - !339 Add g_desktop_app_info_get_string_list(); fix g_key_file_free()
345  - !340 tests: Mark two more tests as slow
346  - !345 Fix build failure on systems without POSIX spawn
347  - !347 Use Meson 0.48.0 for CI
348  - !348 Documentation tweaks for g_array_free
349  - !353 Meson: Do not run tests/refcount with --tap
350  - !354 Fix spelling mistakes detected by Debian's Lintian tool
351  - !358 Autotools: Move libmount from Libs.private to Requires.private
352  - !360 CI: Test static build on installed glib
353  - !363 Tests: Mark printf wrappers with G_GNUC_PRINTF
354  - !364 ci: Enable FreeBSD CI
355  - !366 gunixmounts: Mark mounts as system internal instead of filtering out
356  - !372 gmacros: Fix G_[UN]LIKELY to not mask -Wparentheses
357  - !374 gthreadpool: Include prgname in thread name
358  - !375 m4macros: Allow information from pkg-config to be overridden
359  - !376 gthread: Clarify priority handling in GRWLock
360  - !379 Ignore g_return_*if_fail() branches in lcov coverage report
361  - !381 Add UTF-8 communication tests for GSubprocess
362  - !384 gtask: Add a g_task_set_name() method
363  - !387 ci: Enable FreeBSD CI in the official repository
364  - !396 m4: Fix AM_PATH_GLIB_2_0 macro
365  - !400 grefcount: add missing gatomic.h
366  - !403 build-sys: Pass CFLAGS to $(DTRACE)
367  - !405 ci/msys2: fix path to the lcov config file
368  - !406 meson: Mark 1bit-emufutex test as slow
369  - !407 meson: Increase test timeouts
370  - !410 gfileutils: Add examples to g_path_get_dirname() documentation
371  - !411 Various GVariant, GMarkup and GDBus fuzzing fixes
372  - !412 Enable compile time check of g_date_time_format() format
373  - !413 Add support for g_auto(s)list to G_DECLARE'd types
374  - !414 gio, tests: ensure objectmanager sources are generated
375  - !415 gseekable: fix 'attmepting' typo
376  - !416 gdbus-peer: Make sure to not include objectmanager-gen.c source
377  - !417 Fix ^*ay handling in g_variant_iter_loop()
378  - !418 Meson: Cleanup a FIXME now that we have dict addition
379  - !420 gdbus-codegen: add autocleanup for FooObject
380  - !422 GMarkup buffer overflow fixes for error handling, round 2
381  - !423 gutils: Check whether getauxval function exists
382  - !424 ci: Fix Docker image version
383  - !425 gdate: Reinitialize using_twodigit_years and locale_era_adjust.
384  - !435 gdatetime: Fix formatting of time zones offsets in range -01:00 to +00:00
385  - !436 valgrind: Add glib_init()-related suppressions
386  - !440 Fix minor memory leaks in tests
387  - !443 tests: Avoid multithreaded use of g_test_rand_int_range
388  - !444 gvarianttypeinfo: Consistently use atomics to access ref_count
389  - !446 gmain: Fix data races in GUnixSignalWatchSource and GChildWatchSource
390  - !451 closures test: Avoid timeout on ARM64 CPUs
391  - !452 Atomic reference count in GVariant, ContainerInfo and GDBus introspection
392  - !453 tests: Fix some data races in tests
393  - !454 gdbusproxy: make g-name-owner property useful with unique names
394  - !458 glib-compile-resources: Fix size allocation for compressed streams
395  - !460 gatomicrefcount: Make g_atomic_ref_count_init non-atomic
396  - !461 Meson: Fix build error in gdbus-example-objectmanager
397  - !462 meson: add aarch64 memory barrier handling
398  - !463 gio, tests: fix leak of dbus connection.
399  - !467 Update documentation of g_tls_connection_handshake() again
400  - !469 docs: add index of new symbols for gio > 2.52
401  - !470 docs: Clarify return/error behaviour of D-Bus signal subscriptions
402  - !472 gdbusmessage: Gracefully handle message signatures with invalid types
403  - !477 gthread: Remove unsynchronized access to g_once_init_list from assertion
404  - !478 Deprecate TLS rehandshaking
405  - !480 docs: add a missing semicolon
406  - !482 Check for 'z' library before fallbacking to subproject
407  - !483 meson: Turn selinux into a meson feature and make it auto by default
408  - !484 Meson: Add 'nls' option to disable translation
409  - !485 gdbus-codegen: Tag interfaces and properties so annotated with G_PARAM_DEPRECATED
410  - !486 Check for zlib header
411  - !489 glib-mkenums: Support reading @rspfiles for arguments
412  - !490 gspawn: Fix g_spawn deadlock in a multi-threaded program on Linux
413  - !491 Meson: Add missing include_directories when using glib as subproject
414  - !492 g_value_get_variant: return value is transfer-none not transfer-full
415  - !494 Resolve "Follow-up from "gunixmounts: Stop considering cifs/nfs as system file systems""
416  - !500 genviron: make g_environ_* case-insensitive on Windows
417  - !504 tests: Unset LANGUAGE when running gdatetime tests
418  - !505 Support isolating directories for unit tests
419  - !508 ci: Install additional locales used during tests
420  - !510 Add new Linux Testing project version number to configure script
421  - !511 gvariant: Fix error handling for parsing Unicode escapes
422  - !514 fix gdbus-codegen --interface-info-{header,body}
423  - !515 binding: Clarify the use of g_object_unref() to remove a binding
424  - !517 Meson: Fix deprecation warning with upcoming 0.49.0 release
425  - !518 Meson: Fix declare_dependency() calls
426  - !520 GTlsConnection: add ALPN support
427  - !521 tests: Rename macro to avoid conflict with encoding prefix
428  - !522 gtlscertificate: Add support for TPM keys in PEM files
429  - !524 gdatetime: Fix typo in the comment
430  - !528 Add GRecMutexLocker
431  - !530 tests: Minor improvements to mkenums.py and taptestrunner.py used by it
432  - !534 gtlscertificate: Fix bug in PEM private key parser
433  - !536 Various minor docs fixes
434  - !541 gtimezone: Fallback to /etc/timezone on Gentoo
435  - !546 spawn: add shebang line to script
436  - !547 Do not check for NULL when calling free()
437  - !549 Improve documentation of g_assert_error()
438  - !551 Revert "tests: Fix GOptionContext leak in GSubprocess tests"
439  - !554 Only subscribe to owner-changed signals on message bus connections
440  - !555 Suppress -Wint-in-bool-context warning with G_DEFINE_INTERFACE and g++
441
442 * Translation updates:
443  - Brazilian Portuguese
444  - Czech
445  - Danish
446  - Greek
447  - Hungarian
448  - Lithuanian
449  - Norwegian bokmål
450  - Polish
451  - Slovak
452  - Slovenian
453  - Spanish
454  - Swedish
455  - Turkish
456
457
458 Overview of changes in GLib 2.58.0
459 ==================================
460
461 * Tarball built with `ninja dist`, so if you want to build this release with
462   autotools (which is supported), you will need to re-run autogen.sh. This
463   release, and all micro releases in the 2.58.x series, support being built
464   with Meson or autotools. See:
465   https://mail.gnome.org/archives/gtk-devel-list/2018-June/msg00012.html
466
467 * Fix cancellation of g_subprocess_communicate_async() calls. See !266.
468
469 * Drop support for the __int64 type, which further breaks compilation on old
470   MSVC versions (before VS2013). See #1313.
471
472 * Expose GSettings schema directory in gio-2.0.pc as `schemasdir`. See !274.
473
474 * Support v3 of the xdg-desktop-portal network monitor API. See !265, !279.
475
476 * Fix G_MODULE_SUFFIX on macOS when GLib is built with Meson — it should be `so`
477   rather than `dylib`. Projects that use Meson and the `g_module_build_path()`
478   API such as glib-networking should pass `name_suffix:` to `shared_module()` to
479   ensure that plugins continue to be called libfoo.so on macOS. See !280.
480
481 Bugs fixed:
482  !280 meson: Always set G_MODULE_SUFFIX to `so` on macOS
483  !266 subprocess: Fix communicate_cancelled signature
484  !279 Revert "Add a gnet utility" (see !265)
485  !265 Network monitor again
486  !274 gio: Provide schemas directory information in pkg-config file
487  !239 gvariant: Fix more bounds checking in GVariant text format parser
488  !195 garray: add overflow checks before expanding array
489  #1497 g_strdup_printf warns on invalid format specifier with G_GUINT64_FORMAT on Win32
490  !270 autotools: remove support for the __int64 type. See #1313
491  !267 ci: Add an autotools job
492
493 * Translation updates:
494  Czech
495  Galician
496  Indonesian
497  Italian
498  Kazakh
499  Korean
500  Turkish
501
502
503 Overview of changes in GLib 2.57.3
504 ==================================
505
506 * G_GNUC_MALLOC’s definition has been tightened up to match an updated
507   definition from GCC. Many uses of G_GNUC_MALLOC which were previously
508   appropriate may cause miscompilation with newer GCC versions. Check your uses
509   of it against the updated documentation. See #1465.
510
511 * Many minor documentation fixes.
512
513 * Fix for gint64 and int64_t compatibility on macOS and BSD. See #972.
514
515 * Fix free space metadata on some file systems (notably FAT). See #328.
516
517 * Support installed-tests with our Meson build system. See #1444.
518
519 * Forbid @filename@/@basename@ in glib-mkenums templates, which is a change to
520   its long-standing behaviour (which was long-standing nonsensical). See !241.
521
522 * Various stat() fixes on Windows. See #1452, #1476.
523
524 * MinGW-w64 ABI warning: In case you build 64 bit glib without LFS support by
525   passing --disable-largefile (not the default) and use GStatBuf, you need to
526   rebuild your application as the size of GStatBuf has changed for this case.
527   See #1476.
528
529 * Improve TAP compatibility of g_test_incomplete(). See #1474.
530
531 * Change fallback preferences when loading icons. See !72.
532
533 Bugs fixed:
534  !263 build: Clean files left behind after gio/tests/gresource.c test
535  !262 gmem: Only evaluate pointer argument to g_clear_pointer() once
536  #1465 Many uses of G_GNUC_MALLOC are incorrect
537  #1448 g_error does not abort() as documented
538  #1494 g_clear_pointer may not use the correct calling convention with its callback
539  #972 Mismatch between gint64 and int64_t on 64-bit macOS/BSD
540  !251 gtestdbus: Fix watcher crash on FreeBSD
541  #1492 gcc-8: -Wcast-function-type: new warnings for g_list_copy_deep()
542  !252 tests: fix gnotification tests broken due to the recent icon name fallback changes
543  #328 filesystem::{free,size,used} not set for full FAT fs
544  !248 network monitor portal: update properties initially
545  #1373 Incorrect transfer annotation for g_binding_unbind.
546  #1444 the meson build doesn't support installed tests
547  #1027 Fix trashing on overlayfs
548  #1454 gvdb does not treat corrupt files as empty as promised; dconf suffers
549  !243 tests: Explicitly set TZ=UTC for g_time_val_from_iso8601() testing
550  #1488 ‘O_CLOEXEC’ undeclared (first use in this function)
551  !241 glib-mkenums: forbid @filename@/@basename@ in fhead and ftail
552  !240 gtimer: Ensure arithmetic is correctly signed for ISO 8601 parsing
553  #1452 GFileInfo: unable to retrieve correct modification time of links and mounted volumes on Windows
554  !234 DOC: Documentation fix in GTask description
555  #1363 Meson: Review cross compilation properties
556  !225 gtimer: Add overflow checks to g_time_val_from_iso8601()
557  !230 gbookmarkfile: Fix some more minor leaks when metadata elements are repeated
558  !229 Fix up g_bytes_compare() documentation
559  #1476 g_stat - possbile memory corruption causing SEGFAULT
560  !199 Update TLS documentation
561  #1474 g_test_incomplete() makes test_case_run() return FALSE
562  #1475 glib/tests/atomic.c test_types() trips -Werror=bad-function-cast on Debian armel
563  #1472 Test for BROKEN_IP_MREQ_SOURCE_STRUCT is broken on Windows / Mingw
564  !220 date test: Use g_test_skip(), not g_test_incomplete()
565  #1467 malloc difference causes refstring test to fail on FreeBSD
566  !230 gbookmarkfile: Fix some more minor leaks when metadata elements are repeated
567  #1466 Not Able to Build glib 2.57.2 in Mingw-w64 x64 bits
568  #1433 test_posix_parse: assertion failed (g_time_zone_get_abbreviation (tz, 0) == "UTC"): ("LMT" == "UTC")
569  #1446 Follow-up from "Document difference between g_assert() and g_assert_*() wrt G_DISABLE_ASSERT"
570  !206 grefstring: Avoid an unnecessary NUL assignment
571  #1458 g_volume_get_mount returns NULL value after g_volume_mount_finish is called with no error
572  !72 gio: icons should fallback to non-preferred style appropriately.
573
574 * Translation updates:
575  Brazilian
576  Chinese (Taiwan)
577  French
578  German
579  Lithuanian
580  Polish
581  Romanian
582  Turkish
583
584
585 Overview of changes in GLib 2.57.2
586 ==================================
587
588 * Require pcre 8.31
589 * Require meson 0.47.0
590
591 * Bugs fixed:
592  742456 Add g_steal_pointer() convenience function to mark ownership...
593  795569 MinGW CI: fix tests
594  796341 gmem.h: Use typeof() in g_steal_pointer() macro
595  #1013 Support for per-session overrides
596  #1360 glib-mkenums breaks if option specified but no nick
597  #1175 Add names and tags to various GSources and GTasks constructed in GLib
598  #903 g_main_context_wait() not deprecated in API, but emits a g_critical()...
599  #786 Fix memory leaks in libgio tests
600  #927 gio/gresource.c:do_lookup check for terminating "/"
601  #976 Document difference between g_assert() and g_assert_*()...
602  #1447 glib 2.57.1: test_month_names: assertion failed...
603  #1407 Update to Unicode Character Database 11
604  #1455 glib python tools have full python path in shebang, limits to 128 characters
605  #1459 Missing g_return_val_if_fail in g_async_queue_timeout_pop
606
607 * Translation updates:
608  Friulian
609  German
610  Romanian
611  Spanish
612
613
614 Overview of changes in GLib 2.57.1
615 ==================================
616
617 * New api:
618  - g_hash_table_steal_extended
619  - G_GNUC_NO_INLINE 
620
621 * Bug fixes:
622  668132 Use libmount and expose mount options on GUnixMountEntry type
623  736741 Update private copy of valgrind.h
624  748620 g_regex_* utf-8 validity requirements are not stated clearly
625  784995 meson: some Windows improvements
626  788771 NODELETE missing when built with meson
627  788773 meson does not install correct pc files
628  789968 Add g_autoptr() support for GTypeClass
629  794325 Various fixes to compile on OSX
630  795152 gdesktopappinfo: Mark GDesktopAppInfo constructors as nullable.
631  795165 Add g_date_time_get_timezone() and g_time_zone_get_identifier()
632  795180 Investigate performance impacts of recent compiler features on hot functions
633  795302 Add g_hash_table_steal_extended() API
634  795376 Add g_ptr_array_steal()
635  795544 Add binary/textfile/zero size detection
636  795569 MinGW CI: fix tests
637  795636 gitlab-ci: generate test coverage reports
638  795735 Fix comparison for GVariant property values
639  795802 gdbus-codegen doesn't accept --output-directory with --output for --body and --header
640  795849 gwin32: Fix detection of MinGW32 vs MinGW-w64
641  795876 meson: Fix checks for posix_memalign and stpcpy
642  795960 g_format_size_for_display() is deprecated since 2.30
643  796085 Meson: Many apps breaks on non-glibc because of missing libintl
644  796138 Fix typo in g_file_info_set_attribute docs
645  796139 Add g_autoptr() support for GParamSpec
646  796164 Fix atomic ops check in meson.build
647  796186 Typo: "instead off" in gsignal.c
648  796213 Meson: Fail to build on macosx
649  796220 meson: do not run atomic test with msvc
650  796264 Add android CI
651  796325 meson: Add exception for atomic ops test for Android
652  796328 gengiotypefuncs.py: Read and parse files in binary mode 
653
654 * Translation updates:
655  Czech
656  Indonesian
657
658
659 Overview of changes in GLib 2.57.0
660 ==================================
661
662 * Bug fixes:
663  739424 Rewrite kqueue GFileMonitor backend to drop threading
664  751826 Use g_get_language_names() for other locale categories
665  788773 meson does not install correct pc files
666  793400 g_application_id_is_valid() not strict enough
667  793578 gdatetime tests depend on Japanese translation of month names
668  793645 test_month_names: Updated translations needed for el_GR, hr_HR, ru_RU
669  793729 gitlab-ci: Add Windows MinGW support
670  793994 GUnixVolumeMonitor doesn’t show user mounts when run as root
671  794170 gdbus: hexdecode() and hexencode() do not return/use decoded/encoded s...
672  794194 gobject_gdb.py: 'address' is a property of gdb.Value not a function
673  794207 leak: g_socket_listener_add_inet_port increases ref-count on socket-li...
674  794284 Support whitespace stripping for JSON resources
675  794285 glib-compile-resources should not noisily g_printerr() when xmllint is...
676  794473 Remove duplicated option in gio.xml
677  794506 glib-mkenums: Enters infinite loop if using typedef enum SomeIdentifier
678  794528 Fix segfault caused by use-after-free in GPollFileMonitor
679  794555 glib meson build fails on MinGW due to misdetected functions
680  794557 gtkdoc-scangobj fails on gio in meson builds
681  794606 glib-2.56.0 fails to compile when res_nquery is not available
682  794635 gmacros: Don't define bogus __has_* macros
683  794636 G_HAVE_GNUC_VISIBILITY is defined in meson MinGW builds
684  794686 Date (except weekday) displayed in English
685  794732 Fix various compiler warnings 
686
687 * Translation updates
688  Hungarian
689  Slowak
690  Slovenian
691  Spanish
692
693
694 Overview of changes in GLib 2.56.0
695 ==================================
696
697 * Bugs fixed:
698  672777 Error in gdummyfile.c
699  732184 GObject: warn on use of deprecated properties
700  733338 Don't segfault in GNetworkMonitor when IPv6 support is unavailable
701  742124 g_data_input_stream_read_upto()'s documentation should say that the...
702  749206 GDateTime: month names in the genitive case
703  768507 simplify qguark functions
704  791457 Slow transfer rate when writing to smb/cifs
705  793272 fix GCC 8.0's -Wcast-function-type warnings
706  793300 g_hash_table_add() return value change in 2.40 not mentioned in docs
707  793399 Fix some cases of -Wduplicated-branches
708  793555 -Wimplicit-function-declaration when using g_abort()
709  793565 GLib does not compile on macOS 10.13 due to .m file naming
710  793597 gdbus-tool: Make --dest optional for emit again
711  793635 Enable CI for GLib
712  793880 gnetworkmonitor: Minor fixes based on code review 
713  793578 gdatetime tests depend on Japanese translation of month names 
714  794180 test_month_names fails unless installed
715
716 * Translation updates:
717  Brazilian Portuguese
718  British English
719  Catalan
720  Czech
721  Danish
722  Dutch
723  Finnish
724  French
725  Friulian
726  Galician
727  German
728  Hungarian
729  Indonesian
730  Italian
731  Kazakh
732  Korean
733  Lithuanian
734  Polish
735  Scottish Gaelic
736  Serbian
737  Serbian Latin
738  Spanish
739  Swedish
740  Turkish
741
742
743 Overview of changes in GLib 2.55.2
744 ==================================
745
746 * GFile now has API to get the path without copying
747
748 * A network monitor implementation for Windows has been added
749
750 * Bugs fixed:
751  520116 g_utf8_strlcpy()
752  584284 g_data_input_stream_read_until_async behaves confusingly different f...
753  605700 request for g_key_file_get_locale()
754  658713 ngettext (plural forms) needed for "Message has %d file descriptors ...
755  685442 windows GNetworkMonitor implementation
756  723003 gsettings list-recursively reports some keys multiple times
757  749583 GSequence performance improvements
758  757284 Move G_DIR_SEPARATOR* and G_SEARCHPATH_SEPARATOR* into glibconfig.h
759  760324 [PATCH] gkeyfile.c: find_file_in_data_dirs fails to return the path ...
760  761102 Increase performance for main loop
761  767976 GFile: Add g_file_peek_path()
762  770335 gdbus-codegen: generated getter for 'ao' property is actually (trans...
763  772989 Totem allows invalid urls that might cause segfault that's irrecover...
764  790698 convert: test failure on NetBSD
765  791015 gdbus-codegen: Split generation of header and source
766  791622 Disable strict-aliasing in GLib
767  792050 GResolver is not thread-safe
768  792217 Deprecate GTlsClientConnection:use-ssl3
769  792338 meson, autotools: figure out if mem barrier is needed for arm64 host...
770  792351 gbookmarkfile: check length before dereferencing groups
771  792364 gdbus-threading test method-calls-in-thread: assertion failed (elaps...
772  792370 GNetworkMonitor: Rename "network-changed" signal argument
773  792410 GDateTime new_from_iso8601 test broken in 2.55 on i386
774  792432 flush stdout after logging (debug) messages
775  792455 Improve docs of GSequence
776  792499 deadlock on startup with TCP session bus
777  792516 gconvert: More consistent handling of embedded NUL bytes
778  792777 g_notification_set_urgent() unconditionally sets G_NOTIFICATION_PRIO...
779  792780 gbytes should reference toplevel bytes when slicing with g_bytes_new...
780  792856 off64_t isn't a part of C standard
781  792862 gpollableoutputstream: document side effects of WOULD_BLOCK on D/TLS
782  792903 Clarification between g_try_.. functions and their counterparts
783  793006 High CPU load for GUnixMountsMonitor consumers
784  793026 possible mem leak in g_mutex_impl_new
785  793074 g_message() does not get -Wformat warnings when compiling with G_LOG...
786
787 * Translation updates:
788  Hungarian
789  Indonesian
790  Polish
791
792
793 Overview of changes in GLib 2.55.1
794 ==================================
795
796 * Build:
797  - The --enable-rebuilds configure option has been removed
798  - The --with-charsetalias-dir configure option has been added
799
800 * GList and GSList now have autoptr support
801
802 * The gsettings list-schemas command has gained a --print-paths option
803
804 * Bugs fixed:
805  346816 Refactor LIBDIR in libcharset Makefile
806  508976 Does g_slist_sort preserve the order of equal elements?
807  562334 2.18.2 break libglade on Solaris
808  662802 systemtap multiarch issue
809  684282 Add support static link of GIO modules
810  692034 Install an invalidation notifier for GClosure in g_source_set_closure()
811  694723 Get rid of REBUILD stuff in configure.ac
812  697715 floating point precision problem in check test gst/gstvalue
813  701156 testgobject assumes that the priv data follows the instance data
814  720380 Segfault when using GDBusMenuModel on a peer-to-peer connection
815  724383 glib: document restrictions on various foreach() functions
816  724412 GLib mappedfile.c test uses g_get_user_runtime_dir instead of a tempo...
817  724794 Fix "on on" typo in tap-driver.sh comment
818  732003 gnode: Eliminate implicit signed-to-unsigned integer conversion
819  734479 G_VALUE_HOLDS etc. cause -Wcast-qual warnings for a const GValue *
820  737677 gmain: Make GSourceCallback thread-safe
821  741167 gdbus-codegen fix for boxed out parameters
822  748534 gtest: if a subprocess assertion fails, print its stdout and stderr
823  749527 add weak pointer helpers similar to g_set_object
824  749652 compilation errors with gcc 4.8
825  754634 Update the list of Linux filesystem magic numbers used in get_fs_type
826  756011 Fix up annotations for GBookmarkFile
827  761102 Increase performance for main loop
828  773980 GIR scanner doesn't interpret array type properly
829  776147 gio/glocalfilemonitor.c doesn't handle case G_FILE_MONITOR_EVENT_MOVE...
830  776195 -z nodelete configure check does not work on Solaris
831  777075 Potential leak of memory pointed to by 'list'
832  779413 Translated X-Geoclue-Reason string not used in a dialog window
833  780309 gio/tests/appinfo build fails: gdesktopappinfo.c skipped on OS X
834  780893 Reword licensing header for gdbus-codegen
835  782057 Unit tests fail in run-assert-msg-test.sh
836  784995 meson: some Windows improvements
837  786796 gtk-doc build fails with meson
838  788806 Impossible to build static glib via meson
839  788936 Show mime type icons on OS X
840  790416 g_date_time_format returns empty string on %r with German locale
841  790588 Generated file missing from .gitignore
842  790697 g_object_ref API should propagate parameter type
843  790785 glib-tap: Add missing mkdir for .test generation rule
844  790829 glib-genmarshal --body must not generate alias implementations
845  790830 Mismatch between number of interface methods in text and example code
846  790837 Meson: missing many configure options
847  790839 GApplication command line: lacks parameter_string, summary and descri...
848  790877 fix non-portable check in G_GNUC_CHECK_VERSION
849  790894 Do not connect to the session bus when trying GProxyResolverPortal io...
850  790896 docs/reference/README has broken link to http://www.gtk.org/rdp/
851  790914 gdesktopappinfo: Downgrade a warning to a debug message
852  790934 gtester doesn't handle skipped tests
853  790948 GSourceFuncs documentation is confusing: when will dispatch be called?
854  791036 Guard for g_output_stream_vprintf makes no sense
855  791128 C runtime complains about bad arguments on each g_log() call
856  791221 po/README.translators has no useful information in 2017
857  791235 Fix gschema.dtd regarding flags.
858  791267 Make gschema.dtd usable.
859  791296 gtester-report: fix range usage when running as python3 app
860  791318 GBytes: Improve documentation
861  791325 Gio handling of thumbnail:: attribute namespace causes inconsistent b...
862  791334 gbinding.c:898: The target object of type GNetworkAddress has no prop...
863  791337 Crash opening URIs with g_desktop_app_info_launch_uris_with_spawn()
864  791342 Add autoptr support for lists
865  791460 meson: fixes for OSX
866  791532 Implicit declaration of function ‘memcmp’ in gtestutils.h
867  791622 Disable strict-aliasing in GLib
868  791720 Criticals in gio/xdp-dbus.h leading to crash under flatpak
869  791744 gmenumodel test sometimes fails: assertion failed (items_changed_coun...
870  791745 not immediately clear whether g_test_slow() is in effect by default
871  791906 GSocketListenerClass.event has wrong signature
872  792064 gsettings list-schemas --print-paths
873  792098 Binding: bind_property’s @notify func is nullable
874  792099 gdbus-test-codegen: Cast to void* to printf "%p"
875  792129 meson: skip optional linux/unix deps that default to true when buildi...
876  792322 GLib-GIO:ERROR:gschema-compile.c:51:test_schema: child process (/gsch...
877  792324 gkeyfile: Document need for KEEP_TRANSLATIONS with get_locale_string()
878
879 * Translation updates
880  Hebrew
881  Indonesian
882
883
884 Overview of changes in GLib 2.55.0
885 ==================================
886
887 * New API:
888   - g_clear_handle_id, to simplify removing sources from the default mainloop
889   - g_file_load_bytes, to make it more convenient to load files into GBytes
890
891 * Bugs fixed:
892  330458 Sample code for the GLib Key-value parser
893  483341 g_error and friends create warnings when not used in MSVC
894  569375 g[u]intptr undocumented
895  573251 documentation for g_seekable_truncate() needs some love
896  629347 Missing annotations in GFile (was: Perf throws an exception in cur...
897  630983 [PATCH] Type accuracy for result of strlen() in string utilities.
898  632953 Clarify documentation of GValueTransform.
899  636210 Document that pre-unmount is not guaranteed and backend-dependant
900  656502 type information for GSettings::backend missing from .gir
901  661442 Nautilus crashes when refreshing home folder after modifying ~/.co...
902  668035 gtester-report broken with python 2.7.2 and glib 2.30.1
903  670139 gbytes.c:try_steal_and_unref nit
904  677233 (transfer full) annotation not correct for g_closure_new_simple re...
905  679347 glocalfile seems to leak 'fstype'
906  679467 Mention translation in g_warning() documentation
907  689323 Variable scoping in gunixmounts.c
908  691436 glib-mkenums output arch dependent
909  695681 gsettings bash completion put error messages
910  705331 AM_PATH_GLIB_2_0 macro fails with -Wstrict-prototypes -Werror
911  706667 Fix permission denied error when installing from an nfs directory
912  711809 gdbus-proxy: Fix erroneous timeout during following tests
913  722256 gslist: Simplified node removal and got rid of some code duplication
914  723655 Socket source is left in the poll after the socket is closed
915  723743 g_child_watch_add() doesn't check for non-pids
916  725014 g_settings_schema_source_ref should check for NULL pointer
917  727346 docs: Escape some backslashes for markdown
918  730296 gsignal: Fix a potential NULL pointer dereference
919  731625 Improve test for darwin printf format-strings
920  731705 gio/tests/desktop-app-info assumes /bin/true
921  737278 Clarify relationship of g_application_quit() to hold count
922  738176 Skip GSpawnChildSetupFunc closures in introspection
923  740223 source_object for GAsyncResult should be nullable
924  740791 gio: cannot specify the source when joining a multicast group (IGM...
925  740826 glib doesn't know fuse filesystems
926  742548 configure.ac: stay out of autoconf's namespace
927  742997 Don't skip invalid enum values in schemas
928  745723 -Wunused-but-set-variable work-around no longer sufficient
929  749371 Use a GHashTable as a set when possible
930  751738 Unused-variable warnings in glib/tests/autoptr.c
931  752239 Missing dependency for python files in build file
932  752240 Add DTLS support to GIO
933  753459 GDateTime: Add conversion functions from/to ISO 8601 strings
934  753521 g_subprocess_launcher_set_environ misses argument annotations
935  754026 gfileutils: add some sanity checks
936  756009 'const gchar* const *' gets incorrectly defaulted to utf8
937  756103 Skip g_base64_decode_step() in introspection
938  756128 Fix up annotations in gconvert
939  756430 g_rw_lock_reader_lock() can return without locking, or error
940  756470 Fix up annotations in gdataset.c
941  756588 Fix up annotations on data/qdata API of GObject
942  760022 Memory leak in gvariant-parser.c
943  760109 [PATCH] Invalid GDate can't be g_boxed_copy()'d
944  760716 Fix documentation regarding <glib/gprintf.h>
945  765063 Update annotations for gio
946  765552 Please set serial in .m4 files to prevent autoreconf failure on up...
947  767215 GCC version number is interpreted as start of a list in docs for g...
948  767239 Tautological comparisons in convert tests
949  769674 some GIO tests' arbitrary timeouts are too short
950  769846 gmessages: Add timestamp to g_log_writer_format_fields()
951  770459 Tutorial article is slightly wrong
952  773355 Incorrect documentation about stopping a signal emission from a hook
953  774083 spelling mistakes in glib: charater
954  776562 Add Intel C Compiler support for G_GNUC_BEGIN/END_IGNORE_DEPRECATI...
955  777308 GModule win32: disable error dialog popup
956  777310 gio/gasynchelper.c: fix cast from pointer to smaller int type on w...
957  777956 gmessages: Update advice for G_LOG_DOMAIN
958  779182 xdg-open fails with gio open for some uris
959  779501 Type of GIConv given wrongly on web
960  780202 introspection: Don't expose GValueArray.free
961  780296 xdg-open/gnome-open doesn't work if service isn't started
962  781598 gstdio.h should #include what it needs to work
963  781867 various gvfsd-* wants to look in /boot/efi, causes unnecessary/ina...
964  783210 build: Switch to sassc for generating style
965  783270 Improve Visual Studio support for Meson builds
966  783825 Suggest that asynchronous operations should invoke the callback in...
967  786737 No g_variant_get() example for dicts
968  786785 Commit #fe2a9887a8 breaks gdbus-codegen, cannot find its module so...
969  787271 Make GListModel usable from G-I bindings
970  787485 g_tls_backend_supports_dtls () returns true when the backend doesn't
971  787551 Factor out some duplicated code in GParamSpec validation
972  787581 tests: Add tests for g_slist_copy() and g_slist_copy_deep()
973  787671 meson: Fix permissions of installed scripts
974  787731 g_file_query_filesystem_info() wrongly reports "filesystem::readon...
975  788138 glib-compile-resources: Fix leak of a GHashTable
976  788180 G_FILE_ATTRIBUTE_ID_FILE is useless on W32
977  788270 gmodule - failed to load symbol on Android 64bit
978  788368 Race condition in GDbusObjectManagerClient
979  788384 gtypes: Fix signedness of __builtin_bswap() usage
980  788385 gtestutils: Explicitly cast args to g_assertion_message_cmpnum()
981  788401 PATCH: MacOS build cannot detect content type from content - xdgmi...
982  788467 Fatal errors and warnings should be reported as TAP
983  788488 GFile-based API for g_build_filename()
984  788489 gmain: add g_clear_source API
985  788561 Document how to integrate GTest into your project
986  788594 gdbus-tool doesn’t handle non-message-bus connections correctly
987  788705 Allow building GLib on older Linux platforms
988  788766 fixed a doc-typo in socket_get_remote_address
989  788772 meson installs gdb scripts incorrectly
990  788863 Add more filename type annotations for strings which can contain f...
991  788880 gunixmounts: Update list of virtual file systems to ignore
992  788927 Expose better API for detecting ‘system’ mounts
993  788936 Show mime type icons on OS X
994  788948 Document Autotools best practices for genmarshal/mkenums
995  788975 Meson + Visual Studio: Can't find zlib.h with subprojects/zlib
996  788978 Document XML has a syntax error
997  788989 Use subdir-objects with Autotools
998  788990 Include licensing information in output from glib-mkenums, glib-ge...
999  789087 gint and guint misrepresented as functions
1000  789170 GFormatSizeFlags should have a value for bits
1001  789245 g_settings_bind() not conforming to lifecycle specification
1002  789444 Fix handling of length in g_utf8_make_valid
1003  789637 glib-mkenums: Fails when --ouput file does not exist
1004  789681 meson: Libmount support not built
1005  789723 [PATCH] gdbus-codegen: Call abspath() earlier
1006  789755 g_get_host_name: ensure return value is always UTF8 encoded
1007  789820 GPollFileMonitor is not cleaning up correctly
1008  790015 docs: Various linking and syntax fixes
1009  790030 GResource/GVariant fails to load from non-pointer aligned memory
1010  790093 gio-tool: fix inverted logic in monitor tool
1011  790126 gengiotypefuncs.py is missing from tarballs
1012  790147 build: Drop data-to-c.pl in favour of data-to-c.py
1013  790157 gmessages: Give examples of G_DEBUG with gdb in the documentation
1014  790272 file: add g_file_load_bytes()
1015  790275 avoid temporary string allocations in g_resources_enumerate_children
1016  790310 speedup path canonicalization in GResourceFile
1017
1018 * Translation updates:
1019  Catalan (Valencian)
1020  Czech
1021  German
1022  Nepali
1023  Norwegian bokmål
1024  Slovak
1025  Slovenian
1026  Spanish
1027
1028
1029 Overview of changes in GLib 2.54.0
1030 ==================================
1031
1032 * Bugs fixed:
1033  780861 Crash in GnomeWallClock
1034  786983 Please make the output of gio-querymodules deterministic
1035  787109 Valgrind false positive in ioctl() in btrfs file copy
1036  787123 glib: Slighty update GIOChannel documentation
1037  787146 GMainLoop: match of parameter pair of LOCK_CONTEXT/UNLOCK_CONTEXT
1038
1039 * Translation updates:
1040  Basque
1041  Catalan
1042  Romanian
1043  Swedish
1044
1045
1046 Overview of changes in GLib 2.53.7
1047 ==================================
1048
1049 * Bugs fixed:
1050  736710 remove unnecessary executions of libtool from configure
1051  785260 gio/tests/appmonitor fails if local dir not writeable
1052  786456 g_subprocess_wait[_check]_async() breaks when cancelled...
1053  786555 g_array_free() is not thread safe w.r.t. g_array_unref()
1054  786580 gdesktopappinfo.c: Add Tilix as a fallback terminal
1055  786807 g_uuid_string_random undefined when built with meson
1056
1057 * Translation updates:
1058  Brazilian Portuguese
1059  Catalan
1060  Czech
1061  Danish
1062  Finnish
1063  French
1064  Friulian
1065  German
1066  Italian
1067  Kazakh
1068  Korean
1069  Latvian
1070  Nepali
1071  Polish
1072  Spanish
1073  Turkish
1074
1075
1076 Overview of changes in GLib 2.53.6
1077 ==================================
1078
1079 * Bugs fixed:
1080  766358 glib doesn't respect XDG_* envvars on W32, ever
1081  783270 Improve Visual Studio support for Meson builds
1082  785955 pthread_setname_np misdetected with meson
1083  786060 Sequences documentation does not make it clear...
1084  786360 gobject: add autoptr support for GClosure
1085  786452 crash on Linux without stderr stream
1086  786460 gio-tool: Unify buffer sizes
1087  786462 Use g_output_stream_write_all instead of while
1088  786463 gio-tool-save: Prevent overwriting error
1089
1090 * Translation updates:
1091  Catalan
1092  Galician
1093  Hungarian
1094  Indonesian
1095  Lithuanian
1096  Nepali
1097  Serbian
1098
1099
1100 Overview of changes in GLib 2.53.5
1101 ==================================
1102
1103 * Bugs fixed:
1104  695573 Untranslatable strings in glib-compile-schemas
1105  725950 GApplication: call dbus_unregister only once, and before destruction
1106  731703 giomodule test misbuilds its test modules as libraries
1107  769135 External control for g_test_add/g_test_run
1108  779332 Rewrite mkenums in Python
1109  779607 Race between mounts-changed signal and g_unix_mounts_get() function
1110  784000 Improve strerror_r() detection
1111  784815 Map G_NOTIFICATION_PRIORITY_HIGH to NOTIFY_URGENCY_NORMAL
1112  784965 Use the glib preset for i18n in Meson
1113  784995 meson: some Windows improvements
1114  785113 glib-mkenums Python port fixes
1115  785130 G_LOG_DOMAIN shouldn't be left undefined for applications
1116  785438 Spurious -Wmaybe-uninitialized in gdatetime.c
1117  785468 glib/gpoll: Unnecessary if conditional included in the poll_rest() function
1118  785520 Replace advice to use removed gdk_spawn functions
1119  785577 clobbers errno while setting GError
1120
1121 * Translation updates:
1122  Slovenian
1123  Spanish
1124
1125
1126 Overview of changes in GLib 2.53.4
1127 ==================================
1128
1129 * Unicode support has been updated to Unicode 10.0.0
1130
1131 * glib-genmarshal and glib-mkenums have been rewritten in python.
1132   Every effort has been made to keep compatibility. Please report
1133   problems related to these tools
1134
1135 * GLib can now be built with meson. autotools are still supported
1136
1137 * Bugs fixed:
1138  722047 drop makefile.msc?
1139  733821 g_strerror() uses strerror(3) instead of strerror_r(3)
1140  773842 g_utf8_find_next_char() won't signal the end of a NUL-terminated string
1141  779332 Rewrite mkenums in Python
1142  780095 g_utf8_get_char_validated() stopping at nul byte even for length specified...
1143  780634 Remove remaining old codepage ABI comapt code
1144  783841 test_GDateTime_new_from_timeval_overflow fails on 32 bit systems
1145  784000 Improve strerror_r() detection
1146  784020 GKeyFile – Add array length annotations to to_data(), get_keys() and get_g...
1147  784037 gio: Mention the ALL_METADATA flag in g_file_copy()
1148  784433 gdbus-codegen with variant type parameters result in nested variant
1149  784456 Update to Unicode 10.0.0
1150  784528 Rewrite glib-genmarshal in Python
1151  784579 Calling g_dir_open on Missing Directory When Executable File Path Contains...
1152  784581 docs: Fix cut'n'paste error in g_resources_get_info() doc
1153  784739 Minor typo in configure error message
1154  784792 Just fixing a little typo in comments
1155
1156 * Translation updates:
1157  Hebrew
1158
1159
1160 Overview of changes in GLib 2.53.3
1161 ==================================
1162
1163 * Bugs fixed:
1164  658446 Add translation comment for wrong password notice string
1165  661926 Improve the default logging setup in GLib
1166  674885 type initialisation deadlock in GObject
1167  775593 GIO cannot write symlinks on FreeBSD and NetBSD
1168  776169 Various gio-tool fixes
1169  776333 Fix annotation on g_file_copy_async()
1170  776504 Upgrade license from LGPLv2+ to LGPLv2.1+
1171  777307 race condition between gdbus signal callback and g_bus_unwatch_name...
1172  778422 gsubprocesslauncher: Clarify the behavior of set_environ()
1173  781301 Stack pointer corrupted by incorrect call of NtNotifyChangeMultipleKeys
1174  782336 Add additional documentation of the GResource XML format
1175  782996 build: Use AM_TESTS_ENVIRONMENT rather than TESTS_ENVIRONMENT
1176  783061 GApplication: Remove some unused members
1177  783130 Make dbus activation sandbox-aware
1178  783193 Adapt to OpenURI api change
1179  783201 gdbus-codegen: Apply --output-directory to generated docs as well
1180  783340 win32: port monotonic times to use QPC
1181  783350 length parameter can be NULL g_data_input_stream_read_line
1182  783392 incorrect (out) annotation for g_dbus_interface_info_generate_xml
1183  783593 GGtkNotificationBackend should use /org/freedesktop/DBus to call Ge...
1184
1185 * Translation updates:
1186  Esperanto
1187  German
1188  Indonesian
1189  Kazakh
1190  Spanish
1191
1192
1193 Overview of changes in GLib 2.53.2
1194 ==================================
1195
1196 * A few new number parsing functions have been added:
1197   - g_ascii_string_to_signed
1198   - g_ascii_string_to_unsigned
1199   These have better error handling than the existing ones.
1200
1201 * glib-mkenums now supports /*< private >*/ and /*< public >*/
1202
1203 * GSettings now consider XDG_DATA_HOME in addition to XDG_DATA_DIRS.
1204
1205 * Bugs fixed:
1206  674885 type initialisation deadlock in GObject
1207  698064 Add g_ptr_array_contains()
1208  732000 gdatetime: Remove an unnecessary NULL pointer check
1209  734946 Implement GContentType on OSX
1210  741335 Possible differences in use of XDG_DATA_DIRS versus XDG base directory specification
1211  748263 Use-after-free in g_dbus_connection_call_internal()
1212  776876 gmodule – Various Android bug-fixes
1213  777030 build error where minor() and major() cant be resolved in gio/gdbusmessage.c
1214  780300 gio/gosxappinfo.c uses deprecated LSFindApplicationForInfo
1215  780309 gio/tests/appinfo build fails: gdesktopappinfo.c skipped on OS X
1216  781755 Avoid compiler warnings in generated marshallers code
1217  781826 portal support: Read /.flatpak-info
1218  781830 Fix some typos and errors in GVariant documentation
1219  781847 Use-after-free under send_message_with_reply_cleanup():gdbusconnection.c:1792
1220  781867 various gvfsd-* wants to look in /boot/efi, causes unnecessary/inappropriate auto...
1221  782068 doc: Trivial typo fixes
1222  782075 gtimer: Handle gmtime() failure in g_time_val_to_iso8601()
1223  782089 gdatetime: Fix overflow checks when constructing from timestamps
1224  782162 Support public/private trigraph in glib-mkenums
1225  782237 make check error
1226  782311 inode/directory is treated as a subclass of application/octet-stream
1227  782628 libmount build dependency check not requiring the right version?
1228
1229 * Translation updates:
1230  Hungarian
1231  Indonesian
1232  Spanish
1233
1234
1235 Overview of changes in GLib 2.53.1
1236 ==================================
1237
1238 * The gdbus tool gained a wait command
1239
1240 * g_unix_signal_source_new support SIGWINCH now
1241
1242 * There are now g_enum_to_string and g_flags_to_string functions
1243
1244 * A new function to instantiate objects: g_objet_new_with_properties
1245
1246 * GParameter and related APIs have been deprecated
1247
1248 * Bug fixes
1249  447907 enum/flags from string + type transform + tests
1250  668962 GUnixMountPoint/GUnixMountEntry not usable through gobject-introspection
1251  669355 gdbus-codegen output contains stray semicolons at file scope (forbidden in C99)
1252  674885 type initialisation deadlock in GObject
1253  698064 Add g_ptr_array_contains()
1254  709865 Add boxing to GParameter
1255  725894 build: Include gettext libraries for static compilation on Mac OS X
1256  734946 Implement GContentType on OSX
1257  741229 gio: Handle NULL cached properties in NetworkManager monitor
1258  745971 gdbus-tool: Add a command to wait for a well-known name on the bus
1259  755046 gfileutils: Add precondition checks to g_file_test()
1260  761102 Increase performance for main loop
1261  761889 GDateTime: %p does not always print AM/PM string
1262  766660 Please clarify the extent to which GInitable, GAsyncInitable must be idempotent
1263  769534 g_unix_signal_source_new does not support SIGWINCH
1264  772221 Take advantage of Unicode
1265  775879 g_log_default_handler should not check G_MESSAGES_DEBUG
1266  776169 various gio-tool fixes
1267  777961 Documentation for g_app_info_equals() could be clearer
1268  778049 race in gsource detected by TSan
1269  778207 gio-querymodules: fix memory leak
1270  778287 G_MODULE_EXPORT and -fvisibility=hidden
1271  779409 Fix false positive g_warning() in remove_filter()
1272  780066 g_base64_encode_close() in glib/gbase64.c produces invalid base64 encoding
1273  780095 g_utf8_get_char_validated() stopping at nul byte even for length specified buffers
1274  780306 Unused function in gunicollate.c for CARBON
1275  780310 g_tls_database_verify_chain doesn't set the GError for failures other than cancell...
1276  780384 gio/tests/contenttype fails on OS X: "public.directory" != "public.folder"
1277  780441 Make the portal implementation of g_app_info_launch() synchronous
1278  780634 Remove remaining old codepage ABI comapt code
1279  780908 gobject: remove duplicate GType sanity check
1280  780924 Memory leak in gdbusmethodinvocation.c
1281  781125 gio-tool: Fix errors format string
1282  781234 the buffer written to by g_input_stream_read is not marked as an out parameter
1283  781298 gfileutils.c:330:3: error: ISO C90 forbids mixed declarations and code
1284
1285 * Translation updates
1286  Catalan
1287  Friulian
1288  German
1289  Hebrew
1290  Indonesian
1291  Polish
1292  Russian
1293
1294
1295 Overview of changes in GLib 2.52.0
1296 ==================================
1297
1298 * Bug fixes:
1299  779799 gdatetime test fails with tzdata 2017a
1300  780032 Add missing attributes to two functions
1301  780144 gio/fam: Remove leftover debug print
1302
1303 * Translation updates:
1304  French
1305  Friulian
1306  Latvian
1307
1308
1309 Overview of changes in GLib 2.51.5
1310 ==================================
1311
1312 * OS X implementations of GContentType and GAppInfo
1313   have been added
1314
1315 * Bugs fixed:
1316  673047 gunicollate is broken on OS X (patch included!)
1317  734946 Implement GContentType on OSX
1318  747146 Implement GNotification on OSX
1319  769983 glib-mkenums generates non-reproducible Makefile snippets
1320  777203 gnulib license information is not correct in glib2.0
1321  778515 Crash in the gio kqueue backend
1322  779456 Make g_utf8_make_valid optionally take a length
1323
1324 * Translation updates:
1325  Danish
1326  Friulian
1327  German
1328  Hungarian
1329  Korean
1330  Lithuanian
1331
1332
1333 Overview of changes in GLib 2.51.4
1334 ==================================
1335
1336 * Memory leak fixes
1337 * Fix the released tarball
1338
1339
1340 Overview of changes in GLib 2.51.3
1341 ==================================
1342
1343 * Bugs fixed:
1344  771997 gchecksum: Add SHA-384 support
1345  778422 gsubprocesslauncher: Clarify the behavior of set_environ()
1346  778581 gdbus-codegen: Fix -Wconversion warning
1347  778801 gdbus-codegen: Add --outdir flag
1348  778991 Plug a mem leak in gdbusauth
1349  779183 g_io_extension_point_get_extensions should check for NULL pointer
1350
1351 * Translation updates:
1352  Basque
1353  Chinese (Taiwan)
1354  Danish
1355  Indonesian
1356  Italian
1357  Serbian
1358
1359
1360 Overview of changes in GLib 2.51.2
1361 ==================================
1362
1363 * Minimal support for UUIDs has been added
1364
1365 * A new file attribute, G_FILE_ATTRIBUTE_RECENT_MODIFIED has been added
1366   to improve sorting of recent files
1367
1368 * Bugs fixed:
1369  639078 UUID support feature request
1370  777135 gkeyfile: Be more specific about error codes in documentation
1371  777307 race condition between gdbus signal callback and g_bus_unwatch_name...
1372  777481 goutputstream: docs: fix typos
1373  777493 g_mkdtemp() not introspectable
1374  777507 Recent view sorting incorrectly
1375  777592 Add minor examples to GDBus and GVariant documentation
1376  778002 race in gdbusprivate.c detected by the ThreadSanitizer
1377  778096 race in gdbusconnection reported by TSan
1378
1379 * Translation updates:
1380  Norwegian bokmål
1381  Polish
1382  Simplified Chinese
1383  Slovak
1384  Spanish
1385  Swedish
1386
1387
1388 Overview of changes in GLib 2.51.1
1389 ==================================
1390
1391 * glib-compile-resources grew a --generate-phony-targets flag
1392
1393 * GLib now installs a valgrind suppressions file for GLib and GIO
1394
1395 * Bugs fixed:
1396  666114 should have infrastructure to run its tests under valgrind
1397  729730 GDBusMessage: Fix segfault if DEBUG_SERIALIZER is enabled
1398  730932 statically assert that reasonable assumptions about enums are true
1399  735731 gobject: Document behaviour of GType checking macros on NULL
1400  736810 gdbus: Fix leak in g_dbus_message_print()
1401  762283 GSocket – Fix race conditions on Win32 if multiple threads are waiting on cond...
1402  767609 Test suite problems
1403  767952 g_dbus_method_invocation_return_*, g_dbus_method_invocation_take_error: They d...
1404  769672 Assert threads for testcase 642026 are sucessfully created
1405  769745 gtask: Add guards for public functions
1406  770175 Add command line argument to mkenums and genmarshal to write output to a file
1407  770646 glib: Namespace global tapset variables by soname
1408  772160 Add g_unix_mount_for() support
1409  772989 Totem allows invalid urls that might cause segfault that's irrecoverable
1410  773823 gio: Bump copy buffer size to 256k by default
1411  774086 fix g_main_context_check declaration
1412  774368 Dependency file output of resource scanner breaks Ninja
1413  774421 Two minor patches
1414  774520 GSocket allocates and processes control messages even if not requested
1415  775309 Crash in gdbusauth
1416  775468 Improve log write supports color method on windows
1417  775510 testing with -fsanitize=undefined reports various undefined behaviour
1418  775517 Password input is echoed in the terminal
1419  775621 gmessages: Fix compilation on Android
1420  775765 FDO notification withdrawal backend sends wrong ID to the server
1421  775913 subprocesslauncher: potential infinite loop in verify_disposition()
1422  776198 Stray semicolon after g_variant_print() function in gvariant.c
1423  776586 License headers cleanup
1424  777077 Use of memory after it is freed
1425
1426 * Translation updates:
1427  Brazilian Portuguese
1428  Czech
1429  Galician
1430  German
1431  Hebrew
1432  Kazakh
1433  Lithuanian
1434  Spanish
1435  Swedish
1436
1437
1438 Overview of changes in GLib 2.51.0
1439 ==================================
1440
1441 * glib-genmarshal and glib-mkenums have gained --output options
1442   for better build system integration
1443
1444 * New API: g_utf8_make_valid
1445
1446 * Bugs fixed:
1447  591603 Make _g_utf8_make_valid public
1448  610969 Nice to have g_utf8_make_valid as public
1449  767882 Bit shift overflow (-Wshift-overflow) warning in gparam.h
1450  769135 External control for g_test_add/g_test_run
1451  769630 gfile: G_FILE_MONITOR_WATCH_MOVES was actually introduced in 2.46
1452  772160 Add g_unix_mount_for() support
1453  772221 Take advantage of Unicode
1454  773303 GApplication leaks option_strings 
1455
1456 * Translation updates:
1457  French
1458  Galician
1459  German
1460  Hungarian
1461  Lithuanian
1462  Norwegian bokmål
1463  Occitan
1464  Polish
1465  Slovak
1466  Turkish
1467
1468
1469 Overview of changes in GLib 2.50.1
1470 ==================================
1471
1472 * Update Unicode support to Unicode 9.0.0
1473
1474 * Bugs fixed:
1475  662946 gunixmounts monitoring doesn't work correctly with libmount
1476  771591 Update to Unicode 9.0.0
1477  772054 glib/gspawn-win32-helper.c: unexpected behavior re CommandLineToArgvW()
1478  772255 gresolver: Mark GResolver as an abstract class
1479  772269 Add --version options to glib-compile-resources and glib-compile-schemas
1480  772297 completion: Complete gsettings describe
1481  772511 g_log_default_handler crashes windows apps with "Unspecified fatal err...
1482
1483 * Translation updates:
1484  Brazilian Portuguese
1485  Catalan
1486  Croatian
1487  Czech
1488  Danish
1489  Hungarian
1490  Italian
1491  Latvian
1492  Polish
1493  Swedish
1494
1495
1496 Overview of changes in GLib 2.50.0
1497 ==================================
1498
1499 * Bugs fixed:
1500  771438 Turn on libmount by default on linux
1501         Fix the annotation for g_log_variant
1502
1503 * Translation updates:
1504  British English
1505  French
1506
1507
1508 Overview of changes in GLib 2.49.7
1509 ==================================
1510
1511 * Add g_log_variant, binding-friendly api for structured logging
1512
1513 Bugs fixed:
1514  646926 arg_data invalid after g_option_context_parse() fails
1515
1516 * Translation updates:
1517  Danish
1518  Finnish
1519  Galician
1520  German
1521  Hebrew
1522  Kazakh
1523  Korean
1524  Latvian
1525  Lithuanian
1526  Polish
1527  Portuguese
1528  Serbian
1529  Slovak
1530  Spanish
1531  Swedish
1532  Thai
1533
1534
1535 Overview of changes in GLib 2.49.6
1536 ==================================
1537
1538 * The gsettings commandline tool now has a describe command
1539
1540 Bugs fixed:
1541  745754 Add gcc-style dependency output to glib-compile-resources
1542  769076 Fix warning: attempt to override closure->va_marshal with new marshal
1543  770372 gdbus-codegen: Strip @since parameters before comparison
1544
1545 Translation updates:
1546  Brazilian Portuguese
1547  Czech
1548  German
1549  Hungarian
1550  Polish
1551  Portuguese
1552  Spanish
1553
1554
1555 Overview of changes in GLib 2.49.5
1556 ==================================
1557
1558 * Structured logging:
1559  - drop libsystemd dependency
1560  - document that g_test_expect_message does not work with structured logs
1561
1562 * Use libmount for unix mount support
1563
1564 * Add an async variant of g_app_info_launch_default_for_uri
1565
1566 Bugs fixed:
1567  522053 GUnixMountMonitor needs to use /proc/self/mountinfo on recent Linux
1568  682794 Add usage guidance to logging documentation
1569  744456 Structured logging API
1570  766370 Add a macro for initializing g_auto(GVariantBuilder)
1571  767240 Regex failures with pcre 8.38
1572  768198 Can't build glib with systemtap enabled
1573  768453 Gdbus test: compilation fails due to -Werror=format-y2k errors
1574  768752 Add async variant of g_app_info_launch_default_for_uri
1575  769027 Docs misleadingly imply G_CHECKSUM_SHA512 is available since 2.16
1576  769029 gmessage: compiler complains about -Wformat-nonliteral
1577  769042 'O_CLOEXEC' undeclared (first use in this function)
1578  769087 gmessages: support NULL log domain
1579  769089 Fix gsettings uint64 testcase
1580  769104 Build failure when using _GLIB_CHECKED_ADD_U32 with the Intel compiler
1581  769139 g_log_writer_journald uses non-standard 'htole64' function
1582  769238 memory increases every time I umount and mount my secondary hard disk.
1583  769245 is_valid_heap_iter define misses NULL pointer check
1584  769507 gmessages: Don’t require is_journald() call before writer_journald()
1585  769785 gmessages: Expand documentation further for structured logging
1586  769995 gdbus-codegen: Allow '@since: UNRELEASED' in documentation comments
1587
1588 Translation updates:
1589  Catalan
1590  Hebrew
1591  Lithuanian
1592  Slovak
1593  Spanish
1594
1595
1596 Overview of changes in GLib 2.49.4
1597 ==================================
1598
1599 * Change the just-introduced structured logging API. The arguments
1600   of g_log_structured() had to be reordered to enable an implementation
1601   within the limits of what the standards guarantee about var args.
1602
1603 Bugs fixed:
1604  744456 Structured logging API
1605  768936 gio doc build fails because of missing gio.xml in the tarballs
1606  768963 improper va_list use in g_log_structured()
1607  768968 gio/tests/socket-listener hangs since e4ee307
1608
1609 Translation updates:
1610  Spanish
1611
1612
1613 Overview of changes in GLib 2.49.3
1614 ==================================
1615
1616 * GLib has a structured logging API, g_log_structured, with support
1617   for writing to the systemd journal. It also supports colored output
1618   in terminals
1619
1620 * Some new GBytes API has been added:
1621  - g_key_file_load_from_bytes
1622  - g_compute_hmac_for_bytes
1623
1624 * Stack-allocated GVariantBuilder and GVariantDict objects can now be
1625   initialized with G_VARIANT_BUILDER_INIT and G_VARIANT_DICT_INIT
1626
1627 * gio:
1628  - Add a way to register handlers for custom uri schemes
1629  - Add a G_FILE_ATTRIBUTE_FILESYSTEM_REMOTE attribute to
1630    have these heuristics in a single place
1631  - Include a gio tool that makes the functionality of the
1632    various gvfs commandline tools available in a single place
1633  - Add portal support to g_app_info_launch_default_for_uri
1634  - Add portal support to GNetworkMonitor
1635  - Add portal support to GProxyResolver
1636  - Add portal support to g_application_send_notification
1637
1638 Bugs fixed:
1639  547200 g_utf8_find_next_char() issues
1640  662802 systemtap multiarch issue
1641  723506 fork/exec from non-main thread when autolaunching could be avoided...
1642  725902 build: simplify dtrace configuration
1643  728207 gsocketservice: Documentation does not mention that is already act...
1644  729914 instead of DEBUG_CODE and IF_DEBUG, provide a common macro to supp...
1645  744456 Structured logging API
1646  744678 Unable to delete relocatable schemas
1647  746685 clarify that g_variant_get_data() can be used instead of g_variant...
1648  747134 glib-compile-resources --generate should detect common C++ file ex...
1649  750257 GSettings changed signal should clearly state the order required
1650  753231 Memory is potentially used after free
1651  754012 missing filename in "Error loading css: Failed to import: Error op...
1652  760115 gtestutils: add missing dash in seed argument's --help documentation
1653  760423 gio-querymodules prints error messages as question marks on some l...
1654  761102 Increase performance for main loop
1655  765338 GLib.compute_hmac_for_data throws every time
1656  766370 Add a macro for initializing g_auto(GVariantBuilder)
1657  766899 Superflous HTML/XML comments in GDBusProxyTypeFunc documentation s...
1658  766933 GSocketAddress leaks in gnetworkmonitornetlink.c:read_netlink_mess...
1659  767765 Add names and tags to various GSources and GTasks constructed in GLib
1660  767880 gkeyfile: add g_key_file_load_from_bytes() API
1661  767887 vfs: add g_vfs_register_uri_scheme()
1662  767949 [patch] Typos in glib docs
1663  768029 infinite loop in parse_name_internal()
1664  768119 Fix fallout from get_supported_schemes() changes
1665  768357 Build the gio tool on Windows/MSVC
1666  768498 portal support for glib
1667  768504 keyfile: g_key_file_get_double behavior doesn't follow documentation
1668  768549 Test failure: test_ip_sync_dgram
1669  768551 Test failure: test_socket_address_to_string
1670  768560 gio/tests/gsettings: fix GSettings reference leaks in some tests
1671  768780 O_PATH is a non-standard flag which may be unavailable on non-Lin...
1672  768806 gdbus tool must swallow -- argument
1673
1674 Translation updates:
1675  Chinese (Taiwan)
1676  French
1677  Hebrew
1678  Indonesian
1679  Lithuanian
1680  Portuguese
1681  Spanish
1682
1683
1684 Overview of changes in GLib 2.49.2
1685 ==================================
1686
1687  * GMainContext and GTask have gained more systemtap probes
1688
1689 Bugs fixed:
1690  673101 resource compiler dependency generation not working for gen...
1691  700756 GFile.new_for_path arguments misses (type filename) annotation
1692  730187 glocalfileoutputstream: Fix an FD leak in an error path
1693  755439 Memory leak in gdbusproxy.c
1694  759813 Add more SystemTap/DTrace probes for main context and GTask
1695  761810 gio: Support using GDBusObjectManagerServer at path ‘/’
1696  767172 docs: Move GIO_USE_VFS to "okay for production" section
1697  767218 Remove a UTF-8 ellipsis from gsignal.h
1698  767245 Add filename type annotations
1699  767824 Some UTC timezones incorrectly recognized on Windows 7
1700
1701 Translation updates:
1702  Occitan
1703
1704
1705 Overview of changes in GLib 2.49.1
1706 ==================================
1707
1708  * GDesktopAppInfo now allows bus activation with dashes. This is
1709    not technically allowed per the Desktop Entry specification, but
1710    it happens in the wild. Rather than forcing people to go through
1711    another traumatic desktop file rename, accept it and translate - to _.
1712
1713  * The support for giving names to threads has been improved. Thread names
1714    are now supported on Solaris as well, and the Linux support no longer
1715    uses prctl() but the pthread api.
1716
1717  * GIO resources can now be overridden at runtime, using the G_RESOURCE_OVERLAYS
1718    environment variable.
1719
1720  * gdbus-codegen can now generate autocleanup definitions for the types
1721    it generates. Use the --c-generate-autocleanup option to control this
1722
1723 Bugs fixed:
1724  665446 Use g_abort() instead of abort()
1725  731988 glocalfile: Avoid a potential NULL pointer dereference
1726  742898 g_value_type_transformable() description differs from the code
1727  747107 GVariant varargs documentation: g_variant_get() example
1728  747478 g_system_thread_set_name() is not implemented for gthread-win32
1729  748474 g_get_language_names() is not thread-safe
1730  748530 gthread: W32 implementation of g_get_num_processors() has lame fallback
1731  748806 GVariant: Better introduction to the concepts and its uses
1732  749583 GSequence performance improvements
1733  749606 tests: always remove app.desktop
1734  755898 [PATCH] settings: add get/set uint64
1735  758174 Fix documentation typos
1736  758738 Usage of GType properties causes crashes due to gulong/gpointer mismatch
1737  760186 namespace clash with gdb pretty-printing code
1738  762994 Race condition in GIO/AppFileChooser crashes Firefox/Gtk3
1739  763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
1740  763821 build: Also dist Systemtap files always for gobject/
1741  764092 gstrfuncs: Document the behaviour of g_strjoinv()
1742  764163 g_task_had_error doesn't remember the error after g_task_propagate_*
1743  764415 Very High CPU usage in g_poll() Windows implementation
1744  764574 build: Fix all statfs() tests failing
1745  764575 tests: Fix compilation errors due to Y2K format problems
1746  764685 GApplication documentation about handling command-line options is confusing
1747  764754 '-' in application id: unbreak bus activation and notifications
1748  765173 documentation of g_main_context_push_thread_default() regarding GIO...
1749  765668 GResources: add support for resource overlays
1750  765710 gdbus-tool: only print note about expected argument types if that...
1751  765712 tests: Fix compilation
1752  765861 task: avoid context lock when setting source name
1753  765900 Add g_drive_is_removable() support
1754  765924 Improve external drives detection
1755  765959 socket: set fd field to -1 after closing socket
1756  765990 Visual Studio: Define inline only when necessary
1757  765991 Compilation of gresource.c is broken due to S_ISDIR
1758  766092 Incorrect locale handling in g_date_time_format_locale()
1759  766211 Fix the upper bound in g_unichar_iswide_bsearch
1760  766407 Some build-related defects in glib testsuite
1761  766570 build: Fix a misnamed variable in glib-tap.mk
1762
1763 Translation updates:
1764  Basque
1765  Catalan
1766  Chinese
1767  Occitan
1768  Portuguese
1769  Turkish
1770  Vietnamese
1771
1772
1773 Overview of changes in GLib 2.48.0
1774 ==================================
1775
1776  * a minor build fix in the name of determinism
1777
1778  * a few coverity fixes
1779
1780 Bugs fixed:
1781  763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
1782
1783 Translations updated:
1784  Danish
1785  Italian
1786
1787 Overview of changes in GLib 2.47.92
1788 ===================================
1789
1790  * gdbus-codegen now supports g_autoptr()
1791
1792  * g_get_user_runtime_dir() now reliably returns an existing directory
1793
1794  * g_array_remove_range() can now remove 0 items from the end of an array
1795
1796  * Many fixes for Windows
1797    * build fixes
1798    * file monitoring
1799    * gsettings backend
1800    * streams
1801    * random numbers
1802    * wide character support
1803
1804  * documentation improvements
1805
1806  * other small bugfixes
1807
1808 Bugs fixed:
1809  724847 Segmentation fault on "gsettings list-recursively"
1810  743933 gapplication: add --app-id command line option
1811  756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
1812  757506 gsettings: schema_list should use the passed schema's source
1813  760694 W32: Apps linked with -mwindows make cursor busy sometimes
1814  762202 g_win32_error_message improvements
1815  762637 build: Unconditionally dist tapset files
1816  762748 Undefined behavior
1817  762937 Mention that g_clear_error can be used with an "empty" GError
1818  763339 array: Support clearing an empty array with g_array_remove_range()
1819  763344 g_get_user_runtime_dir(): ensure directory exists
1820  763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
1821
1822 Translations updated:
1823  Brazilian Portuguese
1824  Czech
1825  Finnish
1826  French
1827  Galician s
1828  German
1829  Greek
1830  Hebrew
1831  Hungarian
1832  Italian
1833  Kazakh
1834  Korean
1835  Latvian
1836  Lithuanian
1837  Occitan
1838  Polish
1839  Russian
1840  Serbian
1841  Slovak
1842  Slovenian
1843  Spanish
1844  Swedish
1845
1846 Overview of changes in GLib 2.47.6
1847 ==================================
1848
1849 * Windows usupport:
1850  - Fixes and improvements to the GSettings registry backend
1851  - Handle readability and writability of registry keys
1852  - Use Unicode registry APIs
1853
1854 * Bugs fixed:
1855 760852 744772 761126 747927 761337 744570 761504 761550 761843
1856  744570 GString is missing (transfer none) annotations on many of its methods
1857  744772 systemtap and gdb scripts install in wrong place
1858  747927 Documentation: various small improvements
1859  760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
1860  761126 winiconv: update to upstream version
1861  761337 Fix some annotations
1862  761504 W32 registry GSettings backend does not use Unicode
1863  761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
1864  761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
1865
1866 * Translation updates:
1867  Brazilian Portuguese
1868  Bulagarian
1869  Chinese (Taiwan)
1870  Hungarian
1871  Polish
1872  Slovak
1873  Slovenian
1874  Spanish
1875  Swedish
1876
1877
1878 Overview of changes in GLib 2.47.5
1879 ==================================
1880
1881 * the system copy of PCRE is now used by default to implement GRegex.
1882   Configure with --with-pcre=internal if a system PCRE version
1883   is unavailable or undesired.
1884
1885 * interfaces for DTLS support have been added.  A new version of
1886   glib-networking will also be required.
1887
1888 * GDBusMethodInvocation now drops replies if the sender set the
1889   NO_REPLY_EXPECTED flag
1890
1891 * several GApplication fixes, including fixes for commandline arguments
1892   in interpreted languages on Windows
1893
1894 Bugs fixed:
1895  624186 Deprecate glib-gettext macros
1896  734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
1897  735754 Implement close on TLS GOutputStream
1898  748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
1899  752240 Add DTLS support to GIO
1900  755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
1901  756875 Include ntdef.h for NTSTATUS
1902  759554 g_application_run() calls g_main_context_default() repeatidly
1903  760199 gsettings: Install gettext ITS rules
1904  760215 G_LIKELY/_UNLIKELY macros need more parentheses
1905  760683 regex test: Check the expected PCRE exceptions at runtime
1906
1907 Translations updated:
1908  Brazilian Portuguese
1909  Czech
1910  German
1911  Lithuanian
1912  Swedish
1913
1914 Overview of changes in GLib 2.47.4
1915 ==================================
1916
1917 * The GApplication documentation has been improved in several areas.
1918
1919 * Bugs fixed:
1920  749092 gdb pretty-printers fail on Python 3 with a TypeError...
1921  757374 macros: clean up "inline" mess
1922  758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
1923  759134 Add missing checks for gnulib vasnprintf()
1924  759408 Do not use uninitialized var 
1925  756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
1926  757372 GApplication: destroy the impl on shutdown
1927  728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
1928  757299 glib-compile-resources: do not leak c_name
1929  758553 Fix gettext use
1930  758823 file monitors: reorder some code to avoid segfault
1931  756214 gsettings: Don't translate ""
1932  710243 Add GParamSpec object ref management annotations
1933  735696 xdgmime: Finer handling for cases where mmap() is not available
1934  752983 gapplication: Acquire the main context before running
1935
1936 * Translation updates:
1937  Swedish
1938
1939
1940 Overview of changes in GLib 2.47.3
1941 ==================================
1942
1943 The inline cleanup in the last release accidentally removed three
1944 symbols from libglib-2.0.so.  It is unlikely that this will have caused
1945 any problems because these symbols were only backup symbols for
1946 definitions exported as inlines in the header files, but ABI is ABI.
1947
1948 This release corrects only this problem.
1949
1950 Overview of changes in GLib 2.47.2
1951 ==================================
1952
1953 * We have formalised the assumption that all compilers that are
1954   interested in support 'static inline' and simplified the macros around
1955   this considerably.  Please watch for and report unintentional fallout.
1956
1957 * New API: hardware-assisted helpers for overflow-checked integer math.
1958
1959 * other fixes
1960
1961 Bugs fixed:
1962  696324 gtester-report doesn't work with Python 3.x
1963  719966 glib: Add missing (nullable) and (optional) annotations
1964  752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
1965  755364 make gtkdoc-check happy again
1966  756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
1967  756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
1968  756988 GSequence should document each function's complexity
1969  757294 Move G_POLLFD_FORMAT to glibconfig.h
1970  757374 macros: clean up "inline" mess
1971  757451 doc: fix g_task_attach_source() example
1972  757628 gio tests fail to build when cross compiling 2.46.1
1973  757693 Invalid free in g_local_file_trash()
1974  757742 Fix up annotations in ghash.c
1975  758181 GTask: fix wrong example code
1976
1977 Translations updated:
1978  Greek
1979  Hebrew
1980  Hungarian
1981  Norwegian bokmål
1982  Portuguese
1983  Scottish Gaelic
1984  Simplified Chinese
1985  Spanish
1986
1987 Overview of changes in GLib 2.47.1
1988 ==================================
1989
1990 * The Unicode support has been updated to version 8.0 of the Unicode standard
1991
1992 * GDesktopAppInfo no longer sets the DISPLAY environment variable when
1993   launching apps. This is now done in the GAppLaunchContext implementations
1994   when appropriate
1995
1996 * Bug fixes:
1997  664740 Key-value file parser, space after integer
1998  687223 cleverer GThreadPool management
1999  692085 stderr and stdout are not always file descriptors 1 and 2
2000  697907 Add interface for socket-like things (GSocket, DTLS, etc)
2001  735754 Implement close on TLS GOutputStream
2002  737116 Add functions to print GSocketConnectables and addresses as strings
2003  743011 Minor additions to GError documentation
2004  749161 undefined reference to `__imp__stat32i64'
2005  749314 Cannot restore a just-trashed file
2006  751924 Add recvmmsg()-like API on GSocket
2007  752240 Add DTLS support to GIO
2008  752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
2009  753310 Remove `#pragma GCC system_header` from gmessages.h
2010  753935 Update example namespace and class names in GObject tutorial
2011  754855 Object instantiation documentation refers to example that no longer ex...
2012  754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
2013  754994 g_date_time_get_second () sometimes returns an off-by-one result
2014  755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
2015  755351 Example still contains g_autoptr(gchar)
2016  755355 Move GStrv to glib.h so it can be used with g_auto()
2017  755374 g_variant_get_child(): flatten-first logic on '&'
2018  755496 glib 2.46 fails GStreamer test suite
2019  755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
2020  755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
2021  755795 2.46 considers empty files as octet-stream rather than text (leads to...
2022  755961 Fix up annotations in gbytes.c
2023  756053 MSVC doesn't understand the symbol 'msghdr'
2024  756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
2025  756077 testutils: remove internal ABI comment
2026  756099 g_main_context_query(): Annotate @n_fds as (in) parameter
2027  756139 musl: ctors called in the wrong order
2028  756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
2029  756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
2030  756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
2031  756316 GSequence should provide fast api to check if empty
2032  756382 snprintf used on Windows with VS2015 doesn't support %n
2033  756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
2034  756550 gtypes.h: Make G_MININTn literals negative
2035  756875 Include ntdef.h for NTSTATUS
2036  756952 giomodule: return a copy of module name
2037
2038 * Translation updates:
2039  Basque
2040  Czech
2041  Serbian
2042  Serbian Latin
2043  Vietnamese
2044
2045
2046 Overview of changes in GLib 2.46.0
2047 ==================================
2048
2049 * Disable runtime-deprecation warnings
2050
2051 * Fix marshalling of flags on bigendian 64bit architectures
2052
2053 * Translation updates
2054  Brazilian Portuguese
2055  Danish
2056  German
2057  Latvian
2058  Russian
2059  Turkish
2060
2061
2062 Overview of changes in GLib 2.45.8
2063 ==================================
2064
2065 * utf8 validation and utf8-to-ucs4 conversion are faster
2066
2067 * Small speedups to property change notification
2068
2069 * Various other small optimizations for GQuark, GData
2070
2071 * Bugs fixed:
2072  696426 GParamSpecTypeInfo do not need to be static
2073  735429 Cleanup MSVC Project Files Generation
2074  738504 Optimize UTF-8 decoding by unrolling branches and expressions
2075  742903 Add missing (transfer) annotation to GString
2076  748633 g_set_object order of operations
2077  754431 Fix build of glib/gstrfuncs.c on Windows
2078  754560 gioerror: Add more mappings for WinSock error codes
2079  754582 Glib cannot compile
2080  754601 Make g_strerror work with non-glibc POSIX systems
2081  754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
2082  754788 more g_strerror stuff
2083  754831 autocleanups: Add GString type
2084  754924 Improve test coverage of g_utf8_validate() by added known-...
2085  754986 Avoid unnecessary signal emission during draw
2086
2087 * Translation updates:
2088  Italian
2089  Kazakh
2090  Korean
2091  Lithuanian
2092  Slovenian
2093  Swedish
2094
2095
2096 Overview of changes in GLib 2.45.7
2097 ==================================
2098
2099 * Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
2100   backends (e.g. cloud storage).
2101
2102 * GFileMonitor: Make the inotify backend work with atomic renames again
2103
2104 * GSettings: change notification is again working unconditionally
2105
2106 * GListStore has a sort function now
2107
2108 * Test infrastructure:
2109  - Tests are now required to have unique names
2110  - TAP support has been improved
2111  - A macro for asserting that two memory regions have identical content
2112    has been added
2113
2114 * Bugs fixed:
2115  708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
2116  742849 inotify: send paired events to both sides
2117  744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
2118  747364 Fix GError leak in g_file_query_writable_namespaces()
2119  749492 Support file creation time on FreeBSD and NetBSD
2120  752769 (g_socket_receive_message | g_socket_send_message) performance
2121  753745 glib-genmarshal still needed for cross-compilation
2122  754152 Add g_list_store_sort
2123  754211 Memory leak in g_file_enumerator_iterate ()
2124  754264 GLib 2.44 certificate chain construction fails if the PEM incl...
2125  754283 gtestutils: add g_assert_cmpmem()
2126  754284 gtestutils: print the TAP test plan first, not last
2127  754286 misc gtestutils fixes
2128  754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
2129
2130
2131 * Translation updates:
2132  Chinese (Taiwan)
2133  French
2134  Galician
2135  Greek
2136  Hebrew
2137  Hungarian
2138  Indonesian
2139  Polish
2140  Portuguese
2141
2142
2143 Overview of changes in GLib 2.45.6
2144 ==================================
2145
2146 * Fix a test failure and a build failure
2147
2148 Overview of changes in GLib 2.45.5
2149 ==================================
2150
2151 * GNetworkMonitor now provides information about metered networks
2152
2153 * g_mem_set_vtable has been deprecated; it has not been working for
2154   quite a while. The recommendation is to use valgrind, or replace
2155   malloc itself.
2156
2157 * Bugs fixed:
2158  656325 Make GDBusInterfaceVTable binding friendly
2159  741779 Documentation tweaks addressing real-world API misuses
2160  741822 Fails to build with VS 2015
2161  742386 gdbusconnection: Don't g_printerr() when exiting
2162  743018 gobject: Add more cross-links between documentation pages
2163  750282 Add g_network_monitor_get_network_metered() to get if the connection...
2164  751358 GFileMonitor doesn't react to "mv some-file watched-file"
2165  751592 Stop using GMemVtable
2166  751598 Stop 'handle-local-options' propagation when callback reports an err...
2167  751610 g_str_hash produces collisions with strings of length 2
2168  751751 Wrong docs of g_async_queue_remove
2169  752210 gdbus command crashes with SIGSEGV
2170  752656 gdbusconnection: Fix signal subscription documentation
2171  752767 Fix typo in g_hash_table_replace() documentation
2172  753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
2173  753285 g_menu_item_set_icon fails if called with NULL icon
2174
2175 * Translation updates:
2176  Catalan
2177  Czech
2178  French
2179  Indonesian
2180  Lithuanian
2181  Norwegian bokmål
2182  Slovak
2183  Spanish
2184  Thai
2185  Turkish
2186
2187
2188 Overview of changes in GLib 2.45.4
2189 ==================================
2190
2191 * Bugs fixed:
2192  727829 win32: glibconfig.h.win32 updates
2193  741901 Clang cannot know that g_error don't return
2194  746339 GSocket kills process when fd is not a socket
2195  747676 gio/tests/socket fails: test_fd_roundtrip
2196  748610 Some tests fail with non-English locales
2197  749911 g_inet_address_to_string broken on XP/2003
2198  749912 g_inet_address_new_from_string broken on XP/2003
2199  750625 Should dismiss Software Updates Available notification after...
2200  750807 G_BREAKPOINT doesn't work as intended on Darwin
2201  751160 gtask does unnecessary work
2202  751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
2203  751731 GFile/DirectoryMonitor emit move events with other_file=NULL
2204  751737 gio/tests/appmonitor test fails in 2.45.3
2205  751798 Wrong enum type used in some test-cases
2206  752089 make gsocketservice::active a property
2207  752293 small cleanup: use list_free_full
2208
2209 * Translation updates:
2210  Greek
2211  Hebrew
2212  Portuguese
2213
2214
2215 Overview of changes in GLib 2.45.3
2216 ==================================
2217
2218 * Improve performance of g_signal_handler_disconnect for signals
2219   with many handlers
2220
2221 * GDBus has gained a new call flag to allow interactive authorization
2222
2223 * GSettings:
2224  - New API: g_settings_schema_list_keys
2225  - Deprecated: g_settings_list_keys
2226
2227 * OS X:
2228  - Implement GNotification
2229  - Bump the OS X requirement to 10.9
2230
2231 * Windows:
2232  - Add registry reading API
2233  - Reimplement GAppInfo using registry information
2234
2235 * Bugs fixed:
2236  666831 Support URI opening on W32
2237  728489 property action with inverted boolean state
2238  730168 Incorrect annotation on g_action_group_get_action_state_type return...
2239  733325 Several regex tests fail with pcre3 8.35
2240  734888 GLib has no helper functions to work with W32 Registry
2241  737009 signal handler lookup doesn't scale
2242  738185 Misleading language about "file name encoding" in the docs on g_env...
2243  738504 Optimize UTF-8 decoding by unrolling branches and expressions
2244  739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
2245  739424 gnome-shell crashes when files are added, deleted, or modified in $...
2246  739616 DBus; Add new call flag to allow interactive authorization
2247  740308 Add g_settings_schema_list_keys() method
2248  740516 RFE: please provide an introspectible version of g_log_set_handler
2249  741788 Document GSettings build system integration
2250  745013 GBinding not thread safe
2251  747146 Implement GNotification on OSX
2252  747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
2253  748727 Filechooser dialog shows no icons for directories on W32
2254  749693 GActionGroupExporter: flush queue on requests
2255  750203 GNetworkMonitorNetlink hangs in user namespace
2256  750322 gapplication: Make sure --help output is translated
2257  750344 GTlsInteractionClass is missing from doc
2258  750369 Various GBinding cleanups
2259  750386 Race condition in g_io_condition_get_type
2260  750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
2261  750573 GTlsDatabaseClass is not documented
2262  750918 genmarshal: silence register storage class warnings
2263  751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
2264  479730 The "g_key_file_set_comment" interface prepends '#' character to...
2265
2266 * Translation updates:
2267  Hungarian
2268  Spanish
2269
2270
2271 Overview of changes in GLib 2.45.2
2272 ==================================
2273
2274 * Improve error reporting in glib-compile-schemas.
2275
2276 * Add introspection annotations to GListStore.
2277
2278 * Bugs fixed:
2279  696749 win32 : failed to compile because of careless mistake in the code
2280  723394 const parameter to GtkPopover gtk_popover_set_pointing_to
2281  724113 gdbus-connection-loss test can fail on slow machines
2282  725981 tap-driver.sh: internal error getting exit status
2283  733325 Several regex tests fail with pcre3 8.35
2284  744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
2285  747882 gtype: Bump allowed number of children
2286  748534 gtest: if a subprocess assertion fails, print its stdout and stderr
2287  748612 de_DE locale used in option-context test is not supported by FreeBSD
2288  748614 Double unref in g_socket_listener_add_inet_port
2289  748834 glocalfilemonitor: Emit notification on rate limit change
2290  749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
2291  749080 gdatetime test: fails if close to rollover between seconds
2292  749180 gnetworkaddress: add return type annotation to parse methods
2293  749352 g_binding_unbind() fails when source is also the target
2294  749353 GBinding does not connect to the detailed notify signal
2295
2296 * Translation updates:
2297  Catalan
2298  French
2299  Slovak
2300  Thai
2301
2302
2303 Overview of changes in GLib 2.45.1
2304 ==================================
2305
2306 * The GSettings schema compiler, glib-compile-schemas has been changed
2307   to reject schema xml that has duplicate <summary> or <description>
2308   elements. Such elements typically occur when translations are merged
2309   into the schema, with xml:lang attributes. This is not the correct
2310   way to translate schemas. Instead keep the translations in the .mo
2311   file and set the gettext-domain attribute on the <schemalist> element.
2312
2313 * The file monitoring infrastructure has been rewritten, and all backends
2314   have seen major improvements.
2315
2316   The inotify backend is reporting events with less delay (no event will
2317   be delayed more than 10ms) and wakeups due to file monitoring have been
2318   significantly reduced. A CHANGES_DONE event will also be sent when new
2319   files appear.
2320
2321   The poll implementation is now using the thread default main context.
2322
2323   The fam implmentation is now running in the worker thread.
2324
2325   The fen implementation has been removed, since it was unmaintained.
2326
2327 * The GSettings schema compiler, glib-compile-schemas, is more strict
2328   about rejecting schemas with xml:lang style merged translations.
2329   Schema translations should be done by specifying the gettext domain
2330   in the xml, and keeping the translations in gettext. To avoid breaking
2331   already-installed schemas, this change is only taking effect when
2332   you use the --strict option.
2333
2334 * The hardcoded 10-thread limit of GTask's thread pool has been removed,
2335   since it was prone to causing deadlocks. The thread pool is now allowed
2336   to grow dynamically and will shrink back over time.
2337
2338 * GSimpleAsyncResult has been deprecated in favor of GTask.
2339
2340 * The algorithm used by GAppInfo to find default handlers for mime types
2341   has been tweaked to prefer apps that handle the specific subtype over
2342   default handlers for a generic supertype.
2343
2344 * Bug fixes:
2345  627285 inotify file monitor hardwired delay
2346  631597 Segmentation fault in append_escaped_text
2347  661767 merge/improve various bits of run-in-thread functionality
2348  687223 cleverer GThreadPool management
2349  711547 win32: silence some build warnings
2350  719966 glib: Add missing (nullable) and (optional) annotations
2351  726447 Possibly an error in text string
2352  728663 W32: wrong stat struct is used when built with MinGW-w64
2353  728669 W32: GLocalFile can't measure size of files larger than 2^32...
2354  730188 gsocket: Document FD ownership with g_socket_new_from_fd()
2355  733325 Several regex tests fail with pcre3 8.35
2356  738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
2357  739850 GClosure: add valgrind hints
2358  741791 gmain: Save errno when handling unix signals
2359  744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
2360  745255 Add support for copying sessions between GTlsClientConnections
2361  745745 gdbus: fix out-of-bound array access
2362  745821 Don't use __alloc_size__ attribute with clang
2363  746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
2364  746753 Glib-compile-resources --generate-header not using ".h" as ...
2365  747209 glib-compile-schemas ought to reject repeated <summary> and...
2366  747349 Conversion of gdbus to use GTask causes deadlocks
2367  747363 gatomic: Add missing new line in API doc comment
2368  747472 Don't ignore already-installed schemas with multiple <summa...
2369  747541 gdbus segfaults with invalid --dest
2370  747772 Having hardcoded utf8 strings in the source code does not p...
2371  748019 gsocketconnection: Fix copy-pasto in documentation
2372  748177 not all test schemas are distributed, "make distcheck" fails
2373
2374 * Translation updates:
2375  Basque
2376  Czech
2377  Danish
2378  Finnish
2379  German
2380  Hebrew
2381  Icelandic
2382  Norwegian bokmål
2383  Russian
2384  Turkish
2385
2386
2387 Overview of changes in GLib 2.43.92
2388 ===================================
2389
2390 GLib is now considered frozen.  We do not expect any major changes
2391 before the release of 2.44.0.
2392
2393  * GUnixMountMonitor now properly supports multiple main contexts
2394
2395  * many documentation improvements and cleanups.  We are now
2396    approaching a point where the documentation is 100% complete and the
2397    xml will build without warnings.  This will probably be enabled by
2398    default in the next cycle.
2399
2400  * new support for HTTP proxies in GIO
2401
2402  * new GTask:completed property
2403
2404  * use "private" futexes in order to further improve the performance of
2405    the contended case of GMutex and g_bit_lock()
2406
2407 Bugs fixed:
2408  614684 Make various parts of GObject const-correct
2409  730352 Use inet_pton(), if_nametoindex() and if_indextoname() for newer versions of Windows
2410  733876 Proxy protocol 'http' is not supported.
2411  741442 threads: use FUTEX_WAIT_PRIVATE and FUTEX_WAKE_PRIVATE if possible
2412  742599 Clean up GUnixMountMonitor
2413  743636 gtask: Add a GTask:completed property
2414  743661 g_win32_check_windows_version() is missing from doc
2415  744722 docs: Expand introduction to mention using async calls over sync ones
2416  745589 [Patch] gio: add some missing autocleanup
2417  745634 [GNotifications] Use themed icon as icon-name
2418
2419 Translations updated:
2420  Bosnian
2421  Bulgarian
2422  Catalan
2423  Czech
2424  French
2425  German
2426  Greek
2427  Hungarian
2428  Italian
2429  Kazakh
2430  Korean
2431  Latvian
2432  Lithuanian
2433  POTFILESin
2434  Polish
2435  Russian
2436  Serbian
2437  Slovak
2438  Slovenian
2439  Spanish
2440  Swedish
2441  Vietnamese
2442  pa  for Gnome
2443
2444 Overview of changes in GLib 2.43.91
2445 ===================================
2446
2447 We have now added 'g_autofree' as a libgsystem-style autocleanup macro
2448 that calls g_free() on the content of a local variable when it leaves
2449 scope (working only on GCC and clang).
2450
2451 GApplication now has an "is-busy" property, allowing one to query the
2452 effective busy state.
2453
2454 There have been various other bugfixes and cleanups.
2455
2456 Bugs fixed:
2457  661554 GIO's use of GError is wrong
2458  744263 Fix format specifier for __LINE__ in G_OBJECT_WARN_INVALID_PSPEC
2459  744565 gapplication: add bind_busy_property()
2460  744747 Add g_autofree
2461  744756 Can't find out if gapplication is marked as busy
2462  744830 autocleanups: Add GArray and GPtrArray
2463  744876 Unclean exit from from g_application_run
2464  745239 g_property_action_new missing type annotation
2465
2466 Translations updated:
2467  Chinese (Taiwan)
2468  French
2469  Galician
2470  Lithuanian
2471  Slovak
2472
2473 Overview of changes in GLib 2.43.90
2474 ===================================
2475
2476 * new GSimpleIOStream class to construct a GIOStream from an arbitrary
2477   GInputStream and GOutputStream
2478
2479 * GApplication: new API for marking 'busy' state according to the value
2480   of a boolean property on another object
2481
2482 * GOptionGroup: add binding support (boxed type, annotation fixes, etc.)
2483
2484 Bugs fixed:
2485  739724 Test functions should have async scope
2486  741024 glist: Mention that g_list_length() is bad for checking list emptiness
2487  741630 Add GSimpleIOStream class
2488  743349 goption: Add boxed type for GOptionGroup
2489  743990 GDBus connection closing is broken
2490  744565 gapplication: add bind_busy_property()
2491
2492 Translations updated:
2493  Greek
2494  Italian
2495  Norwegian bokmål
2496  Russian
2497  Slovenian
2498  Swedish
2499
2500 Overview of changes in GLib 2.43.4
2501 ==================================
2502
2503 * GType now has type declaration macros G_DECLARE_DERIVABLE_TYPE,
2504   G_DECLARE_FINAL_TYPE and G_DECLARE_INTERFACE, which significantly reduce
2505   the boilerplate needed for GObject types and interfaces.
2506
2507 * g_autoptr and g_auto are macros for declaring variables with automatic
2508   cleanup. They only work with gcc and clang.
2509
2510 * GListModel is a new interface that represents a dynamic list of GObjects.
2511
2512 * GListStore is a GSequence-based implementation of GListModel.
2513
2514 * Support thread names on OS X
2515
2516 * g_simple_action_set_state_hint: New function to set the state hint
2517   of GSimpleActions
2518
2519 * g_win32_check_windows_version: New function to check Windows version
2520
2521 * g_settings_schema_list_children and g_settings_schema_key_get_name
2522   are new functions to complete the GSettingsSchema API.
2523
2524 * Bugs fixed:
2525  389585 G_DEFINE_TYPE hack for header files
2526  729351 Add GListModel
2527  736914 Docs: various fixes and improvements
2528  741807 Add thread name support on OS X and iOS
2529  741895 gwin32: Add Simple API to check whether we are on at least a v...
2530  742456 object: Add g_steal_pointer() convenience function to mark own...
2531  743508 polkitd fails to start: patch for gio/gcredentialsprivate.h
2532  743517 GSettings API is missing some introspection functions
2533  743521 GSimpleAction: add g_simple_action_set_state_hint
2534  743596 G_DECLARE_DERIVABLE_TYPE() should allow additional typedef for...
2535  743640 add __attribute__((cleanup)) support
2536  743827 Fix build of GListModel (on Visual Studio)
2537  743927 GListStore: add sorted insert function
2538  743936 glib: handle unsigned modifier for long long in internal printf
2539  744012 Add GMutexLocker
2540  744190 Fix build on Compilers That Do Not Use inline for Plain C Code
2541
2542
2543 Overview of changes in GLib 2.43.3
2544 ==================================
2545
2546 * add g_set_object() convenience function
2547
2548 * GNetworkMonitor: check if NM is not running and don't crash
2549
2550 * fix some races with g_mkdir_with_parents
2551
2552 * fix some warnings in MSVC
2553
2554 * avoid use of G_STRLOC in G_OBJECT_WARN_INVALID_PSPEC in order to save
2555   on static strings
2556
2557 * fix some content type vs. mime issues
2558
2559 * documentation improvements
2560
2561 * Bugs fixed:
2562  719455  g_file_make_directory_with_parents() can erroneously throw G_IO_ERROR_EXISTS
2563  732439  GSocket: avoid unnecessary g_socket_wait_condition() for blocking sockets
2564  734946  Implement GContentType on OSX
2565  741589  gobject: Add g_set_object() convenience function to set GObject pointers
2566  741653  gnetworkmonitornm: Check if network-manager is running
2567  741654  [patch] gobject: don't use G_STRLOC in G_OBJECT_WARN_INVALID_PSPEC() macro
2568  741707  Gsocket blocks trying to send data
2569  741788  Document GSettings build system integration
2570  742548  configure.ac: stay out of autoconf's namespace
2571  742851  avoid MSVC warnings in G_STMT_END
2572  742972  ggettext: Include an example of setlocale() and friends in the i18n docs
2573  743014  gtestutils: Add an example of using test fixtures 
2574
2575 * Translations updated:
2576  Basque
2577  Brazilian Portuguese
2578  Spanish
2579
2580 Overview of changes in GLib 2.43.2
2581 ==================================
2582
2583 * New function: g_strv_contains
2584
2585 * New function: g_network_address_new_loopback
2586
2587 * New function: g_socket_send_messages
2588
2589 * A new GNetworkMonitor implementation using NetworkManager provides
2590   more detailed connectivity information
2591
2592 * Bugs fixed:
2593   11059 Linux poll issue
2594  664562 captive wifi portal support for GNetworkMonitor
2595  685880 Add g_strv_contains()
2596  712570 Hang in g_threaded_socket_service_func
2597  719646 GSocket: add g_socket_send_messages() to send multiple messages...
2598  728928 Provide separate error code for "Connection reset by peer"
2599  732317 Support GSocketConnectable for loopback addresses
2600  740814 "make check" should ensure that every symbol is documented
2601  740848 Backend subscription fails when connecting to a signal with a d...
2602  741016 gio: add G_IO_ERROR_NOT_CONNECTED
2603  741226 keyfile: Add "in group" to GError message consistently
2604
2605 * Translation updates:
2606  Gujarati
2607  Hebrew
2608  Hungarian
2609  Kannada
2610  Turkish
2611  Vietnamese
2612
2613
2614 Overview of changes in GLib 2.43.1
2615 ==================================
2616
2617 * GQueue now accepts NULL as a sibling in g_queue_insert_before() and
2618   g_queue_insert_after()
2619
2620 * Bugs fixed:
2621   11059 Linux poll issue
2622  726037 Add G_PARAM_READWRITE value to the GParamFlags enumeration
2623  727988 GMemoryOutputStream hangs when writing more than 1GiB
2624  729739 tlscertificate: add support for loading certificate chains
2625  733791 GSettings: delay backend subscription
2626  736286 Clarify g_file_replace behavior with etags
2627  736620 GQueue: accept NULL sibling for insert_before() and insert_after()
2628  737150 GLib-GIO-WARNING **: Failed to parse translated string 'visible-name...
2629  737160 unhelpful error message
2630  738259 GDBusInterfaceVTable: clarify memory handling for the method() virt...
2631  738551 'interface' variable conflicts with Windows defines
2632  738633 Need to disable SSLv3 in glib-networking
2633  740157 <app> --help doesn't work even when options were added
2634  740309 Fix docs in g_strfreev
2635  740413 Fix the GSettings Registry Backend 
2636
2637 * Translation updates:
2638  Norwegian bokmål
2639
2640
2641 Overview of changes in GLib 2.43.0
2642 ==================================
2643
2644 * GObject gained a debug option to provide instance counts. To use it,
2645   set GOBJECT_DEBUG=instance-count and call g_type_get_instance_count().
2646
2647 * GOption now has a strict POSIX mode in which it stops parsing arguments
2648   as soon as a non-option argument is encountered.
2649
2650 * Bugs fixed:
2651  354457 Feature Proposal: Per-Type Statistics for Instantiable GTypes
2652  695082 g_hash_table_remove_all is not save against a call to g_hash_table_remove
2653  723160 GOption: add strict posix mode
2654  728256 gcredentials: add NetBSD support
2655  729739 tlscertificate: add support for loading certificate chains
2656  733338 Don't segfault in GNetworkMonitor when IPv6 support is unavailable
2657  736273 gdesktopappinfo: Use symbolic names in the code
2658  736284 Keep only one list of signal emissions
2659  736806 gtask: Fix reference count loop causing leaks
2660  736914 Docs: various fixes and improvements
2661  737143 Include <stdint.h> in glib/valgrind.h
2662  737259 gcancellable: Clarify that GSources hold references to GCancellables
2663  737338 gmain: Unref child sources when finalising a GSource
2664  737446 tests: Fix some minor leaks in the unit tests
2665  737451 Provide api to read_all_async
2666  737741 g_datalist_id_get_data assertion fails for non-existant keys
2667  737869 GApplication command line handling breaks --help
2668  738170 g_byte_array_new_take() doesn't initialize array->alloc
2669  738197 g_cond_timed_wait() doesn't time out on Mac OS X
2670  738374 gfile: g_file_equal (x, x) is TRUE
2671  738675 GSubprocessLauncher is missing some data on the docs 
2672
2673 * Translation updates:
2674  Bengali (India)
2675  Bulgarian
2676  Gujarati
2677  Italian
2678  Telugu
2679
2680
2681 Overview of changes in GLib 2.42.0
2682 ===================================
2683
2684 All changes in this release are trivial in nature.
2685
2686  - introspection warning fixes
2687
2688  - g_application_add_main_option now uses an enum instead of an 'int'
2689    for the type of a parameter
2690
2691  - added a G_OPTION_FLAG_NONE so that people don't need to use 0
2692
2693  - gresource: Use GError in more places
2694
2695  - gresource commandline tool: improve extraction from multiple sections
2696
2697  - GSource now takes the context lock (if any) in g_source_set_name()
2698
2699  - new documentation to clarify the use of some APIs related to
2700    GVariant, GSource, GApplication
2701
2702  - other minor updates to docs
2703
2704 * Bugs fixed
2705  736683 Thread safety issues with g_main_context_find_source_by_id
2706  736975 [patch] please document that GVariant serialization needs an
2707         out-of-band length field
2708
2709 * Translation updates
2710  Danish
2711  Hindi
2712  Marathi
2713  Punjabi
2714  Serbian
2715  Simplified Chinese
2716
2717 Overview of changes in GLib 2.41.5
2718 ==================================
2719
2720 * Bug fixes:
2721  735819 single native credential struct used for two purposes
2722  735915 glib-building.html uses --enable-gcov instead of --enable-coverage
2723  736350 GDesktopAppInfo: avoid polling on missing desktop dirs
2724  736351 Don't use issetugid() on Android
2725         Fix the default application logic in GDesktopAppInfo
2726  736458 Only use rand_s() when targetting Visual Studio >= 2005
2727
2728 * Translation updates
2729  Galician
2730  Hungarian
2731  Indonesian
2732  Kannada
2733  Latvian
2734  Polish
2735  Russian
2736  Slovenian
2737  Tamil
2738
2739
2740 Overview of changes in GLib 2.41.4
2741 ==================================
2742
2743 * GApplication now has binding-friendly API to handle
2744   commandline options: g_application_add_main_option
2745
2746 * G_GNUC_BEGIN_IGNORE_DEPRECATIONS works with clang
2747
2748 * Bugs fixed:
2749  583330 poll list of mounted file systems (no mtab support)
2750  727455 Command line option parsing from bindings
2751  734126 add G_GNUC_BEGIN_IGNORE_DEPRECATIONS macro for clang
2752  735179 gsocketclient: Handle cancellation between CONNECTING...
2753  735297 Docs claim that GThread struct is deprecated 
2754
2755 * Translation updates:
2756   Assamese
2757   Catalan
2758   Catalan (Valencian)
2759   Czech
2760   French
2761   German
2762   Greek
2763   Hebrew
2764   Korean
2765   Oriya
2766   Traditional Chinese
2767
2768
2769 Overview of changes in GLib 2.41.3
2770 ==================================
2771
2772 * g_clear_pointer and g_clear_object no longer use atomics
2773
2774 * Bugs fixed:
2775  711547 win32: silence some build warnings
2776  725511 Compiled resource files should have the same /-separators everywhere
2777  725513 Some tests fail to build on W32
2778  725514 W32: gfileutils does not preserve errno correctly
2779  725515 test-printf fails on W32
2780  728730 gsocket: Set SO_NOSIGPIPE on sockets on Darwin
2781  729703 Leaks a GError in g_file_move
2782  730932 statically assert that reasonable assumptions about enums are true
2783  732085 gtype: Fast-path for g_type_is_a
2784  732754 GDBusMessage: optimise (de)serialisation of fixed arrays
2785  733345 ginetaddress: Add a precondition to g_inet_address_new_from_string()
2786  733576 Patches from static analysis run on 2.40
2787  733715 glib's configure.ac makes accidentally use of nested function
2788  733934 win32: improve the package installation dir lookup
2789  733960 W32: spawning a console process creates a new window when stdout...
2790  733969 Remove atomic aspects of g_clear_pointer/object
2791  733982 Do not crash when checking whether an instance type is of a given...
2792  734035 gedit hangs up when there's no GSettings key in the registry 
2793
2794 * Translation updates:
2795  Basque
2796  Brazilian Portuguese
2797  Lithuanian
2798  Slovenian
2799  Spanish
2800
2801
2802 Overview of changes in GLib 2.41.2
2803 ==================================
2804
2805 * The Unicode support has been updated to version 7.0
2806   of the Unicode standard
2807
2808 * GNotification now supports priorities for notifications
2809
2810 * GCredentials has gained NetBSD support
2811
2812 * GMutex now uses a faster, native implementation on Linux
2813
2814 * Bugs fixed:
2815  699132 Pluggable event loop backends
2816  720708 g_assert_warning(): number of arguments doesn't match for...
2817  722092 Add GtkApplication resources support
2818  724986 Change gio/data-to-c.pl to /usr/bin/env perl.
2819  727974 Fix up failure-to-see-expected-message logging
2820  728256 gcredentials: add NetBSD support
2821  728401 GDateTime: Add guards to g_date_time_new()
2822  729825 Formatting of g_alloca documentation
2823  729914 instead of DEBUG_CODE and IF_DEBUG, provide a common macro...
2824  730293 clang++-3.4: error: 'register' storage class specifier is ...
2825  731339 giochannel: avoid setting uninitialised length
2826  731424 #ifdef spaghetti for load_user_special_dirs() implementations
2827  731623 GNotification: add support for a priority setting
2828  731929 update tables to unicode 7.0.0
2829  731950 gvalue: New g_value_from_instance
2830  731986 GLib: implement GMutex natively on Linux
2831  732184 GObject: warn on use of deprecated properties
2832  732357 Docs: various fixes and improvements
2833  732429 GActionEntry: improve documentation
2834  732465 Fix build on x64 Visual C++ builds
2835  732704 Docs: various fixes and improvements
2836  732739 ginetsocketaddress: Explicitly initialise flags for getaddr...
2837  732754 GDBusMessage: optimise (de)serialisation of fixed arrays
2838  732984 g_object_ref(NULL) in g_dbus_object_manager_client_finalize
2839  733084 Typos in g_bytes_hash() and g_time_zone_find_interval() docs
2840  733146 spawn helper does not use correctly the parameters 
2841
2842 * Translation updates:
2843  Lithuanian
2844
2845
2846 Overview of changes in GLib 2.41.1
2847 ==================================
2848
2849 * Bug fixes:
2850  697229 Custom Interface implementations will be broken with glib 2.37/38
2851  698614 GObject: prevent installing properties after init
2852  729269 gvariant: Fix confusion between type and format strings in the docs
2853  730198 broken valgrind.h leads to crashes in g_type_free_instance on mingw64
2854  730807 GMutex performance regression
2855  730963 gconvert: mention that the g_convert len should be in bytes
2856  730984 Faster instance type check for fundamentals
2857  731050 <structname> tags appear in documentation
2858  731200 unconditional 'notify' during g_object_set() is problematic
2859  731335 gtype: guard uses of new fundamental type check
2860  731341 gparam: change value of G_PARAM_EXPLICIT_NOTIFY
2861  731366 run-assert-msg-test.sh gdb leaves assert-msg-test zombie
2862  731425 giomodule protects function-call with different token than function...
2863  731513 clang: build failure: implicit declaration of function '__atomic_load_4'
2864  731584 gbookmarkfile: Cleaner error handling code to pacify static analysis
2865  731657 Prevent an invalid @CARBON_LIBS@ from appearing in the .pc files
2866  731979 docs: Correct param to interface's default_init()
2867  731996 Return folder as icon for directories
2868  732002 gwakeup: Clarify buffer sizing in g_wakeup_signal()
2869  732005 Remove unused assignments
2870  732019 gtestdbus: Don’t close stdout for dbus-daemon
2871  732068 gsignal: Add an example to the g_signal_connect_swapped() documentation
2872  732081 gsocket: Document that g_socket_create_source() holds a socket ref
2873  732107 gsocketlistener: Reconsider closing sockets on listener finalisation
2874
2875
2876 Overview of changes in GLib 2.41.0
2877 ===================================
2878
2879 * Many bugfixes found by static analysis, including potential fd leaks
2880   and NULL pointer dereferences.
2881
2882 * Increased use of (nullable) attribute on out values and return types
2883   now that it is supported (mostly from porting Vala metadata).
2884
2885 * use XDG_CURRENT_DESKTOP for OnlyShowIn/NotShowIn handling of desktop
2886   files, deprecating g_desktop_app_info_set_desktop_env()
2887
2888 * add support for g_desktop_app_info_get_implementations() to find
2889   desktop files that have an Implements= line for a given interface
2890
2891 * GHmac has gained SHA-512 support
2892
2893 * support the new mimeapps specification (most notably, moving the
2894   assoications/defaults configuration to ~/.config/mimeapps.list).
2895
2896 * libgobject is now linked -Wl,-z,nodelete when possible to avoid errors
2897   when gobject is used from a module for a program that does not itself
2898   use gobject and that module is unloaded/reloaded
2899
2900 * ... and many other bug fixes.
2901
2902  623552 glib warns if backtrace.py is not present
2903  667468 glib-2.30.2: ipv6 tests fail when no ipv6 support is available
2904  668152 -framework Carbon linker flag not passed to pkg-config .pc files
2905  707298 libgobject should be linked with -Wl,-z,nodelete
2906  712391 Add g_desktop_app_info_get_implementors()
2907  722723 Infinite recursion when calling g_io_stream_close_async() from libsoup
2908  724741 hmac: Fix support for SHA-512 in GHmac
2909  726040 networkaddress: fix parsing of uri with @ after authority
2910  726318 gio: Document that GSocket is not thread safe
2911  726611 socketclient: Leak on cancellation
2912  726872 gio: Add names to idles and timeouts
2913  727119 wrong IN6_IS_ADDR_MC_LINKLOCAL usage break android build
2914  727123 GNotification: Some small documentation fixes
2915  727320 docs: Remove escaping '\' from literals
2916  727551 Check use_count of GApplication in g_application_release()
2917  727559 g_file_copy: Don't set GError when we intend to ignore errors
2918  727692 gio/gtlscertificate.c -- broken PEM-file processing (affects local CA root stores, for starters)
2919  727890 soup_content_sniffer_real_sniff segfault
2920  727900 gio: Add newer dbus UnknownXxxx and PropertyReadOnly errors
2921  727928 gapplication-tool fixes
2922  727939 INTLLIBS are always appended in configure checks
2923  727964 g_io_extension_point_get_extension_by_name: Warn, but don't crash, for NULL inputs
2924  728040 Implement new mimeapps spec
2925  728066 Deal with startup notify id being NULL
2926  728280 platform_get_argv0: fix sysctl(3) use on OpenBSD
2927  728285 docs: Use markdown links in .h files, too
2928  728350 gaction: Minor clarifications in the GAction documentation
2929  728380 docs: Remove <!-- --> comment before plural s
2930  728565 gfile: More explicitly document the context for GFileProgressCallback
2931  728983 Docs: various fixes and improvements
2932  729167 gobject: Document that classes/objects/interfaces are zero-filled
2933  729563 GOption: A short option's value is included in G_OPTION_REMAINING
2934  729813 AppInfo: use XDG_CURRENT_DESKTOP for OnlyShowIn
2935  729875 gio: cleanup gdbusmessage.c file
2936  730045 Avoid overeager warning about deprecated properties
2937  730189 gtestutils: Fix a very unlikely FD leak in test fork handling
2938  730190 gsocket: Add missing preconditions to g_socket_send_message()
2939  730277 gthread: Fix use of a local variable after it went out of scope
2940  730278 gsubprocess: Add a missing va_end() call
2941  730295 gdbus-tool: Remove dead variables
2942  730493 Port annotations from Vala metadata
2943
2944 Translations updated:
2945  Basque
2946  Brazilian Portuguese
2947  Catalan
2948  Czech
2949  Danish
2950  Greek
2951  Hebrew
2952  Hungarian
2953  Punjabi
2954  Serbian
2955  Slovenian
2956  Spanish
2957  Ukrainian
2958
2959 Overview of changes from GLib 2.39.91 to GLib 2.39.92
2960 =====================================================
2961
2962 This is a release candidate for 2.40.0.
2963
2964 There are no major changes in this release, but a few serious bugs have
2965 been fixed.
2966
2967 * Bugs fixed:
2968  710367 Crash in g_settings_backend_dispatch_signal()
2969  723899 G_DEFINE_TYPE() causes compiler warnings with clang due to foo_get_instance_private
2970  724859 Let the test_wait_until() test also run on non-*nix
2971  724916 gio unmount code makes XFCE's Thunar crash
2972  725651 GSubprocessLauncher: Does not copy the calling process environment.
2973  725656 Unskip GVariantDict
2974  725891 gio tests: add codegen to BUILT_SOURCES
2975  726046 Recent commit created symbolic icons issues
2976
2977 * Translations:
2978  Chinese
2979  French
2980  Korean
2981  Latvian
2982  Norwegian bokmål
2983  Portuguese
2984  Russian
2985  Traditional Chinese
2986
2987 Overview of changes from GLib 2.39.90 to GLib 2.39.91
2988 =====================================================
2989
2990 This release introduces a hard dependency on present and functioning
2991 clock_gettime() and CLOCK_MONOTONIC.  It also introduces a dependency on
2992 pthread_condattr_setclock() unless your system happens to have
2993 pthread_cond_timedwait_relative_np() (as do Mac OS and Android).  This
2994 release is known to be broken with at least GNU/Hurd, pending addition
2995 of working pthread_condattr_setclock(CLOCK_MONOTONIC) there.
2996
2997 New API: g_str_to_ascii()
2998
2999 * Fixed bugs:
3000  670144 unconditional use of CLOCK_MONOTONIC is broken
3001  673607 invalid assumption in g_cond_wait_until() / g_get_monotonic_time() API
3002  710142 Add more impressive transliteration to GLib
3003  722360 make check fails
3004  722604 (partial) Various tests are failing with 2.39.3
3005  723316 g_hash_table_iter_remove() should be explicit whether or not it is safe while iterating the table
3006  724609 Fix build of GIO on Windows
3007  724687 gmain: make monotonic time really monotonic, everywhere
3008  724706 gsource: document priority of child sources
3009  724707 some GSocket source improvements
3010  724839 GMainContext: some source ID cleanups
3011  724858 Dist gtranslit-data.h
3012  724994 Missing icons for bookmarks in file chooser
3013  725023 Can no longer find apps by executable/desktop file name
3014
3015 * Translations:
3016  Lithuanian
3017  Polish
3018  Thai
3019
3020 Overview of changes from GLib 2.39.4 to GLib 2.39.90
3021 ====================================================
3022
3023 * Fixed bugs:
3024  625408 make GVariant dictionaries more useful
3025  660809 document that if you fail a precondition check, documented guarantees do not apply
3026  661576 fix handling of constructors that destroy half-constructed objects
3027  679957 g_inet_address_new_from_string is not able to handle dots and numbers IPv4 addresses
3028  712837 gvariant: Document the need to cast varargs when constructing GVariants
3029  721458 g_simple_async_result_is_valid has a NULL check for the wrong source_tag
3030  721977 improve split handling of command line arguments
3031  722033 win32: fixup lib.exe invocation
3032  723422 Fix g_socket_get_available() with TCP on Windows
3033  723616 gio/tests: fix race when generating code
3034  724001 gsubprocess: Fix a broken link in the documentation
3035  724124 glib/tests/collate.c fails if no en_US locale
3036  724126 intermittent GApplication test failure: /gapplication/local-actions: lines of output permuted
3037  724233 gsocketservice: Note g_socket_listener_close() for closing open sockets
3038  724239 soup_session_queue_message - Connection terminated unexpectedly
3039  724278 gsocketconnection: Document closing connections with g_io_stream_close()
3040  724330 configure.ac: tweak inotify check
3041  724385 gtestutils: make the new assert messages more detailed
3042  724401 gsubprocess: Mutex leak
3043  724417 glib master build broken on OpenBSD
3044  724434 Build failure in gio/gresolver.c
3045
3046 * Updated translations:
3047  Brazilian Portuguese
3048  Galician
3049  Indonesian
3050  Italian
3051  Kannada
3052  Norwegian bokmål
3053  Spanish
3054  Thai
3055
3056 Overview of changes from GLib 2.39.3 to GLib 2.39.4
3057 ===================================================
3058
3059 * Fixed Bugs:
3060  139699 Correction for g_main_context_unref()
3061  583036 g_strchomp and g_strchug are not declared const
3062  683388 improve documentation for application developers
3063  685204 ./configure fails to add the '-g' flag to CFLAGS
3064  688406 GStaticMutex broke ABI on at least ARM EABI during 2.31.x
3065  693299 cannot compile on Solaris: error in gbitlock.c
3066  707111 Clarify type transformability and compatibility
3067  711547 win32: silence some build warnings
3068  719344 Fix the various test programs (or GLib itself) on Windows
3069  722025 cleanup/clarify command line argument encoding on Windows
3070  722323 remove unused include 'gslist.h' in 'gbookmarkfile.c'
3071  722326 gstringchunk: Use g_slist_free_full() where possible
3072  722357 gio: fix small memory leak on local xattr
3073  722436 Adjust doc to Makefile.decl renaming
3074  722503 GSimpleAction: add default activate handler
3075  722526 glib/deprecated/gthread.h error on FreeBSD
3076  722591 [documentation] broken link to GtkAction from GAction.html
3077  722973 Broken example in GApplication reference
3078  723048 'network-access' test can fail to guess interface index
3079  723360 gmain: Note that g_source_destroy() can be called multiple times 
3080
3081 * Updated Translations:
3082  Assamese
3083  Tamil
3084  Traditional Chinese
3085
3086
3087 Overview of changes from GLib 2.39.2 to GLib 2.39.3
3088 ===================================================
3089
3090 No major changes this release -- mostly lots of small fixes and
3091 improvements in test coverage.
3092
3093  * fix a crasher in code from gdbus-codegen
3094
3095  * improvements to gobject gdb helper script
3096
3097  * portability:
3098
3099    - fix a deadlock issue with kqueue on FreeBSD
3100
3101    - work around a quirk in the sunstudio compiler
3102
3103    - rename a variable to avoid clashing with a macro definition of
3104      'environ' on some platforms (like mingw)
3105
3106    - use POSIX-specified <poll.h> over <sys/poll.h>
3107
3108    - many improvements to Visual Studio projects and and some build
3109      fixes for Windows
3110
3111  * tests
3112    - a very large number of improvements in test coverage
3113
3114    - don't report skipped tests as failures
3115
3116    - return 77 if we skip all tests in an executable
3117
3118    - improve gtest documentation and fix some minor issues
3119
3120    - fix g_test_trap_reached_timeout() return value
3121
3122    - remove some dead code uncovered during test coverage expansion
3123
3124    - Use tap mode for installed tests too, when using tap
3125
3126  * fix races in unix signal handling
3127
3128  * make our GVariant-based commandline tools (glib-compile-schemas,
3129    gdbus, gapplication) print out GVariant parse errors in context
3130
3131  * GApplication now has a --gapplication-service command line switch to
3132    turn any GApplication into a service
3133
3134  * improve compatibility of GApplication and GOptionContext
3135
3136  * fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
3137
3138  * use a directory monitor in GKeyfileSettingsBackend
3139
3140  * improve robustness of some GIcon classes
3141
3142 Bugs fixed
3143  141251  poll(2) is in <poll.h>, not <sys/poll.h> per SUS standard
3144  613732  [PATCH] gobject.py: Don't install frame filters when GDB does not support them
3145  708212  g_variant_parser_error_get_quark() has unexpected name.
3146  710965  GApplication: add --gapplication-service switch
3147  711090  periodic failure of spawn-multithreaded async testcase
3148  712171  gsettings.m4: @GSETTINGS_RULES@: Support srcdir != builddir with nonrecursive make
3149  712630  Revert "gsettings m4: check for .xml in src/builddir"
3150  715028  GVariant: add way to print context of parse errors
3151  719344  Fix the various test programs (or GLib itself) on Windows
3152  720263  gtestutils: skipping a test should count as success, not failure
3153  720539  gdbus-codegen: Fix crasher in goa-using apps
3154  720635  Make gdb pretty-printers compatible with Python3
3155  720891  g_settings_get_child does not inherit the backend
3156  721034  glib 2.38.2 cannot be compiled with SunStudio Compiler under Solaris
3157  721059  g_subprocess_launcher_set_environ vs "environ"
3158  721074  kqueue: deadlock
3159  721087  Missing -lselinux in pkg-config --libs --static gio-2.0
3160  721324  Error message is printed to stdout
3161  721624  Regression in GTest framework reorders existing test cases
3162  721625  backwards NEWS entry about g_source_remove change
3163  721796  insufficient escaping in g_dbus_annotation_info_generate_xml()
3164  721947  Improve GApplication ⇔ GOptionContext compatibility 
3165
3166 Translations updated:
3167  Brazilian Portuguese
3168  Galician
3169  Greek
3170  Hebrew
3171
3172 Overview of changes from GLib 2.39.1 to GLib 2.39.2
3173 ===================================================
3174
3175 * Portability
3176
3177   - Remove alleged support for OS/2
3178
3179   - Remove alleged support for BeOS
3180
3181   - Remove alleged support for last-millennium Unixes
3182
3183   - Require C90 compliance
3184
3185   - Require POSIX.1 (1990) compliance on Unix
3186
3187   - Require GNU make
3188
3189 * Bugs fixed:
3190  113075 support "nonnull" attribute
3191  159528 g_ptr_array_remove_range()
3192  307947 The check for growing stack pointer in configure can fail
3193  607016 docs should mention property notification order
3194  671557 Fun with integers and g_key_file_load_from_data()
3195  676761 don't use g_critical for a runtime error
3196  690525 g_file_replace_contents_async doesn't copy its @conten...
3197  691608 Support compilation with clang 3.2
3198  697585 g_variant_builder_add's doc example is leaking
3199  697828 g_hash_table_add() should return a boolean
3200  702862 gdbus-codegen : look for deps in default install path
3201  703522 Reference leak in GvariantBuilder documentation
3202  705902 g_get_current_dir() should check PWD env var and retur...
3203  708274 Added GObject Introspection annotations to genums.c
3204  710519 Portability schmortability
3205  710741 some mainloop instrumentation
3206  710983 Test failures on powerpc
3207  711047 Enable the build of the various test programs on Windo...
3208  711051 Add basic test for the GNotification gtk backend
3209  711088 gbacktrace: Don't close stderr when running gdb
3210  711103 gmessages: Add g_info macro for G_LOG_LEVEL_INFO
3211  711178 appinfo test problems
3212  711546 utf8: report allocation error
3213  711640 gdesktopappinfo: Rank Keywords matches higher than Gen...
3214  711751 Fix memory leaks in libglib tests
3215  711753 gthread-posix: Don't use gslice allocated GRecMutex
3216  711796 glib-tap.mk: fix to actually use the TAP driver
3217  711800 fix g_test_set_nonfatal_assertions()
3218  711801 giomodule: Allow overriding source directory gio modul...
3219  711805 gdbus-connection: Fix race condition in test
3220  711806 gtestdbus: Don't destroy GSource twice
3221  711807 gtestdbus: Properly close server connections
3222  711871 Broken and misleading configure check for growing stack
3223  712136 'O_CLOEXEC' undeclared (first use in this function)
3224  712148 Add system bus support to GTestDBus
3225  712171 gsettings.m4: @GSETTINGS_RULES@: Support srcdir != bui...
3226  712314 AIX port: splice(); major()/minor(); libtool library order
3227  712315 GSettings: More docs for deprecated _list_schemas()
3228  712393 gobject: Box GMappedFile
3229  712547 GSocketClient "event" not useful for determining resol...
3230  715164 Clang static analysis fixes
3231  719395 GPtrArray add g_ptr_array_insert
3232  719402 Crashes when startup
3233  719472 leak in generated proxy-side property-setter
3234  719687 fix or remove g_trap_object_ref
3235  719809 Signal connection ids are always > 0 if successful
3236  719837 gdbus-connection: Work around race in connection tests
3237  719884 Fix documentation typos in GTask and GCancellable examples
3238  719979 g_settings_get: check validity of format string
3239  720080 Truncating a GMemoryOutputStream to a larger size cause...
3240  720210 gdataset: Remove unused define
3241  720236 Allow clean simple use of g_test_trap_subprocess() 
3242
3243 * Translations updates:
3244  Italian
3245  Lithuanian
3246  Simplified Chinese
3247  Spanish
3248
3249
3250 Overview of changes from GLib 2.39.0 to GLib 2.39.1
3251 ====================================================
3252
3253  * GSettings fixes/improvements
3254
3255    - GSettingsSchema API is now more powerful and consistent
3256
3257    - new GSettingsSchemaKey API allows accessing metadata for keys:
3258      type, default value, range and the long-awaited support for summary
3259      and description
3260
3261    - GSettingsSchemaSource gains support for listing schemas within a
3262      source.  Deprecate the global API that did this for the default
3263      source.
3264
3265    - 'gsettings list-schemas' now works properly with --schemadir
3266
3267    - deprecate a bunch of now-redundant functionality on GSettings
3268
3269    - add API to GSettings for getting the default value of a key (as set
3270      by the sysadmin)
3271
3272    - add API to GSettings for determining if the user has assigned a
3273      particular value to a key (ie: we are not just reading the default)
3274
3275    - ignore qualified tags and attributes appearing in schema files
3276
3277  * Applications/Actions
3278
3279    - make GSimpleAction a bit more strict with respect to state changes
3280      that would violate the interface (ie: by changing the state type
3281      after construction)
3282
3283    - throw an error when attempting to 'Describe' a non-existent action
3284      via D-Bus instead of returning a bogus description
3285
3286    - throw an error when attempting to invoke unsupported methods on an
3287      Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
3288      instead of emitting a g_critical() in context of the app (which is
3289      not itself at fault for the errant call)
3290
3291  * Appinfo
3292
3293    - substantially rework GDesktopAppInfo to reduce the amount of disk
3294      accesses that are performed in common situations
3295
3296    - add a new class: GAppInfoMonitor for discovering when applications
3297      are installed/removed
3298
3299    - add a new g_desktop_app_info_search() API for searching for
3300      installed applications by name, keywords, etc.
3301
3302  * GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
3303    "qualified" tags and attributes (those with a colon in the name, such
3304    as 'my:tag')
3305
3306  * GDBus
3307
3308    - ignore qualified tags, as above
3309
3310    - GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
3311      that test programs don't pick them up
3312
3313    - add new session_bus_run() convenience in the tests and use it
3314
3315  * GRand: use real random data as a seed on win32 and use the
3316    timestamp/pid/uid fallback only on UNIX machines where we can't open
3317    '/dev/urandom'.  This may cause issues with older mingw32 releases
3318    due to a missing prototype for the rand_s() API.
3319
3320  * Many win32 (and particularly MSVC) portability fixes.  Many
3321    additional tests are now runnable when building with MSVC.
3322
3323  * Due to early testing of the (soon to land) GCleanup framework, a very
3324    large number of memory errors have been found and fixed (mostly in
3325    the testcases, but some in glib itself).
3326
3327  * GIO:
3328
3329    - some more seeking cleanups: particularly on GLocalFileInputStream
3330
3331    - don't leave a .trashinfo file around if trashing a file fails
3332
3333    - Add a request_certificate virtual method to GTlsInteraction
3334
3335 Translations updated:
3336  Assamese
3337  Galician
3338  Greek
3339  Spanish
3340  Tamil
3341
3342 Bugs fixed:
3343  635641 schema compiler should ignore unknown attributes
3344  637257 g_tls_client_connection_gnutls_retrieve_function needs to be able to block
3345  637956 GKeyfileSettingsBackend should ignore file deletions
3346  645453 keys from base schema missing from extended schema
3347  665634 g_dbus_node_info_new_for_xml() errors on unknown attributes in XML files
3348  668232 Unable to get description and summary for a key
3349  668233 Unable to determine if a key is set to the default / what the default value is
3350  680838 Need g_settings_schema_source_get_schemas()
3351  683017 API for accessing GSettings Schema metadata
3352  687185 org.gtk.Actions.Describe doesn't return an error for non-existing action names
3353  687202 If trashing fails, the ".trashinfo" file is not removed
3354  695558 The --schemadir option has no effect
3355  696424 GSimpleAction.state property is not right
3356  697348 GTestDBus should unset DBUS_STARTER_ADDRESS, DBUS_STARTER_BUS_TYPE
3357  710133 Emit backward compatible code with gdbus-codegen
3358  710691 glib-networking: locking during implicit handshake
3359  710738 GRand has lame fallback for Windows
3360  710859 Typo in gio docs
3361  710885 Two fixes for GApplication
3362  710962 error: 'F_DUPFD_CLOEXEC' undeclared (first use in this function)
3363  710964 Add g_hash_table_get_key_array()
3364  710991 test: g_debug messages shouldn't affect g_assert_expected_messages
3365  711016 g_settings_list_keys () segfaults for empty schemas
3366  711048 glocalfileinputstream.c allows skip past end of file
3367  711049 Fix build of GLib-GIO 2.39.x on Windows/MSVC
3368  711064 Adding child source to blocked source can cause a segfault
3369  711070 Copying a symlink over another one segfaults
3370  711099 gapplication test failure
3371  711520 GDesktopAppInfo: allow more than one level of legacy folder prefixes
3372  711556 Add GAppInfoMonitor
3373  711557 Add g_desktop_app_info_search()
3374  711600 trivial portability fix
3375  711632 The desktop-app-info test fails during make check
3376  711754 gmain: Fix use of uninitialized memory in sigaction structure
3377  711755 private: Use threading primitives correctly in private test
3378  711756 gthreadpool: Don't pass bad data to GThreadPool sorter
3379  711768 Fix memory leaks in libgmodule tests
3380  711775 utils: Don't free memory owned by glib in test
3381  711782 boxed: Fix double free in boxed unit tests
3382  711803 gsubprocess: Fix a number of leaks and a segfault
3383  711808 gtestdbus: Fix leak of GMainLoop 
3384
3385 Overview of changes from GLib 2.38.0 to GLib 2.39.0
3386 ====================================================
3387
3388  * prep for the 2.40 series (version macros, docs index, etc.)
3389
3390  * GNotification
3391
3392    - new API for sending persistent notifications via the desktop shell
3393
3394    - notifications persist when the application has quit and clicking on
3395      them can restart the application with an action (via
3396      DBusActivatable)
3397
3398  * GSubprocess
3399
3400    - new API for launching subprocesses
3401
3402    - nice GIO integration like async functions, cancellability, etc.
3403
3404    - a convenient communicate() API inspired by the same API in Python
3405
3406    - related: the gspawn API now has a CLOEXEC flag for the created
3407      pipes for stdin/stdout/stderr
3408
3409  * New gapplication(1) commandline tool
3410
3411    - intended to be used with DBusActivatable apps
3412
3413    - can be used for launching apps, opening files, invoking application
3414      actions and listing apps and actions
3415
3416    - bash tab completion is supported
3417
3418  * GDesktopAppInfo changes:
3419
3420    - g_file_get_path() can implicitly cause a FUSE mount so don't call
3421      it until we know we need it (for an app that doesn't support URIs)
3422
3423    - don't crash when trying to load from a keyfile with
3424      DBusActivatable=true
3425
3426    - remove some dead code, refactor the search path handling a bit and
3427      do a large-scale whitespace cleanup (prep work for the pending
3428      desktop file index)
3429
3430  * File monitors
3431
3432    - fix broken handling of mount point monitoring
3433
3434    - remove some strange use of GObject::constructor() from the base
3435      class and inotify backend
3436
3437    - fix GFileMonitor to work in the non-default main context even when
3438      the main context is not running (or is blocked)
3439
3440    - add internal private API for easily creating a file monitor in the
3441      GLib worker thread
3442
3443  * GSettings
3444
3445    - g_settings_list_children: only list viable schemas.  This fixes a
3446      longstanding issue where 'gsettings list-recursively' will crash
3447      when there are invalid schemas installed
3448
3449    - don't accept invalid paths on g_settings_new_with_path, etc.
3450
3451  * GIO
3452
3453    - GFile now has a thumbnail::is-valid attribute to check if the
3454      thumbnail in thumbnail::path needs to be regenerated
3455
3456    - GDBusProxy now has a flag to control autostarting of services at
3457      construction time
3458
3459    - for GSeekable, properly introduce the concept of "resizable" vs.
3460      "fixed-sized" streams in the docs, explaining the expected
3461      semantics of the interface in each case
3462
3463    - fix some cases in GMemoryOutputStream that were violating the above
3464      expectations (which may cause a slight API incompatibility)
3465
3466    - clean up GCredentials code and add support for Hurd and Solaris
3467
3468    - improve splicing by using different codepaths for the case where we
3469      have real _read_async() and _write_async() implementations on the
3470      stream vs. the case where they are internally emulated (via
3471      dispatching the sync variant of the call in a thread)
3472
3473  * GKeyFile
3474
3475    - fix a leak in g_key_file_get_(u)int64 when we fail to parse the
3476      value as an integer
3477
3478    - add long-requested API g_key_file_save_to_file()
3479
3480  * Portability improvements
3481
3482    - avoid using O_DIRECTORY on platforms that don't have it
3483
3484    - be careful about systems that define SOCK_CLOEXEC but don't
3485      actually support it (like Hurd)
3486
3487    - only use SA_RESTART if it exists
3488
3489  * Other small API changes/additions
3490
3491    - a pair of functions to support matching strings for the type of
3492      search functionality that you'd expect to have with things like
3493      GtkSearchBar.  This will also be used by the desktop file index.
3494
3495    - g_str_is_ascii() with obvious purpose
3496
3497    - g_test_expect_message() no longer appears to allow you to catch
3498      G_LOG_ERROR messages
3499
3500  * GMainContext/GSource
3501
3502    - fix handling of overflowing the 'next source id' counter
3503
3504    - g_source_remove() will now throw a critical in the case that you
3505      try to remove a non-existent source.  We expect that there is some
3506      code in the wild that will fall afoul of this new critical but
3507      considering that we now reuse source IDs, this code is already
3508      broken and should probably be fixed.
3509
3510    - simplify handling of the 'current dispatching source' to not
3511      require use of a linked list
3512
3513  * GObject
3514
3515    - the long-broken (and leaky) pattern of destroying a just-allocated
3516      object from inside of a custom GObject::constructor is now
3517      officially completely illegal and will abort the program
3518
3519  * Unicode: update to 6.3.0
3520
3521  * Bug fixes
3522
3523    - g_file_copy() now falls back to pathname queryinfo.  This should
3524      clear up the bugs with copying from some GVfs backends (afp,
3525      gphoto, archive, at least).
3526
3527    - fix an out-of-bounds read in the xdgmime code
3528
3529    - fix a typo in the /org/freedesktop/DBus path on the object manager
3530      client
3531
3532    - skip emitting path_namespace='/' in match rules in order to
3533      workaround a bug in the D-Bus daemon and fix our own implementation
3534      (which shared exactly the same bug)
3535
3536    - fix crashes on precondition violations for GParamSpec constructors
3537
3538    - many other small fixups (see bug list)
3539
3540   * Many documentation improvements
3541
3542 Bugs fixed:
3543  309224 g_key_file_save_to_file missing
3544  583321 QNX: no SA_RESTART
3545  661576 fix handling of constructors that destroy half-constructed objects
3546  672102 GSubprocess class
3547  684842 Seeks on GMemoryOutputStream don't have opaque semantics
3548  688492 Add a notification API
3549  691581 g_output_stream_real_splice_async doesn't use overriden read/write_async functions
3550  702516 gfileutils: Make -Werror=format-nonliteral happy
3551  704218 New gapplication(1) tool
3552  704593 g_setenv: on some systems (BSD, OSX…), setting a variable to NULL crashes the system
3553  704882 GLocalDirectoryMonitorClass mount_notify field is useless
3554  704887 file monitoring improvements
3555  705029 Support for Solaris credentials
3556  705688 g_settings_list_children: only list viable schemas
3557  706254 Afp backend cannot copy files
3558  707887 Attempting to create GObject Property with underscore prefix segfaults
3559  708042 gapplication: don't rely on cmdline being finalized immediately
3560  708265 add support for GNU/Hurd in GLib D-Bus Library
3561  708266 fix error code checks when SOCK_CLOEXEC is defined but not supported
3562  708529 xdgmime: valgrind warns about invalid reads
3563  708677 incorrect object path 'deskop' used in gio/gdbusobjectmanagerclient.c
3564  708714 Typo in docs of GLIB_VERSION_2_40 macro.
3565  708753 gdesktopappinfo: Call g_file_get_path() on demand
3566  708793 glib build fails with clang < 3.1: error: expected ';' after top level declarator
3567  708828 GDBusProxy: add the ability to call methods on non autostarted proxies
3568  708860 glib-2.38.0 doesn't build on Solaris 10
3569  708972 gnetworking.h in tarball screws up out-of-source builds
3570  709113 [PATCH] Main loop dispatch path has needless linked list
3571  709227 Update to unicode 6.3.0
3572  709301 goutputstream: Add clear warning about short writes to _write_bytes() and async version
3573  709326 GDesktopAppInfo crashes creating a DBusActivatable app without a filename
3574  709440 Fix overloading of "source" and "target" terminology in GBinding
3575  709615 Cannot use g_test_expect_message with g_error
3576  709753 Add helpers for string matches when using GtkSearchBar-like widget
3577  709898 Expose thumbnail validity in GFile attributes
3578  709966 Remove outdated documentation
3579  709994 Minor fix for HACKERS doc to direct hackers to proper help file
3580  709995 Obsolete makefile rules
3581  710002 G_MAXUINT may be assigned as duplicate source id
3582  710313 Memory leak in g_key_file_get_(u)int64 with invalid integer values
3583  710345 [Patches] Fix some redundant-decls
3584  710496 g_locale_to/from_utf8() doc updated.
3585  710625 g_file_error_from_errno: Remove unneeded breaks
3586  710666 Frame clock related bug fixes
3587  710724 gmain: Warn when g_source_remove() fails
3588  710726 Work around D-Bus bug with path_namespace='/' match rules
3589
3590 Translations:
3591  Assamese
3592  Brazilian Portuguese
3593  Indonesian
3594  Russian
3595  Tamil
3596  Traditional Chinese
3597
3598 What's new in Glib 2.38
3599 ========================
3600
3601  * Application support
3602
3603   - GIO now provides an implementation of Desktop Actions from the
3604     desktop entry specification
3605
3606   - GApplication now implements the org.freedesktop.Application
3607     interface as per the desktop entry specification, allowing for
3608     standards-based D-Bus launching of GLib-based applications
3609
3610   - GDesktopAppInfo now supports DBusActivatable as per the desktop
3611     entry specification, allowing GLib-based applications to use D-Bus
3612     to launch other applications
3613
3614   - GApplication now has a "busy" flag that can be set on an application
3615     to allow the shell to show that it is busy
3616
3617  * GObject
3618
3619   - the private offset for a given class type is now always constant.
3620     This was done by reorganising the memory layout of instances so that
3621     the private data comes before the "official" pointer for the object
3622     (ie: at a negative offset).  Valgrind macros were added to mitigate
3623     any problems that this may have caused.
3624
3625   - a new G_DEFINE_TYPE_WITH_PRIVATE has been added along with a
3626     generated function *_get_instance_private() that can now serve as an
3627     equally-performing alternative to ->priv pointers in instances
3628     (allowing memory savings)
3629
3630   - new G_PRIVATE_FIELD, G_PRIVATE_FIELD_P and G_PRIVATE_OFFSET macros
3631     provide a convenient method of converting between named variables in
3632     private structures and their (now constant) offsets
3633
3634   - installing properties on a GObjectClass must now be done from
3635     class_init.  It is no longer valid to install them after class_init
3636     has returned.
3637
3638   - it is now possible to manually break a GObject property binding
3639     without destroying one of the objects involved
3640
3641  * Icons
3642
3643   - the requirements for implementing the GIcon interface have changed
3644     in order to make it possible to consume all implementations of GIcon
3645     with a finite number of cases
3646
3647   - a new GBytesIcon type was added for an icon represented by an
3648     in-memory binary blob in a known image format (ideally png).
3649
3650   - new APIs g_icon_serialize() and g_icon_deserialize() replace the old
3651     to/from_string APIs and will always work, irrespective of which
3652     types have been initialised in the calling process, allowing for a
3653     serialised GdkPixbuf to be deserialised in a process that doesn't
3654     have GdkPixbuf
3655
3656   - support for icons has been added to GMenuModel using the new APIs
3657
3658  * Actions and menus
3659
3660   - GPropertyAction provides a convenient way of creating a stateful
3661     property corresponding to a property on a GObject, such as the
3662     "visible-child-name" property of a GtkStack
3663
3664   - new API g_menu_remove_all()
3665
3666   - we now have established rules about what is a "valid" action name
3667     and an API to check them
3668
3669   - a new API for converting detailed action names to and from the
3670     split-out name and parameter value (as GVariant)
3671
3672   - for backwards compatibility, invalid action names can still be used
3673     with most functions, but this is not recommended
3674
3675  * Other GIO
3676
3677   - GDBus now supports services that wish to handle some of all
3678     properties on an interface asynchronously, without requiring the
3679     service to reimplement the entire org.freedesktop.DBus.Properties
3680     interface
3681
3682   - GFile now has a new _measure_disk_usage() (and async) API for
3683     recursively determining the amount of disk space used by a
3684     particular directory (akin to 'du').
3685
3686   - asynchronous version of g_file_trash() and g_file_make_directory()
3687     have been added
3688
3689  * Other new API
3690
3691   - GRegex has a new function to query the maximum lookbehind length to
3692     allow for regexp matching on streams
3693
3694   - GVariant has two new APIs for constructing strings that allow
3695     avoiding copies in some cases: g_variant_new_take_string() and
3696     g_variant_new_printf()
3697
3698  * Testing
3699
3700   - we can now generate TAP output
3701
3702   - new support functions for simplifying the process of dealing with
3703     data files for srcdir != builddir and installed test cases
3704
3705   - g_test_trap_subprocess() provides a portable alternative to
3706     g_test_trap_fork()
3707
3708  * Other
3709
3710   - GLib now builds on Android against the bionic C library
3711
3712 Overview of changes from GLib 2.37.93 to 2.38.0
3713 ================================================
3714
3715 * fix the documentation for GSourceFuncs
3716
3717 * fix compilation on OS X/ppc64
3718
3719 Bugs fixed: 708445, 647145
3720
3721 Translations updated:
3722  Danish
3723  French
3724  Portuguese
3725  Punjabi
3726
3727 Overview of changes from GLib 2.37.92 to 2.37.93
3728 ================================================
3729
3730 * a couple of bugfixes in the new g_file_measure_disk_usage() API
3731
3732 * updated Traditional Chinese translation
3733
3734 Overview of changes from GLib 2.37.7 to 2.37.92
3735 ===============================================
3736
3737 * new API g_file_measure_disk_usage() similar to du(1)
3738
3739 * minor fixes
3740
3741 * Translation updates:
3742  Assamese
3743  Belarusian
3744  Brazilian Portuguese
3745  Catalan
3746  Czech
3747  Galician
3748  German
3749  Hungarian
3750  Indonesian
3751  Italian
3752  Korean
3753  Korean
3754  Latvian
3755  Lithuanian
3756  Polish
3757  Serbian
3758  Slovenian
3759  Spanish
3760
3761 Overview of changes from GLib 2.37.6 to 2.37.7
3762 ==============================================
3763
3764 * GDateTime now supports %:z formatting variations
3765   for timezones. This is a GNU date extension.
3766
3767 * Bugs fixed:
3768  685387 Segfault with GObject.signal_handler_is_connected()...
3769  686786 g_socket_get_available_bytes() returns wrong value ...
3770  705027 GSocket GSource not threadsafe on Windows
3771  706469 Fix G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE documentation
3772  706706 Fix Gir annotations on g_loadable_icon_load_finish
3773  706888 gtype: fix a no-op assertion
3774  706958 configure.ac: fix atomic opts detection
3775  707092 "File Utilities" page for GLib documentation doesn'...
3776  707151 gdatetime: Extend the '%z' timezone format
3777
3778 * Translation updates:
3779  Catalan
3780  Hungarian
3781  Japanese
3782  Polish
3783  Slovak
3784  Tamil
3785
3786
3787 Overview of changes from GLib 2.37.5 to 2.37.6
3788 ==============================================
3789
3790 * Tests using the g_test facilities can now generate TAP output
3791
3792 * Bugs fixed:
3793  680926 generic type fallback logic is broken for -symbolic
3794  684327 setting null icon to icon list
3795  689245 GSocket unable to reuse (address,port) on Mac OS X
3796  692125 Support TAP as GTest output format
3797  693335 build: fix dtrace-related warnings
3798  696633 gdbus-codegen trips over unicode chars when using python 3.x
3799  696970 Compiling 2.36.0 for win64 fails
3800  697185 GSocket – Allow specifying the multicast interface from...
3801  700268 Add support for using the clang analyzer
3802  701318 Add G_SPAWN_DEFAULT to GSpawnFlags
3803  701529 glib/tests/gdatetime: use UTC time in test_GDateTime_diff()
3804  701800 a new approach to reporting critical errors
3805  702674 g_date_time_new_utc crash
3806  704165 GLib.IOChannel read_unichar() fails
3807  705075 Simplify g_get_tmp_dir()
3808  705152 Race in glib/task.test
3809  705398 gtype: Fix typo in g_type_class_add_private() error message
3810  705570 Check ref_count in g_object_notify_by_pspec
3811  705600 Deprecate GSimpleActionGroup functions?
3812
3813 * Updated translations:
3814  Assamese
3815  Brazilian Portuguese
3816  Czech
3817  Dutch
3818  Galician
3819  Gujarati
3820  Hebrew
3821  Italian
3822  Lithuanian
3823  Marathi
3824  Norwegian bokmål
3825  Russian
3826  Slovenian
3827  Spanish
3828  Thai
3829  Traditional Chinese
3830
3831
3832 Overview of changes from GLib 2.37.4 to 2.37.5
3833 ==============================================
3834
3835 * Implement the Desktop Action specification: In the case that the
3836   application is a GApplication and DBusActivatable, actions from the
3837   desktop file are translated into GActions that have been added to
3838   the  application with g_action_map_add_action().
3839
3840 * GPropertyAction is a new type of GAction that represents the value
3841   of a property on an object, and allows to change the value when
3842   activated.
3843
3844 * GNetworkMonitorNetlink can now handle default routes via a device.
3845
3846 * The gsettings tool now reports failure to write a key (e.g. because
3847   the key was locked down)
3848
3849 * Miscellaneous new api:
3850  - g_variant_new_printf
3851  - g_action_print_detailed_name
3852  - g_regex_get_max_lookbehind
3853
3854 * Bugs fixed:
3855  664444 Support additional application actions in .desktop files
3856  684123 glib build only tries -D_GNU_SOURCE if glibc is detected
3857  689794 support incremental matching
3858  699259 add org.freedesktop.Application support to GIO
3859  700460 rewrite tests to not rely on precise timing of timeouts
3860  701511 updates to various GSource types
3861  701609 gnetworkmonitornetlink: handle default route via device
3862  703270 add GPropertyAction
3863  704157 GAction: add function for printing detailed names
3864  704250 Doc: various fixes
3865  704267 regression gsourceclosure: segfault in gedit file chooser
3866  704322 glib-unix: fix handling of multiple signal source for the...
3867  704424 No error when failing to override a locked key
3868  704447 Fix build/use of g_child_watch_closure_callback on Windows
3869  704523 g_thread_create_full() can dereference NULL pointer
3870  704543 Add implementations for G_GNUC_*_IGNORE_DEPRECATIONS for ...
3871  704567 gdbusnameowning: Don't spew an error if we're releasing a...
3872  704585 libc printf can give mixed-case strings for NaN and Inf
3873  704587 FTBFS: statfs_result is undeclared for statvfs()
3874  704699 gmain: Reset signal handlers to default when source is
3875  704704 AI_NUMERICSERV cannot be used with ai_socktype = 0
3876  704873 inotify: don't assume mainloop is running
3877  704999 glib/convert.test crashing due to lack of iconv cache
3878  704931 GMenuModel: add annotations to virtual functions
3879
3880 * Translation updates:
3881  Assamese
3882  Czech
3883  German
3884  Gujarati
3885  Spanish
3886  Tamil
3887
3888
3889 Overview of changes from GLib 2.37.3 to 2.37.4
3890 ==============================================
3891
3892 * Bugs fixed:
3893  701283 g_source_add_child_source() segfault
3894  702147 inconsistency of G_STRFUNC
3895  703191 new private macros interact poorly with versioning macros
3896  703254 Doc: various fixes
3897  703407 g_spawn_async() keeps child_pid_report_pipe open in child process
3898  703437 GDBusConnection: be more careful with async GetAll
3899  703478 Missing G_BEGIN/END_DECLS in gsettingsschema.h
3900
3901 * Translation updates:
3902  Catalan
3903
3904 Overview of changes from GLib 2.37.2 to 2.37.3
3905 ==============================================
3906
3907 * add a new API for instance private data: G_DEFINE_TYPE_WITH_PRIVATE
3908
3909 * fix timestamps in tarball to prevent automake from being required to
3910   build the unmodified source
3911
3912 * add new D-Bus API for async property handling
3913
3914 * add back fsync() on ext4 for g_file_set_contents() after it was
3915   discovered that despite statements in the ext4 documentation
3916   suggesting that this is safe, it is not safe.
3917
3918 * Translations:
3919  Italian
3920  Norwegian bokmål
3921
3922 * Bugs fixed:
3923  698375 - D-Bus async properties
3924  700350 - timestamp issue
3925  701560 - fsync issue (fixed again)
3926  700035 - new API for instance private data
3927
3928 Overview of changes from GLib 2.37.1 to 2.37.2
3929 ==============================================
3930
3931 * The GLib test utilities have grown some file-related APIs
3932   to support tests that can be used installed and uninstalled.
3933
3934 * Installing properties after class initialization is deprecated,
3935   and will trigger a warning.
3936
3937 * GApplication:
3938  - Support org.freedesktop.Application, including D-Bus activation
3939    from desktop files
3940  - Set prgname to appid for services
3941
3942 * Bugs fixed:
3943  549783 gtester lacks framework for tests with data files
3944  692848 Fix property example in gobject tutorial
3945  698018 Add an explicit g_binding_release()
3946  698614 GObject: prevent installing properties after init
3947  699259 add org.freedesktop.Application support to GIO
3948  699959 g_file_copy(): Ensure we create private files by default
3949  700123 Test failure: g_inet_socket_address_get_scope_id
3950  700725 GIcon: NULLify the `type' out param in the sync methods too
3951  701401 gtest: add function for testing for WINE
3952  701456 Error in gnome/glib/gio/tests/file.c
3953  701474 Error building glibmm due to extra comma in glib/gtestutils.h
3954  701560 various improvements for g_file_set_contents()
3955  701680 GFileEnumerator: Add some documentation about ordering
3956  701878 Check wakeup() before iteration(TRUE) doesn't block
3957
3958 * Translations:
3959  Assamese
3960  Czech
3961  Galician
3962  Gujarati
3963  Kannada
3964  Marathi
3965  Odia
3966  Polish
3967  Slovenian
3968  Spanish
3969  Telugu
3970
3971
3972 Overview of changes from GLib 2.37.0 to 2.37.1
3973 ==============================================
3974
3975  * add support for installed tests:
3976    https://live.gnome.org/GnomeGoals/InstalledTests
3977
3978  * add a new g_test_trap_subprocess() that works on Windows as a
3979    replacement for the (now deprecated) g_test_trap_fork()
3980
3981  * support for explicitly cancelling a gobject property binding
3982
3983  * performance improvements for signal argument handling
3984
3985  * stop using `quotes' in very many log messages generated by GLib, for
3986    favour of 'this style'.  This may cause testcases in other packages
3987    to fail if they were matching on the previous text.
3988
3989  * improve manpages: add missing arguments and flags
3990
3991 Translations: 
3992  Aragonese
3993  Assamese
3994  Gujarati
3995  Hindi
3996  Kannada
3997  Norwegian bokmål
3998  Odia
3999  Slovenian
4000  Spanish
4001  Tamil
4002  Telugu
4003
4004 Bugs fixed:
4005  679683 replace g_test_trap_fork()
4006  694380 Improve signal argument collection performance
4007  695233 Strings require plural forms
4008  697849 spelling fixes in cross.xml and running.xml
4009  698877 GProxyAddressEnumerator calls g_network_address_parse_uri without port
4010  698981 [PATCH] test /gdbus/connection/large_message could hang forever
4011  699079 Prototype support for installed tests
4012  699485 [PATCH] tests/mappedfile: Also handle ENOMEM
4013  699493 SOCKS5 proxy code crashes if it cannot authenticate
4014  699500 gbitlock: fix this to not unconditionally use futex emulation
4015  699779 [PATCH] G_GNUC_FORMAT: documentation error
4016  700263 m4macros/glib-gettext.m4: Don't use AC_HEADER_STDC
4017  700714 [PATCH] gtestutils: Ensure test subprocesses don't dump core
4018  700746 Use 'dumb quotes' rather than `really dumb quotes'
4019
4020 Overview of changes fron GLib 2.36.0 to 2.37.0
4021 ==============================================
4022
4023 * The syntax for detailed action names has been documented,
4024   and a parser API for them is now provided
4025
4026 * GApplication has gained a busy state. This feature is intended for
4027   clients that want to signal a desktop shell their busy state, for
4028   instance because a long-running operation is pending.
4029
4030 * GLib can now be built with the bionic C library
4031
4032 * GIcon can now be serialized to a GVariant
4033
4034 * Bugs fixed:
4035  548353 Finish implementing GFile interface (mostly asynchron...
4036  645881 Full port of glib-2.28.1 onto Android-ARM
4037  665445 Glib mistakes nl_langinfo() from plibc for the real t...
4038  672018 Need API to set global application state (busy, count...
4039  687659 drop support for adding interfaces after class_init
4040  688820 GIcon is a bad interface
4041  688954 extend 'detailed action' syntax, provide parser
4042  689223 Fix compilation on Android with the bionic C library
4043  695156 Add support for arg0namespace matching in signal_subs...
4044  696108 gdbus-codegen: avoid warnings in generated code
4045  696629 fix sed(1) usage
4046  696652 GTask won't free its error member variable on finalize
4047  696857 GThreadedResolver: set an error if no records could b...
4048  696973 Compiling 2.36.0 for win64 fails in gdbusmessage.c
4049  697131 No --version
4050  697160 [PATCH] gmacros: Mark G_UNAVAILABLE() functions as de...
4051  697229 Custom Interface implementations will be broken with ...
4052  697250 Documentation glitch of G_DEFINE_TYPE_EXTENDED causes...
4053  697365 Fix usage of hasmntopt in gunixmounts.c
4054  697367 Remove warning on gio/gunixmounts.c
4055  697386 Except const argument with atomic is not lock free
4056  697595 g_main_context_unref unlocks a mutex twice
4057  697601 reduce GMenuModel D-Bus traffic
4058  697626 Allow posix threads to be used on w32
4059  697652 Help options generated even when help disabled
4060  697771 fix a typo of "fo" to "of" in building.xml
4061  697887 GVariant: fix transfer annotation
4062  697942 abicheck.sh fails on mips
4063  698056 rewrite g_object_new()
4064  698081 Pidgin hangs in g_spawn_command_line_sync
4065  698455 GVariant: add new g_variant_new_take_string() API
4066  698457 g_variant_get_data_as_bytes() always returns toplevel...
4067  698478 gactionmap: don't require GActionGroup
4068  698595 the valgrind/priv-before-instance bug
4069  698655 desktop-app-info test relies on true being in /usr/bin/
4070  698686 GUnixSocketAddress: fix construct parameter issue
4071  698716 Use of g_mem_set_vtable() breaks after gobject automa...
4072  698999 bytesicon: fix a memory leak
4073  699001 bytesicon: don't use g_object_unref() on GBytes
4074  699361 gio: fix small leak
4075
4076 * Translation updates:
4077  Assamese
4078  Gujarati
4079  Hungarian
4080  Italian
4081  Kannada
4082  Norwegian bokmål
4083  Polish
4084  Spanish
4085  Tamil
4086
4087
4088 Overview of changes fron GLib 2.35.9 to 2.36.0
4089 ==============================================
4090
4091 This release contains only small bugfixes and translations updates.
4092
4093  - g_file_copy(): fix bug where attributes were not applied properly to
4094    the destination file
4095
4096  - fix some 'available since' annotations
4097
4098  - fix gdbus-codegen to produce more pedantically-correct code
4099
4100 * Bugs fixed:
4101  696108 gdbus-codegen: avoid warnings in generated code
4102  696014 g_file_copy(): Ensure G_FILE_COPY_OVERWRITE preserves permissions
4103
4104 * Translations updated:
4105  Basque
4106  Czech
4107  Gujarati
4108  Hindi
4109  Hungarian
4110  Japanese
4111  Malayalam
4112  Marathi
4113  Odia
4114  Punjabi
4115  Russian
4116  Tadjik
4117  Tamil
4118  Telugu
4119
4120 Overview of changes from GLib 2.35.8 to 2.35.9
4121 ==============================================
4122
4123 This release drops the old codepage ABI from gutils.c. This is a
4124 source-compatible change and only breaks ABI with respect to truly
4125 ancient binaries (and those binaries are already broken for other
4126 reasons).  This change only affects Windows.
4127
4128 * Bugs fixed:
4129  682896 glib doesn't build on mingw32
4130  693204 split up g_get_{hostname,username,realname,home_dir} etc.
4131  694181 Handle GNetworkAddress better in g_network_monitor_base_...
4132  694253 occasional /gdbus/unref-pending test failure
4133  694350 Add type names to gsignal warnings
4134  694757 Use separate GLIB_WARN_CFLAGS that can be overridden ext...
4135  568405 Which is the correct replacement for g_strncasecmp, if...
4136  630284 g_hash_table_get_keys docs
4137  659428 docs: Small clean-up of howto subsection headers
4138  675333 Cannot forget association in Open With dialog: program...
4139  694669 consider unicode corrigendum #9
4140  694843 g_base64_decode_step () produces invalid data
4141  695147 Don't use PATH_MAX as it's not guaranteed to be defined
4142  695191 Commit f641699 broke /appinfo/mime/api test case
4143  695339 Swapped msgid plural forms for translation
4144  695376 GDBusMethodInvocation leak and potential crash
4145  695425 Untranslatable message in gsettings-tool
4146  695887 Improvements to GObject API documentation
4147  695925 GUINT32/64_SWAP_LE_BE macros do not enclose val argume...
4148  696015 PATCH Add doc warning to g_base64_decode()
4149
4150 * Translation updates:
4151  Assamese
4152  Belarusian
4153  Brazilian Portuguese
4154  Catalan
4155  Catalan (Valencian)
4156  Danish
4157  French
4158  Galician
4159  German
4160  Greek
4161  Gujarati
4162  Italian
4163  Korean
4164  Latvian
4165  Lithuanian
4166  Polish
4167  Portuguese
4168  Punjabi
4169  Serbian
4170  Simplified Chinese
4171  Slovak
4172  Slovenian
4173  Spanish
4174  Thai
4175  Traditional Chinese
4176  Uyghur
4177  Vietnamese
4178
4179
4180 Overview of changes from GLib 2.35.7 to 2.35.8
4181 ==============================================
4182
4183 This release contains one major change that may cause problems: type
4184 modules are now never unloaded.  This is implemented by (effectively)
4185 leaking the last reference on dynamic types.  Some testcases that check
4186 for unloading of types have been observed to be broken by this change,
4187 but we know of no actual cases of "real code" breaking.  Please report
4188 any problems.
4189
4190 Other changes:
4191  * A couple of build fixes for Solaris
4192  * Fix signal emission for GDBusObjectManagerClient
4193  * annotations fixes
4194  * new API: g_dbus_address_escape_value()
4195  * GSocketClient: add proxy-resolver property
4196  * GSimpleProxyResolver: new simple GProxyResolver class
4197  * documentation fixes
4198  * gnetworkaddress: preserve IPv6 scope ID in IP literals
4199
4200 Bugs fixed:
4201  691105 Allow GSocketClient to override GProxyResolver for per client proxy settings.
4202  692827 configure test fails for arpa_nameser.h
4203  692829 new Btrfs support causes build failure on Solaris
4204  693285 GDBusObjectManagerClient: won't emit object-added|removed if name-owner arrives later
4205  693502 Cross-compiling documentation: typo (np -> no)
4206  693673 add g_dbus_address_escape_value()
4207  693694 gio: Fix annotations on g_[async_]initable_new() and friends 
4208
4209 Translations:
4210  Dutch
4211  Galician
4212  Polish
4213  Serbian
4214
4215 Overview of changes from GLib 2.35.6 to 2.35.7
4216 ==============================================
4217
4218 This is a quick follow-up release with a few bug fixes.
4219
4220 * Fix the build on systems with strict linkers by adding -pthread back
4221   to the LDFLAGS for a testcase.
4222
4223 * Re-enable native atomic operations on some buggy versions of clang
4224   that ship as part of the MacOS X SDK.
4225
4226 * Make G_IO_FLAG_IS_WRITEABLE an enum again (the #define broke bindings)
4227
4228 * a small docs fix
4229
4230 * Bugs fixed:
4231  657045
4232  636683
4233  682818
4234  693105
4235
4236 * Translations:
4237  Italian
4238
4239 Overview of changes from GLib 2.35.4 to 2.35.6
4240 ==============================================
4241
4242 * GUnixFdSource is a new way to add file descriptors
4243   to the mainloop
4244
4245 * g_source_set_ready_time lets you mark a source to become
4246   ready at a specified monotonic time
4247
4248 * The internal visibility handling of GLib has been reworked
4249
4250 * GFileMonitor will now automatically use fam instead of inotify
4251   if $HOME is on NFS
4252
4253 * The file monitor implementation can now be overridden with
4254   the GIO_USE_FILE_MONITOR environment variable
4255
4256 * Bugs fixed:
4257  570572 2 make check errors on
4258  592211 No monitoring over NFS mounts
4259  625552 wrong behaviour of GVolume GVolumeMonitor related func...
4260  657729 modernise GMainLoop
4261  658020 GSource for a single GPollFD
4262  678223 g_mutex_free
4263  682560 leak fixes
4264  682819 EINTR-harden all the things
4265  684404 When using g_network_address_address_enumerator_next()...
4266  686853 new GSource fd API
4267  688169 G_DISABLE_DEPRECATED doesn't cover deprecated/gthread....
4268  688681 build: Make .symbols file canonical on all platforms
4269  690118 Crash when closing last tab of a window using Ctrl-w
4270  691624 glib/gtester.c: missing include
4271  691812 gioinputstream - give task as callback_data not task_data
4272  691866 fails out of source build directory - gnetwork.h not f...
4273  692029 Add new API checking utility
4274  692034 Install an invalidation notifier for GClosure in g_sou...
4275  692058 Broken makefile for gio tests
4276  692079 build failure in gmarkup.c when using gcc 4.8 and buil...
4277  692201 inotify: fix a memleak
4278  692202 gfile: don't report completion twice on g_file_load_co...
4279  692229 Incorrect string formatters in a translation string
4280  692332 GNetworkMonitorNetlink: make the netlink socket cloexec
4281  692360 possibly non-threadsafe code in g_content_type_guess()?
4282  692404 tester: Use FD_CLOEXEC when creating pipes
4283  692408 nautilus SIGSEGV in g_file_info_get_size()
4284  692544 [PATCH] gfile: Ensure we create internal pipe with FD_C...
4285  692583 atomic get doesn't accept a const argument on architect...
4286  692618 Use g_timeout_add_seconds
4287  692815 Using g_hash_table_insert() when using a hash table as ...
4288  692865 Invalid docbook generated by gdbus-codegen
4289  692928 Document G_MENU_{ATTRIBUTE,LINK}_*
4290
4291 * Translation updates:
4292  Hebrew
4293  Kannada
4294  Lithuanian
4295  Norwegian bokmål
4296  Polish
4297  Serbian
4298  Slovenian
4299  Spanish
4300  Uyghur
4301
4302
4303 Overview of changes from GLib 2.35.3 to 2.35.4
4304 ==============================================
4305
4306 * New features:
4307  - New API: g_get_num_processors
4308  - New API: g_application_command_line_get_stdin
4309  - New GFileMonitor flag: G_FILE_MONITOR_WATCH_HARD_LINKS
4310  - Parse more timezone offset formats
4311  - Better timezone support on Windows
4312  - Make GParamSpec constructors introspectable
4313
4314 * Removed or deprecated features:
4315  - Disallow adding interfaces after class_init
4316
4317 * Bug fixes:
4318  532815 gio + inotify support for hardlinks
4319  614930 add g_get_num_processors (), return the max concurrent...
4320  626497 Btrfs clone/reflink ioctl support in g_local_file_copy
4321  633117 glib fails stests if /etc/localtime is not properly set
4322  661767 merge/improve various bits of run-in-thread functionality
4323  668210 Add g_application_command_line_get_stdin()
4324  675856 Use GDbus via gobject-introspection instead dbus-python
4325  684103 make glib work with python3
4326  684723 run-assert-msg-test.sh fails
4327  686058 OpenBSD: disable ipv6_v4mapped test
4328  686128 GTimeZone should be able to parse POSIX format for...
4329  687223 cleverer GThreadPool management
4330  687659 drop support for adding interfaces after class_init
4331  687920 GCredentials should have an accessor for the process ID
4332  688681 build: Make .symbols file canonical on all platforms
4333  688829 Variable overflow in utils.c test on 32-bit machine
4334  689324 Variable scoping in gunixmounts.c
4335  689810 Include guard optimization
4336  690043 Broken link for gsettings tutorial: gnome-utils in...
4337  690084 gmarkup: Make GMarkupParseContext a boxed type
4338  690388 Check if CMSG_FIRSTHDR() returns NULL when there is...
4339  690538 gschema DTD is invalid
4340  690543 Add test coverage for testing in-tree DBus services...
4341  690670 local_command_line not introspectable/annotated
4342  690902 G_END_DECLS needs to be at the end of gutils.h
4343  690970 Unhelpful deprecation message for g_value_array_get_nth
4344  691001 building docs is broken on master branch
4345  691011 Automake-1.13 errors on obsolete AM_PROG_CC_STDC
4346  691077 gio-querymodules crashes with SIGSEGV
4347  691110 g_cond_wait() docs incomplete
4348  691489 Crash in Oscars 2013 page
4349  691558 Only check for .hidden files if standard::is-hidden...
4350  691608 Support compilation with clang 3.2
4351
4352 * Translation updates:
4353  Assamese
4354  Bulgarian
4355  Estonian
4356  Galician
4357  Greek
4358  Hebrew
4359  Norwegian bokmål
4360  Polish
4361  Slovak
4362  Slovenian
4363  Spanish
4364  Tamil
4365
4366
4367 Overview of changes from GLib 2.35.2 to 2.35.3
4368 ==============================================
4369
4370 * This release contains an incompatible change to the g_get_home_dir()
4371  function. Previously, this function would effectively ignore the HOME
4372  environment variable and always return the value from /etc/password.
4373  As of this version, the HOME variable is used if it is set and the
4374  value from /etc/passwd is only used as a fallback.
4375
4376 * We now install a public "gnetworking.h" header that can be used to
4377  include the relevant OS-dependent networking headers. This does not
4378  really abstract away unix-vs-windows however; error codes, in
4379  particular, are incompatible.
4380
4381 * Bugs fixed in this release:
4382  142568 Allow $HOME to override passwd entry if the user really wants
4383  587806 The file selector should honor .hidden files
4384  602715 [GChecksum] Please add support for SHA512
4385  623187 provide some support for arbitrary setsockopt()s?
4386  629301 .goutputstream files left behind when cancelling I/O
4387  652650 Optimize GDBusMessage serialization
4388  664627 /gapplication/basic test intermittently fails: cmdline re-or...
4389  675516 Win32: Don't start a DBus server when built as static library
4390  679683 replace g_test_trap_fork()
4391  684145 Current Git sources fails to cross-compile for Windows in Li...
4392  686895 file-info: catch thumbnail files in large directory as well
4393  687092 IPv6 <-> IPv4 mismatch when subscribing to multicast (send)
4394  688180 GObject: Minor error in description of floating reference
4395  688319 gthread: add missing AVAILABLE_IN_2_32 annotations
4396  688377 configure: add missing square bracket in AS_IF for memmove
4397  688419 gtask: source_object arguments and return values not annota...
4398  688497 AppInfo: Add sufficient api to port gnome-session from Egg...
4399  688681 build: Make .symbols file canonical on all platforms
4400  688704 Add boxed GType for GThread
4401  688886 Improve the i18n documentation
4402  688931 GMemoryOutputStream: Add new _resizable() constructor usab...
4403  689037 need helper for creating a GFile from a remote commandline...
4404  689377 Fix a compiler warning in GDBus
4405  689538 Source object tag set too late in gsocketlistener
4406  689800 Treat lost+found directory as a hidden file
4407  689847 Add fast repeated typename -> GType resolver
4408  689982 Make GChecksum more fully introspectable
4409  690069 g_unix_open_pipe: Add missing F_SETFD
4410  690083 gfileenumerator: Add a g_file_enumerator_get_child method
4411  690163 Add a pre-configured gio/gnetworking.h for Visual C++ builds
4412  690346 Remove an unneeded escaping in NAMESER_COMPAT_INCLUDE
4413  690348 Fix g_type_add_class_private() name in g_warning
4414
4415 * Translation updates:
4416  Assamese
4417  Galician
4418  Hebrew
4419  Hindi
4420  Kannada
4421  Odia
4422  Polish
4423  Spanish
4424
4425
4426 Overview of changes from GLib 2.35.1 to 2.35.2
4427 ==============================================
4428
4429 Note that the incompatible change to the ->constructed() vfunc that was
4430 made in the last unstable release (2.35.1) has been reverted due to
4431 causing regressions in applications.
4432
4433 A new incompatible change has been introduced in this version: it is no
4434 longer permitted to add interfaces to a class after the first
4435 instantiation (or more strictly: after g_type_class_ref()).  Bug #687659
4436 is tracking this.
4437
4438 Two private symbols (g_menu_{attribute,link}_hash_iter_get_type) which
4439 were accidentally exported have also been properly hidden.  This may
4440 cause some tools to issue warnings about ABI mismatch.
4441
4442 The remaining changes should be relatively harmless: 
4443
4444  * GIO now has kqueue support for GFileMonitor (BSDs, Mac OS)
4445
4446  * New g_variant_new_from_bytes() API
4447
4448  * UNIX signal sources now allow watching SIGUSR1 and SIGUSR2
4449
4450  * Many pedantic cleanups to adhere to a higher level of -W use
4451
4452  * GTask changes to avoid a deadlock
4453
4454  * many cleanups/fixes for Windows
4455
4456  * Boxing for GPollFD, GIOChannel, GBytes, GByteArray
4457
4458  * Fix URL-encoding of trashed files
4459
4460  * Many other docs and annotations fixes
4461
4462 Translations:
4463
4464  Galician
4465  Gujarati
4466  Lithuanian
4467  Serbian
4468  Slovak
4469  Slovenian
4470
4471 Bugs closed:
4472
4473  649302 Add support for GNU/FreeBSD
4474  668842 [GSocket] Add caching for the sender address in g_socket_receive_from()
4475  672924 Add annotations for g_filename_from_uri()
4476  673229 glib: Use Returns:, not @returns
4477  677062 (partial) GVariant: Make g_variant_new_from_bytes() public, add more GBytes API
4478  686185 g_date_time_format Transcoding Fails on OSX      
4479  686191 g_mutex_get_impl() should use g_atomic_pointer_get()
4480  686797 Box GPollFD to make it introspectable
4481  686810 [regression] Infinite wait in g_task_run_in_thread_sync()
4482  686822 possible dlopen()/dlclose() issue with automatic g_type_init()
4483  686839 mkinstalldirs: Move to glib-mkinstalldirs
4484  686895 file-info: catch thumbnail files in large directory as well
4485  686898 g_unix_signal_source_new: Allow SIGUSR1 and SIGUSR2
4486  686920 gdbus: Allow GDBusObjectManagerClient to work on peer connections
4487  686921 Remove some of the repetition from gio/tests/Makefile.am
4488  687075 g_spawn_sync diagnostic incorrectly complains about SIGCHLD
4489  687089 g_dbus_connection_export_menu_model(): fix a crash
4490  687098 Repeated g_timeout_add* use can lead to guint overflow
4491  687385 Add some stricter CFLAGS, fix up the code
4492  687441 ABI break in master: g_menu_attribute_hash_iter_get_type, g_menu_link_hash_iter_get_type removed
4493  687516 typo in string: KB should be kB
4494  687540 In Trash folder, Nautilus misinterprets "\n" in filename as a line break
4495  687541 GSignalQuery param_types field needs array annotation
4496  687600 gfileutils.c performs invalid cast of (varargs) open to non-vararg type
4497  687698 plural forms needed
4498  687700 ending spaces
4499  687742 Add support for internal linkage to glib-compile-resources
4500  687801 tests/buffered-input-stream: Fix size of parameter passed
4501  688109 win32 warning/error fixes
4502  688255 'make check' regressed in 138f4c1 because GMarkup error messages changed
4503  688338 [PATCH] gobject/gtype.c: Fix spelling of »exceed«
4504  688370 GDBusError documentation improvement for client-side
4505  688378 g_socket_join_multicast_group not working
4506  688518 gio-kqueue: use O_EVTONLY on MacOS
4507
4508
4509
4510 Overview of changes from GLib 2.34.0 to 2.35.1
4511 ==============================================
4512
4513 These two changes in particular may be slightly incompatible.  Please
4514 give feedback if they cause trouble:
4515
4516   * Signal handlers connected with g_signal_connect_object() are now
4517     automatically disconnected on target object destruction
4518
4519   * The ->constructed vfunc is now called after all properties are set
4520
4521 The remaining changes should not cause problems.
4522
4523   * g_type_init() is no longer necessary and has been deprecated
4524
4525   * GTask (the new GAsyncResult implementation) has landed 
4526
4527   * GLib version macros updated
4528
4529   * Update to Unicode 6.2
4530
4531   * Thread safety fixes for GFileMonitor in non-default main contexts
4532
4533   * GTimeZone support for old-format zoneinfo database (as on Mac OS)
4534
4535   * g_settings_bind() now works with non-canonical property names
4536
4537   * Fix crashes related to NULL connection passed to
4538     GBusNameVanishedCallback and document this situation
4539
4540 * Bugs fixed:
4541  118536 Make g_signal_connect_object'ed handlers disconnect when the data object is destroyed
4542  661767 merge/improve various bits of run-in-thread functionality
4543  682950 GFileMonitor crashing on high event count when running in different thread
4544  683642 Missing g_content_type_get_symbolic_icon
4545  684882 Gsettings should spaw a warning when binding against a low_underscored_property
4546  684909 codegen: Explicitly close output
4547  684912 Update to Unicode 6.2
4548  685037 g_strcmp0: Returns shall include values less and greater than zero
4549  685069 Leak in glib-compile-resources
4550  685208 missing g_return_if_fail
4551  685608 [Patch] Port gio tests from pygobject to pygi
4552  685697 Documentation typo in g_dbus_interface_skeleton_has_connection()
4553  685733 Call ->constructed() after all properties are set
4554  685787 gtestdbus: correct documentation typos
4555  685995 Crash in g_menu_exporter_name_vanished
4556  686091 Invalid reads in g_bytes_unref_to_data
4557  686119 dtrace, gobject_probes.d, the last three probes - semicolon missing
4558  686161 Deprecate g_type_init()
4559  686231 GBusNameVanishedCallback: document NULL connection
4560  686458 slightly increase poll duration in test_timed_wait 
4561
4562 * Translations updated
4563   Catalan (Valencian)
4564   Czech
4565   Danish
4566   Italian
4567   Lithuanian
4568   Norwegian bokmål
4569   Slovenian
4570
4571 Overview of changes from GLib 2.33.14 to 2.34.0
4572 ===============================================
4573
4574 * Bug fixes:
4575  654239 g_type_init()'s docs have no statement about how to...
4576  674620 Update GSettings migration guide for intltool updates
4577  676034 Fix doc annotation for g_ptr_array_ref()
4578  684278 Fix GIO build on Windows
4579
4580 * Translation updates:
4581  Brazilian Portuguese
4582  British English
4583  Bulgarian
4584  Catalan
4585  Galician
4586  German
4587  Hebrew
4588  Hindi
4589  Hungarian
4590  Kannada
4591  Latvian
4592  Marathi
4593  Spanish
4594  Telugu
4595
4596
4597 Overview of changes from GLib 2.33.12 to 2.33.14
4598 ================================================
4599
4600  * CVE-2012-3524: don't run dbus-launch from setuid binaries
4601
4602  * g_content_type_get_generic_icon_name():
4603      new API for getting the icon name for a mime type
4604
4605  * Introspection fixes:
4606   - GDBusConnection nullability fixes
4607   - give a box type to GTimeZone
4608
4609  * Drop GVFS_INOTIFY_DIAG
4610
4611  * Add a new "Writing GLib Applications" section to the reference
4612    documentation with general info on security, threads, etc.
4613
4614  * gwin32mount.c: Fix syntax error
4615
4616  * gresource tests: srcdir != builddir fixes
4617
4618  * tests/gvariant: Fix test on big endian architectures
4619
4620  * Fix regression in g_shell_parse_argv()
4621
4622 Bugs fixed:
4623  562907 g_shell_parse_argv() mishandles # (hash)
4624  683167 g_time_zone_new not introspectable
4625  683384 /gvariant/checksum-basic failure on big endian machines
4626  683641 Typo in gwin32mount.c
4627  683744 have a way to get the generic icon name for a mime type
4628
4629 Translation updates:
4630  Assamese
4631  Belarusian
4632  British English
4633  Czech
4634  Danish
4635  French
4636  Galician
4637  German
4638  Greek
4639  Hebrew
4640  Indonesian
4641  Indonesian
4642  Korean
4643  Lithuanian
4644  Marathi
4645  Marathi
4646  Polish
4647  Portuguese
4648  Punjabi
4649  Russian
4650  Serbian
4651  Slovenian
4652  Traditional Chinese
4653
4654 Overview of changes from GLib 2.33.10 to 2.33.12
4655 ================================================
4656
4657 * Add a G_DEFINE_QUARK macro
4658
4659 * Add symbolic icon support to drive, volume, and mount, file
4660   and content types
4661
4662 * Add API to allow thread-safe access to the same qdata item
4663
4664 * Bugs fixed:
4665  562907 g_shell_parse_argv() mishandles # (hash)
4666  627240 add G_DEFINE_QUARK
4667  672329 memory leaks in gutils.c and glib tests
4668  673012 Stable byte-level specification for normal form
4669  674805 gdbusproxy async test is broken
4670  679835 gvariant format string parsing (and assertions)...
4671  682075 gdbus: Fix double free and use after free of ob...
4672  682101 Provide a way to get a symbolic icon for a device
4673  682222 test_method_calls_on_proxy: assertion failed (e...
4674  682284 mount-op: use gint64 instead of guint64 for tim...
4675  682386 "make check" fails due to sys/resource.h not be...
4676  682560 leak fixes
4677  682586 gsettings-tool: make list-recursively really re...
4678  682819 EINTR-harden all the things
4679  682833 Handle EINTR for open()
4680  682849 drop the global lock for g_object_weak_ref
4681  682965 gdbus-tool: Check return value of strrchr()
4682  683088 gdbus-codegen: fix error when wrong interface n...
4683         Fix the build with gtk-doc-stub
4684         Don't crash if set_app_info is called before ad...
4685
4686 * Translation updates
4687  Assamese
4688  Galician
4689  Greek
4690  Indonesian
4691  Japanese
4692  Latvian
4693  Lithuanian
4694  Norwegian bokmål
4695  Polish
4696  Portuguese
4697  Punjabi
4698  Russian
4699  Spanish
4700  Traditional Chinese
4701  Vietnamese
4702
4703
4704 Overview of changes from GLib 2.33.8 to 2.33.10
4705 ===============================================
4706
4707 * New GTest API for testcases where log output is expected:
4708   g_test_expect_message()
4709
4710 * GMenuItem now has 'get' accessors and a construct-from-GMenuModel API
4711
4712 * GVariant now has a function to check a format-string for type
4713   compatibility
4714
4715 * win32: We now use overlapped IO to support multiple asynchronous
4716   operations (ie: reading and writing) at the same time.
4717
4718 * GMappedFile: Add g_mapped_file_get_bytes()
4719
4720 * The problems with g_file_make_directory_with_parents() should be
4721   resolved.
4722
4723 * The long-standing issues with placeholder generation of manpages are
4724   now resolved.
4725
4726 * gtlscertificate: Add GBytes based certificate and private-key props
4727
4728 * build: Switch back to using AS_IF for conditionals
4729
4730 * test coverage improvements, documentation improvements, leak fixes
4731
4732 * Bugs fixed
4733  326931 Better docs for G_GNUC_*
4734  550433 g_test_init doesn't recognize --help
4735  600751 GCompletion should better document if and how items memory is managed
4736  628193 Miscellaneous string fixes
4737  637460 man glib-genmarshal is hard to use
4738  674483 broken configure results when cross-compiling with gcc >= 4.5
4739  677065 GMappedFile: Add g_mapped_file_get_bytes()
4740  679288 win32: use overlapped events for streams
4741  679556 it's hard to use gtest when g_warning() is expected
4742  680823 g_file_make_directory_with_parents: Fix error propagation
4743  681319 gtlscertificate: Add certificate-bytes and private-key-bytes props
4744  681336 man pages not built if --enable-gtk-doc not specified
4745  681413 build: Switch back to using AS_IF for conditionals
4746  681501 gmem: array only partially filled with memcpy
4747  681854 Documentation fix for Howto compile a program with glib
4748  682025 Documentation correction
4749  682067 Fix problems with CLEANFILES and automake-1.11.1 
4750
4751 * Translations updated:
4752  Lithuanian
4753  Spanish
4754  Galician
4755  Telugu
4756  Serbian
4757  Assamese
4758  Marathi
4759  Indonesian
4760  Traditional Chinese
4761
4762 Overview of changes from GLib 2.33.6 to 2.33.8
4763 ==============================================
4764
4765 * GIO now has a g_file_delete_async function
4766
4767 * The defaults for GThreadPools max_unused_threads
4768   and max_idle_time values have been changed to
4769   2 and 15*1000, respectively.
4770
4771 * Bugs fixed:
4772  661767 merge/improve various bits of run-in-thread functionality
4773  680074 undefined symbol "get_C_locale"
4774  680121 g_cancellable_source_new: don't use a file descriptor
4775  680148 gthread: check for definition of PR_SET_NAME
4776  680310 Sorting of access points by strengh not working
4777  680704 g_utf8_strup() crash
4778  68076a0 GFile: Add g_file_delete_async()
4779  680787 Add .dir-locals.el to tell Emacs users not to use tabs...
4780  680823 g_file_make_directory_with_parents: Fix error propagation
4781  680994 STATIC_ASSERT in GDBusError docs don't have much utility
4782  681116 gtlscertificate: Add g_tls_certificate_equal() function
4783  681118 gtlsdatabase: Don't complain if no callbacks for async...
4784  669331 try to get gio tests working a little better on win32
4785  674314 Make gtk-doc not a hard dependency of GLib
4786  674800 gclosure: generic marshaller leaks return value
4787  675524 gsocket: FIONREAD undeclared (needs sys/filio.h)
4788  679509 use after free in g_dbus_action_group_describe_all_done()
4789  679996 gobject docs minor cleanup
4790  680459 Extra newline char in local implementation of g_applic...
4791  680505 object_path memory leak in gdbusobjectproxy.c
4792  680831 Deprecate and remove g_slice_[sg]et_config.*
4793  680912 gchecksum: Add g_compute_checksum_for_bytes()
4794  681151 checksum: Use functions instead of macros when buildin...
4795  681158 gtlscertificate: Don't confuse certificate and public ...
4796
4797 * Translation updates:
4798  Galician
4799  German
4800  Gujarati
4801  Hebrew
4802  Norwegian bokmål
4803  Serbian
4804  Slovenian
4805
4806
4807 Overview of changes from GLib 2.33.4 to 2.33.6
4808 ==============================================
4809
4810 * GAsyncInitable: partially revert the init_finish changes,
4811   some applications were found to rely on behaviour that
4812   was broken by these changes
4813
4814 * Bugs fixed:
4815  679617 win32: fix g_get_environ()
4816  679968 Add some annotations to GBytes, GVariantType...
4817  680111 GIOScheduler assumes GCancellable "cancelled...
4818
4819 * Translation updates:
4820  Spanish
4821
4822 Overview of changes from GLib 2.33.3 to 2.33.4
4823 ==============================================
4824
4825 * GMainContext: the source list has been reorganzied to
4826   avoid O(n) behaviour
4827
4828 * GRegex: Update included PCRE to 8.31 and expose new
4829   functionality in 8.x versions of PCRE
4830
4831 * GMountOperation gained a ::show-unmount-progress signal
4832   which provides information about slow unmount operations
4833
4834 * Bugs fixed:
4835  616892 gio: Add a boxed type for GFileAttributeMatcher
4836  619329 g_source_attach() O(n) in number of sources
4837  639771 g_dir_read_name() can also return NULL on error
4838  661767 merge/improve various bits of run-in-thread fun...
4839  667375 GAsyncInitable subclassing (and async subclassi...
4840  671545 Constify collect and lcopy strings in GTypeValu...
4841  674452 SEGFAULT in gio contenttype test
4842  674898 Deal with GLIB_VERSION_MIN_REQUIRED/MAX_ALLOWED...
4843  675504 Fix up GObject interface documentation
4844  677064 GString: Tweak documentation, add g_string_free...
4845  677578 error in PCRE error code conversion
4846  677579 update GRegexError for newer PCRE error codes
4847  678066 gdbus codegen does not work with python3
4848  678273 unicode othercasing is wrong in gregex
4849  678576 GIOScheduler performance enhancements
4850  678758 GTlsInteraction unlocks an unlocked mutex
4851  678808 GTestDBus issues
4852  678881 Test failures in /socket/timed_wait in some cas...
4853  678941 /contenttype/guess test case failure
4854  678944 gio returns the wrong default applications for ...
4855  678949 wrong definition of ulong_bool for 64 bit big e...
4856  678959 /mainloop/timeouts race condition: assertion fa...
4857  679193 update included pcre to 8.31
4858  679258 The 'Since' tag for G_SOURCE_CONTINUE and G_SOU...
4859  679473 Don't generate invalid property names
4860  679691 Add g_spawn_check_exit_status()
4861  679671 GDBusNodeInfo: the XML string must contain exac...
4862  676111 mount-operation: add show-unmount-progress signal
4863  679691 win32: fix build g_spawn_check_exit_status() wi...
4864  679813 Documentation bug on http://developer.gnome.org...
4865
4866 * Translation updates:
4867  Assamese
4868  Belarusian
4869  Bulgarian
4870  Galician
4871  Greek
4872  Norwegian bokmål
4873  Polish
4874  Spanish
4875  Traditional Chinese
4876  Vietnamese
4877
4878
4879 Overview of changes from GLib 2.33.2 to 2.33.3
4880 ==============================================
4881
4882 This release contains mostly bugfixes, cleanups and performance
4883 improvements (including many fixes contributed by Colin on the advice of
4884 Coverity).  There are a few notable externally-visible changes:
4885
4886 * Thumbnails are now in XDG_CACHE_HOME
4887
4888 * new GDBus API: per-thread g_dbus_connection_get_last_serial()
4889
4890 * GUnixOutputStream now has a can_poll() implementation
4891
4892 * New deep copy APIs for G(S)List: g_(s)list_copy_deep
4893
4894 * Bugs fixed:
4895  518309 Incorrect data*dir path in glib-gettextize output
4896  566994 Safer passing of -framework flag
4897  672889 GLib.utf8_validate does segfault
4898  673253 Not strict enough autconf test for libelf
4899  675024 adds g_list_copy_deep() and g_slist_copy_deep
4900  675168 prepare for thumbnails to move to XDG_CACHE_HOME
4901  675966 gresolver: More robust parsing of DNS responses
4902  676594 [Patch] fix g_reload_user_special_dirs_cache
4903  676825 Implement g_dbus_connection_get_last_serial ()
4904  677235 Clarify the comment at the top of gmarshal.list
4905  677527 OS X: gthread/spawn-async selftest failure
4906  677718 GDBusProxy: treat org.freedesktop.systemd1.Masked error as non-fatal
4907  677770 GUnixOutputStream does not implement can_poll
4908  677782 Install bash completion files in /usr/share
4909  677817 g_key_file_to_data adds extra blank lines in some cases
4910  677952 Missing annotation for GDBusConnection signal "closed"
4911  678052 g_wakeup_acknowledge is called too often.
4912  678273 unicode othercasing is wrong in gregex
4913  678333 gdbus-codegen code causes warnings under -Wfloat-equal
4914
4915 * Translations updated:
4916  Arabic
4917  Assamese
4918  Galecian
4919  Greek
4920  Spanish
4921  Telugu
4922
4923 Overview of changes from GLib 2.33.1 to 2.33.2
4924 ==============================================
4925
4926 * GLIB_VERSION_MIN_REQUIRED now defaults to the current stable version
4927
4928 * GIO input and output stream classes have grown GBytes-based methods
4929
4930 * GApplication now has hooks to register D-Bus objects before the bus
4931   name is taken
4932
4933 * Bugs fixed:
4934  605976 add g_type_ensure(), to ensure that a type has...
4935  660851 Breakage of code due to changes in the GThread...
4936  666386 Empathy doesn't open Redirect URI with particu...
4937  671139 need (transfer async) for io stream buffers
4938  672329 memory leaks in gutils.c and glib tests
4939  672548 g_utf8_validate: @str shouldn't end up annotat...
4940  674111 Provide an accessor for MimeType desktop entry...
4941  674483 broken configure results when cross-compiling ...
4942  674634 Add g_clear_pointer()
4943  674777 What's the (transfer) of g_variant_lookup()?
4944  675309 gkeyfile: Fix annotations for g_key_file_load_...
4945  675446 gfile: Plug memory leak in g_file_make_directo...
4946  675509 add extra dbus hooks
4947  675832 Incomplete gsettings bash auto-completion
4948  676208 The tmpl parameter to g_file_new_tmp can be NULL
4949  676265 GNetworkMonitor leaks a lot of memory
4950  676277 Document that g_app_info_create_from_commandli...
4951  676397 g_environ_* should work with NULL envp
4952  676398 g_spawn_* should take PATH from the passed env...
4953  676478 Broken gzip decoding
4954  676594 [Patch] fix g_reload_user_special_dirs_cache
4955  676816 Add more GLIB_AVAILABLE_IN_*
4956  676937 Document notify signal deduplication with free...
4957
4958 * Translation updates:
4959  Czech
4960  French
4961  German
4962  Greek
4963  Japanese
4964  Russian
4965  Slovenian
4966  Spanish
4967
4968
4969 Overview of changes from GLib 2.32.1 to 2.33.1
4970 ==============================================
4971
4972 * GApplication
4973  - can now have a NULL application ID
4974  - add accessors for determining dbus connection and object path
4975
4976 * g_clear_object: fix warnings when using it on C++ (due to lack of
4977   ability to implicitly cast void*)
4978 * add g_clear_pointer as a generic form of g_clear_object
4979
4980 * GDBus:
4981  - add our own implementation of the message bus for use on Windows only
4982  - fix up a few bugs that use of this bus uncovered in GDBus
4983  - escape nonce files in dbus addressess (think 'c:\')
4984  - support initial underscores in dbus codegen namespace (for private)
4985  - add GTestDBus for bringing up a session bus for testing purposes
4986  - gdbus-codegen: Avoid warnings in generated code
4987  - GDBusAuthObserver: Add a way to control what authentication mechanisms to use
4988  - 
4989
4990 * Fix misdetection of GNUstep as Cocoa (for the MacOS GSettings backend)
4991
4992 * make sure configure fails if AC_CHECK_ALIGNOF cannot detect the alignment
4993
4994 * GAppInfo
4995  - overwrite the DISPLAY only if it is set in the launch context
4996  - add accessor for StartupWMClass
4997
4998 * glib/tests/date: force US locale running the GDateTime tests
4999
5000 * Resources:
5001  - fix broken use of GVDB on big endian machines
5002  - set a 'display name' so that pretty file names appear in Gtk CSS
5003    warning messages
5004
5005 * GMainContext:
5006  - block child sources when blocking the parent
5007  - introduce more testcases for child sources
5008
5009 * GResolver: add support for MX, TXT, NS and SOA records
5010
5011 * GSocketControlMessage: Don't warn about unknown messages
5012
5013 * GIO:
5014  - implement GSeekable for the data and buffered stream classes
5015  - implement GPollable for many more classes as well
5016  - fix GConverterInputStream infinite loop when fill_buffer returns an error
5017  - fileinfo: document the correct type for trash::orig-path
5018
5019 * test coverage improvements and general fixes
5020
5021 * new 2.34 stuff: version macros, docs index section, etc.
5022
5023 * Build:
5024  - add --disable-modular-tests build option
5025  - don't require host binaries if tests are not enabled for cross-builds
5026
5027 * Translations updated
5028  Brazilian Portuguese
5029  Bulgarian
5030  Czech
5031  French
5032  Galician
5033  German
5034  Hebrew
5035  Hindi
5036  Italian
5037  Norwegian bokmål
5038  Polish
5039  Russian
5040  Russian
5041  Serbian
5042  Simplified Chinese
5043  Slovenian
5044  Spanish
5045  Telugu
5046
5047 Overview of changes from GLib 2.32.0 to 2.32.1
5048 ==============================================
5049
5050 * Bugs fixed:
5051  670254 glib-2.30.2: Fails /GDateTime/new_from_unix test
5052  672541 glib-compile-resources prepends --sourcedir to absolute paths
5053  673139 URL to mailing lists in README incorrect
5054  673174 g_input_stream_read[_finish]: document returning 0 on EOF
5055  673191 glib/gchecksum.c warning: dereferencing type-punned pointer...
5056  673216 [W32] gtestutils does not use path separators consistently
5057  673439 Properly deprecate g_value_{set,get}_char
5058  673612 Fails to decode dictionaries wrapped in two layers of array
5059  673803 gclosure: Support return values of GVariants
5060  669285 glib/tests/markup-parse fails under non-english locale
5061  673911 gio-2.0.pc lists full path to executables, breaking cross com..
5062  673762 gnextstepsettingsbackend.c:343: error: parse error before 'in'
5063
5064 * Updated translations:
5065  Belarusian
5066  British English
5067  Bulgarian
5068  Catalan
5069  Czech
5070  French
5071  German
5072  Hebrew
5073  Hindi
5074  Hungarian
5075  Italian
5076  Japanese
5077  Kannada
5078  Latvian
5079  Lithuanian
5080  Marathi
5081  Norwegian bokmål
5082  Odia
5083  Polish
5084  Serbian
5085  Slovenian
5086  Spanish
5087  Swedish
5088  Telugu
5089
5090
5091 Overview of changes from GLib 2.31.22 to 2.32.0
5092 ===============================================
5093
5094 * Bugs fixed:
5095  671988 Quickly registering / unregistering objects on bus...
5096  672095 glib needs stable sort function
5097  672406 glib/tests/include.c fails to build on FreeBSD
5098
5099 * Updated translations:
5100  Telugu
5101
5102
5103 Overview of changes from GLib 2.31.20 to 2.31.22
5104 ================================================
5105
5106 * Bugs fixed:
5107  531901 Use __builtin_bswap* for GUINT*_SWAP_LE_BE if building...
5108  653167 Out of tree build is broken on windows
5109  668973 Test /gvariant/parser fails on Solaris 10
5110  669797 gvfs now lists its fuse mounts
5111  670846 deadlock: GStreamer-WARNING **: wrong STREAM_LOCK count 0
5112  671664 gio-querymodules: unlink instead of writing empty cache
5113  671676 Glib can't be cross-compiled any more after merge of...
5114  671918 gnome-shell is inaccessible unless started while an AT...
5115  671942 GSocketMsgFlags: annotate as a flags
5116  671997 Unix signal handling assumes that volatile 1-byte writes...
5117  672013 GSimpleAsyncResult: support reliable cancellation
5118  672026 default log output should include pid and/or prgname
5119  672095 glib needs stable sort function
5120  672201 G_SPAWN_SEARCH_PATH should continue on ENODEV and ETIMEDOUT
5121  672239 request NO_REPLY from g_dbus_connection_call() with no as...
5122  672249 gdbusproxy leaks asyncresult in an error case instead of...
5123
5124 * Translation updates:
5125  Assamese
5126  British English
5127  Catalan
5128  Catalan (Valencian)
5129  Danish
5130  Esperanto
5131  Finnish
5132  French
5133  German
5134  Hungarian
5135  Korean
5136  Lithuanian
5137  Norwegian bokmål
5138  Polish
5139  Portuguese
5140  Russian
5141  Traditional Chinese
5142
5143
5144 Overview of changes from GLib 2.31.18 to 2.31.20
5145 ================================================
5146
5147 * Update to Unicode 6.1
5148
5149 * Update PCRE to 8.30
5150
5151 * Deprecations are now versioned, and new API is
5152   marked with the version it was introduced.
5153   Use these with GLIB_VERSION_{MIN,MAX}_REQUIRED
5154
5155 * The performance of signal emissions has been
5156   improved for simple cases
5157
5158 * Bugs fixed:
5159  529806 Cannot build in 64-bit Mac OS X due to libiconv
5160  580873 Documentation of register type functions incomplete
5161  592666 Document how to unset an attribute
5162  597785 g_type_class_add_private code snippet is a bad example
5163  621368 glib-2.24.1: FAIL: run-assert-msg-test.sh when updating...
5164  622149 --disable-regex breaks glib2 build
5165  639873 GBinding: Crash when binding two properties on the same...
5166  640202 For GLIB v. 2.23.6 and above: impossibility to build mu...
5167  668295 Need a way to classify GVolume instances
5168  669670 gasyncqueue: don't use deprecated g_cond_timed_wait()
5169  670542 Add version information for deprecations
5170  670557 gvaluetransform: Fix an infinite loop with GFlagsValue...
5171  670721 global variable for signal ID should be hidden
5172  670751 IceWM build fails due to the G_DEPRECATED_FOR macro
5173  670909 g_dbus_connection_call leaks when it receives an error...
5174  670922 Include path to gdbus-codegen in the pkgconfig file
5175  670969 GSequence lookup may fail if there was no sort prior to...
5176  671025 Constants and identifiers starting with a number are no...
5177  671270 make distclean failures
5178  671281 glib-compile-resources.xml is missing from the dist tar...
5179
5180 * Translation updates:
5181  Basque
5182  Belarusian
5183  Brazilian Portuguese
5184  Bulgarian
5185  Galician
5186  Hebrew
5187  Lithuanian
5188  Persian
5189  Punjabi
5190  Serbian
5191  Simplified Chinese
5192  Slovenian
5193  Telugu
5194  Traditional Chinese
5195  Uyghur
5196  Vietnamese
5197
5198
5199 Overview of changes from GLib 2.31.16 to 2.31.18
5200 ================================================
5201
5202 * GDBusProxy has now a flag, G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES,
5203   which can be set to make GDBus automatically reload
5204   changed properties even if the propertychanged signal
5205   does not contain the new values.
5206
5207 * GApplication puts non-unique applications on the bus
5208
5209 * GApplication now has g_application_quit()
5210
5211 * g_async_queue_timed_pop has been deprecated in favor of
5212   the new g_async_queue_timeout_pop, which uses relative
5213   delays in microseconds instead of a GTimeVal.
5214
5215 * a huge number of API documentation fixes
5216
5217 * Bugs fixed:
5218  647986 put non-unique apps on D-Bus
5219  658484 vpn connection vs NetworkSecretDialog
5220  664237 GDateTime falls back to UTC if TZ is set
5221  669329 gthread-win32: update for g_get_monotonic_time() changes
5222  669330 glocalfile: fix error code when opening a directory on win32
5223  669372 glib/tests memory leaks.
5224  669412 mem leak in g_environ_unsetenv
5225  669538 Fix compilation of glib-compile-resources.c on Windows
5226  669544 gdbus-codegen example introspection XML is not complete
5227  669595 glib-mkenums: fix handling of forward enum declarations
5228  669670 gasyncqueue: don't use deprecated g_cond_timed_wait()
5229  669671 gobject: use #pragmas to avoid deprecated function warnings
5230  669689 Retrieve cwd and environ in local GApplicationCommandLine
5231  669810 socket/win32: flush pending read before signaling HUP
5232  669865 g_regex_fetch()
5233  670085 memory leak in g_output_stream_write_async
5234  670138 gbytes.h is missing the G_BEGIN/END_DECL guards
5235  670485 Simplify session API (shared bug with gtk+)
5236
5237 * Updated translations:
5238  Belarusian
5239  Danish
5240  Galician
5241  Serbian
5242  Telugu
5243  Hebrew
5244
5245
5246 Overview of changes from GLib 2.31.14 to 2.31.16
5247 ================================================
5248
5249 * GResource:
5250  - The resource compiler can now convert pngs into
5251    pixel data that can be used without parsing at runtime
5252    (requires gdk-pixbuf-pixdata to be present)
5253
5254 * Bugs fixed:
5255  669123 resource compiler: failing to-pixdata should...
5256  669173 resource: fix xml preprocess entity handling
5257  669224 Cross-compilation broken by data-to-c
5258  669253 gsettings set buggy on array values
5259  669334 fix memory leak in bookmark file parser
5260
5261 * Translation updates:
5262  Norwegian bokmål
5263  Spanish
5264
5265
5266 Overview of changes from GLib 2.31.12 to 2.31.14
5267 ================================================
5268
5269 * GResource:
5270  - GLib now includes a commandline utility, gresource,
5271    to explore resources in ELF files
5272  - The resource compiler can now optionally strip
5273    ignorable whitespace from XML resources
5274  - The resource compiler can now generate build dependencies
5275  - The resource compiler will now autoselect output formats
5276
5277 * GApplication:
5278  - The menu markup parser API has been dropped, the
5279    menu XML support lives in GTK+ now
5280
5281 * GValueArray has been deprecated
5282
5283 * Bugs fixed:
5284  626258 N-ary Trees - 'nodes' can be inserted before and after...
5285  634232 Core Dump / Aborted using g_key_file_to_data
5286  639099 schema compiler chokes on valid schema
5287  667228 Deprecate GValueArray
5288  667243 Add an element clear function to GArray
5289  667929 glib-compile-resources: xml resources doesn't need to...
5290  668250 g_date_time_format() produces a non-UTF8 string
5291  668468 'IP_ADD_SOURCE_MEMBERSHIP' undeclared
5292  668532 resources: add dependency generator to the resource compiler
5293  668539 resources: compiler should autoselect output format...
5294  668561 gresource-tool not internationalized
5295  668572 glib_cv_g_atomic_lock_free config.cache setting not honored...
5296  668650 GRealArray->clear_func should be initialized
5297  668756 GKeyFile: allow loading from empty strings
5298  668857 fix couple of typos in comments
5299  669024 goption: implement platform_get_argv0() for OpenBSD
5300
5301 * Updated translations:
5302  Galician
5303  Norwegian bokmål
5304  Spanish
5305  Traditional Chinese
5306
5307 Overview of changes from GLib 2.31.10 to 2.31.12
5308 ================================================
5309
5310 * GApplication:
5311  - Drop support for exporting menus - this functionality
5312    will be provided in GtkApplication
5313  - Add a way to create actions that change settings
5314
5315 * Bugs fixed:
5316  629503 Add async versions of g_unix_connection_{receive,send}_credentials
5317  656301 glib-compile-schemas should not create an empty file
5318  668071 mingw-gcc build fails on gio/gsocket.[c|h]
5319  668118 the big appmenu switcheroo
5320  668158 base64 encode and line termination
5321  668163 GDBusConnection: note that exit-on-close is sometimes TRUE
5322  668269 gsignal: add g_signal_handlers_disconnect_by_data
5323  668279 create GAction from GSettings
5324
5325 * Translation updates:
5326  Norwegian bokmål
5327
5328
5329 Overview of changes from GLib 2.31.8 to 2.31.10
5330 ===============================================
5331
5332 * GResource:
5333  - A new facility to allow linking data files into binaries
5334    and make them available as resources
5335  - Resources are compiled using glib-compile-resources
5336  - GIO supports resource:/// uris to access resources
5337
5338 * Bugs fixed:
5339  619126 Missing dependency libs
5340  658315 g_key_file_get_keys() should set length to 0...
5341  660371 is it ever valid to have 0 as a GError domain?
5342  666700 Add some missing (allow-none) annotations
5343  667375 GAsyncInitable subclassing (and async subclassing...
5344  667447 Missing many introspection annotations
5345  667790 Protect call to pthread_condattr_setclock with define
5346  667938 wrong gtypes generated for empty flags enums
5347
5348 * Translation updates:
5349  Hebrew
5350  Spanish
5351
5352
5353 Overview of changes from GLib 2.31.6 to 2.31.8
5354 ==============================================
5355
5356 * GObject:
5357  - The type checks for overriding properties have been loosened.
5358    In particular, it is now possible to add the CONSTRUCT flag
5359    to an overridden property
5360  - GWeakRef is a new API for weak references; unlike g_object_weak_ref
5361    and g_object_add_weak_pointer, it is thread-safe.
5362
5363 * GHashTable has grown new convenience api for use as a set:
5364   g_hash_table_add, g_hash_table_contains
5365
5366 * GSocketConnection has gained API for managing connection status
5367
5368 * GSettings: a native OS X backend has been added, under the
5369   name 'nexstep'
5370
5371 * Bugs fixed
5372  455640 Something fishy with GRegex and unicode
5373  548954 weak references are not threadsafe
5374  625751 Add G_FILE_ATTRIBUTE_FILESYSTEM_USED
5375  658871 gbacktrace: g_get_prgname () isn't called for a NULL argu...
5376  664069 gvariant: Never break out of g_variant_iter_loop
5377  664830 g_strescape doesn't natively handle \v (vertical tab)
5378  665211 GDBusConnection singleton access can race with disposal
5379  665805 Add GSocketClient::action, for tracking socket client status
5380  666116 some tests provoke undefined behaviour, which is undesira...
5381  666422 Unreachable code in gio gnetworkmonitornetlink.c
5382  666551 Crash in g_thread_xp_SleepConditionVariableSRW
5383  666595 menu parser disallows id='' on submenu and section
5384  666615 loosen property override flag restrictions
5385  666616 gobject: fix property override type checks
5386  666803 g_utf8_validate() fails to validate strings with known size
5387  666804 g_ateaxit deprecation warning in devhelp points in wrong ...
5388  666951 g_mkdtemp: Since version incorrect in docs
5389  666978 Fails to compile glib applications with ISO C90 compiler
5390  667098 ginetaddressmask leaks its address property
5391  667225 GSocket: add missing type checks to public methods
5392  667226 GSocket: fix an error return value
5393  667279 Sometimes crashes when launching commandline-crea...
5394  667285 Wrong keyname listed in documentation for g_deskt...
5395  667331 Use g_queue_free_full() convenience function
5396  667420 GHashTable GDB pretty printing is broken
5397
5398 * Updated translations
5399  Belarusian
5400  Bulgarian
5401  Hebrew
5402  Norwegian bokmål
5403  Norwegian Nynorsk
5404  Spanish
5405  Vietnamese
5406
5407
5408 Overview of changes from GLib 2.31.4 to 2.31.6
5409 ==============================================
5410
5411 * GApplication no longer has APIs for setting menus.  Those have been
5412   moved to GtkApplication.
5413
5414 * the GActionGroup import/export functionality has been decoupled from
5415   GApplication by the introduction of a new interface for the purpose of
5416   handling platform data: GRemoteActionGroup.  This allows Gtk to
5417   properly deal with platform data (and gdk threads) on window actions.
5418
5419 * lots of documentation improvements
5420
5421 * bug fixes and a huge number of memory leak fixes
5422
5423 * the test suite now passes on ARM and some of the GDBus testcase hangs
5424   we've been seeing have been resolved (although others could remain)
5425
5426 * g_bytes_get_data() API changed: now includes 'size' out parameter
5427
5428 * new g_queue_free_full() API similar to g_[s]list_free_full()
5429
5430 * desktop files: use standard "Keywords" now, not "X-GNOME-Keywords"
5431
5432 * gsettings commandline tool now has --schemadir option for schemas not
5433   installed in the usual place (ie: as part of plugins)
5434
5435 * Bugs fixed:
5436  643736 GApplication doesn't emit dbus signals on action updates
5437  657433 g_queue_free_full() missing
5438  664699 glib: documentation fixes
5439  665737 acquire/release gdk threads lock on incoming dbus
5440  665879 GBytes: add a size argument to g_bytes_get_data
5441  666113 various leaks in GLib, GIO are visible in the regression tests
5442  666115 various tests leak memory, obscuring real leaks in the library
5443  666145 Doc could be more explicite that g_thread_init calls can be droped
5444  666173 Configure warning - linux/netlink.h usability... no
5445  666296 Race condition in g_thread_xp_get_srwlock
5446  666415 Settings tools should allow specifying a schema directory 
5447
5448 * Translations updated:
5449  French
5450  Spanish
5451
5452 Overview of changes from GLib 2.31.2 to 2.31.4
5453 ==============================================
5454
5455 * EXPERIMENTAL: Menu support has been added to GApplication.  Menus
5456   are exported on the bus, alongside the actions that are already there.
5457   There have also been many related improvements to action group
5458   functionality.
5459
5460   These new APIs are subject to changes in the coming releases.  In
5461   particular, it seems somewhat likely that the APIs for registering
5462   menubars may change in order to accommodate windows with different
5463   types of menubars.
5464
5465 * GDBusConnection previously directly dispatched destroy notifies when
5466   unregistering objects if the current main context was the same context
5467   the object was exported on.  It now unconditionally dispatches these
5468   through an idle on the context.
5469
5470 * Clean up Requires in pc files. Linking against GIO no
5471   longer drags in gmodule. This may require dependency
5472   fixes here and there.
5473
5474 * Introduce GBytes, a data type for immutable, fixed-size
5475   byte sequences. This makes the pre-existing GBuffer
5476   API available outside GLib
5477
5478 * GDBusInterfaceSkeleton can now be exported on multiple
5479   connections
5480
5481 * Bugs fixed:
5482  600161 Do not use static GTypeInfo and GInterfaceInfo
5483  640077 GFileMonitor: Always send CHANGES_DONE_HINT after a move...
5484  641720 Misleading definition for local_command_line() in GApplic...
5485  648516 Little comment error and 2 useless lines of code
5486  651997 Dummy backend for gapplication
5487  652560 Test for g_ascii_strtod is failing
5488  662208 failure to initialize a GInitable should be considered...
5489  662718 GDBusInterfaceSkeleton should be able to export on multi...
5490  663291 GBytes: Immutable, refcounted sequence of bytes
5491  664406 Need context for a proper translation
5492  664455 Build fixes for GLib GIT master (2.31.x)
5493  664558 GDBusWorker.frozen has a value > 1 in a gboolean
5494  664559 sys/wait.h not available on windows
5495  664617 gdbus segfault error 4 in libgio-2.0.so.0.3102.0
5496  664635 GMemory{Out,In}putStream _async functions break sub-class...
5497  664809 Add command line option to gtester to allow skipping tests
5498  665067 cryptic assertion failure if nonsensical flag combinations...
5499  665184 Check ref. count before reffing/unreffing
5500  665298 Add 'Requires.private: libpcre' to glib-2.0.pc
5501  665391 update documentation around mainloops
5502  665607 ./configure is there for fiddling with cross-compile enviro...
5503  665634 g_dbus_node_info_new_for_xml() errors on unknown attributes...
5504  665685 Add a #define for the max length of a Unicode decomposition
5505  665733 GDBusConnection holds lock while calling destroynotify
5506
5507 * Translation updates:
5508  Norwegian bokmål
5509  Spanish
5510
5511
5512 Overview of changes from GLib 2.31.0 to 2.31.2
5513 ==============================================
5514
5515 * Monotonic time is now properly supported on Windows
5516
5517 * glib-mkenums: fix @ENUMPREFIX@ with /*< underscore_name=... >*/
5518
5519 * EXPERIMENTAL: introduce new GSettingsSchema and GSettingsSchemaSource
5520   APIs for the convenience of plugin system authors and those who wish
5521   to introspect the contents of schemas.  This API may change.
5522
5523 * Improve the performance of GObject property notifies.
5524
5525 * GDBus:
5526  - fix a race when unowning a name immediately after owning it
5527  - thread safety improvements on GDBusConnection
5528  - fixes for exit-on-close functionality
5529
5530 * Deprecations:
5531  - add G_SIGNAL_DEPRECATED
5532  - don't use G_DISABLE_DEPRECATED masking for functions anymore
5533
5534 * docs
5535  - tmpl/ is finally dead for glib
5536
5537 * GIO:
5538  - GInetAddressMask: new type for internet address range matching
5539  - various GIO file and stream fixes
5540  - improvements to attribute and fileinfo handling
5541
5542 Overview of changes from GLib 2.29/2.30 to 2.31.0
5543 =================================================
5544
5545 This release contains a huge number of changes (500 commits worth).  The
5546 list below attempts to summarise, but not every change is listed.
5547
5548 * Major changes to threading and synchronisation
5549  - threading is now always enabled in GLib
5550  - support for custom thread implementations (including our own internal
5551    support for errorcheck mutexes) has been removed
5552  - a whole lot of dead code (to deal with the non-threaded case) has
5553    been ripped out.  This includes the racy path of GMainContext that
5554    caused deadlocks with respect to child process exits in
5555    single-threaded programs (such as gtester).
5556  - libgthread is now an empty shell and g_thread_init() is no longer
5557    required (and has been deprecated)
5558  - GMutex and GCond can now be statically allocated without explicit
5559    initialisation.  Dynamic allocation for these types is deprecated.
5560  - new types GRecMutex and GRWLock can also be statically allocated
5561    without explicit initialisation.
5562  - GPrivate can now be statically allocated and has an improved API.
5563    Dynamic allocation of GPrivate is deprecated.
5564  - GStaticMutex, GStaticRecMutex, GStaticRwLock, GStaticPrivate are
5565    deprecated.
5566  - GCond now uses monotonic time internally and a new API takes
5567    monotonic time for timed waits, deprecating the wallclock API
5568  - removal of the insane macro indirection used in the previous
5569    implementation of threading and synchronisation APIs
5570  - use SRWLock and CONDITION_VARIABLE APIs when available on Windows
5571    (Vista and later) and emulate them on XP
5572  - leaks of G(Static)Private-allocated data on some cases of thread exit
5573    have been fixed
5574  - simplified new thread creation API with the old API deprecated.  The
5575    concept of joinability has disappeared (all threads are joinable) as
5576    have priority levels, 'bound'ness (ie: kernel vs. userspace threads)
5577    and ability to manipulate the stack size.
5578  - GThread is now a refcounted type
5579  - other implementation details changed
5580
5581 * Move headers for some deprecated functionality to a separate
5582   deprecated/ directory.
5583
5584 * New support for attribute-based deprecations to issue compiler
5585   warnings instead of breaking the build and/or giving warnings about
5586   implicit declarations (and possibly miscompiling).
5587
5588 * GCache has been deprecated (after its last use was removed from our
5589   platform over a year ago).
5590
5591 * It is no longer possible to include individual headers (like
5592   "ghash.h") -- you must #include <glib.h>.
5593
5594 * The misguided experiment of allowing the program to stumble along with
5595   missing GSettings schemas is now over -- the abort is back.
5596
5597 * Clarify that fork() is not valid while using GMainContext.  This is
5598   because the internal resources of the GMainContext end up being shared
5599   by both processes.  We had an assert here but it was breaking existing
5600   (valid) use cases as well, so it has been removed for now.
5601
5602 * GApplication
5603   - add ::shutdown signal as logical dual to ::startup
5604   - don't use a GMainLoop: iterate the GMainContext directly (improves
5605     quit logic)
5606
5607 * Several portability fixes for Windows, OpenBSD, Solaris
5608
5609 * Add new GValue API to specifically deal in signed chars (in case the
5610   platform defines 'char' as unsigned)
5611
5612 * some new API to mitigate the problems associated with calling setenv()
5613   in a multi-threaded program
5614
5615 * Use CLOCK_MONOTONIC unconditionally if the libc has support at compile
5616   time (ie: stop checking for kernel support at runtime).
5617
5618 * pkg-config files:
5619   - drop -uninstalled variants
5620   - remove gobject dependency on gthread
5621
5622 * New macro G_ATOMIC_LOCK_FREE is defined if the atomic operations are
5623   implemented without use of a mutex.  Cleaned up atomic-related
5624   compilation issues with mingw compilers on win32 systems.
5625
5626 * SOCKS proxy and resolver improvements
5627
5628 * Fix the spelling of G_IO_FLAG_IS_WRITABLE (was WRITEABLE) and
5629   introduce a macro for backwards compatibility.
5630
5631 * GDBus:
5632   - many code generation updates and improvements
5633   - some race condition fixes, including testcase hangs
5634
5635 * GVariant:
5636   - new g_variant_new_from_fixed_array() API
5637   - substantial docs improvements/clarifications
5638
5639 * GKeyFile is now refcounted and boxed
5640
5641 * mount monitoring is now based on /proc/mounts (where available)
5642   instead of mtab
5643
5644 * new macros G_SOURCE_CONTINUE and G_SOURCE_REMOVE for returning from
5645   GSourceFunc (so you don't have to remember what TRUE and FALSE mean)
5646
5647 * use xlocale functions where available to avoid too much heavy lifting
5648   in functions like g_ascii_strtod()
5649
5650 * GMappedFile can now be created from an fd
5651
5652 * error message strings grammar/i18n fixes
5653
5654 * many docs updates
5655
5656 * Partial list of bugs closed:
5657  70598  Unify GStaticMutex and GMutex.
5658  320888 optimization for g_main_context_wakeup
5659  398418 GChildWatch race condition?
5660  527214 g_timer_elapsed() returns random values
5661  580505 add a way to set/get name for a thread
5662  583511 race condition means g_main_loop_quit() does not work
5663  590808 GKeyFile should have a refcount and a boxed type in GObject
5664  592715 Document that g_str_hash() and g_int_hash() are not NULL safe
5665  631413 Add macros for GSourceFunc return values
5666  632049 not immediately clear what g_variant_get_fixed_array expects
5667  640212 "Error stating file" is not a friendly message
5668  640293 Use xlocale functions to implement g_ascii_strtod()
5669  640975 Check that error exists before trying to set it
5670  643934 GApplication lacking a logical dual for the ::startup signal
5671  651268 assertion failed in GDBus worker thread
5672  653987 g_key_file_get_integer cannot interpret trailing spaces
5673  654412 Documentation for g_variant_get_child_value unclear
5674  654563 info capplet: Failed to calculate disk space
5675  655366 missing GSettings schemas lead to obscure crashes
5676  656621 g_spawn_*() calls executables in current directory
5677  656679 [gi] Add two annotations to gio
5678  657992 Add glib__private__() API to share between glib,gio
5679  658188 _set_as_last_used_for_type generates a broken mimeapps.list
5680  658206 gsocks5proxy.c has invalid gettext use
5681  658207 glib-compile-schemas says "can not"
5682  658558 simpleaction: Fix documentation of :enabled
5683  658683 clean up charset/language threading issues
5684  658692 add introspection annotations to g_time_val_from_iso8601()
5685  658715 Duplicite strings
5686  658769 Invalid reuse of GError in GThreadedResolver
5687  658806 sign error in string hash implementation
5688  658976 gdbus-codegen's C namespace option needs to support Ugly_Case
5689  659070 gdbus-codegen generated code segfaults when property changes
5690  659082 gdbus-codegen: Single letter namespaces get dropped from names
5691  659212 GMappedFile should fail on non-regular files
5692  659324 _SPLICE_CLOSE_TARGET doesn't mark the output stream as closed
5693  659423 Use adaptive mutexes when available
5694  659427 Move deprecated code to a separate directory
5695  659646 gdbus-codegen produce code that warnings at build
5696  659690 Possible build warning in code generated by gdbus-codegen
5697  659699 property name collision when generating code for "Connection"
5698  659754 Add API to GMappedFile that allows to pass FD
5699  659838 incorrect types in introspection for g_object_bind_property
5700  659866 pthread_rwlock_t requires defined __USE_UNIX98
5701  659870 gvalue: Fix signedness of g_value_get_char()
5702  659889 glib-2.29.92/gio-2.0.pc.in has a wrong line.
5703  659916 GObject size of 64K is not actively enforced
5704  659920 Missing setter for read/write property 'closed' of GIOStream
5705  659923 Add g_variant_new_fixed_array() function
5706  660013 Remove old g_atomic configure cruft
5707  660096 glib/rwlock tests failure (tests asserted)
5708  660130 Possible loss of user data when updating mimeapps.list
5709  660147 tracker causes g_critical in "gsettings list-recursively"
5710  660413 Make G_ASSERT_STATIC work with clang
5711  660498 Generated test code fails when the codegen changes
5712  660511 Use /proc/mounts for monitoring mounts, not /etc/mtab
5713  660536 Expose options for /etc/fstab entries
5714  660635 Deprecate g_thread_foreach
5715  660637 Pending dbus method calls not canceled on connection loss
5716  660739 kill off g_{mutex,cond}_{new,free}()
5717  660740 make GThread more standard
5718  660741 g_cond_timedwait is a disaster
5719  660743 macro wrappers for g_once_init_enter/leave
5720  660744 finish killing g_thread_init()
5721  660745 GPrivate leaks on Windows
5722  660791 [gio] Improve doc for g_file_make_directory_with_parents()
5723  660843 asyncqueue-test is broken
5724  660849 Remove cruft from g_strerror and g_strsignal
5725  660886 GDBusProxy: don't drop/complain about unknown props/signals
5726  660887 g_slice_set_config() is broken
5727  660994 Add g_main_context_ref_thread_default()
5728  661255 gio: enable test_peer regression test for OpenBSD
5729  661257 giomodules.c uses ":" instead of G_SEARCHPATH_SEPARATOR_S
5730  661318 tests use pthread without appropriate compiler/linker flags
5731  661421 Applications fail to initialize on GNU Hurd - commit
5732  661438 Implement G_GNUC_DEPRECATED/G_GNUC_DEPRECATED_FOR on Visual C++
5733  661711 Sorting keys for GDrive, GVolume and GMount instances
5734  661763 desktop-app-info: Add support for X-GNOME-Keywords
5735  661896 /gdbus/connection/life-cycle is racy
5736  661914 Gstreamer/Totem locks up
5737  662100 regression: g_dbus_connection_close() triggers exit-on-close logic
5738
5739 * Translations updates:
5740  Belarusian 
5741  Brazilian Portuguese
5742  British English 
5743  Bulgarian 
5744  Catalan 
5745  Catalan (Valencian)
5746  Czech 
5747  Danish 
5748  Esperanto
5749  French 
5750  Gujarati
5751  Hebrew 
5752  Hungarian 
5753  Italian 
5754  Japanese
5755  Lithuanian
5756  Norwegian bokmål
5757  Oriya
5758  Polish 
5759  Russian 
5760  Serbian
5761  Simplified Chinese
5762  Slovak 
5763  Slovenian
5764  Spanish 
5765  Tamil
5766  Vietnamese
5767
5768 Overview of changes from GLib 2.29.18 to 2.29.90
5769 ================================================
5770
5771 * API/ABI changes:
5772  - unix signal watches now match the API of all of the other sources
5773  - revert the addition of g_date_time_source_new () from last release
5774
5775 * networking and other fixes for Solaris
5776  - we no longer support symbolic port names (ie: from /etc/services)
5777  - check if -lsocket is needed
5778  - fix g_socket_details_from_fd()
5779  - avoid getmntinfo
5780  - fix some harmless warnings
5781
5782 * GDateTime improvements:
5783  - generally improved standards compliance (with C99)
5784  - support C99-specified format strings: %g, %G, %V, %c, %C, %w
5785  - consult the locale for the preferred 12-hour time format (%r)
5786  - drop support for non-standard %N and broken %W
5787  - better support for formatting non-POSIX (eg: Arabic) numerals
5788  - locale-related test case fixups, and fix some leaks
5789
5790 * GTlsInteraction: add interaction method invocation guarantees
5791
5792 * gdbus-codegen: post-process all interfaces when parsing >1 file
5793
5794 * make GMainLoop, GMainContext and GSource boxed types
5795
5796 * fix a race condition in the first use of g_get_monotonic_time()
5797
5798 * lots gtk-doc cleanups
5799
5800 * better intltool compatibility when generating pot file
5801
5802 * avoid GCC-specific compiler options when not using GCC
5803
5804 * Translation updates:
5805  Belarusian
5806  Brazilian Portuguese
5807  Canadian English
5808  Galician
5809  Indonesian
5810  Korean
5811  Lithuanian
5812  Norwegian bokmål
5813  Portuguese
5814  Spanish
5815  Swedish
5816
5817 Overview of changes from GLib 2.29.16 to 2.29.18
5818 ================================================
5819
5820 * GDateTime is now respecting LC_TIME when formatting
5821
5822 * GTimeZoneMonitor has been removed again
5823
5824 * A new API for wallclock functionality has been added:
5825   g_date_time_source_new(). This API is still experimental
5826   and may be changed or removed before 2.30.
5827
5828 * Bugs fixed:
5829  628904 Add credential support for FreeBSD and fix a socket issue
5830  650763 gdbus-codegen is broken with python 2.7
5831  655129 GDateTime could provide api for implementing wall clocks
5832  656341 gtlsconsoleinteraction.c uses getpass() which isn't avail...
5833  656387 GCancellable can be used concurrently
5834  656443 Make GTlsInteraction ask_password cancellable
5835  656675 void functions should not return in glib 2.29.16
5836  656772 g_variant_compare for uint64 incorrect
5837  656914 Load GIO_EXTRA_MODULES first, and ignore duplicates
5838  657083 The header langinfo.h is not available on all systems
5839  657084 gfileutils: fix docs/annotations for temp file methods
5840  657138 Some files missing in POTFILES.in
5841  657206 GInputStream leaked in g_file_icon_load_async()
5842  657243 g_cancellable_set_error_if_cancelled() documentation
5843  657274 Use detected PYTHON variable as shebang for gdbus-codegen
5844  657336 Speling fixes for glib found with codespell
5845  657452 plural forms needed
5846  657454 Translation comment needed
5847  657540 Print out file:// URL to coverage HTML report after building
5848  657593 g_test_trap_fork calls close(-1)
5849  646082 Addresses from GSocket should be normalized before returning
5850  657517 fix gio/tests/gdbus-peer on bsd
5851
5852 * Translation updates:
5853  Brazilian Portuguese
5854  Galician
5855  Norwegian bokmål
5856  Punjabi
5857  Russian
5858  Serbian
5859  Spanish
5860  Swedish
5861  Traditional Chinese
5862  Uighur
5863
5864
5865 Overview of changes from GLib 2.29.14 to 2.29.16
5866 ================================================
5867
5868 * GTlsDatabase: an abstract class that provides support
5869   or certificate and key lookup. An implementation will
5870   be provided in glib-networking
5871
5872 * GHmac: Support or HMAC digests
5873
5874 * Misc new API:
5875  - g_ptr_array_add_full: creates a GPtrArray with
5876    a preallocated size and a destroy function
5877  - g_desktop_app_info_get_show_in: checks if a GDesktopAppInfo
5878    should be shown in a given desktop environment
5879  - g_mkdtemp, g_mkdtemp_full, g_dir_make_tmp: create
5880    temporary directories
5881
5882 * Unify thread wakeup implementations of GMainContext
5883   and GCancellable, and use eventfd for it when available
5884
5885 * Show mounts in $XDG_USER_DIR in addition to /media and $HOME
5886
5887 * Bugs fixed:
5888  636572 GTlsCertificateDB
5889  644601 Some tests need a running dbus session
5890  652284 deal with small key lengths
5891  652827 glib-2.29.8 no longer builds with mingw.org's toolchain
5892  653063 PEM parser fails parsing private key when put first
5893  654078 Fail to static linking with Glib library
5894  654450 New functions: g_ptr_array_new_full()
5895  654793 Add G_VALUE_INIT
5896  655044 GDesktopAppInfo: Add g_desktop_app_info_get_show_in()
5897  655148 gdbusconnection is broken when compiling with mingw
5898  655241 glocalfile.c no longer compiles with MinGW GCC
5899  655598 g_cancellable_get_fd: silently return -1 for NULL cancellable
5900  655664 gdbus should not abort if no dbus session is available
5901  655769 Use ZLIB_CFLAGS when compiling gio
5902  656031 Improve GVariant annotations
5903  656048 glib-codegen requires Python >= 2.5
5904  656151 configure test logic inverted, doesn't match comments
5905  656152 GCC only syntax used, yet other compilers allowed by configure.
5906  656162 allow use of lcov 1.9 for coverage
5907  656282 GDBusProxy: uninitialized local variables can be freed
5908  656283 Failing tls connection cause assertion
5909  118563 Add g_mkdtemp in the spirit of g_mkstemp
5910  636405 Add g_return_if_fail() to g_settings_bind_with_mapping()
5911  656039 race condition between GDBusProxy signals and public API
5912  656492 g_io_channel_new_file failure (open(2) behavior wrt POSIX)
5913
5914 * Translation updates:
5915  Bulgarian
5916  Esperanto
5917  French
5918  Galician
5919  German
5920  Hebrew
5921  Indonesian
5922  Italian
5923  Norwegian bokmål
5924  Russian
5925  Spanish
5926  Swedish
5927
5928
5929 Overview of changes from GLib 2.29.12 to 2.29.14
5930 ================================================
5931
5932 * Unicode improvements
5933  - add g_unicode_script_{to,from}_iso15924
5934  - add G_UNICODE_SPACING_MARK define
5935  - more normalisation improvements
5936  - stop using deprecated g_unicode_canonical_decomposition()
5937
5938 * GParamSpec:
5939  - mark the 'name' field as 'const' and add a comment to the header to
5940    help avoid future problems caused by bad hacks
5941
5942 * Merge some (modified) patches from Debian:
5943  - 03_blacklist-directories.patch
5944    - add some blacklisted mount directories
5945  - 60_wait-longer-for-threads-to-die.patch
5946    - sleep longer in a test case, if needed to avoid failing
5947
5948 * Units policy change: prefer use of SI units
5949  - deprecate g_format_size_for_display, add g_format_size(_full)
5950
5951 * GSettings: don't call g_error() when the schema is missing
5952
5953 * GVariant support for arrays of object paths:
5954  - new g_variant_{new,get,dup}_objv API
5955  - support for g_variant_{new,get} '^ao' and '^a&o' similar to '^as'
5956
5957 * GDBus:
5958  - use new improved array-of-objects support and pass 'ao' as char**
5959    instead of GVariant*
5960  - improve handling of 'h' type (Unix file descriptor index)
5961
5962 * GIO:
5963  - fix compilation without USE_STATFS and USE_STATVFS
5964
5965 * Documentation fixes
5966
5967 * Bugs fixed:
5968  622921 Migrate from dbus-glib to glib's GDBus
5969  648271 Add g_unicode_script_to_iso15924()
5970  654948 Stop using deprecated g_unicode_canonical_decomposition()
5971  654988 g_atomic_int_add should document behaviour change
5972  655025 #define G_UNICODE_SPACING_MARK G_UNICODE_COMBINING_MARK
5973  655076 normalization misses some Full_Composition_Exclusion=True. 
5974
5975 * Translations updated:
5976  Spanish
5977
5978 Overview of changes from GLib 2.29.10 to 2.29.12
5979 ================================================
5980
5981 * Add new API to do Unicode (de-)composition in atomic steps,
5982   for use in Harfbuzz.
5983
5984 * Bugs fixed:
5985  615895 (indirectly) support non-NULL-terminated regexes in GRegex
5986  617949 glib trunk fails to compile on Solaris w/ Studio 12...
5987  620423 Document the possibility to unset attributes
5988  627974 Floating reference headaches
5989  644687 Not finding cross-links in current doc set
5990  649246 g_output_stream_splice() cannot be used on 32-bit machines...
5991  653841 a helper script to build glib from git master on win32
5992  653935 g_slist_free_full/g_list_free_full iterates twice in the list
5993  654017 tests: fix glib_translations_work() in gsettings unit test
5994  654085 Don't needlessly use "echo -e" when creating .def files
5995  654195 Add g_unichar_compose() and g_unichar_decompose()
5996  654232 GCancellable eventfd problems
5997  654394 suspicious use of floating references in GDBusInterfaceSkeleton
5998  654536 GSettings: lift key name length restriction to 64
5999  654627 GParamSpec: intern property names
6000  654651 Better g_unicode_canonical_decomposition()
6001  654917 Make g_cclosure_marshal_generic the default signal handler
6002
6003 * Translation updates:
6004  Belarusian
6005  Finnish
6006  Korean
6007  Latvian
6008  Lithuanian
6009  Norwegian bokmål
6010  Turkish
6011
6012
6013 Overview of changes from GLib 2.29.8 to 2.29.10
6014 ===============================================
6015
6016 * New features:
6017  - g_desktop_app_info_get_nodisplay: a function that is required
6018    to port gnome-menus to GDesktopAppInfo
6019  - g_hash_Table_iter_replace: new function to replace a value
6020    while iterating over a hash table
6021  - g_utf8_substring: convenience API to extract substrings from
6022    UTF-8 strings
6023  - g_action_group_add_entries: convenience API for creating lots
6024    of actions quickly
6025  - Use eventfd instead of pipes for waking up main contexts and
6026    for cancellation when available
6027  - GMatchInfo is now a refcounted boxed type
6028
6029 * API changes in GAction:
6030  - the 'set_state' entry in the GActionInterface vtable has been
6031    renamed to 'change_state
6032  - g_action_set_state has been renamed to g_action_change_state
6033  - the 'state' property has been changed to read-only
6034  - GSimpleAction can no longer be subclassed
6035
6036 * Bug fixes
6037  647796 g_variant_new_variant is not marked as constructor
6038  652072 gmain: make use of signalfd()
6039  652168 Crosscompiling Fails if build<=2.24 and host >2.24
6040  652750 make dist fails
6041  652758 GDataInputStream: Clarify g_data_input_stream_read_line docs...
6042  652822 Add a g_hash_table_iter_replace
6043  652897 tiny docs clarification for g_utf8_to_ucs4_fast
6044  653140 gmain: use Linux eventfd() for main context wake up
6045  653429 drop AM_MAINTAINER_MODE or enable it by default
6046  653484 GAsyncCallbacks should default to allow-none
6047         Add missing fundamental types to the generic marshaller
6048
6049 * Translation updates
6050  Belarusian
6051  Galician
6052  Russian
6053
6054 Overview of changes from GLib 2.29.6 to 2.29.8
6055 ==============================================
6056
6057 * Bug fixes
6058  646608 export_symbols variable for gio dynamic library is wrong
6059  646635 Fix introspection of GLib
6060  647930 Documentation: GDataInputStream _read_upto() version
6061  651745 Switch to _ prefixing rather than G_GNUC_INTERNAL
6062  651920 Improve qsort_r detection
6063  651959 gbitlock: "asm goto" is not available in gcc < 4.5
6064  651998 gdbus-codegen: Use relative Python imports
6065  652000 Fix for gatomic.c on Windows/MSVC
6066  652002 Proposal to clean up gvaluetransform.c for MSVC
6067  652025 g_dbus_connection_register_object: error is not set...
6068  652081 Typos in a GBinding warning message
6069  652197 Improper handling of double values in GDBusMessage
6070         Fix a deadlock in gobject finalization
6071
6072 * Translation updates:
6073  Czech
6074  Galician
6075  German
6076  Hebrew
6077  Norwegian bokmål
6078  Spanish
6079  Uighur
6080
6081
6082 Overview of changes from GLib 2.29.4 to 2.29.6
6083 ==============================================
6084
6085 * Atomic operations have been rewritten from scratch to make use
6086   of gcc builtins where possible. As a side-effect of this, calls
6087   to g_atomic_ API with explicit casts may now be problematic; if
6088   that happens to you, try first to remove the casts. Another
6089   side-effect of the rewrite is that g_atomic_int_exchange_and_add
6090   has been deprecated in favor of g_atomic_int_add.
6091
6092 * A full set of atomic operations on pointers has been added,
6093   including bit locks in pointer-size locations.
6094
6095 * Access to quarks is now lockless
6096
6097 * GObject data scalability has been greatly improved
6098
6099 * g_data_time_format now supports alternative digits and padding
6100
6101 * Introspection improvements:
6102  - Add a boxed type for GVariantBuilder
6103  - Annotation fixes in GDBus, GVariant, g_base64_
6104
6105 * Bugs fixed:
6106  502560 g_rand_double_range returns 'inf'
6107  612729 g_mkdir_with_parents can fail if the directory already exists
6108  617491 g_once() implementation is inefficient
6109  619418 Add a performance test for UTF-8 decoding functions
6110  619435 Make g_utf8_to_ucs4_fast() yet faster
6111  626549 G_STATIC_ASSERT_EXPR
6112  631231 bitlock: Fix detection and usage of futexes with Bionic
6113  632294 g_queue_remove() should return a boolean
6114  640518 GMainLoop has quadratic complexity when all pollfd's...
6115  642026 Race condition in g_static_private_free
6116  646635 Fix introspection of GLib
6117  648678 g_date_time_format(): support %O flags for localized numbers
6118  649480 Use MSG_CMSG_CLOEXEC in recvmsg in gio/gsocket.c
6119  649506 GTestFunc et al lacking Since tag
6120  649657 Don't return gboolean for functions that throw
6121  649775 glib-gio-gdbuscodegen-Makefile.patch
6122  649915 gsettings accepts unquoted strings longer than two characters
6123  649973 gthread: build unix tests only on unix
6124  649988 gdbus-codegen: Drop dependency on argparse
6125  650078 forkbomb building glib/tests/protocol
6126  650211 Optimization in key file parsing
6127  650236 Application over DBus implements action state incorrectly
6128  650345 g_key_file_has_key_full: New function to fix g_key_file_has_key...
6129  650458 reduce overhead in g_object_set/get_data
6130  650459 hash table consistency while calling destroy notify funcs
6131  650688 enforce rules about hash table modification
6132  650823 expand the set of atomic ops
6133  650874 codegen chokes on docs
6134  650882 use stdout instead of stderr for informational messages
6135  650884 fix compilation with gcc2
6136  650885 implement glib credentials on OpenBSD (hackish)
6137  650935 G_GNUC_MAY_ALIAS and atomic ops
6138  651009 minor documentation fix
6139  651034 Regarding g_cond_wait after g_thread_pool_push in gthreadedresolver
6140  651133 race condition in GDBusConnection's emit_signal_instance_in_idle_cb
6141  651141 hashtable infinite loop
6142  651219 fix path to true(1) on OpenBSD
6143  651223 Fix some compile warnings on OpenBSD
6144  651327 Minor fixes for the gsocket API
6145  651467 Add pointer sized bitlocks
6146  651650 gdbus: Avoid busy wait loop
6147  651725 gmain: Cleanups and a new test case
6148  651745 Switch to _ prefixing rather than G_GNUC_INTERNAL
6149
6150 * Updated translations:
6151  Catalan (Valencian)
6152  Esperanto
6153  Hebrew
6154  Hungarian
6155  Russian
6156  Spanish
6157
6158
6159 Overview of changes from GLib 2.29.2 to 2.29.4
6160 ==============================================
6161
6162 * GDBus:
6163  - Includes several new types to support modeling D-Bus
6164    objects and interfaces more fully, and also introduces
6165    an 'object manager' pattern:
6166    GDBusInterface, GDBusObject, GDBusObjectManager
6167    These interfaces have client-side implementations:
6168    GDBusProxy, GDBusObjectProxy, GDBusObjectManagerClient
6169    And server-side implementations:
6170    GDBusInterfaceSkeleton, GDBusObjectSkeleton, GDBusObjectManagerServer
6171  - The new gdbus-codegen utility uses these new classes
6172    to generate C code and documentation from D-Bus interface
6173    descriptions in XML
6174
6175 * GTest:
6176  - There is now a g_test_fail() function to mark
6177    tests as failed
6178
6179 * GDesktopAppInfo
6180  - Now has a binding-friendly filename property
6181  - Other new API to more fully expose desktop file contents:
6182    g_desktop_app_info_get_categories(),
6183    g_desktop_app_info_get_generic_name()
6184
6185 * GHashTable:
6186  - Several optimizations to reduce space consumption of
6187    large hash tables, in particular tables that are used
6188    to store sets.
6189
6190 * Unix-specific APIs:
6191   GLib now installs a separate header, glib-unix.h, that is
6192   meant to collect Unix-specific APIs. For now, it contains
6193   g_unix_open_pipe(), g_unix_set_fd_non_blocking() for dealing
6194   with pipes and fds, as well as APIs to create mainloop
6195   sources which can trigger callbacks on certain Unix
6196   signals (SIGTERM, SIGHUP, SIGINT).
6197
6198 * Bugs fixed:
6199  631379 GDBus nonce-tcp test failing
6200  632631 GLib-CRITICAL **: g_variant_new_string: assertion `g_utf8_validate (string, -1, NULL)' failed
6201  635694 gdbus aborting due to unauthorized socket in DBUS_SESSION_BUS_ADDRESS
6202  637561 Crash when using G_DBUS_SERVER_FLAGS_RUN_IN_THREAD
6203  642935 g_date_time_format() prints wrong value for %z and timezone -0800
6204  643134 g_dbus_message_copy
6205  644941 glib-unix: New Unix-specific API
6206  646013 g_hash_table_remove_all_nodes optimization
6207  646309 glib cannot be cross-compilled for mingw32
6208  646435 GTimeZone doesn't seem to be thread-safe
6209  646957 GIO chained calls don't work with a thread default context
6210  647594 README link to mailing list is broken
6211  647602 Cannot connect to remote message bus via TCP
6212  647746 The GSocketService documentation is incomplete.
6213  647826 API: gtester: Add g_test_fail()
6214  647903 GDesktopAppInfo: Add g_desktop_app_info_get_categories()
6215  648416 g_app_info_create_from_commandline ignores SUPPORTS_STARTUP_NOTIFICATION
6216  648423 Support G_DEBUG=trap-warnings
6217  648425 GDesktopAppInfo: Add "filename" property for bindings
6218  648966 Update g_unichar_iswide and g_unichar_iswide_cjk
6219
6220 * Updated translations
6221  Norwegian bokmål
6222  Spanish
6223  Turkish
6224  Uighur
6225
6226
6227 Overview of Changes from GLib 2.28.0 to 2.29.2
6228 ==============================================
6229
6230 * GApplication
6231  - The documentation has been enhanced and clarified
6232  - An opt-out for uniqueness has been added: G_APPLICATION_NON_UNIQUE
6233  - GApplication now syncs settings before g_application_run() returns
6234
6235 * GDBus
6236  - Interface lookups are now happening in constant time
6237  - Signature checking and handling of various unexpected
6238    situations has been improved
6239
6240 * GVariant
6241  - The format accepted by the GVariant parser has beend documented
6242  - GVariant accepts G_VARIANT_TYPE_VARDICT for a{sv}
6243
6244 * GDateTime:
6245  - The return value of g_datetime_compare() has been fixed to
6246    match strcmp() semantics
6247  - In order to handle problems with changing timezones, a GTimeZoneMonitor
6248    has been added to GIO, and g_time_zone_refresh_local() can be
6249    called to update the cached information about the local timezone
6250
6251 * GOption now uses /proc/self/cmdline to set the program name instead
6252   and only falls back to "<unknown>" if that is unavailable
6253
6254 * GSettings:
6255  - The schema compiler now warns about references to non-existing schemas
6256
6257 * Commandline utilities are now fully translated
6258
6259 * Signals can now indicate that collecting their arguments must
6260   always happen, even in the absence of connected signal handlers,
6261   using the G_SIGNAL_MUST_COLLECT flag.
6262
6263 * Bugs fixed:
6264  635099 Memory leak in gdbus introspection when parsing xml
6265  640489 $ and ^ do not match lines if G_REGEX_MULTILINE|G_R...
6266  642042 Overriding GDBus org.freedesktop.DBus.Properties im...
6267  642052 g_timeout_add(_seconds) cannot handle large intervals
6268  642490 notify_desktop_launch() "g_variant_new_bytestring:...
6269  613269 g_type_get_qdata() doesn't work as I expected on subtypes
6270  624943 G_VALUE_NOCOPY_CONTENTS is undocumented
6271  637738 object_interface_check_properties never actually executes
6272  638185 GIOCondition should be annotated as "flags"
6273  639478 GDBusServer's g_dbus_server_new_sync() function should just...
6274  641755 Add g_settings_get/set_uint() helpers
6275  641768 dconf gsettings backend silently drops writes if it can't...
6276  642797 g_app_info_get_default_for_type() broken for subtypes
6277  642825 Unnecessary assertion failure in g_option_context_parse()
6278  642944 NULL key lookup using g_hash_table_lookup_extended()
6279  643074 Incorrect documentation for g_socket_receive() and g_socket...
6280  643197 g_application_id_is_valid docs imply no valid ids
6281  643468 GApplication docs: Warn that handling "command-line" means...
6282  643478 GApplication::local_command_line vfunc documentation seems wrong
6283  643624 Can g_variant_unref() on an already free'd variant
6284  643649 g_application_run() should say that argc/argv can be NULL
6285  643780 shouldn't need to create an action group to use actions...
6286  643795 g_timeout_add_seconds fires with intervals 1 second longer...
6287  644309 Program name is not set when using GtkApplication
6288  644428 Crash in failure section of g_markup_collect_attributes()
6289  644465 undefined reference to `_usleep'
6290  644552 g_timeout_add_seconds(1, ...) may have a latency of up to 2...
6291  644607 Correct internal definition of C_()
6292  645789 annotations for g_file_*_contents
6293  646039 g_settings_list_children() returns child that cannot be opened
6294  646310 Accept range with only min or max
6295  646420 g_dbus_method_invocation_get_parameters() docs should say...
6296  646843 occasional abort on autologin
6297  646985 add G_APPLICATION_NON_UNIQUE flag
6298  647579 gsettings: Implement reset-recursively
6299  647600 gsettings description has typo
6300
6301 * Translation updates
6302  Afrikaans
6303  Bulgarian
6304  Bengali India
6305  British English
6306  Bulgarian
6307  Catalan
6308  Czech
6309  Danish
6310  French
6311  Galician
6312  German
6313  Greek
6314  Gujarati
6315  Hebrew
6316  Hungarian
6317  Italian
6318  Japanese
6319  Korean
6320  Lithuanian
6321  Polish
6322  Portuguese
6323  Romanian
6324  Serbian
6325  Simplified Chinese
6326  Spanish
6327  Swedish
6328  Traditional Chinese
6329  Uighur
6330  Vietnamese
6331
6332
6333 Overview of Changes from GLib 2.27.93 to 2.28.0
6334 ===============================================
6335
6336 * Bugs fixed:
6337 641363 GInitable documentation isn't clear about that finalize...
6338 641395 Add more data about the origin application to the "Lau...
6339 641411 gdesktopappinfo signals lost if it's the session bus...
6340 641477 glib-mkenums uses unportable #! line
6341 641572 Add @EXEEXT@ to pkgconfig binary name
6342 641688 glib installs GSettings.html and gsettings.html
6343
6344 * Translation updates:
6345  Galician
6346  Italian
6347  Korean
6348  Punjabi
6349
6350
6351 Overview of Changes from GLib 2.27.92 to 2.27.93
6352 ================================================
6353
6354 * Bugs fixed:
6355  637013 gio/gdbusmessage.c fails to compile on Solaris
6356  640192 Error creating a Gio.Settings object through py...
6357  640261 Minimum version for external pcre needs to be..
6358  640262 GActionGroup contains redundant TYPE macros
6359  640436 Make load_user_special_dirs() resistant to non...
6360  640695 g_key_file_load_from_file() mishandles a CR-LF...
6361  640724 can't compile gio due to format string issues
6362  640725 can't compile tests due to format string issue
6363  640807 improve GVariant behaviour with invalid pointers
6364  640823 wrong documentation for g_source_add_child_source
6365
6366 * Translation updates:
6367  Bulgarian
6368  Galician
6369  Hebrew
6370  Norwegian bokmål
6371  Spanish
6372  Traditional Chinese
6373
6374
6375 Overview of Changes from GLib 2.27.91 to 2.27.92
6376 ================================================
6377
6378 * Update to Unicode 6.0
6379
6380 * Update PCRE to 8.12
6381
6382 * Bugs fixed:
6383  637696 g_unix_connection_send_fd() doesn't work
6384  638872 null settings backend bug
6385  640042 GtkApplication's warning about not connecting...
6386
6387 * Translation updates:
6388  Arabic
6389  Basque
6390  Estonian
6391  Greek
6392
6393 Overview of Changes from GLib 2.27.90 to 2.27.91
6394 ================================================
6395
6396 * Bugs fixed:
6397  638838 gdesktopappinfo: Don't crash if we don't have a desktop filename
6398  638894 Splitting on \s* gives no result
6399  639064 Update gschema.dtd
6400  639084 Copy/paste error in GSettings::writable-changed signal
6401  639177 SIGSEGV for GApplications with G_APPLICATION_IS_SERVICE
6402
6403 * Translation updates:
6404  Estonian
6405  Galician
6406  Indonesian
6407
6408
6409 Overview of Changes from GLib 2.27.5 to 2.27.90
6410 ===============================================
6411
6412 * Test reports created by gtester-report can now
6413   include revision information
6414
6415 * The g_desktop_app_info_launch_* family of functions
6416   now emit a DBus signal when an application is launched.
6417   Additionally, there is a new variant
6418   g_desktop_app_info_launch_uris_as_manager(), which
6419   gives more control over the launched process.
6420
6421 * The memory and null GSettings backends are now available
6422   as public API
6423
6424 * g_get_locale_variants() is a new function that returns a
6425   list of variants of a locale identifier
6426
6427 * Bugs fixed:
6428  587898 I/O timeouts for GSocket
6429  606960 gio: Add extension point for informing parties...
6430  631980 Handle an optional <revision> node in the report...
6431  634569 Document that g_variant_builder_add_value consumes...
6432  635998 Make _g_compute_locale_variants public
6433  636806 Add g_{memory,null}_settings_backend_get_default
6434  637262 Need a binary DER version of ::accepted-cas
6435  637544 Skip fsync() on btrfs
6436  637720 void functions should not return a value.
6437  637738 object_interface_check_properties never actually...
6438  637759 GIOChannel: fix a crash in g_io_channel_read_chars()
6439  637852 Updates to glib.vsprops file for MSVC 2008 builds...
6440  637858 Updates to test/testglib.c...
6441  638349 parameter name of g_variant_new_* may conflict...
6442
6443 * Translation updates:
6444  Hebrew
6445  Norwegian bokmål
6446  Simplified Chinese
6447  Spanish
6448  Swedish
6449  Uyghur
6450  Vietnamese
6451
6452
6453 Overview of Changes from GLib 2.27.4 to 2.27.5
6454 ==============================================
6455
6456 * Network support:
6457  - Add g_tls_certificate_verify() to verify a certificate
6458  - Add GTlsConnection:use-system-certdb
6459  - Other TLS api additions
6460
6461 * GIO:
6462  - Add g_io_stream_splice_async()/_finish() to splice two iostreams
6463  - Add g_emblemed_icon_clear_emblems() and make GEmblemedIcon derivable
6464  - Remove GPeriodic; it did not receive the necessary review and
6465    integration work to declare it stable
6466
6467 * GSequence:
6468  - New methods g_sequence_lookup() and g_sequence_lookup_iter()
6469
6470 * Bugs fixed:
6471  617254 Missing g_sequence_lookup
6472  632544 g_dbus_connection_send_message can not send a locked message...
6473  633350 g_hostname_to_ascii() ignores non-ascii dots
6474  634583 Better error reporting for g_variant_parse()
6475  635007 gsetting enum rule don't work for out-of-srcdir builds
6476  635626 GDBus message idle can execute while flushes are pending
6477  636100 Can't read GSettings:backend property
6478  636305 Typo on g_queue_remove_all() function description
6479  636311 appinfo: tweak application positioning for content-types
6480  636351 g_simple_async_result_is_valid lacks a version tag
6481  636387 gdb autoload files shadow the "dir" builtin
6482  636673 g_simple_async_report_error_in_idle should allow object...
6483  637147 Add a "delay-apply" property to GSettings
6484  637171 emblemedicon: add g_emblemed_icon_clear_emblems()
6485  637237 gapplication: plug a memory leak
6486
6487 * Translation updates:
6488  Estonian
6489  Galician
6490  Hebrew
6491  Norwegian bokmål
6492  Simplified Chinese
6493  Spanish
6494  Traditional Chinese
6495  Vietnamese
6496
6497
6498 Overview of Changes from GLib 2.27.3 to 2.27.4
6499 ==============================================
6500
6501 * GIO
6502  - Mounts are treated as hidden if they have a path element
6503    that starts with a dot
6504  - GAppInfo gained API to differentiate between recommended
6505    and fallback mime handlers
6506  - g_cancellable_create_source: creates a GSource that triggers
6507    when the GCancellable is canceled
6508  - GPollableInput/OutputStream: Interfaces for pollable streams
6509  - TLS support has landed, with an extension point that is
6510    implemented in glib-networking
6511
6512 * GLib
6513  - Mainloop sources can now have 'child sources'
6514  - g_get_runtime_dir: New function to return the XDG_RUNTIME_DIR
6515
6516 * Bugs fixed:
6517  530786 GFileMonitor "changed" signal underdocumented
6518  588189 TLS support for GSocket*
6519  630357 g_object_new_valist uses uninitialized memory
6520  630559 typo in public string in gsocks: 'The SOCKSv5 require...
6521  632445 Documentation refers to removed GNOME 2.0 porting guide
6522  634239 Child GSources
6523  634241 Add pollable input/output streams
6524  634504 allow passing a NULL emblem to g_emblemed_icon_new()
6525  634613 unsufficient g_get_user_runtime_dir() documentation
6526  635640 schema should inherit gettext-domain from schemalist
6527  635768 Protect g_file_monitor_set_rate_limit() against negative...
6528  635882 Fix the wrong-category schema test
6529  635187 Wrong type of GVariant received in an action...
6530
6531 * Updated translations:
6532  Galician
6533  Italian
6534  Norwegian bokmål
6535  Uyghur
6536
6537
6538 Overview of Changes from GLib 2.27.2 to 2.27.3
6539 ==============================================
6540
6541 * The GTimeSpec type that was introduced in the 2.27.2 has been
6542   dropped again in favour of APIs that return microseconds as
6543   64-bit integer.
6544   Affected functions:
6545   g_source_get_time
6546   g_periodic_unblock
6547   g_get_monotonic_time
6548   g_get_real_time
6549   The similar GTimeVal struct is still around, but its use is
6550   discouraged.
6551
6552 * GTimer is now using monotonic time unconditionally
6553
6554 * There are some new functions to facilitate error reporting
6555   in async GIO APIs:
6556   g_simple_async_result_take_error
6557   g_simple_async_result_new_take_error
6558   g_simple_async_report_take_gerror_in_idle
6559
6560 * There is new convenience API to us GVariant dictionaries:
6561   g_variant_lookup
6562
6563 * It is now possible to delay sending match rules to the
6564   D-Bus daemon in GDBus:
6565   G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE
6566
6567 * Support has been added for XDG_RUNTIME_DIR:
6568   g_get_user_runtime_dir
6569
6570 * Various fixes for Win64/MSVC builds have been committed
6571
6572 * Bugs fixed:
6573  620263 Add g_clear_object, g_clear_pointer, g_clear_boxed
6574  633075 update Project Files and sources for MSVC 2008/C89
6575  633381 gsettings Makefile rules should handle empty list...
6576  633685 Use g_simple_async_result_{new_,}take_error
6577  633686 Add g_simple_async_report_take_gerror_in_idle
6578
6579 * Translation updates:
6580   Belarusian
6581   Galician
6582   Hebrew
6583   Punjabi
6584   Spanish
6585
6586
6587 Overview of Changes from GLib 2.27.1 to 2.27.2
6588 ==============================================
6589
6590 * GApplication
6591  - Export actions over DBus and support activating them from remote instances
6592  - Support environment passing
6593
6594 * GSettings
6595  - The gsettings utility has a list-recursively command
6596  - The gsettings utility has commandline completion for enum values
6597
6598 * GLib is now linked against librt and uses monotonic time for
6599   timeouts and GPeriod sources. GSource has a new g_source_get_time()
6600   which returns monotonic time, and g_source_get_current_time() has
6601   been deprecated
6602
6603 * Bugs fixed:
6604  158725 free linked list with data
6605  626320 GVariant: Avoid locking in g_variant_get_child_value() if possible
6606  629247 add gsimpleasyncresult methods to take over a GError
6607  629274 GNetworkService does not do fallback when there is no SRV record
6608  631264 gsettings-tool choice/range support
6609  631482 g_date_time_from_instant: 1000000000000000000
6610  632169 docs for manual use of gsettings-data-convert
6611  632571 Add equivalent to gconftool-2's -R option
6612  633115 GSettings m4 doesn't fail the build for broken schemas
6613  633206 Default g_application_local_command_line() doesn't set exit_status...
6614  633339 support more complex gapplication setups
6615  633356 Make timeout G_MAXINT mean "no timeout"
6616
6617 * Translation updates:
6618  Catalan (Valencian)
6619  Indonesian
6620  Japanese
6621
6622
6623 Overview of Changes from GLib 2.27.0 to 2.27.1
6624 ==============================================
6625
6626 * GDateTime now has full week number support.
6627   New API: g_date_time_get_week_numbering_year
6628
6629 * The GSettings schema compiler will now skip over
6630   broken .xml schema files instead of aborting altogether
6631
6632 * GSettings now works properly on bigendian systems
6633
6634 * GSettings has more complete support for ranges
6635   New API:
6636     g_settings_get_range
6637     g_settings_range_check
6638   The gsettings commandline tool supports ranges too.
6639
6640 * GApplication has been rewritten; see the API docs for details
6641   and examples. The action support is not complete yet.
6642
6643 * The GLib mainloop has gained 'dispatch to context' functionality,
6644   which can replace manually created idles in many cases.
6645   New API:
6646     g_main_context_invoke
6647     g_main_context_invoke_full
6648
6649 * The gio-desktop-app-info-lookup extension point has been
6650   removed from GIO. GIO now uses x-scheme-handler mimetypes when
6651   looking for default applications.
6652
6653 * On win32, make g_get_user_data_dir() return the CSIDL_LOCAL_APPDATA
6654   folder on Windows, and not CSIDL_PERSONAL. This matches what Qt does,
6655   and has been widely requested. Also make g_get_user_config_dir() return
6656   this and not the (roaming) CSIDL_APPDATA folder.
6657
6658 * A periodic event clock has been added in GIO: GPeriodic. Note that this
6659   API is still experimental and expected to undergo changes before it
6660   will be incorporated into a stable GLib release. Use at your own risk.
6661
6662 Bug fixes:
6663  613822 gobject signal connect/disconnect not thread safe
6664  618737 "dispatch to context" functionality
6665  620710 g_get_user_data_dir() uses CSIDL_PERSONAL and not CSIDL_APPDATA
6666  623400 acquire context before dispatching
6667  627126 gsettings schema files don't get installed on FreeBSD
6668  627171 g_socket_new_from_fd() doesn't set the right protocol
6669  628876 Wrong error description
6670  628937 gracefully handle broken schemas
6671  629274 GNetworkService doesn't fallback when there is no SRV record
6672  629289 g_error() used wrong, produces core dump
6673  629687 leaks class refcount in gsocketcontrolmessage
6674  629849 GLib-CRITICAL **: g_source_get_context: assertion `!SOURCE_...
6675  629945 GDBus deadlock in g_bus_get_sync()
6676  630000 g_date_time_difference
6677  630077 GDateTime week number support
6678  630185 Allow NULL strings in g_quark_try_string()
6679  630797 docs mention non-existent g_object_dispose()
6680  630968 gschema-compile problems on power g5
6681  631263 GSettings needs range/choice APIs
6682  631264 gsettings-tool choice/range support
6683  631379 GDBus nonce-tcp test failing
6684  631410 Port gapplookupgconf.c to using x-scheme-handler/
6685  632884 Possible deadlock in g_object_remove_toggle_ref()
6686
6687 Transation updates:
6688  Basque
6689  Brazilian Portuguese
6690  British English
6691  Bulgarian
6692  Czech
6693  Dutch
6694  Estonian
6695  French
6696  Galician
6697  German
6698  Greek
6699  Hebrew
6700  Hungarian
6701  Japanese
6702  Lithuanian
6703  Polish
6704  Portuguese
6705  Romanian
6706  Simplified Chinese
6707  Slovenian
6708  Spanish
6709
6710
6711 Overview of Changes from GLib 2.25.15 to GLib 2.27.0
6712 ====================================================
6713
6714 Build:
6715   - massive restructuring to reduce #include abuse
6716   - tweaks to silence some harmless compiler warnings
6717   - rename gschema-compile.c to glib-compile-schemas.c
6718   - Windows fixes
6719   - fix building with zlib < 1.2.4 on win32
6720
6721 GDateTime:
6722   - better msgctxt for translating month and weekday names
6723   - API is changed quite a lot, implementation is improved
6724   - GTimeZone is now exposed
6725
6726 GObject:
6727   - make ordering for overridden interface properties consistent
6728   - ->priv structures are limited to 64k but this was not documented,
6729     and exceeding this limit produced bad results.  Add docs and enforce
6730     the limit properly.
6731   - add g_object_class_install_properties() to install multiple
6732     properties in one go
6733   - improve debugging output for GValue containing G_TYPE_STRV
6734
6735 GIO:
6736   - fix priority sorting of GIO extensions
6737   - add GCredentials support on FreeBSD
6738   - fix support for IPv6 addresses in URI parsing functions
6739   - GSocketClient fixes for when g_socket_connect succeeds immediately
6740   - clarify string encoding for GFile constructors in docs
6741   - new functions g_data_input_stream_read_upto{,async,finish}
6742   - tweak confusing documentation for g_output_stream_write()
6743
6744 GDBus:
6745   - GDBusMessage can now be locked and copied (like in libdbus)
6746   - GDBusConnection filter function API has changed again
6747   - GDBusServer: ::new-connection now declares if the connection was claimed
6748   - add a partial workaround for GObject bug 627724.
6749   - very many memory leaks fixed
6750
6751 GVariant:
6752   - check for size == 0 in g_variant_get_bytestring to avoid a crash
6753     when attempting to get_bytestring() from an empty array
6754   - improve gobject-introspection annotations
6755
6756 GSettings:
6757   - add GSettings Windows registry backend
6758   - some internal tweaks to the backend API
6759   - remove g_settings_list_items
6760   - add g_settings_list_children and _list_keys to replace it
6761   - add schema compiler restrictions for dealing with lists
6762   - don't automatically emit value changed signals on writability
6763     changes
6764
6765 Other:
6766   - constify the 'parser' vtable param to g_markup_parse_context_push()
6767   - plug many memory leaks in test cases
6768
6769 Bugs closed:
6770   50076 Time API to go with date API
6771  584284 g_data_input_stream_read_until_async different from sync version
6772  624546 Modification of GDBusMessage in filter function
6773  626919 Let g_object_class_install_property() return the installed GParamSpec*
6774  628029 GDateTime missing get_week_of_year method
6775  628253 Interface properties not listed in a consistent order
6776  628331 Plug lots of mem leaks in gio test suite
6777  628345 Plug a mem leak
6778  628436 Plug a mem leak
6779  628505 Fix building with zlib < 1.2.4 on win32
6780  628839 [PATCH] datetime: Rename shadowing variables
6781  628904 [PATCH] Add credential support for FreeBSD and fix a socket issue
6782  628952 incorrect glib_major_version and other variables on cygwin.
6783  629192 g_strdup_value_contents(): dump GStrv more usefully
6784  629251 g_socket_client_async_connect_complete: assertion failed
6785  629259 Failed to connect to "::1"
6786  629328 g_markup_parse_context_push doesn't respect const structs
6787  629429 month "May" short and full form same with "GDateTime" msgctxt
6788  629689 GDBusConnection leaks its GCredentials
6789  629698 Segfault in g_variant_get_bytestring() 
6790
6791 Updated translations:
6792   Arabic
6793   Armenian
6794   Basque
6795   British English
6796   Czech
6797   Finnish
6798   Galician
6799   German
6800   Hungarian
6801   Indonesian
6802   Japanese
6803   Lithuanian
6804   Norwegian bokmål
6805   Polish
6806   Portuguese
6807   Punjabi
6808   Simplified Chinese
6809   Slovenian
6810   Spanish
6811   Swedish
6812   Swedish
6813   Traditional Chinese
6814
6815 Overview of Changes from GLib 2.25.14 to GLib 2.25.15
6816 =====================================================
6817
6818  * GIO
6819   - Memory leak fixes
6820   - The GZip(De}Compressor can now process header information
6821   - Support for network proxies has been added, with the GProxy
6822     interface and the gio-proxy-resolver extension point. GIO
6823     includes SOCKSv4 and SOCKSv5 implementations, and libproxy
6824     is also going to provide an implementation of this extension
6825     point.
6826   - There are GAction and GActionGroup interfaces now, which will
6827     be used in GApplication in the near future.
6828
6829  * GObject
6830   - There are now convenience macros for defining boxed and
6831     pointer types
6832
6833  * GDBus
6834   - Memory leak fixes
6835   - GDBusProxy for well-known names can now auto-restart
6836     the service if the name owner disapperas
6837   - Filter functions are now allowed to modify messages
6838
6839  * GLib
6840   - GDateTime is a replacement for GDate that supports time
6841     and timezone information.
6842
6843  * Bugs fixed:
6844   50076 Time API to go with date API
6845  449565 Add G_DEFINE_BOXED_TYPE()
6846  617691 Add GZIP header processing to GZlibCompressor/GZlibDecompressor
6847  622184 add g_memory_output_stream_steal_data
6848  624546 Modification of GDBusMessage in filter function
6849  627088 Build failure in gdbus-peer.c on FreeBSD
6850  627181 save a memdup
6851  627182 Plug a mem leak in the gdbus-connection test
6852  627187 Plug some gdbus mem leaks
6853  627188 gdbus-non-socket test occasionally fails
6854  627252 G_OPTION_FLAG_NO_ARG is only for callback options
6855  627392 gdbus commit 8a3a4596 breaks win32 compile
6856  627407 FTBFS on !linux UNIX platforms
6857  627604 String error: 'that' twice in a row
6858  627969 ABR in g_file_open_tmp
6859  628084 gdbus-peer fails with assertion
6860  628193 Miscellaneous string fixes
6861  628296 abort() in gsocketconnection.c
6862  628309 Plug a mem leak in GConverterOutputStream
6863  628317 GEmblemedIcon:equal implementation is buggy
6864  628323 Fix invalid reads
6865  628327 Plug a mem leak
6866  628328 Plug a mem leak
6867  628329 Don't leak the FD list
6868  628324 Invalid reads in gdbus-export test
6869
6870  * Updated translations:
6871   British English
6872   Danish
6873   Galician
6874   Hebrew
6875   Punjabi
6876   Serbian
6877   Spanish
6878   Traditional Chinese
6879
6880
6881 Overview of Changes from GLib 2.25.13 to GLib 2.25.14
6882 =====================================================
6883
6884 * GDBus
6885  - Make the closure variants of GDBus apis work
6886  - Make error unregistration work
6887  - Use async IO in the IO thread (626748)
6888
6889 * GIO
6890  - Make g_simple_async_result_is_valid work without source (626208)
6891  - GSocketClient: add a timeout property
6892  - Fix memory leaks in GSocketClient
6893  - Handle async vs. sync correctly in GSocketConnection stream (616458)
6894  - Declare stream base classes as abstract
6895  - Clarify semantics of g_output_stream_write() (627071)
6896
6897 * Other
6898  - Improve test coverage for GDBus, GRegex, GAsyncResult
6899  - Drop dead code in pcre, xdgmime
6900  - Fix a race condition in gtester (578295)
6901  - Avoid an extra allocation in GAsyncQueue (626704)
6902  - Add test case for non-socket GIOStream (626841)
6903  - More explicit GVariant docs (622770)
6904  - Imroved docs for GAsyncInitable and GSimpleAsyncResult (602417)
6905
6906 * Translation updates:
6907  - Galician
6908  - Norwegian bokmål
6909  - Punjabi
6910  - Simplified Chinese
6911  - Swedish
6912
6913
6914 Overview of Changes from GLib 2.25.12 to GLib 2.25.13
6915 =====================================================
6916
6917 +-------------------------------------------------------------------+
6918 |   WARNING: There have been no breaks in API or ABI.  Weird, eh?   |
6919 +-------------------------------------------------------------------+
6920
6921 The primary purpose of this release is to fix a serious problem with
6922 glib 2.25.12: glibconfig.h (as generated on a Fedora amd64 system) was
6923 being distributed in the tarball.  It was being used to build some parts
6924 of glib on other systems (eg: 32bit ones).  This was causing some very
6925 serious problems.
6926
6927 There have been many other improvements, however:
6928
6929  Build and testing:
6930   - vastly improved test coverage
6931   - old tests moved to the gtester framework
6932   - gtester Makefile modified so that the tests only run once
6933   - cleanup of how we handle includes while building glib
6934
6935  GVariant:
6936   - add a g_return_if_fail (utf8) to g_variant_new_string()
6937
6938  GDBus:
6939   - perform extra sanity checks when serialising messages
6940   - add API to query and set the byteorder of a GDBusMessage
6941   - improve debug output, add some extra options
6942   - if exiting due to the bus disconnecting us, print an error message
6943     explaining why
6944   - sort property names correctly
6945   - don't bother sending RemoveMatch when we will close the connection
6946     anyway
6947   - use effective uid/gid for credential passing
6948
6949  GSettings:
6950   - add G_SETTINGS_BIND_INVERT_BOOLEAN for inverting boolean bindings
6951     without mapping functions
6952   - mark all strings in the schema compiler for translation
6953
6954  Binding:
6955   - improve closure support for bindings
6956   - copy GSettings INVERT_BOOLEAN flag
6957
6958  Other:
6959   - fix another complicated GCancellable deadlock possibility
6960
6961 Bugs closed:
6962  599590 glib build doesn't look for correct pkg-config
6963  619026 avoid warning in gutils.h when using gcc with -Wconversion
6964  624739 Please fix POTFILES.in
6965  625472 Valgrind claims uninitialized bytes used
6966  625500 g_date_set_time_val documentation doesn't mention local time
6967  625628 GDBusProxy: wrong property name sorting
6968  625753 Incorrect flags used in g_dbus_connection_call_sync()
6969  625827 Expand documentation about error quark naming
6970  625988 builddir != srcdir issues
6971  626107 glibconfig.h is being disted
6972
6973 Updated translations:
6974  French
6975  Galician
6976  Hebrew
6977  Norwegian bokmål
6978  Spanish
6979
6980
6981 Overview of Changes from GLib 2.25.11 to GLib 2.25.12
6982 =====================================================
6983
6984 +-------------------------------------------------------------------+
6985 | WARNING: There have been many API changes in GDBus -- sending     |
6986 | messages, subscribing to signals, closing connections and         |
6987 | registering subtrees are affected.  The ABI for GSettingsBackend  |
6988 | has also been changed.  For both reasons, a new dconf release is  |
6989 | required (and will be along soon).                                |
6990 +-------------------------------------------------------------------+
6991
6992 Build:
6993   - cleanup automake setup
6994   - rename configure.in to configure.ac
6995   - various docs fixups
6996   - move glibconfig.h to glib/
6997   - disable dtrace support on Mac OS (which has incompatible 'dtrace')
6998
6999 GSettings:
7000   - add support for vendor override files (to change the default values
7001     in a schema)
7002   - change GSettingsBackend vtable
7003   - add g_settings_reset()
7004   - support binding to G_TYPE_STRV properties
7005
7006 GDBus:
7007   - many bug fixes, including a serialisation fix
7008   - stop handling incoming connections as soon as stop() is called
7009   - proper support for file descriptor passing
7010   - new flags parameter for sending messages
7011   - new flags parameter for subscribing to signals
7012   - always reset the message serial when sending a message unless
7013     G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL is given
7014   - constness fixes for introspection structures
7015   - clean ups to subtree registration API
7016
7017 Other:
7018   - fix divide by zero bug in g_malloc_n functions
7019   - GIO: don't blindly assume that SOCK_CLOEXEC is supported
7020   - make GObject property notify freezes threadsafe
7021   - GIO: clean up credentials passing
7022   - GApplication: make default-quit not apply if register=FALSE
7023   - GIO: add annotations for gobject-introspection
7024
7025 Bugs closed:
7026  166020 use GAtomic for refcounting
7027  617483 Credentials passing
7028  622005 [GApplication] no way to modify the "default-quit" property
7029  623293 vendor override files
7030  623810 Message serialization bug
7031  623815 Don't check sender for GDBusProxy objects where name is not set
7032  624473 GDBusSubtreeIntrospectFunc return type
7033  624483 GDBusSubtreeEnumerateFunc clarification
7034  624484 GDBusSubtreeDispatchFunc clarification
7035  624754 gdbusaddress.c missing sys/wait.h
7036  624968 div by zero in g_malloc_n family
7037  624991 GSettings mapping for G_TYPE_STRV 
7038  625383 Add missing GI annotations
7039
7040 Updated Translations:
7041  Armenian
7042  Galician
7043  German
7044  Hebrew
7045  Kazakh
7046  Romanian
7047  Simplified Chinese
7048  Spanish
7049
7050 Overview of Changes from GLib 2.25.10 to GLib 2.25.11
7051 =====================================================
7052
7053 +-------------------------------------------------------------------+
7054 | WARNING: There have been minor API changes in GDBus and GVariant. |
7055 | These API changes will not affect many users, but they do require |
7056 | a new version of GTK+ to be installed.                            |
7057 +-------------------------------------------------------------------+
7058
7059 Build:
7060   - add a --disable-Bsymbolic configure flag to disable linking with
7061     -Bsymbolic-functions
7062   - this release sees the complete removal of the old 'g*alias' hacks
7063   - honour the NOCONFIGURE environment variable from autogen.sh
7064   - use proper feature test macros for isnan
7065   - use pkg-config to check for zlib
7066   - add ACLOCAL_AMFLAGS to Makefile.am
7067
7068 GDBus:
7069   - hide Class and instance structures for all GDBus types except
7070     GDBusProxy.  This breaks API by preventing subclassing, but probably
7071     nobody was doing that.
7072   - add new GDBusConnection call to support flushing all pending
7073     outgoing messages
7074   - change the register_object API to add a reference to the
7075     GDBusInterfaceInfo object so the caller need not keep it alive
7076     themselves
7077   - don't rewrite the serial number when sending messages that already
7078     have a serial number
7079   - better error checking for DBUS_SESSION_BUS_ADDRESS environment
7080     variable
7081   - switch to g_parse_debug_string for G_DBUS_DEBUG and add a lot of new
7082     flags
7083   - add support for temporarily freezing a freshly created
7084     GDBusConnection.  Do this until after the ::new-connection signal
7085     has finished running on GDBus services.
7086   - never require non-closed connections (the user is incapable of doing
7087     this due to the obvious race)
7088   - remove weird/misleading redundant check on NameOwnerChanged signal
7089   - emit GDBusProxy::g-properties-changed on NameOwnerChanged
7090
7091 GVariant:
7092   - the 'g_variant_{new,get}_byte_array' APIs have been removed
7093   - g_variant_{new,get,dup}_bytestring has been added, with different
7094     arguments and different behaviour
7095   - g_variant_{new,get,dup}_bytestring_array has been added, doing
7096     essentially the same thing as the 'strv' functions, but with byte
7097     strings instead of utf8 strings
7098   - G_VARIANT_TYPE_BYTESTRING ('ay'), BYTESTRING_ARRAY ('aay') and
7099     STRING_ARRAY ('as') constants have been added
7100   - the undocumented behaviour that g_variant_get_strv() deserialised
7101     arrays of object paths or signature strings has been dropped
7102   - additional varargs support for converting bytestrings or bytestring
7103     arrays with ^ay ^aay ^&ay and ^a&ay
7104   - improved gobject-introspection annotation
7105   - fix a problem with GBuffer calling g_slice_free for the wrong type
7106   - fix leaks in the type inferencing code of the parser
7107
7108 GSettings:
7109   - improved documentation
7110   - updated schema XML DTD, now xincluded into the docs
7111   - added support for schemas that extend other schemas (using the
7112     'extends=' attribute).  Values of keys in the base schema can be
7113     overridden using <override>.
7114   - added theoretical support for lists (using the 'list-of=' attribute)
7115   - lots of new tests
7116   - add support for flags (implemented similarly to enums)
7117   - add support for generating .enums.xml files to gsettings.m4:
7118       gsettings_ENUM_NAMESPACE = org.example.myapp
7119       gsettings_ENUM_FILES = ../path/to/*.h
7120     will generate org.example.myapp.enums.xml with mappings for all
7121     enums and flags in the specified .h files.
7122   - warn with g_message() if the 'memory' backend is used by default
7123     (ie: because no other GSettings backends are installed)
7124   - fix get_property() for GSettings::schema
7125   - command line tool: fix a bug that prevented non-basic values from
7126     being set due to a premature free
7127   - command line tool: bash completion support
7128   - chain up in _finalize
7129   - add a new g_settings_get_mapped API to read settings that require
7130     post-processing
7131   - retry with the translated or schema default value if the
7132     GSettingsBindGetMapping function fails
7133   - schema compiler: never fail due to empty schema directories (but
7134     warn)
7135   - peek rather than ref/unref the GEnumClass in the mapping function
7136   - schema compiler: compile *.enums.xml before *.gschemas.xml to ensure
7137     that we have all the enums that the schemas may reference
7138   - schema compiler: improve accuracy of line numbers in error reports
7139   - fix crashes in the keyfile backend caused by invalid group names in
7140     the keyfile
7141
7142 Other:
7143   - always intern GBinding prop names
7144   - base64: remove asserts preventing conversion of empty strings
7145   - document NULL special-cases for GValueArray
7146   - GNode docs improvements
7147   - improve detection of 'system internal' mounts
7148   - fix leaks in the inotify GFileMonitor implementation
7149   - annotate all custom GIO GSources to improve debugging (e.g. using
7150     SystemTap)
7151
7152 Tests:
7153   - Turn on glibc malloc checking features for make check
7154   - improvements for GSettings tests, plus new tests
7155   - improved tests for GKeyfile
7156   - new tests for GDir, GSList, GSList, GAppLaunchContext,
7157     CharsetConverter, GIcon, ...
7158   - move some tests to GTester (tree tests, uri tests)
7159   - generally, really an awful lot of new tests
7160   - don't try to allocate 2gigs of memory anymore for the array test
7161
7162  552363 g_value_array_{insert,prepend,append}'s special cases for NULL
7163  561248 Improve return value description from g_node_prev/next_sibling()
7164  570036 Add ACLOCAL_AMFLAGS to Makefile.am
7165  576833 g_sprintf add a reference to g_strdup_printf
7166  576854 g_strconcat() documentation should provide a hint about bad l10n
7167  582227 reference: add other URI functions to 'URI Functions' section
7168  599223 should provide g_spawn_* variants that take a GAppLaunchContext
7169  610784 array test failing
7170  613057 Leak in inotify GFileMonitor implementation
7171  620536 Annotate all custom GIO GSource using g_source_set_name
7172  620913 More control with G_DBUS_DEBUG
7173  622124 implement flags
7174  622127 GSettings extended key validation
7175  622128 retry with default value for failed mapping
7176  622294 More annotations for GVariant
7177  622565 glib-compile-schemas fails when no schemas
7178  622600 Fix missing prototype warning
7179  622813 gsettings mapping & enum buglet
7180  623142 Ensure ::new-connection runs before processing D-Bus messages
7181  623143 Never require non-closed connections
7182  623319 use g_parse_debug_string for dbus debug flags
7183  623401 process enums first
7184  623402 schema compiler reports wrong line numbers
7185  623407 g_keyfile_settings_backend_new crashes with the key "/"
7186  623473 zlib should be checked with pkg-config
7187  623537 GDBusProxy has weird checking on NameOwnerChanged
7188  623538 GDBusProxy::g-properties-changed emission for corner cases
7189  623692 directory with file at multiple MLS levels may display empty
7190  623720 gschema.dtd does not contain enum definitions
7191  623770 quoting of expand_macro in gdesktopappinfo.c
7192  623772 gdesktopappinfo.c, function child_setup
7193  623780 g_unix_is_mount_path_system_internal
7194  623954 g_settings_finalize
7195  623955 Dubious return values
7196
7197 Updated translations:
7198  Galician
7199  Hebrew
7200  Norwegian bokmål
7201  Spanish
7202
7203 Overview of Changes from GLib 2.25.9 to GLib 2.25.10
7204 ====================================================
7205
7206 +----------------------------------------------------------------+
7207 | WARNING: There have been API changes in GDBus. Users of these  |
7208 | APIs will need to be adapted.  In particular, a new release of |
7209 | dconf is required to go along with this one.  There has also   |
7210 | been a change in the GSettings backend API used for keyfiles.  |
7211 +----------------------------------------------------------------+
7212
7213 * GDBus:
7214  - add direction parameter to filter functions (API change)
7215  - allow calling other interfaces with a GDBusProxy
7216  - padding added to class struct fields (ABI change)
7217  - fixes for closures-based functions
7218
7219 * GVariant:
7220  - new is_floating() call
7221  - add g_value_take_variant() call (required for marshallers)
7222
7223 * GSettings:
7224  - support for binding GParamSpecEnum properties
7225  - ifelse-style condition support for GLIB_GSETTINGS m4 macro
7226  - remove gsettings-schema-convert tool (now in GConf)
7227  - allow introspection of all installed schemas
7228  - allow introspection of the keys in a schema
7229  - rewrite keyfile backend (API change)
7230
7231 * GNIO:
7232  - don't implicitly close GSocket until it is destroyed
7233  - windows fixups
7234
7235 * Other:
7236  - allow GChecksum to take (NULL, 0) for data/length
7237  - GRelation and GCompletion are now deprecated
7238  - introduce G_PARAM_DEPRECATED and G_ENABLE_DIAGNOSTIC
7239  - add working directory to GApplication platform data
7240  - lots of documentation cleanups
7241  - PCRE updated to 8.02
7242
7243 * Build:
7244  - the IA__g_* style symbol aliasing has been disabled and replaced with
7245    the -Bsymbolic-functions linker flag on platforms that support it.
7246    Please be on the watch for portability issues and report them to us.
7247  - many test cases have been moved to the GTester framework
7248  - lcov support has been added for tests
7249  - many windows fixes
7250
7251 * Bugs fixed:
7252  501057  lcov coverage suite and GLib integration
7253  551271  deprecate GRelation
7254  601686  Implement diagnostic mode
7255  603309  GSocketOutputStream broken on Windows (?)
7256  616718  GLIB_GSETTINGS macro can't be used conditionally
7257  616855  GSocketConnection: don't close the socket if it's still reffed
7258  618866  g_ptr_array_remove_index_fast memory leak
7259  619878  keyfile backend calls keys_changed with invalid argument
7260  619879  keyfile backend doesn't make use of expected_type
7261  621092  Add with_closures() variants for bindings
7262  621172  Cross compiling fails
7263  621838  Actually add cwd to platform data
7264  621945  Filter outgoing messages in GDBusConnection
7265  621947  add g_value_take_variant
7266  622038  GSettings: "It is a programmer error" documentation is unclear
7267  622154  [patch] update documentation for g_application_new
7268  622281  binding: Add SYNC_CREATE to the flags
7269  622480  Improve documentation for g_strcmp0()
7270  622554  g_error called if schema not installed
7271  622601  Return interned strings from g_settings_list_keys
7272
7273 * Translation updates:
7274  - Galician
7275
7276 Overview of Changes from GLib 2.25.8 to GLib 2.25.9
7277 ===================================================
7278
7279 +----------------------------------------------------------------+
7280 | WARNING: There have been API changes in GDBus, GSettings and   |
7281 | GApplication. Users of these APIs will need to be adapted. In  |
7282 | particular, a new release of GTK+ is required to go along with |
7283 | this one.                                                      |
7284 +----------------------------------------------------------------+
7285
7286 * GDBus
7287  - Use Gio's default async implementation
7288  - Fix proxy construction for objects with no properties
7289  - Fix error handling in synchronous initialization
7290  - Do not dispatch calls to unregistered objects
7291  - Add _with_closures alternative functions
7292  - Allow constructing GDBusProxy with well-known names
7293  - Remove GType parameters from GDBusProxy constructors
7294  - Nuke g_bus_watch_proxy API
7295  - Add --xml to gdbus-tool to print raw introspected XML
7296
7297 * GSettings
7298  - schema file format change: store (default, options) in gvdb
7299  - Add g_settings_sync()
7300  - Add support for enums and ranges
7301  - 'context' support has been replaced by direct use of
7302    GSettingsBackend
7303
7304 * GApplication
7305  - Switch to using variants for timestamps
7306  - Use GInitable
7307
7308 * GObject
7309  - Introduce g_object_notify_by_pspec
7310  - Add GBinding
7311  - The GVariant gtype G_TYPE_VARIANT was changed from boxed
7312    to fundamental. We believe there were no existing users
7313    of the boxed type, so this should not cause any applications
7314    to break.
7315
7316 * Test framework
7317  - Add package and version to the test report XML
7318  - Use optparse to parse gtester-report commandline
7319  - Add subunit support to gtester-report
7320  - Prevent division by zero if no tests
7321
7322 * Bugs fixed:
7323  621782 Crash using gbinding
7324  619945 GConverterOutputStream triggers assertion and corrupts data
7325  621319 more leaked GVariants in GSettings
7326  621168 GKeyFile memory leak on Windows platform
7327  621002 Switch to using variants for timestamps, split out signals
7328  620953 tiny docs addition
7329  618904 Lies in gunixmounts documentation
7330  621702 Correctly initialize GError
7331  611778 minor cleanup of gtester-report
7332  621213 GDBusProxy and well-known names
7333  621034 Rewrite apps test to ensure children are killed
7334  620954 gapplication gvariant simplifications
7335  611869 add subunit out feature to gtester-report
7336  621119 GDBusProxy and objects with no properties
7337  620990 Use Gio's default async implementation again
7338  620952 g_application_register_with_data is an ugly API
7339  621252 GSettings leaks context
7340  618715 fork() in GSettings test cases is problematic 618715
7341  621905 Assume a ref when doing async work
7342  621266 GSettings "context" clarification
7343
7344 * Translation updates:
7345  Chinese
7346
7347
7348 Overview of Changes from GLib 2.25.7 to GLib 2.25.8
7349 ===================================================
7350
7351 * Initial support for dtrace and systemtap profiling:
7352  - mainloop sources can be named
7353  - probes for memory allocation with g_malloc and gslice
7354  - gquark name tracking
7355  - type creation
7356  - object life-cyle (creation, finalization, ref, unref)
7357  - signal creation and emission
7358
7359 * GVariant
7360  - has been fixed to work with the FreeBSD malloc
7361  - added introspection annotations
7362  - new function: g_variant_builder_add_parsed
7363
7364 * GSettings:
7365  - g_settings_set/get_strv functions have lost their length parameter
7366  - g_settings_set_strv accepts NULL
7367  - added introspection annotiations
7368
7369 * GPermission: an abstract interface for representing permissions,
7370   with a minimal implementation named GSimplePermission
7371
7372 * GApplication: a basic application support class, with a D-Bus based
7373   implementation
7374
7375 * Bugs fixed:
7376  619585 glib-compile-schemas asserts on FreeBSD
7377  620384 Annotate GVariant and GSettings _strv() functions
7378  606044 Add support for dtrace/systemtap static markers
7379  620350 add g_variant_builder_add_parsed() API
7380  620349 utf8ify GVariant printer
7381  620767 Typo in GSettings documentation: "INTLTOOL_NOMERGE_RULE"
7382  620312 Fix g_settings_[gs]et_strv() API
7383  620519 GPermission
7384  620582 GPermission needs a simple implementation
7385  620496 GSettings schema compiler should reject invalid paths
7386  620173 missing single header inclusion guards
7387  620265 g_assertion_message_error should take const GError *
7388
7389 * Translation updates:
7390  Esperanto
7391  Galician
7392  Hebrew
7393  Indonesian
7394  Norwegian bokmål
7395  Slovenian
7396  Spanish
7397
7398
7399 Overview of Changes from GLib 2.25.6 to GLib 2.25.7
7400 ===================================================
7401
7402 * NOTE: API/ABI breaks since 2.25.6 release:
7403   - g_dbus_connection_sync{,_sync} takes a new 'reply_type' argument
7404   - GSettingsBackendClass 'list' virtual function changed
7405
7406   GSettings backends and things using GDBus may need to be rebuilt.
7407
7408 * GDBus: many build-related fixes
7409
7410 * GDBus (service): return a DBus error when receiving a method call for
7411   an unknown interface.
7412
7413 * GSettings: fix 'make install' bug in gsettings.m4 for generated schema
7414   files
7415
7416 * GSettings: avoid non-portable use of LC_MESSAGES
7417
7418 * better approach to handling man pages
7419
7420
7421 * Bugs fixed:
7422  619527 please improve docs on g_file_make_symlink
7423  619391 send-with-reply should have expected result signature
7424  618616 Use stack-allocated GVariantBuilders
7425  617004 Build with "--disable-nls" fails under MinGW/Win32
7426  619142 Build fixes (GDBus)
7427
7428 * Updated translations:
7429  Estonian
7430  Galician
7431  Norwegian bokmål
7432
7433 Overview of Changes from GLib 2.25.5 to GLib 2.25.6
7434 ===================================================
7435
7436 * GDBus: introspection improvements
7437 * GDBus: build fixes
7438
7439 * GSettings: GSettingsBackend ABI changed               **** NOTE ****
7440 * GSettings: --uninstall option for schema compiler
7441 * GSettings: new m4 macro with more power
7442 * GSettings: thread support
7443
7444 * rework of file notification on Solaris
7445 * fixes for gold linker
7446
7447 * Bugs fixed:
7448  619038 increase gsettings.m4 power
7449  619031 method-calls-in-thread test failing
7450  618839 Typo at translation message
7451  616864 GSETTINGS_CHECK_RULE doesn't work with multiple files
7452  618730 gunixcredentialsmessage.c doesn't compile on GNU/kfreebsd
7453  616314 Make GSettings (partially) threadsafe
7454
7455 * Updated Translations:
7456  Indonesian
7457  Galician
7458  Spanish
7459
7460 Overview of Changes from GLib 2.25.4 to GLib 2.25.5
7461 ===================================================
7462
7463 * GDBus: Fix serialization of empty arrays
7464
7465 * GDBus: Plug various memory leaks
7466
7467 * GSettings: Fix problems with GSETTINGS_CHECK_RULE
7468
7469 * Bugs fixed:
7470  616731 GSETTINGS_CHECK_RULE doesn't work in non-srcdir builds
7471  616864 GSETTINGS_CHECK_RULE doesn't work with multiple files
7472  618615 mem leaks in parse_value_from_blob
7473  618622 Plug some mem leaks in gdbus
7474  618650 Plug a mem leak in gdbusauth
7475  618663 Plug mem leaks in gdbus tests & examples
7476
7477 * Updated translations:
7478  Spanish
7479
7480
7481 Overview of Changes from GLib 2.25.3 to GLib 2.25.4
7482 ===================================================
7483
7484 * GDBus D-Bus support has been merged. This provides an API
7485   to replace dbus-glib
7486
7487 * GVariant no requires strings to be UTF-8. You can use byte
7488   arrays for non-UTF-8 strings.
7489
7490 * GSettings allows to bind string properties to byte arrays
7491
7492 * The schema compiler supports range restrictions
7493
7494 * Bugs fixed:
7495  618051 socket-server|client.c fail to compile under AIX...
7496  616102 GSettings ignores <choice> and <range>
7497  616720 Chunked quark allocation
7498  616877 Several issues with g_socket_receive_message
7499  616892 gio: Add a boxed type for GFileAttributeMatcher
7500  616967 Add g_regex_get_compile_flags() and g_regex_get_match_flags()
7501  617767 g_settings_[gs]et_strv() 'length' argument has missing docs...
7502  617914 gtester-report: cope with binaries with no test cases
7503  617937 output_stream_close vs output_stream_close_async semantics
7504  615494 Connction timeouts produce partially invalid error messages
7505  617823 glib-compile-schemas problems with an out of source build
7506  617947 glib-mkenums: add @valuenum@ support
7507
7508 * Translation updates:
7509  Galicaian
7510  Norwegian bokmål
7511  Shavian
7512  Spanish
7513
7514
7515 Overview of Changes from GLib 2.25.2 to GLib 2.25.3
7516 ===================================================
7517
7518 * New macro: G_GNUC_DEPRECATED_FOR, a variant of G_GNUC_DEPRECATED
7519   that lets you add replacement information (requires gcc 4.5)
7520
7521 * Rename AM_GSETTINGS autoconf macro to GLIB_GSETTINGS
7522
7523 * Rename gschema-compile utility to glib-compile-schemas
7524
7525 * Add support for timeouts in GSocket
7526
7527 * Bugs fixed:
7528  589989 Compilation error on Solaris 9
7529  616648 Change AM_GSETTINGS macro to GLIB_GSETTINGS
7530  587898 I/O timeouts for GSocket
7531  614541 Add G_TYPE_ERROR boxed type for GError
7532
7533
7534 Overview of Changes from GLib 2.25.0 to GLib 2.25.2
7535 ===================================================
7536
7537 * Include a 'gsettings' utility, for commandline access to GSettings
7538
7539 * Install a AM_GSETTINGS autoconf macro similar to AM_GCONF
7540
7541 * GSettings can bind the writability of a key explicitly
7542
7543 * There is now a predefined boxed type for GError
7544
7545 * Bugs fixed:
7546  615379 g_new macros crash if sizeof(struct_type) == 0
7547  616312 Add m4 rule equivalent to GCONF_SCHEMAS_INSTALL
7548  616295 mapping bug for uint64
7549  616216 glib compile from remote directory fails
7550  615960 Fix size passed to connect() for abstract sockets
7551  616432 Crash in gschema-compile
7552  616331 gsettings-schema-convert uses imaginary types
7553  616309 gsettings-schema-convert should output gettext-domain
7554  616384 Add mention of GConfBridge in conversion docs
7555  616311 gschema-compile outputs in current directory
7556  616276 simplify gschema-compile test setup
7557  616156 keys with unnecessary empty options arrays
7558  616405 gsettings missing g_return_if_fail's
7559  616245 Use G_DEFINE_INTERFACE macro
7560  614541 Add G_TYPE_ERROR boxed type for GError
7561
7562 * Updated translations:
7563  Catalan (Valencian)
7564  Galician
7565  Kannada
7566  Spanish
7567
7568
7569 Overview of Changes from GLib 2.24.0 to GLib 2.25.0
7570 ===================================================
7571
7572 * The GSettings framework has been merged. This provides the API to
7573   replace GConf. DConf will provide a backend implementation for it.
7574   GConf will also provide a backend implementation to ease the
7575   transition. We provide utilities to assist with schema conversion
7576   and data migration, as well as a porting guide.
7577
7578 * Translation updates:
7579  Bengali
7580  Catalan
7581  Danish
7582  Gujarati
7583  Marathi
7584  Thai
7585  Traditional Chinese
7586
7587
7588 Overview of Changes from GLib 2.23.6 to GLib 2.24.0
7589 ===================================================
7590
7591 * Bug fixes:
7592  613601 buglet in dup_close_on_exec_fd
7593  584284 g_data_input_stream_read_until_async behaves confusingly
7594  613748 Write errors in middle of copy cause hang
7595  613923 splice_stream_with_progress: wrong error handling
7596  613667 Typo in GObject documentation
7597  613618 gvariant format string docs unclear
7598
7599 * Translation updates:
7600  Basque
7601  Ukrainian
7602  Vietnamese
7603
7604
7605 Overview of Changes from GLib 2.23.5 to GLib 2.23.6
7606 ===================================================
7607
7608 * Class private data:
7609   - support for private data associated with a GTypeClass
7610
7611 * GVariant merge is now complete:
7612   - loading functions and parser merged
7613
7614 * Windows improvements:
7615   - socket fixes
7616   - various build improvements
7617   - removal of GCC/C99isms in favour of portable code
7618   - drop unmaintained Visual Studio 8 support
7619
7620 * Minor API addition:
7621   - g_desktop_app_info_get_filename()
7622
7623 * Bugs fixed:
7624  521707 Class private data
7625  612502 build fails on glib/tests/gvariant.c
7626  612832 [GDesktopAppInfo] New function g_desktop_app_info_get_filename
7627  612702 [PATCH] Fix GSocket-related crash on Windows
7628  612736 Improve the documentation about single include
7629  610858 gvariant test fails sometimes
7630  612327 uninitialized variable
7631
7632 * New translations:
7633  Afrikaans
7634  LowGerman
7635
7636 * Updated translations:
7637  Czech
7638  Finnish
7639  Galician
7640  Greek
7641  Punjabi
7642  Romanian
7643  Serbian
7644
7645
7646 Overview of Changes from GLib 2.23.4 to GLib 2.23.5
7647 ===================================================
7648
7649 * New API addition: g_malloc_n() and friends used to implement an
7650   overflow-safe family of g_new() macros.
7651
7652 * GVariant:
7653  - GVariantBuilder and GVariantIter are now merged.
7654  - The variable arguments API is now merged.
7655  - The parser will be in a future release.
7656
7657 * GIO:
7658  - Remove GUtf8InputStream (which never appeared in a stable release)
7659    for now since it doesn't satisfy the needs of its main intended use
7660    case.  We hope to reimplement this feature in a better form in a
7661    future release.
7662
7663 * Bugs fixed:
7664  609531 missing licence headers
7665  612107 Missing G_FILE_ATTRIBUTE_TRASH_ORIG_PATH
7666  611897 g_io_modules_scan_all_in_directory leaks
7667  608196 Overflow-safe g_new family
7668  611696 gio uses GetAddrInfo which requires special handing on windows 2k
7669  605667 Don't use G_PARAM_SPEC_VALUE_TYPE when we know the pspec is valid
7670  610860 test_g_file_open_readwrite fails if $HOME is unwritable
7671  552912 glib-2.18 /live-g-file/test_copy_move failed when run as root
7672  609813 Renaming a file discards file notes
7673
7674 * Updated translations:
7675  Basque
7676  Brazilian Portuguese
7677  British English
7678  Bulgarian
7679  Catalan
7680  Danish
7681  Estonian
7682  French
7683  German
7684  Hungarian
7685  Italian
7686  Lithuanian
7687  Norwegian bokmål
7688  Portuguese
7689  Russian
7690  Slovenian
7691  Spanish
7692  Swedish
7693  Traditional Chinese
7694
7695
7696 Overview of Changes from GLib 2.23.3 to GLib 2.23.4
7697 ===================================================
7698
7699 * GVariant: The core of GVariant has been merged now, with some
7700  API still to follow.
7701
7702 * GIO:
7703  - There is a new interface GFileDescriptorBased for file descriptor
7704    based IO. GLocalFile{Input,Output}Stream implement it
7705  - Use splice(2) to transfer data between file descriptors without
7706    extraneous copies
7707  - Add a way to request move events from file monitors
7708
7709 * Bugs fixed:
7710  609143 *result_uncertain is never assigned in g_content_type_guess
7711  604086 Use splice(2) when doing local file copies
7712  547890 No move events for GFileMonitorEvent?
7713  568760 nautilus freezes due to a bug in garray.c:322
7714  609962 Add info about the use of G_DEFINE_INTERFACE
7715  609564 g_base64_encode_close docs should mention outbuf size...
7716  610484 g_variant_equal bug
7717  610131 libasyncns does not compile on Solaris 8
7718  609530 missing single header include guards
7719
7720 * Updated translations:
7721  Czech
7722  Estonian
7723  Galician
7724  German
7725  Korean
7726  Polish
7727  Slovenian
7728  Spanish
7729  Traditional Chinese
7730
7731
7732 Overview of Changes from GLib 2.23.2 to GLib 2.23.3
7733 ===================================================
7734
7735 * GLib now has a facility for locks that consume only one bit of
7736   storage inside an integer: g_bit_lock()
7737
7738 * GVariant: The serializer has been merged, with more API to follow
7739
7740 * Bugs fixed
7741  548967 1 bit mutex lock
7742  604967 2.22.3 libasyncns build fails on HP-UX 11.11
7743  608602 G_VALUE_COLLECT_INIT variables shadow those in G_VALUE_COLLECT
7744  608743 Crash in g_hostname_to_ascii visiting certain website in epiphany
7745  599197 array ref and unref functions crash on NULL array.
7746  608159 mem leak in g_io_modules_scan_all_in_directory
7747
7748 * Translation updates
7749  Brazilian Portuguese
7750  Czech
7751  French
7752  Norwegian bokmål
7753  Slovenian
7754  Spanish
7755  Thai
7756
7757
7758 Overview of Changes from GLib 2.23.1 to GLib 2.23.2
7759 ===================================================
7760
7761 * We are now using gcc builtins for atomic operations when available
7762
7763 * g_assert() grew the ability to store assertions in core dumps
7764
7765 * GIO supports lazy loading of GIO modules, and there is a new
7766   gio-querymodule utility that goes along with this.
7767   Packagers will need to adapt to this.
7768
7769 * Threading changes:
7770  - The requirements for g_thread_init() have been relaxed slightly,
7771    it can be called multiple times, and does not have to be the first
7772    call.
7773  - GObject now links to GThread and threads are enabled automatically
7774    when g_type_init() is called.
7775  - Thread-safety issues with boxed types in GObject have been fixed.
7776
7777 * GObject:
7778  - Another bunch of performance work has landed
7779
7780 * GVariant:
7781  - GVariantType has been merged, with the rest of the GVariant
7782    API to follow.
7783
7784 * Bugs fixed:
7785  568760 nautilus freezes due to a bug in garray.c:322
7786  602417 Document lifecycles of GSimpleAsyncResult and friends
7787  604824 crash in Epiphany: Selecting my Slashdot bo...
7788  448888 don't init g_slice for always-malloc
7789  531902 Use GCC atomic buildins for g_atomic*
7790  554887 boxed type registration is not thread safe
7791  586150 unresolved symbols when building glib 2.21.2 on OS X Tiger
7792  589176 row gvalue transform array exponentially
7793  594872 Support storing assertion messages into core dump
7794  602240 Upgrade libasyncns to 0.8
7795  603590 Speed up G_VALUE_COLLECT
7796  604457 gutf8inputstream.c: increasing unknown size pointer
7797  605686 GCharsetConverter doesn't flush
7798  605733 g_memory_output_stream_new violates GObject standards
7799  605883 g_object_new() processes varargs even when there are none
7800  605977 invalid utf-8 conversion in g_local_file_get_parse_name(...
7801  606775 Enable threads by default in gobject
7802
7803 * Translation updates:
7804  Asturian
7805  Basque
7806  Bengali
7807  Bulgarian
7808  Estonian
7809  Norwegian bokmål
7810  Spanish
7811  Thai
7812  Ukrainian
7813
7814
7815 Overview of Changes from GLib 2.23.0 to GLib 2.23.1
7816 ===================================================
7817
7818 * GObject performance work has landed:
7819  - Construction of simple objects is much faster
7820  - Interface lookup is lock-free and constant-time now
7821  - Reduced locking overhead when dealing with types
7822
7823 * GType now has a G_DEFINE_INTERFACE convenience macro
7824
7825 * GIO gained GUtf8InputStream, an input stream that
7826   performs utf-8 validation
7827
7828 * GLib now has byte-swap macros for gsize and gssize
7829
7830 * Bugs fixed:
7831 557151 Determining the newly_constructed boolean in gobject.c...
7832 557100 Performance improvements for GObjectClasses that don't...
7833 501166 Warning message says IA__g_type_init instead of g_type_init
7834 585375 Performance and Contention problems with g_type_class_ref...
7835 587892 Race in GType when instantiating the same class for the...
7836 603270 Input Stream validating utf8
7837 603476 gioenums.h:62: error: comma at end of enumerator list
7838 603540 g_time_val_from_iso8601 uses uninitialised variable
7839 603982 Stack overflow when reading file async with filter
7840 604645 G_DEFINE_INTERFACE_* documentation is not generated
7841 604875 Use of sa_len conflicts with system header
7842 320482 provide G_DEFINE_TYPE like macros for interfaces
7843
7844 * Updated translations:
7845  Estonian
7846  Hebrew
7847  Norwegian bokmål
7848  Vietnamese
7849  Welsh
7850
7851
7852 Overview of Changes from GLib 2.22.x to GLib 2.23.0
7853 ===================================================
7854
7855 * GIO:
7856  - GConverter: a generic interface for stateful conversions of data,
7857    suitable for charset conversion, compression, decompression, regexp
7858    replacement. Concrete implementations are GCharsetConverter,
7859    GZlibCompressor and GZlibDecompressor. GConverterInputStream,
7860    GConverterOutputStream are stream implementations that convert data
7861    while loading or saving it.
7862  - GMounts can now have a 'default location': a path that reflects
7863    the main entry point for the user (e.g. the home directory).
7864  - As a consequence of the compression support, GIO depends on zlib now.
7865
7866 * GObject:
7867  - G_IMPLEMENT_INTERFACE_DYNAMIC: a convenience macro for adding
7868    interfaces to dynamic types.
7869
7870 * GModule:
7871  - The -pthread flag has been added to all gmodule .pc files, because
7872    it is not generally permissible to load modules that are linked
7873    against libpthread if the program has not been compiled with threading
7874    support.
7875
7876 * Bugs fixed:
7877  601637 GUnixFDMessage should contain a GUnixFDList
7878  585566 GSocketListener API issues
7879  572252 Bug in g_file_test() function.
7880  600550 g_app_info_create_from_commandline doesn't treat arguments properly
7881  541236 not detecting exact content type
7882  350200 [PATCH] GTypeModule derived class unref does not unload plugin
7883  589631 Please enclose literal values with double quotes
7884  577711 cross compile check for g++ broken
7885  600620 Support X-GNOME-FullName in GAppInfo
7886  598899 GWin32DirectoryMonitor is broken
7887  593809 Nautilus does not restore the position of the icons on the desktop...
7888  563627 g_get_prgname() threadsafety
7889  600141 Add -pthread to gmodule pkg-config
7890  593856 file and directory monitors don't work when glib is compiled...
7891  324930 Nautilus should disallow copying of symlink to FAT drive early
7892  587300 Deadlock when calling g_cancellable_disconnect in a...
7893  595138 GFile not robust with invalid input
7894  591216 Warning building resolver.o
7895  590016 Does not compile under MinGW32 + Wine
7896  591214 Warnings building gcancellable.o
7897  561998 Have specific entry points (paths) for mounts...
7898  508157 Add G_IMPLEMENT_INTERFACE_DYNAMIC
7899  535159 g_file_has_parent
7900
7901 * Updated translations:
7902  Brazilian Portuguese
7903  Catalan
7904  Estonian
7905  Galician
7906  Norwegian bokmål
7907  Shavian
7908  Slovenian
7909  Spanish
7910  Swedish
7911
7912
7913 Overview of Changes from GLib 2.22.1 to GLib 2.22.2
7914 ===================================================
7915
7916 * GIO:
7917  - Support case-sensitive globs in the shared mime database,
7918    including support for the newer cache format that allows these.
7919    Case-sensitive globs have been introduced in shared-mime-info
7920    version 0.70
7921
7922 * GObject:
7923  - Speed up creation of simple objects
7924
7925 * Bugs fixed:
7926  597194 Typo in _G_TYPE_CVH macro
7927
7928 * Updated translations:
7929  Russian
7930
7931
7932 Overview of Changes from GLib 2.22.0 to GLib 2.22.1
7933 ===================================================
7934
7935 * Bugs fixed:
7936  596064 Test file marked for translation
7937  595972 possibly invalid search in mime_info_cache_dir_add_...
7938  596561 C99 style of declaration of variable in gmessages.c
7939  596314 g_utf16_to_utf8 returns an invalid UTF8 string
7940  596748 g_async_result_get_source_object returns a new ref
7941  593809 Nautilus does not restore the position of the icons...
7942  593775 uses inotify_init1 unconditionally
7943
7944 * Updated translations:
7945  Bengali
7946  Hebrew
7947
7948
7949 Overview of Changes from GLib 2.21.6 to GLib 2.22.0
7950 ===================================================
7951
7952 * Add gdb python macros to make gobject debugging more pleasant
7953
7954 * Bugs fixed:
7955  579050 Allow making selected critical and warning messages non-fatal
7956  594759 g_socket_send_message fails due to invalid sendmsg params
7957  593941 GNetworkAddress skipping addresses when enumerating
7958  594597 Fix build with srcdir != builddir
7959  595619 Include gdb pretty printers
7960
7961 * Changes that might affect bindings:
7962  - The error parameter of g_simple_async_result_set_from_error has been
7963    made const.
7964
7965 * Updated translations:
7966  Assamese
7967  Bengali India
7968  British English
7969  Bulgarian
7970  Catalan
7971  Czech
7972  Danish
7973  Finnish
7974  Galician
7975  Greek
7976  Gujarati
7977  Hindi
7978  Japanese
7979  Kannada
7980  Malayalam
7981  Marathi
7982  Norwegian bokmål
7983  Oriya
7984  Polish
7985  Punjabi
7986  Romanian
7987  Serbian
7988  Simplified Chinese
7989  Slovenian
7990  Spanish
7991  Tamil
7992  Telugu
7993  Thai
7994  Traditional Chinese
7995  Ukrainian
7996  Vietnamese
7997
7998
7999 Overview of Changes from GLib 2.21.5 to GLib 2.21.6
8000 ===================================================
8001
8002 * Minor API additions:
8003   g_mkstemp_full is a variant of g_mkstemp that allows to specify flags
8004   and permissions
8005
8006 * Bugs fixed:
8007  593232 g_rand_new: read no more than requested from /dev/urandom
8008  591995 use saved errno
8009  589491 g_time_val_from_iso8601 doesn't handle some cases
8010  593406 Permissions set to 777 after copying via Nautilus
8011  594034 Add g_mkstemp_full()
8012
8013 * Updated translations:
8014  Assamese
8015  Basque
8016  Brazilian Portuguese
8017  Czech
8018  Estonian
8019  French
8020  German
8021  Hungarian
8022  Italian
8023  Kannada
8024  Malayalam
8025  Marathi
8026  Norwegian bokmål
8027  Oriya
8028  Portuguese
8029  Swedish
8030  Tamil
8031  Turkish
8032
8033
8034 Overview of Changes from GLib 2.21.4 to GLib 2.21.5
8035 ===================================================
8036
8037 * A performance problem with trashing of many files has been fixed
8038
8039 * GResolver now invalidates the libc resolv.conf cache as needed
8040
8041 * Minor api additions:
8042  - g_cancellable_make_pollfd returns a boolean now. And there is a
8043    new function g_cancellable_release_fd that can be used to released
8044    the resources used by a GCancellable.
8045
8046 * Bugs fixed:
8047  589988 Compilation error on Solaris 9 (missing stdint.h)
8048  588901 gtcpconnection.c won't compile
8049  584246 GResolver needs to call res_init() when network state changes
8050  591714 Figure out failure handling for g_cancellable_make_pollfd()
8051  591532 redundent '/' returned from g_file_resolve_relative_path
8052  591378 Use MSG_NOSIGNAL in GSocket if it's available
8053  589649 API documentation migration for Base64 Encoding
8054  591840 configure fails with autoconf 2.64
8055
8056 * Updated translations:
8057  Basque
8058  Brazilian Portuguese
8059  Bulgarian
8060  Danish
8061  Estonian
8062  Finnish
8063  Galician
8064  Gujarati
8065  Hndi
8066  Irish
8067  Japanese
8068  Korean
8069  Norwegian bokmål
8070  Polish
8071  Portuguese
8072  Punjabi
8073  Spanish
8074  Swedish
8075  Telugu
8076  Traditional Chinese
8077  Thai
8078
8079
8080 Overview of Changes from GLib 2.21.3 to GLib 2.21.4
8081 ===================================================
8082
8083 * GTree is now refcounted
8084
8085 * Bugs fixed:
8086  587938 Undocumented limitation for g_str_equal
8087  587773 refcounts for GTree
8088
8089 * Updated translations:
8090  French
8091  Hebrew
8092  Norwegian bokmål
8093  Spanish
8094  Swedish
8095  Traditional Chinese
8096  Ukrainian
8097
8098
8099 Overview of Changes from GLib 2.21.2 to GLib 2.21.3
8100 ===================================================
8101
8102 * GMappedFile is refcounted now
8103
8104 * Mainloop: It is now possible to set per-thread default contexts,
8105   with g_main_context_push_thread_default.
8106
8107 * glib-mkenums supports a @basename@ substitution, in addition
8108   to @filename@.
8109
8110 * GIO:
8111  - Vfs implementations can support storing of per-file metadata.
8112  - GCancellable can now be subclassed.
8113  - Unmount and eject methods now optionally allow interaction, via
8114    variants that take a GMountOperation object.
8115
8116 * Bugs fixed:
8117  556706 Inconsistent help arguments -h, -?
8118  579449 FileChoosers no longer work if an idle handler is active
8119  579933 mainloop FD_CLOEXEC has a race condition
8120  579984 alternate GMainContext support
8121  585937 gio/gsocket.c (glib 2.21.2) does not compile (Windows/mingw)
8122  586675 Runtime library location
8123  586797 Add GCancellables to GSocket ops
8124  586868 g_filename_complete_get_completions doesn't always return...
8125  587415 g_resolver_lookup_by_name_finish returns a freed list
8126  587434 regression tests fail, at least on x86_64
8127  586928 Avoid g++ warning in g_error()
8128
8129 * Updated translations:
8130  Estonian
8131  Hebrew
8132
8133
8134 Overview of Changes from GLib 2.21.1 to GLib 2.21.2
8135 ===================================================
8136
8137 * GIO:
8138   - g_socket_speaks_ipv4 is a new function to check if a socket can
8139     speak IPv4.
8140   - g_socket_listener_add_address gained a new effective_address out
8141     parameter.
8142   - GIO now returns special icons for XDG user directories, by the
8143     name folder-music, folder-documents, etc.
8144   - GIO gained support for starting/stopping of drives, which can be used
8145     in connection with external hard disk enclosures, disk arrays, iSCSI
8146     devices, etc. See g_file_start/stop_mountable.
8147
8148 * GLib:
8149  - g_reload_user_special_dirs_cache is a new function to force GLib to
8150    reload the XDG user directory mapping from disk.
8151
8152 * Bug fixes:
8153  584574 glib compile failure on Mac OS X with gunixresolver.c and...
8154  585566 GSocketListener API issues
8155  584255 Incorrect freeing of thread pool in GThreadedSocketService
8156  585088 g_string_chunk_insert_len stops at nul bytes
8157  585360 Monitor fontconfig configuration files using gio causes m...
8158  580103 Terminal starts on Display :0.0 when started on :0.1 in D...
8159  580301 network: a few issues on old darwin
8160  583398 SRV weight sorting is incorrect
8161  584176 build fixes on FreeBSD
8162  585189 g_cancellable_reset() must be called in same thread as g_...
8163  585280 compilation dies on gio/gsocket.c, needs sys/uio.h to con...
8164  585281 gio/gunixfdmessage.c needs sys/types.h for platforms that...
8165  585478 don't leak the inotify fd
8166  585575 g_socket_listener_add_inet_port() doesn't do the right thing
8167  585599 g_socket_listener_add_socket() consumes the socket
8168  585676 GEmblem doesn't reference its 'icon' if that is set as a ...
8169  585717 "bytes" nautilus translation to french is not shown in th...
8170  541276 XDG directories should have their own icons
8171  585726 Grammatical error in GList documentation
8172  585520 Wrong warning option in documentation
8173  585673 GNOME Goal: Remove deprecated glib symbols
8174  585591 Starting/stopping drives
8175
8176 * Updated translations:
8177  Bengali India
8178  Norwegian bokmål
8179
8180
8181 Overview of Changes from GLib 2.21.0 to GLib 2.21.1
8182 ===================================================
8183
8184 * GIO:
8185  - Support for network IO has been added, including a low-level
8186    socket API and a high-level API for network connections and
8187    services.
8188  - Support for read-write access with GIOStream and its subclasses.
8189  - GMount gained a pre-unmount signal.
8190
8191 * Bug fixes:
8192  576104Implement GMount::pre-unmount
8193  578769 implement GWinHttpFileInputStream::close_fn
8194  582856 gsocket.c doesn't compile on Solaris
8195  569375 g[u]intptr undocumented
8196  573246 [FIX] g_desktop_app_info_dup() can access NULL pointer
8197  575013 g_cancellable_push_current() does not allow NULL
8198  577884 live-g-file.c:461: error: format ‘%d’ expects type ...
8199  578499 g_output_stream_splice and stream closing with gnio strea...
8200  579558 Application employing gvfs crashes with only libgvfscommo...
8201  583001 SIGPIPE (grr!)
8202  583061 Please add convenience function to connect to machines by...
8203  583198 typo in error message
8204  583206 use g_set_error_literal where appropriate
8205  583229 void function g_async_initable_init_async returns value
8206  583324 locking problem in g_main_context_iterate()
8207  583408 void function g_socket_control_message_serialize returns ...
8208  578786 wrong and confusing error message
8209  583205 g_inet_address_to_bytes has no length outparam
8210  583196 mem leak in keyfile test
8211  583663 GSocketType enum ends with a comma
8212  569024 Make g_error_new_valist public
8213  569376 missing G_G[U]INTPTR_FORMAT
8214  580347 off-by-1 bug in GWinHttpFile
8215
8216 * Updated translations:
8217  Oriya
8218  Spanish
8219  Valencian-Catalan
8220
8221
8222 Overview of Changes from GLib 2.20.x to GLib 2.21.0
8223 ===================================================
8224
8225 * GIO:
8226  - New helper functions g_cancellable_connect/disconnect to avoid
8227    race conditions when connecting to the "cancelled" signal on
8228    GCancellable.
8229  - New types and methods for dealing with IPv4 and IPv6 addresses (and
8230    UNIX domain socket addresses under UNIX). This does not include code
8231    for actual socket I/O.
8232  - GResolver provides asynchronous and cancellable APIs for resolving
8233    hostnames, reverse lookup of IP addresses and resolving SRV records.
8234
8235 * Glib now provides hash and comparison functions for int64 and double
8236   types, suitable for use with GHashTable.
8237
8238 * GArray, GPtrArray and GByteArray can be ref counted now, and have
8239   boxed types.
8240
8241 * Bugs fixed:
8242  572844 Helper for GCancellable::cancelled connect/disconnect
8243  578363 goption docs should be improved
8244  548466 async/cancellable DNS resolver
8245  579830 param spec strings should use P_()
8246  579862 requesting xattr::foo ends up calling getxattr(..., user...
8247  580453 Hash and equal functions for gint64 and gdouble
8248  580450 Reference counting and boxed types for arrays
8249  580194 gresolver doesn't build on Solaris
8250  580301 network: a few issues on old darwin
8251  580299 network: include sys/types.h before sys/socket.h to insur...
8252  572508 gmarkup speedup
8253  580546 g_strtoull() referenced in documentation...
8254  580656 g_key_file_set_string_list erroneously asserts list != NULL
8255  579272 leaks in g_simple_async_result_set_op_res_gpointer
8256
8257
8258 * Updated translations:
8259  Catalan (ca)
8260  Pashto (ps)
8261  Spanish (es)
8262
8263
8264 Overview of Changes from GLib 2.20.0 to GLib 2.20.1
8265 ===================================================
8266
8267 * Bug fixes:
8268  575555 Use fsync() when replacing files to avoid data loss on
8269  575708 runaway inotify madness
8270  575270 GVolumeMonitor::mount-pre-unmount not being emitted
8271  577128 glib make check Failed to execute child process...
8272  573673 Always show "backup" directories
8273  578369 g_time_val_from_iso8601() parses timezones incorrectly
8274  578002 Fix a small typo in GFile docs
8275  578017 G_DEFINE_TYPE_EXTENDED docs
8276
8277 * Updated translations:
8278  Arabic
8279  Assamese
8280  Basque
8281  Bularian
8282  Brazilian Portuguese
8283  British English
8284  Catalan
8285  Danish
8286  French
8287  Galician
8288  German
8289  Greek
8290  Hungarian
8291  Italian
8292  Japanese
8293  Kannada
8294  Lithuanian
8295  Malayalam
8296  Norwegian bokmål
8297  Oriya
8298  Polish
8299  Punjabi
8300  Russian
8301  Simplified Chinese
8302  Slovenian
8303  Spanish
8304  Swedish
8305  Tamil
8306
8307
8308 Overview of Changes from GLib 2.19.9 to GLib 2.20.0
8309 ===================================================
8310
8311 * Base64 support: Avoid integer overflows. CVE-2008-4316
8312
8313 * Bugs fixed:
8314  574019 GChecksum: document and guarantee hex characters in lower case
8315  573454 Unable copy/move files to directories symlinked to gvfs share
8316  561172 gnome-open fails on local URIs with anchors
8317  573970 crash in gunixvolumemonitor:update_mounts when unmounting
8318  573843 g_get_current_dir returns non-absolute path
8319
8320 * Updated translations:
8321  Assamese (as)
8322  Bengali (bn_IN)
8323  Czech (cs)
8324  Hindi (hi)
8325  Italian (it)
8326  Japanese (ja)
8327  Lithuanian (lt)
8328  Malayalam (ml)
8329  Marathi (mr)
8330  Oriya (or)
8331  Polish (pl)
8332  Romanian (ro)
8333  Telugu (te)
8334
8335
8336 Overview of Changes from GLib 2.19.8 to GLib 2.19.9
8337 ===================================================
8338
8339 * GMarkup:
8340  - Considerable speedup
8341
8342 * GIO
8343  - Add G_FILE_CREATE_REPLACE_DESTINATION flag to allow replacing
8344    the destination of a copying operation as if it did not exit before.
8345  - Be more careful when classifying files as desktop files
8346  - Support desktop file key X-GIO-NoFuse which disables the use
8347    of fuse pathnames for %u and %U arguments
8348
8349 * Bugs fixed:
8350  572672 glib/gthread.c: argument is different type
8351  572464 Doc for g_file_get_contents
8352  572151 “it's” and “its” confused in docs and comments
8353  570501 g_win32_get_system_data_dirs uses invalid conversion...
8354  167569 g_string_append_printf crashes on win32 when used...
8355  572508 gmarkup speedup
8356  560564 Replacing a symlink with its linked file truncates... 
8357  549298 impossible to copy files with p (pipe) flag
8358  543183 Clarify docs for g_file_has_prefix
8359  540461 g_memory_output_stream_get_data_size() doesn't behave...
8360  573462 GEmblemedIcon leak
8361  573421 Clarify message format in GMountOperation
8362  573658 Deadlock in giomodule.c
8363  556706 Inconsistent help arguments -h, -?
8364  573527 Wrong shell to run config.status in Makefile.in.in
8365  573128 A couple of typos in GObject documentation
8366
8367 * Updated translations:
8368  Catalan (ca)
8369  British English (en_GB)
8370  Spanish (es)
8371  Basque (eu)
8372  Finnish (fi)
8373  French (fr)
8374  Gujarati (gu)
8375  Hebrew (he)
8376  Hungarian (hu)
8377  Korean (ko)
8378  Maithili (mai)
8379  Norwegian bokmål (nb)
8380  Dutch (nl)
8381  Portugese (pt)
8382  Swedish (sv)
8383  Thai (th)
8384  Traditional Chinese (zh_HK)
8385  Traditional Chinese (zh_TW)
8386
8387
8388 Overview of Changes from GLib 2.19.7 to GLib 2.19.8
8389 ===================================================
8390
8391 * GIO: Fix missing exports of new API
8392
8393 * Fix strict aliasing warnings and violations to make Glib work
8394   with gcc 4.4
8395
8396
8397 Overview of Changes from GLib 2.19.6 to GLib 2.19.7
8398 ===================================================
8399
8400 * GIO
8401  - GFile gained an attribute for the actual file size in bytes
8402  - GMountOperation gained an "aborted' signal that allows to abort
8403    a mount operation from the backend side
8404
8405 * Bugs fixed:
8406  523742 Use noinst for non-installable libraries
8407  566747 URIs opened with firefox %u load as local files
8408  541225 Can't compile gio on AIX duplicate case value in gioerror.c
8409  571598 GAsyncResult with NULL gobject
8410  505042 add file attribute for actually used file size in bytes
8411
8412 * Updates translations:
8413  Basque (eu)
8414  Gujarati (gu)
8415  Italian (it)
8416  Japanese (ja)
8417  Norwegian bokmål (nb)
8418  Dutch (nl)
8419  Portugese (pt)
8420  Thai (th)
8421  Vietnamese (vi)
8422
8423
8424 Overview of Changes from GLib 2.19.5 to GLib 2.19.6
8425 ===================================================
8426
8427 * New format macro to print goffset data: G_OFFSET_FORMAT
8428
8429 * GIO: 
8430  - Add a GFilter{Input,Output}Stream::close-base-stream properties which
8431    determine whether the base stream will be closed when the filter stream
8432    is finalized.
8433  - g_data_input_stream_read_line and ..._read_until have asynchronous
8434    variants now.
8435
8436 * Bugs fixed:
8437  568294 A wrong reference in the description of g_bookmark_file_...
8438  563141 RFE: define G_OFFSET_FORMAT
8439  569105 g_time_val_to_iso8601() assumes time_t==long
8440  568394 dropping the last reference to a stream filter closes...
8441  568741 g_buffered_input_stream_fill_async doesn't work
8442  568723 g_buffered_input_stream_fill_async doesn't take count == -1
8443  568575 _async functions for GDataInputStream
8444
8445 * Updated translations:
8446  Bulgarian (bg)
8447  Finnish (fi)
8448  Hungarian (hu)
8449  Oriya (or)
8450  Swedish (sv)
8451  Traditional Chinese (zh_HK)
8452  Traditional Chinese (zy_TW)
8453
8454
8455 Overview of Changes from GLib 2.19.4 to GLib 2.19.5
8456 ===================================================
8457
8458 * Update included PCRE to 7.8
8459
8460 * g_base64_decode_inplace: New function to do base64 decoding in place
8461
8462 * Bugs fixed:
8463  567138 get_package_directory_from_module() does not free ...
8464  566569 gregex docs clarification
8465  566573 g_match_info_fetch_pos docs
8466  564728 Add function to decode base64 encoded data in place
8467  567838 G_STRUCT_OFFSETOF fails to compile under icc 9.1
8468  567977 textdomain() macro should not return NULL ...
8469  512779 --disable-regex breaks compilation
8470  566770 error code 0 for Too many open files is useless
8471  565484 g_content_type_guess passes non-UTF8 text to XDG ...
8472
8473 * Updated translations:
8474  Catalan (ca)
8475  Spanish (es)
8476  Italian (it)
8477  Swedish (sv)
8478
8479  
8480 Overview of Changes from GLib 2.19.3 to GLib 2.19.4
8481 ===================================================
8482
8483 * GIO:
8484   - Use O_NOATIME when sniffing mimetypes
8485   - Add a convenience method to check if a GSimpleAsyncResult
8486     is valid
8487
8488 * Bugs fixed:
8489  560676 function access for g_threads_supported
8490  565905 There is no g_context_group_set_translation_domain
8491  564210 SUN Studio 12 has supported visibility attribute
8492  565136 GObject's "notify" signal parameters are wrong in gtk-doc
8493  565831 error in interface creation sample
8494  566348 g_file_open_tmp uses the wrong g_mkstemp on win32
8495  566064 Add NOATIME flag to query_info_flags
8496  566170 g_async_result_verify_source_object
8497
8498 * Updated translations:
8499  Spanish (es)
8500  Norwegian bokmål (nb)
8501  Brazilian Portugese (pt_BR)
8502  Simplified Chinese (zh_CN)
8503
8504
8505 Overview of Changes from GLib 2.19.1 to GLib 2.19.3
8506 ===================================================
8507
8508 * Bugs fixed:
8509  508021 Add support for the CRIS and CRISv32 architectures
8510  526320 should not list mounts that the user doesn't have permission to use
8511  558458 Cannot build gio tests on Solaris using SUN cc
8512  555465 GUnix{Input,Output}Stream lacks fd/close_fd_at_close property
8513  558298 Hide ecryptfs mounts
8514  515777 incorrect date&time on copy
8515  562452 Ensure we return G_IO_ERROR_CANCELLED if cancelling
8516         g_simple_async_result_run_in_thread
8517  473150 g_type_module_use inconsistently increases the use
8518         counter in case of error
8519  563150 G_GU?INT*_MODIFIER/FORMAT docs
8520  563156 Document printing and scanning gunichar values
8521
8522 * Updated translations:
8523  Hebrew (he)
8524  Italian (it)
8525  
8526
8527 Overview of Changes from GLib 2.19.0 to GLib 2.19.1
8528 ===================================================
8529
8530 * GIO: 
8531   - g_icon_to_string, g_icon_new_for_string: GIcon serialization support
8532   - G_FILE_ATTRIBUTE_PREVIEW_ICON: new file attribute for preview images
8533   - g_app_info_get_commandline: new function to get the full commandline
8534   - g_mount_shadow, g_mount_unshadow, g_mount_is_shadowed: New functions 
8535     to 'shadow' mounts (i.e. hide them from the UI when they already
8536     have a different representation, like a bookmark) 
8537
8538 * Bugs fixed:
8539  556186 gpoll.h breaks gmain.h inclusion
8540  557087 mem leak in g_content_types_get_registered
8541  556921 gpoll.h breaks hal compilation
8542  557210 g_compute_checksum_for_* asserts with less than 2 bytes
8543  558381 Add support for compile time assertions
8544  558185 'parent' variable in g_local_file_get_child_for_display_name()
8545         hits g_object_unref(NULL) assertion
8546  558513 g_warn_if_fail FIXME in gtestutils
8547  558672 NULL key lookup using g_hash_table_lookup_extended() 
8548  555740 gicon serialization
8549  557182 preview functionality
8550  528320 Incorrect icons displayed for files with custom mimetype icons
8551  556910 Memory leak: sub
8552  557592 Missing include in gwinhttpfile.c
8553  556415 Crash on Windows 2000 in g_winhttp_vfs_init()
8554  555935 Clarify the mechanism of overwriting properties
8555  552776 ac_cv_func_posix_getgrgid_r not mentioned
8556  559448 GObject Reference Manual (typo)
8557  561212 GFileReadMoreCallback API doc refers to non-existant function
8558  560569 gkeyfile doesn't use the set list_separator in some cases
8559  560568 gkeyfile docs buglet
8560  559413 g_option_group_set_error_hook docs buglet
8561  562378 callback return value not respected for callback option
8562         with no arg
8563  559110 Do not include libintl.h after glibintl.h
8564  557603 carbon check output misplaced
8565  562544 g_key_file_get_string and g_key_file_get_value
8566         documentation does not explain the difference
8567  547264 Missing "no flags" flag
8568  562638 GDebugKey key member should be const
8569  562639 g_parse_debug_flags() parsing "help"
8570  562549 g_byte_array_free should tell how free data
8571  559452 GObject Reference Manual (typo)
8572  559462 GObject Reference Manual (typo)
8573  559517 GObject Reference Manual (typo)
8574  562538 GObject interface tutorial shouldn't finalise with
8575         "Please forget everything"
8576  561352 Leak of icon description
8577  561375 Leaks mountpoint description
8578  561807 inotify_sub.c: dup_dirname() fails to remove trailing '/'
8579  562393 g_buffered_input_stream_read_byte broken if data available
8580  541715 win32 : patch for warnings and signature problems in recent code
8581  547481 g_data_input_stream_read_line behaves not as stated in the docs
8582  548163 Nautilus displays wrong error message for too long file names
8583  559633 gtk_image_new_from_gicon does not always work for .desktop files
8584  555486 – No way to recover command line from GAppInfo
8585
8586 * Translation updates:
8587  Spanish (es)
8588  Ukrainian (uk)
8589
8590
8591 Overview of Changes from GLib 2.18.1 to GLib 2.19.0
8592 ===================================================
8593
8594 * Rewrite GHashTable to use open addressing with quadratic probing instead 
8595   of chaining. This has the potential to reduce memory fragmentation 
8596   significantly, while being slightly faster due to better locality and 
8597   no need to call alloc/free functions for nodes. Benchmarks suggest it 
8598   also uses less memory overall.
8599
8600 * Make g_poll available as public api
8601
8602 * New macros g_assert_error and g_assert_no_error to assert 
8603   that a GError is set or unset
8604
8605 * g_cancellable_make_pollfd: New method to make a GPollFD for a cancellable
8606
8607 * g_app_info_can_delete, g_app_info_delete, g_app_info_reset_type_associations:
8608   New functions to clean up app infos and content types
8609
8610 * When launching applications, always pass fuse file:// uris when possible,
8611   and let gio convert such uris back to gio uris.
8612
8613 * Bugs fixed:
8614  505361 gunixinputstream.c assumes poll() available
8615  509446 portable blocking gio cancellation
8616  553820 gpoll.c: undeclared identifier
8617  553724 python interpretter path not patched in correctly
8618  553857 gbacktrace.h requires signal.h
8619  553447 g_assert_no_error()
8620  554092 glib doesn't return G_FILE_ERROR_NOENT et al on OS X
8621  528670 Always pass file:/// uri's in GAppLaunchContext
8622  555224 Improve g_format_size_for_display doc
8623  555309 giochannel breaks on error
8624  554790 g_convert() misbehaves with winiconv versions
8625  555314 mem leak in gmarkup
8626  555313 GFileAttribute boxed type get_type function should...
8627  552861 glib-2.0.m4 calls system(3) without storing its result
8628  554557 Patch to fix gcc warnings about missing format specifiers
8629  552107 Small libtool fixes
8630  551355 Make glib build with libtool 2.2
8631  555311 format not a string literal and no format arguments
8632  556101 static mutex yields warnings with g++
8633  556186 gpoll.h breaks gmain.h inclusion
8634  526456 Open addressing in GHashTable
8635  553426 cancellable clarifications
8636  545350 GAppInfo deletion
8637  545351 Reset associations for content type
8638  552168 volume's mount not mounted after g_volume_mount_finish
8639  554970 segfault when update-desktop-database is not available...
8640  554745 GFileAttributeInfoList should be boxed
8641  555121 Improved build-time handling of gio module-dir
8642  555711 Wrong fallback order of mimetype icons
8643  555331 Deprecate adoption of mounts
8644  556335 make check fails in abicheck.sh
8645  556334 Warning when building without selinux support
8646  556422 g_file_enumerator_next_file: unclear...
8647
8648 * Updated translations:
8649  Arabic (ar)
8650  Danish (da)
8651  Polish (pl)
8652  Brazilian Portugese (pt_BR)
8653  Romanian (ro)
8654  Russian (ru)
8655
8656
8657 Overview of Changes from GLib 2.18.0 to GLib 2.18.1
8658 ===================================================
8659
8660 * Bugs fixed:
8661  550433 g_test_init doesn't recognize --help
8662  523463 Core dump in gmain.c:2482:IA__g_main_context_check
8663  551228 G_STRFUNC on recent Sun compiler should be expanded...
8664  551410 gtestutils.c: using printf without prototype
8665  551731 g_date_set_time[_t] docs should mention what timezone
8666  548321 <string.h> is not included in gi18n-lib.h
8667  551149 xdgmime mem leak
8668  550647 synchronous pipe I/O when reading mount reply
8669  551887 Docs for g_desktop_app_info_new_from_filename aren't...
8670  551681 g_content_type_guess() too naive with filenames
8671  552352 g_app_info_launch doesn't work if "Path" key...
8672  551408 gmodule.def generated to builddir...
8673  552359 g_file_info_get_icon should return GThemedIcon, and...
8674
8675 * Updated translations:
8676  Arabic (ar)
8677  Bengali India (bn_IN)
8678  British English (en_GB)
8679  Hindi (hi)
8680  Croatian (hr)
8681  Korean (ko)
8682  Oriya (or)
8683  Turkish (tr)
8684  Telugu (te)
8685
8686
8687 Overview of Changes from GLib 2.17.7 to GLib 2.18.0
8688 ===================================================
8689
8690 * Win32:
8691   - rework the g_poll() implementation to match poll() semantics more closely
8692
8693 * Bugs fixed:
8694  324234 Using g_io_add_watch_full() to wait for connect() to return...
8695  548278 Async GETs connections are always terminated unexpectedly...
8696  500246 Bug fixes for giowin32
8697  523939 Example program for GValue
8698  550096 GBookmarkFile parser is not forward compatible
8699  550040 Move GString, rand and printf tests to the unit test framework
8700  550104 trivial documentation fix for g_get_home_dir
8701  548988 g_file_replace fails on Windows when the target file exists
8702  550059 Wrong docs for g_emblemed_icon_add_emblem
8703  548800 Missing a g_object_get_type function
8704  550056 Missing documentation for g_emblemed_icon_get_emblems
8705
8706 * Updated translations:
8707  Bulgarian (bg)
8708  Czech (cs)
8709  German (de)
8710  Estonian (et)
8711  Basque (eu)
8712  French (fr)
8713  Hebrew (he)
8714  Hungarian (hu)
8715  Italian (it)
8716  Japanese (ja)
8717  Lithuanian (lt)
8718  Maithili (mai)
8719  Dutch (nl)
8720  Swedish (sv)
8721  Thai (th)
8722  Ukrainian (uk)
8723  Vietnamese (vi)
8724
8725
8726 Overview of Changes from GLib 2.17.6 to GLib 2.17.7
8727 ===================================================
8728
8729 * More fixes for 64-bit Windows
8730
8731 * GIO
8732  - Add a vfs implementation for HTTP and HTTPS URIs on Windows
8733
8734 * Bugs fixed:
8735  546329 API docs for g_utf8_normalize() are incorrect
8736  546876 Modify GMarkup parser to accept &#x1; .. &#x1f;
8737  547200 g_utf8_find_next_char() issues
8738  547637 unconditional #include of sys/statfs.h in configure
8739  547337 G_DISABLE_DEPRECATED breaks tests build
8740  547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
8741  502498 Test framework assertion failures should follow gcc
8742  546371 Improve docs re g_file_monitor
8743  546483 GThemedIcon:use-default-fallbacks is not readable without...
8744  546132 GFileIcon is bindings-unfriendly
8745  542156 zfs mount in home directory shown on nautilus desktop 
8746  535124 umask 002 not being applied for new directories...
8747  547080 g_file_copy leaks expected errors
8748  546582 Callbacks from GFileMonitor present a GFile...
8749  547262 Missing link in the docs
8750
8751 * Updated translations:
8752  Arabic (ar)
8753  Catalan (ca)
8754  Spanish (es)
8755  Basque (eu)
8756  Finnish (fi)
8757  Galician (gl)
8758  Hebrew (he)
8759  Marathi (mr)
8760  Norwegian bokmål (nb)
8761  Portugese (pt)
8762  Brazilian Portugese (pt_BR)
8763  Swedish (sv)
8764  Thai (th)
8765
8766
8767 Overview of Changes from GLib 2.17.4 to GLib 2.17.6
8768 ===================================================
8769
8770 * Fix problems on 64-bit Windows
8771
8772 * g_markup_context_get_user_data: New function to access
8773   the user_data outside of callbacks
8774
8775 * GIO
8776  - g_mount_guess_content_type_sync: synchronous version of
8777    g_mount_guess_content_type
8778  - GEmblem: A GIcon implementation that adds emblem-related
8779    metadata to icons
8780  - GEmblemedIcon: A GIcon implementation that can add emblems
8781    to icons
8782
8783 * Bugs fixed:
8784  544088 option_test_LDADD is left in tests/Makefile.am
8785  544465 gmarkup makes it hard to use pre-rolled parsers
8786  545485 Implicit declaration of utime()
8787  545798 "Since: 2.18" mark is missing in g_set_error_literal...
8788  544140 fam-helper 64-bit issue
8789  529694 SELinux context setting support
8790  545157 wrong/no list of "open with" applications for .cc...
8791  545203 gfile.c: argument is different type
8792  545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
8793  544177 Fix trivial cut and paste error in documentation
8794  545395 Language tweak for g_value_set_string* docs
8795  541036 Gnumeric crashes when trying to open Desktop...
8796  546079 leak in xdgmime
8797  545395 Language tweak for g_value_set_string* docs
8798  546017 Don't copy attributes when copying a symlink
8799
8800 * Updated translations:
8801  Arabic (ar)
8802  Estonian (et)
8803  Galician (gl)
8804  Italian (it)
8805  Japanese (ja)
8806  Korean (ko)
8807  Norwegian bokmål (nb)
8808  Pashto (ps)
8809  Portugese (pt)
8810
8811
8812 Overview of Changes from GLib 2.17.3 to GLib 2.17.4
8813 ===================================================
8814
8815 * GIO:
8816  - New API to handle content types: g_mount_guess_content_type,
8817    g_content_type_guess_for_tree.
8818  - Export the eject-button signal on the volume monitor class
8819  - New API to enable out-of-process volume monitors: 
8820    g_volume_get_activation_root
8821
8822 * GObject:
8823  - New API to handle signals without slots in the class structure:
8824    g_signal_new_class_handler, g_signal_override_class_handler   
8825
8826 * Internationalization:
8827  - Add an NC_ macro that is a no-op equivalent of C_
8828
8829 * GMarkup:
8830  - Add two new functions g_markup_parse_context_push,
8831    g_markup_parse_context_pop to support "subparsers"
8832
8833 * Bugs fixed:
8834  541208 Functions to easily install and use signals without...
8835  541507 Ambiguous description of assigned characters in the...
8836  543040 async reading on dummy file will crash on GIO_USE_VFS=local
8837  543560 enable gio-FEN back-end warnings on Solaris will crash...
8838  528317 GRegex does not allow recursion limit
8839  337518 GMarkup: Subparser support
8840  541794 drive-eject-button signal
8841  541793 activation root for volumes
8842  467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
8843  428048 2 of 51 tests fail on Solaris
8844  542332 small fix for error message in GMarkup
8845  482413 get_contents_stdio -- overflow and memory corruption
8846  406120 g_ascii_strtod
8847  334234 "printf" format error
8848  536996 Missing noop i18n macro equivalent to C_
8849  540616 mem leak in filechooser button
8850  539229 gobject-query calls itself query
8851  521589 [RFC] gobject documentation should mention Vala
8852  543168 Description of G_SLICE=debug-blocks discourages its use
8853  543220 Case collision on gio-extension-points.html
8854  530759 update the gobject tutorial to the XXI century
8855  535223 gbookmark file inefficiency ...
8856  543504 crash in Epiphany Web Browser: Opening local file
8857
8858 * Updated translation:
8859  German (de)
8860  Estonian (et)
8861  Pashto (ps)
8862  Albanian (sq)
8863  Thai (th)
8864  Traditional Chinese (zh_HK)
8865  Traditional Chinese (zh_TW)
8866
8867
8868 Overview of Changes from GLib 2.17.1 to GLib 2.17.3
8869 ===================================================
8870
8871 * PCRE
8872  - fix for CVE-2008-2371 
8873
8874 * Bugs fixed:
8875  538119 glib's mainloop leaks a pipe to sub-processes
8876  537635 Corrections and improvements to g_time_val_{to,from}_iso8601
8877  539067 The document g_io_channel_win32_new_fd() says...
8878  535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
8879  539123 annotate g_d[n]gettext with G_GNUC_FORMAT
8880  539074 Cannot get exit status with g_spawn_command_line_sync
8881  316221 G_LOCK warns about breaking strict-aliasing rules
8882  539770 migrate gstrfunc unit tests to gtest
8883  539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
8884  538044 unconditional use of LC_MESSAGES
8885  540545 Monotonic time and timer offset
8886  535947 want g_set_error_literal
8887  539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF 
8888  536252 GFileEnumerator should allow access to the containing GFile
8889  538362 Get Win32 icons back in the file chooser
8890  540802 g_list_prepend doesn't concat lists
8891  540423 unrecoverable error after g_seekable_truncate
8892  538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
8893  539090 g_content_type_from_mime_type() should unalias
8894  540331 g_file_append_to () documentation: can return NULL
8895  534639 add g_desktop_app_info_new_from_keyfile
8896  536733 gio build failure on Irix
8897  536160 Add g_file_monitor()
8898  538127 FileChooser broken on win32
8899  531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
8900  538564 gio should have gio-types.h
8901  540047 glib-genmarshal.c: '#include <io.h>' is too before
8902
8903 Updated translations:
8904  Korean (ko)
8905  Occitan (oc)
8906
8907
8908 Overview of Changes from GLib 2.17.0 to GLib 2.17.1
8909 ===================================================
8910
8911 * New function: g_utime(), a gstdio wrapper for utime()
8912
8913 * New functions: g_dgettext() and g_dngettext(), wrappers
8914   for corresponding gettext functions with added functionaliy
8915
8916 * Support the latest version of the shared-mime spec, including
8917   icons for mime types 
8918
8919 * New function: g_themed_icon_prepend_name()
8920
8921 * Bugs fixed: 
8922  535418 Please document which glib version defines goffset
8923  528715 Misprint in the description of the interface g_type_class_add_private
8924  528714 Misprint in the description of the interface g_param_spec_flags
8925  537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
8926  530527 Misprint in the description of the interface 
8927         g_cclosure_marshal_VOID__FLAGS
8928  530526 Misprint in the description of the fields 'class_init' and 
8929         'class_finalize' of the structure GTypeInfo
8930  528719 Improvement to the documentation of the "g_object_connect" interface
8931  528172 gtk_signal_handlers_unblock_* functions return value
8932         amount of matched signals, not amount of actually unblocked
8933  528717 Misprint in the description of the parameter 'type_id' for 
8934         the interface g_type_register_fundamental
8935  528716 Misprint in the description of the parameter 'iface_data' for 
8936         the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc 
8937  537555 GObject instantiation not thread safe
8938  537546 'desktop' shortcut in file chooser looks like a generic folder
8939  537392 Additional colon in xattr name
8940  536641 Filesystem querying in gio does not list AFS and autofs file systems
8941  528600 g_dummy_file_get_parent("scheme://example.com/")
8942  503071 Application direction changes to right to left even if theres no 
8943         translation
8944  502511 g_assert_cmphex prints invalid message
8945  338162 Use po/LINGUAS
8946  314453 Nautilus crashes in Solaris when browsing the attached file
8947  529321 make check fails in glib/pcre
8948  455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD 
8949         fallback to $HOME/Desktop if xdg-user-dirs is not in use
8950  498732 g_key_file_to_data cannot fail
8951  511367 add g_file_make_directory_with_parents
8952  531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with 
8953         gcc 4.0 or newer
8954  536158 also bump GHashTable version when a node is removed via
8955         g_hash_table_iter_remove()/g_hash_table_iter_steal()
8956  531403 g_utf8_collate broken on Mac
8957  535628 test/patterntest.c still includes gpattern.h directly
8958  535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
8959
8960 * Translation updates:
8961  Arabic (ar)
8962  German (de)
8963  Italian (it)
8964  Norwegian bokmål (nb)
8965  Thai (th)
8966
8967
8968 Overview of Changes from GLib 2.16.x to GLib 2.17.0
8969 ===================================================
8970
8971 * Update to Unicode 5.1
8972
8973 * Update included libcharset to the one shipped with libiconv 0.12
8974
8975 * Update included PCRE to 7.7
8976
8977 * Enforce that only toplevel headers are directly included.
8978   This is turned on by default for GObject and GIO. To turn
8979   it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
8980
8981 * Fix library version of GIO.  GLib 2.16 shipped with libgio-2.0.so.0.0.0
8982
8983 * On Solaris, use FEN for file monitoring in GIO
8984
8985 * Use the GIO_EXTRA_MODULES environment variable to find
8986   additional GIO modules 
8987
8988 * G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
8989   function attribute
8990
8991 * g_checksum_reset: New function to reset the state of a GChecksum 
8992
8993 * g_unix_mount_monitor_set_rate_limit: New function to limit the 
8994   rate at which events are reported
8995
8996 * g_file_query_file_type: New utility function to query the type of
8997   a file
8998
8999 * g_memory_output_stream_get_data_size: New function to obtain the
9000   size of the written data.
9001
9002 * Bugs fixed:
9003  522292 Gives warnings in glib/gutils.h with GCC in C99 mode
9004  523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
9005  518160 replace two g_strdup_printf calls in GBookmarkFile
9006  523877 gbookmarkfile: avoid using g_string_append_printf() and
9007         other optimizations 
9008  525192 100% CPU if run main loop with no IO sources
9009  315437 extern inline -> static inline
9010  524314 g_convert() on Win32 implicitly converts full width
9011         alphanumerics into half width
9012  525732 Error in documentation for g_list_first
9013  525674 A typo in gmarkup.c
9014  448943 g_timeout_add_seconds() problems
9015  525972 UCS-4 not in the new win_iconv implementation
9016  526619 make test-report crash
9017  491554 Update to Unicode 5.1.0
9018  519137 g_slice_dup macro needs cast for 64-bit platform
9019  528752 Win32 build and SSL not working
9020  530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
9021  528667 Typos in testing module documentation
9022  459905 Bug in wcwidth data
9023  534085 g_unichar_iswide_cjk() has a totally wrong table
9024  501651 Update glib/libcharset
9025  519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
9026  534319 GLib's .pc files could use Libs.private
9027  534137 Typo in g_spawn_async_with_pipes doc
9028  517419 gio win32 directory monitor
9029  526796 Wrong order of arguments in g_file_copy's fallback
9030  530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
9031  532965 Should not return filesystem::free for certain file systems
9032  525553 fix typo and nitpicking in GArray documentation
9033  526572 Missing * in declaration of parent_class in Object
9034         Destruction section of GObject Reference Manual
9035  528648 Extra >s in Object Construction section
9036  535021 g_param_spec_internal documentation should
9037         describe purpose of nick and blurb
9038  521513 Firefox crash when using file picker
9039  528433 gdesktopappinfo snafu ...
9040  533369 API g_file_info_get_attribute_string () unables to get "...
9041  521045 glib f_fstypename miscellany
9042  521672 compile error
9043  521946 control rate limit on GUnixMountMonitor
9044  522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
9045  523015 Implement sliding window based upload operation
9046  523019 Use new GCC 4 feature
9047  523338 list nfs4 as a nfs mount type
9048  524350 Make glib build without NLS again
9049  524579 g_file_copy reports wrong total on progress callback for ...
9050  524742 A typo in gtestutils.c.
9051  524950 Minor documentation typos.
9052  525866 the user directory should not be considered as a mount to...
9053  526320 should not list mounts that the user doesn't have permiss...
9054  527132 nautilus crash when making ftp connection
9055  532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
9056  534759 Build failure in gio
9057  534764 Typo in error produced by g_file_make_directory
9058  521851 Redudant tests in gunixmounts.c
9059  524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
9060  525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
9061  534177 Invalid description of the interface g_cclosure_marshal_S...
9062  520715 Add GFile method g_file_query_file_type
9063  523039 nautilus can't access to trash/computer/network if gvfs i...
9064  
9065 * Updated translations:
9066  Arabic (ar)
9067  Bulgarian (bg)
9068  Catalan (ca) 
9069  Czech (cs)
9070  Greek (el)
9071  Candian English (en_CA)
9072  British English (en_GB)
9073  Spanish (es)
9074  Estonian (et)
9075  Basque (eu)
9076  Galician (gl)
9077  Hebrew (he)
9078  Hungarian (hu)
9079  Japanese (ja)
9080  Lithuanian (lt)
9081  Norwegian bokmål (nb)
9082  Dutch (nl)
9083  Occitan (oc)
9084  Portugese (pt)
9085  Russian (ru)
9086  Slovak (sk)
9087  Albanian (sq)
9088  Swedish (sv)
9089  Turkish (tr)
9090  Vietnamese (vi)
9091
9092
9093 Overview of Changes from GLib 2.16.0 to GLib 2.16.1
9094 ===================================================
9095
9096 * Fix a crash in g_themed_icon_new
9097
9098 * Update the included PCRE to 7.6
9099
9100
9101 Overview of Changes from GLib 2.15.6 to GLib 2.16.0
9102 ===================================================
9103
9104 * Fix the definition of G_INLINE_FUNC to work with gcc 4.3.0
9105
9106 * GIO:
9107  - Add missing GMountMountFlags argument to g_unix_volume_mount
9108  - Fix the adopt_orphan_mount vfunc to take a volume monitor 
9109    reference
9110  - Add properties to GThemedIcon for bindings sake
9111
9112 * Bugs fixed:
9113  520484 gvfsd-trash crashed with SIGSEGV in g_path_is_absolute()
9114  510855 g_checksum_update(): Take -1 for length.
9115  517676 g_themed_icon_new*() do more than call g_object_new().
9116  518816 should handle rmdir returning EEXIST correctly
9117  519352 g_[s]list_delete_link() docs
9118  519489 Fixes for sparse warnings in gio
9119  520169 add monitor argument to vfunc for GVolumeMonitor
9120  520700 Add type check in g_file_query_exists
9121  521145 FILE_READ_ONLY_VOLUME not present on Mingw32
9122  518720 No MIME type for empty files
9123  521013 in documentation, goffset doesn't say "Since 2.x"
9124  521028 Missleading error messages from g_io_channel_set_encoding()
9125  517484 GMainLoop could set the thread "Alertable" for APCs to be... 
9126
9127 * Updated translations:
9128  Assamese (as)
9129  Bengali India (bn_IN)
9130  Czech (cs)
9131  German (de)
9132  Spanish (es)
9133  Estonian (et)
9134  Finnish (fi)
9135  French (fr)
9136  Gujarati (gu)
9137  Italian (it)
9138  Lithuanian (lt)
9139  Malayalam (ml)
9140  Marathi (mr)
9141  Norwegian bokmål (nb)
9142  Romanian (ro)
9143  Russian (ru)
9144  Slovak (sk)
9145  Ukrainian (uk)
9146
9147  
9148 Overview of Changes from GLib 2.15.5 to GLib 2.15.6
9149 ===================================================
9150
9151 * GIO:
9152  - New file attributes: trash::item-count, filesystem::use-preview
9153  - Rename g_file_contains_file to g_file_has_prefix
9154  - g_file_query_filesystem_info grew async variants
9155  - g_themed_icon_append_name: new convenience function
9156  - g_content_type_get_icon is implemented now
9157  - Only show mounts in /media and ~
9158  - g_file_contains_file has been renamed to g_file_has_prefix
9159
9160 * Win32:
9161  - g_win32_get_package_installation_directory_of_module: new function
9162    which supersedes g_win32_get_package_installation_directory
9163  - Use alertable wait functions so that I/O completion routines or 
9164    user-mode Asynchronous Procedure Calls can be run
9165  - Fix race conditions in g_spawn implementation on win32
9166
9167 * Other:
9168  - g_uri_get_scheme has been renamed go g_uri_parse_scheme
9169
9170 * Updated translations:
9171  Arabic (ar)
9172  Belarusian Latin (be@latin)
9173  Catalan (ca) 
9174  British English (en_GB)
9175  Finnish (fi)
9176  Galician (gl)
9177  Hebrew (he)
9178  Italian (it)
9179  Kannada (kn)
9180  Norwegian bokmål (nb)
9181  Dutch (nl)
9182  Brazilian Portugese (pt_BR)
9183  Vietnamese (vi)
9184
9185
9186 Overview of Changes from GLib 2.15.4 to GLib 2.15.5
9187 ===================================================
9188
9189 * Update the included PCRE to 7.6
9190
9191 * GIO:
9192  - g_volume_should_automount: new function to determine if a volume
9193    should be mounted automatically
9194  - g_file_query_default_handler: new convenience function to get
9195    the default handler for a file
9196  - g_app_info_launch_default_for_uri new convenience function to
9197    launch the default handler for a URI
9198  - Use mimeapps.list and defaults.list as discussed on xdg list
9199    recently
9200  - g_app_info_get_default_for_uri_scheme has a real implementation
9201    now (gvfs provides a GConf-based implementation)
9202  - There is the beginning of a test suite
9203  - standard::description:  new file attribute
9204  - GMountMountFlags flags argument added to mount calls
9205
9206 * GObject:
9207  - class initialization is now threadsafe
9208
9209 * Updated translations:
9210   Arabic (ar)
9211   Catalan (ca)
9212   Spanish (es)
9213   Basque (eu)
9214   Italian (it)
9215   Japanese (ja)
9216   Kannada (kn)
9217   Korean (ko)
9218   Macedonian (mk)
9219   Occitan (oc)
9220   Portugese (pt)
9221   Brazilian Portugese (pt_BR)
9222   Swedish (sv)
9223   Thai (th)
9224
9225
9226 Overview of Changes from GLib 2.15.3 to GLib 2.15.4
9227 ===================================================
9228
9229 * G_GNUC_PRETTY_FUNCTION has been deprecated
9230
9231 * GIO:
9232  - g_file_copy has an async variant now
9233  - Drives and volumes now have API to get identifiers
9234    like Hal UDIs or UUIDs.
9235  - There is now a registration API to let modules register
9236    extensions they provide, such as volume monitor implementations
9237
9238 * Bugs fixed:
9239   511807 g_time_val_to_iso8601() uses MT-unsafe gmtime() function
9240   316260 [patch] Doc patches for gnode (2.8.1)
9241   385132 solaris gettext support fix
9242   484261 ./configure check for system PCRE unicode support fails w...
9243   510292 GOption main help not shown
9244   511580 Implement g_file_copy_async
9245   511654 Compile errors due to C99 constructs
9246   487909 g_utf8_strreverse and combining marks
9247   512381 unused variable 'is_main_group' 
9248
9249 * Updated translations:
9250   Arabic (ar)
9251   Belarusian (be)
9252   Czech (cz)
9253   Spanish (es)
9254   French (fr)
9255   Galician (gl)
9256   Portugese (pt)
9257   Russian (ru)
9258   Swedish (sv)
9259   Thai (th)
9260
9261
9262 Overview of Changes from GLib 2.15.2 to GLib 2.15.3
9263 ===================================================
9264
9265 * GChecksum:
9266  - g_checksum_update can accept nul-terminated strings
9267  - The MD5 implementation works correctly on buffers 
9268    that are longer than 64 bytes
9269
9270 * GIO:
9271  - Don't include a copy of the inotify headers, rely on system headers
9272  - g_file_find_enclosing_mount has an async variant now
9273  - Reduntant seek API on file streams has been removed
9274
9275 * Bugs fixed:
9276   508602 gmemory{in|out}putstream.c: unknown pointer size
9277   508771 There is no g_file_test/exists() for GFile
9278   508773 g_uri_escape_string() documentation unclear.
9279   509465 AM_PATH_GLIB_2_0 doesn't support gio
9280   509626 async functions: Document allowed NULL callback?
9281   509990 GSeekable documentation unclear
9282   510448 No inotify support on ARM or SH5
9283   510855 g_checksum_update(): Take -1 for length. 
9284
9285 * Updated translations:
9286   Basque (eu)
9287   Marathi (mr)
9288   Swedish (sv)
9289   Ukrainian (uk)
9290
9291
9292 Overview of Changes from GLib 2.15.1 to GLib 2.15.2
9293 ===================================================
9294
9295 * GIO:
9296  - Mount operation API change: unhandled methods get reported via 
9297    the reply, rather than by the signal emission return value
9298  - File monitor API change: Add a GError argument to g_file_monitor_file
9299  - g_unix_mount_guess_should_display(): new function
9300
9301 * Bugs fixed:
9302   508224 [PATCH] FAM backend crashes due to double free
9303   508074 GAsyncResult documentation suggests g_freeing it.
9304   508108 GFile documentation slightly unclear.
9305   508309 rpc_pipefs mount points should be hidden
9306   508378 GFileInfo documentation implies that it changes attribute...
9307   508719 g_file_get_relative_path fails if parent is root
9308   508773 g_uri_escape_string() documentation unclear.
9309
9310 * Updated translations:
9311   Arabic (ar)
9312   Spanish (es)
9313   Hebrew (he)
9314   Italian (it)
9315   Korean (ko)
9316   Turkish (tr)
9317
9318
9319 Overview of Changes from GLib 2.15.0 to GLib 2.15.1
9320 ===================================================
9321
9322  * Portability fixes:
9323  - Assertion functions are marked as noreturn again
9324  - Handling of inline functions has been fixed to work with gcc 4.3
9325  - C99 comments have been removed from headers
9326  - The nonportable sed -i option is no longer used
9327
9328  * GIO:
9329   - Clarified the semantics of g_app_info_get_all()
9330   - API for memory input and output streams has been changed a bit
9331   - GDirectoryMonitor has been removed; GFileMonitor can monitor
9332     files and directories now
9333
9334  * Bugs fixed:
9335    504829 Invalid environment passed to g_spawn_async in g_desktop_...
9336    505258 crash in Users and Groups: Adding a user
9337    505815 g_content_types_get_registered should not g_free keys
9338    491218 g_timer_new() doesn't initialize timer->end
9339    315437 extern inline -> static inline
9340    476856 Inconsistency between standard and implementation of the ...
9341    480122 g_module_open fails to open modules with ".la" extension
9342    495589 gspawn.c failing to set FD_CLOEXEC
9343    500273 doesn't build with --disable-visibility
9344    504142 Do not show empty groups in --help output
9345    504879 giofam incorrectly linked
9346    505042 add file attribute for actually used file size in bytes
9347    505058 xattr namespace docs
9348    505674 Misprint in the definition of the macro G_CCLOSURE_SWAP_DATA
9349    505730 Fails to build on OSX 10.4: _NSGetEnviron not declared
9350    505887 older darwin lacks lchown
9351    506374 gmemoryinputstream api
9352    506461 Conversion of g_assert_not_reached() and friends into fun...
9353    503051 Small bug in glib interface
9354    506395 Updates to GIO documentation
9355    507628 Missing .pc entry for gio linking against glib
9356    505195 [patch] typo in g_try_new0 docs 
9357    507822 g{file,directory}monitor changes signal problem
9358    506377 gmemoryoutputstream write implementation
9359    507835 bug in gunixinputstream 
9360
9361  * Updated translations:
9362    Arabic (ar)
9363    Belarusian Latin (be@latin)
9364    Spanish (es)
9365    Basque (eu)
9366    Irish (ga)
9367    Hebrew (he)
9368    Occitan (oc)
9369    Vietnamese (vi)
9370
9371
9372 Overview of Changes from GLib 2.14.x to GLib 2.15.0
9373 ===================================================
9374
9375 Major new features:
9376
9377  * GIO: a VFS API, designed to replace GnomeVFS. The GIO implementation 
9378    in GLib has support for local filesystems. The new, separate gvfs 
9379    module contains various backend implementations (cifs, ftp, sftp,
9380    http, ...)
9381
9382  * GChecksum: provides various hash algorithms, such as MD5, SHA-1
9383    and SHA-256
9384  
9385  * GTest: a test framework 
9386  
9387 Smaller additions:
9388
9389  * GHash:
9390  - GHash has iterators, as an alternative to g_hash_table_foreach
9391
9392  * GMarkup: 
9393  - g_markup_parse_context_get_element_stack: New function to
9394    get the stack of open elements
9395  - G_MARKUP_PREFIX_ERROR_POSITION: New flag to improve error
9396    reporting
9397  - g_markup_collect_attributes: Convenience function for handling
9398    attributes
9399
9400 * GKeyFile: 
9401  - Functions that take a GError now return a boolean to indicate 
9402    success, instead of void
9403  - Various performance improvements
9404
9405 * GAsyncQueue:
9406  - g_async_queue_new_full: new function that allows to specify
9407    a free function for leftover elements
9408  
9409 * GError:
9410  - g_prefix_error and g_propagate_prefixed_error: New functions
9411    to ease error propagation
9412
9413 * Internationalization:
9414  - C_: A new 2-argument variant of the Q_() macro 
9415  - Use native character set conversion API on Windows
9416
9417 * GLib builds with automake 1.10
9418
9419 * Bugs fixed:
9420  455725 specific combination of g_utf8_strlen and g_pattern_match...
9421  467537 g_convert_with_iconv() not resetting iconv() state correc...
9422  497033 Commandline option parser should warn about missing optio...
9423  504527 gchecksum: Conditional jump or move depends on uninitiali...
9424  445362 Non-numeric local labels in gatomic.c are causing linker ...
9425  482313 gregex: no way to tell why compilation failed
9426  317775 main loops continues to run after g_main_loop_quit() has ...
9427  418778 Insufficient pkg-config version requirement
9428  436293 g_option_context_new() doc should mention that the string...
9429  466557 glib-mkenums shifts ARGV[0] to undefined
9430  468882 GKeyFile doesn't accept "True" as a true boolean value
9431  469551 application --help messages are garbaged on none UTF-8 lo...
9432  479724 Memory leak upon calling "g_main_loop_run" in the seconda...
9433  490061 outptrs uninitialized after g_parse_long_long
9434  490637 gobject documentation patch
9435  495294 glib-genmarshal prints warnings but returns 0
9436  496046 option to prefix location of errors for GMarkup
9437  498113 tests/regex-test fails on 64bit environment
9438  500506 Fails to build on OSX 10.4
9439  500638 gkeyfile speedup ...
9440  500875 Make check fails as there is no "test" target for "build"...
9441  502511 g_assert_cmphex prints invalid message
9442  502927 g_array_index triggers cast aligment warning
9443  503029 g_time_val_from_iso8601 parse non-ISO8601 dates
9444  503222 Need context to translate
9445  503420 gkeyfile leaks a hash table
9446  503470 Fix build when builddir != srcdir
9447  504227 Inverse variant for g_test_trap_assert_stdout, g_test_tra...
9448  71704  file include order
9449  491957 Misprint in the specification of the interface "g_main_co...
9450  491959 Misprint in description of the structure "GThreadPool"
9451  491965 Mistype in the specification of the function "g_hook_list...
9452  491966 Misprint in the specification of the interface "g_main_co...
9453  491968 The documentation does not mention the restriction for th...
9454  491970 The documentation for the interface "g_date_clamp" is inc...
9455  491974 The documentation of the interface "g_main_context_iterat...
9456  491975 The documentation for the interfaces "g_io_channel_read_u...
9457  491979 Misprint in the description of the interfaces g_key_file_...
9458  491982 Misprint in the description of the interface "g_key_file_...
9459  501107 EXTRA_DIST automake warnings
9460  501997 g_utf8_normalize() returns NULL on invalid string
9461  502590 C_/g_dpgettext efficiency
9462  464259 g_set_application_name() docs should say "Since 2.2"
9463  496518 gbase64.c API doc clarification
9464  498728 g_key_file_get_*_list should set length to 0 when returni...
9465  500361 Improve docs for g_array_free() and g_ptr_array_free()
9466  501853 g_checksum_get_digest docs
9467  503862 Allow NULL strings in g_parse_debug_string()
9468  142676 Q_
9469  367550 Add g_async_queue_new_full() with GDestroyNotify function
9470  375651 Minor enhancements to GKeyFile API
9471  443648 MD5 digest support
9472  449937 Upgrade auto* sources to be clean under automake1.9
9473  452887 gmarkup context "get element" function is useless when ca...
9474  491549 [PATCH] Eliminate libiconv dependency on Windows
9475  500507 GHashTableIter API 
9476
9477 * Translation updates
9478  Belarusian Latin (be@latin)
9479  Czech (cs)
9480  German (de)
9481  Spanish (es)
9482  Esperanto (et)
9483  French (fr)
9484  Korean (ko)
9485  Marathi (mr)
9486  Norwegian bokmål (nb)
9487  Brazilian Portugese (pt_BR)
9488  Slovenian (sl)
9489  Swedish (sv)
9490
9491
9492 Overview of Changes from GLib 2.14.2 to GLib 2.14.3
9493 ===================================================
9494
9495 * Update PCRE to 7.4
9496
9497 * Bugs fixed:
9498  487491 Fix some warnings from sparse
9499  488068 Small (one-time) memory leak in glib_gettext initialization
9500  493688 TYPE macro "_get_type ()" is documented wrong
9501
9502 * Updated translations:
9503  Arabic (ar)
9504  Belarusian Latin (be@latin)
9505  Estonian (et)
9506  Irish (ga)
9507  Slovenian (sl)
9508
9509  
9510 Overview of Changes from GLib 2.14.1 to GLib 2.14.2
9511 ===================================================
9512
9513 * Bugs fixed:
9514  476849 Invocation of the interface "g_hook_free" fails in certai...
9515  359165 marshallers can throw warnings with -Wunused
9516  477957 more discussion on g_value_set_object vs. g_value_take_ob...
9517  478459 G_DEFINE_DYNAMIC_TYPE_EXTENDED doesn't work with G_IMPLEM...
9518  483337 inline is disabled for MSVC when compiling C code
9519  478349 Broken link to gettext website
9520  469231 g_spawn optimization for setting all open fds to CLOEXEC 
9521
9522 * Updated translations:
9523 Arabic (ar)
9524 Galician (gl)
9525 Hebrew (he)
9526 Korean (ko)
9527
9528
9529 Overview of Changes from GLib 2.14.0 to GLib 2.14.1
9530 ===================================================
9531
9532 * Bugs fixed:
9533  476840 Invocation of the interface "g_utf8_strreverse" crashes f...
9534  444765 Fix FIXME in gregex.c when new pcre is out
9535  464145 g_markup_escape_text Produces Invalid XML
9536  465625 g_type_default_interface_ref() does not ensure working g_...
9537  466768 Clearify that comments can be put anywhere in a Key-file.
9538  474229 The GError documentation should give convention for the G...
9539  474899 G_BREAKPOINT() docs inaccurate
9540  475854 Overuse of -lpcre when using system pcre
9541  473879 Incorrect includes in gregex.c
9542  468694 Typoes in documentation
9543  469051 g_snprintf () talks about characters where it probably me...
9544  457601 Missing arch specific atomic implementation
9545  475923 Missing pcre flags when static-linking against glib
9546  475619 glibthread-2.0.la does not list -lpthread
9547
9548 * Updated translations:
9549  Bulgarian (bg)
9550  Catalan (ca)
9551  Danish (da)
9552  German (de)
9553  Canadian English (en_CA)
9554  British English (en_GB)
9555  Spanish (es)
9556  Estonian (et)
9557  Finnish (fi)
9558  French (fr)
9559  Gujarati (gu)
9560  Hungarian (hu)
9561  Italian (it)
9562  Georgian (ka)
9563  Kannada (kn)
9564  Lithuanian (lt)
9565  Makedonian (mk)
9566  Norwegian (nb)
9567  Dutch (nl)
9568  Polish (pl)
9569  Portugese (pt)
9570  Brazilian Portugese (pt_BR)
9571  Romanian (ro)
9572  Russian (ru)
9573  Albanian (sq)
9574  Serbian (sr, sr@Latn)
9575  Swedish (sv)
9576  Tamil (ta)
9577  Thai (th)
9578  Ukrainian (uk)
9579  Vietnamese (vi)
9580
9581
9582 Overview of Changes from GLib 2.13.7 to GLib 2.14.0
9583 ===================================================
9584
9585 * Last-minute API additions:
9586  - Make g_unichar_combining_class public
9587  - Add goffset type, add G_MAXSSIZE and G_MINSSIZE
9588
9589 * Update PCRE to 7.2
9590
9591 * Bugs fixed:
9592  453998 Make _g_unichar_combining_class() public
9593  462549 gregex.c: variable is declared at middle of block
9594  417068 g_file_test doc inconsistency
9595
9596 * Updated translations:
9597  Assamese (as)
9598  Basque (eu)
9599  Kannada (kn)
9600  Malayalam (ml)
9601  Dutch (nl)
9602  Polish (pl)
9603  Brazilian Portugese (pt_BR)
9604  Turkish (tr)
9605
9606
9607 Overview of Changes from GLib 2.13.6 to GLib 2.13.7
9608 ===================================================
9609
9610 * The memory corruption warning from the slice allocator that
9611   occurred when threads were initialized after the slice allocator
9612   has been removed, as the slice allocator now works fine
9613   in this scenario.
9614
9615 * New functions g_once_init_enter() and g_once_init_leave() make
9616   it easier to write threadsafe one-time initialization functions 
9617  
9618 * Bugs fixed:
9619  454473 Simple XML Subset Parser terminates on invalid XML
9620  445813 g_module_open error, add file name
9621  453796 errno gets clobbered by g_filename_display_name
9622  341988 don't use "-c" with msgfmt in Makefile.in.in
9623  447048 Please produce slightly more output during long tests
9624  454785 GModule documentation lists same block of code twice.
9625  454786 GModule documentation lists same paragraph twice.
9626  383155 small docs quirks in gobject/closure API documentation
9627  65041  _get_type() functions aren't thread safe
9628
9629 * Updated translations
9630  Assamese (as)
9631  Spanish (es)
9632  Gujarati (gu)
9633  Japanese (ja)
9634  Korean (ko)
9635  Macedonian (mk)
9636
9637
9638 Overview of Changes from GLib 2.13.5 to GLib 2.13.6
9639 ===================================================
9640
9641 * Reintroduce a GType typedef whose removal in 2.13.5
9642   caused trouble for C++ bindings
9643
9644 * Bugs fixed:
9645  450216 docs not explicit enough about g_free()
9646  451459 g_type_register_static_simple calls g_type_register_static
9647
9648 * Updated translations
9649  Norwegian bokmål (nb)
9650  Sinhala (si)
9651
9652
9653 Overview of Changes from GLib 2.13.4 to GLib 2.13.5
9654 ===================================================
9655
9656 * xdg-user-dirs support: 
9657  - the Desktop directory is guaranteed to be defined
9658  - user-dirs.dirs is no longer reloaded on changes
9659
9660 * Slice allocator: 
9661  - new api to duplicate slices
9662
9663 * Regular expression support:
9664  - GRegex is a boxed type now
9665
9666 * Bugs fixed:
9667  44793 make check failing in trunk
9668  354522 Small problem with PLT hiding 6 symbols
9669  363986 glib 2.12.4 does not compile with SGI IDO cc
9670  443869 g_type_class_add_private doesn't warn when adding 0-sized...
9671  446859 Legitimately return 0 for g_quark_from_string(NULL)
9672  447534 Small typo in g_timeout_add_seconds() doc
9673  447583 GStaticRWLock
9674  447935 g_get_current_dir SIGSEGV on long path
9675  448260 CLAMP has surprising result if low > high
9676  57693  g_string_vprintf()
9677  442029 add g_slice_dup()
9678  445065 Add GRegex boxed type
9679  448819 Add full version of g_timeout_add_seconds()
9680
9681 * Updated translations: 
9682  Swedish (sv)
9683  Oriya (or)
9684  Hebrew (he)
9685  Spanish (es)
9686  Estonian (et)
9687
9688  
9689 Overview of Changes from GLib 2.13.3 to GLib 2.13.4
9690 ===================================================
9691
9692 * Bugs fixed:
9693  444121 g_get_user_special_dir deadlocks
9694  444161 invalid UTF8 in key name shows up as valgrind error in g_...
9695  444130 g_option_context_get_help() is broken when there's a desc...
9696
9697
9698 Overview of Changes from GLib 2.13.2 to GLib 2.13.3
9699 ===================================================
9700
9701 * GKeyFile:
9702  - Added defines for easier handling of desktop files
9703
9704 * Unicode support:
9705  - Update g_unichar_iswide_cjk for Unicode 5.0
9706
9707 * Regular expression support:
9708  - GRegex structs can now be ref-counted
9709  - Some new functions for dealing with incremental 
9710    replacement have been added
9711  - The GRegexEvalCallback signature has been changed
9712
9713 * g_get_user_special_dir() has been added to support
9714   xdg-user-dirs
9715
9716 * Bugs fixed:
9717  419376 Functions using named subpatterns behave inconsistently w...
9718  434358 g_regex_fetch_named() and g_regex_fetch_named_pos() are b...
9719  423708 typo in the README.win32 file see patch below
9720  339225 Add new defines for easier handling of .desktop files 
9721  442265 API additions/changes for GRegex
9722  432651 Add a glib-ish xdg_user_dir_lookup
9723
9724 * Updated translations:
9725  Estonian (et)
9726  Norwegian bokmål (nb)
9727
9728
9729 Overview of Changes from GLib 2.13.1 to GLib 2.13.2
9730 ===================================================
9731
9732 * Unicode support:
9733  - Add g_unichar_ismark()
9734
9735 * GOption:
9736  - Allow to use callbacks for remaining args
9737
9738 * Updated translations:
9739   Belarusian Latin (be@latin)
9740   British English (en_GB)
9741   Galician (gl)
9742   Norwegian bokmål (nb)
9743   Oriya (or)
9744   Spanish (es)
9745   Thai (th)
9746
9747
9748 Overview of Changes from GLib 2.13.0 to GLib 2.13.1
9749 ===================================================
9750
9751 * GRegex:
9752  - Portability fixes
9753  - Split into immutable GRegex and GMatchInfo
9754  - Add g_regex_get_max_backref() and g_regex_get_capture_count()
9755    to obtain information about the compiled regex
9756
9757 * GKeyFile:
9758  - Fix roundtrip problems
9759  - Add g_key_file_load_from_dirs()
9760
9761 * Unicode support:
9762  - Fix corner cases in case conversion routines
9763
9764 * GOption:
9765   - Add a function to get the formatted help string
9766
9767 * GHash:
9768  - Add new functions g_hash_table_get_keys() and
9769    g_hash_table_get_values() to retrieve the keys and
9770    values in list form
9771
9772 * Updated transations:
9773   Simplified Chinese (zh_CN)
9774   Arabic (ar)
9775
9776
9777 Overview of Changes from GLib 2.12 to GLib 2.13.0
9778 =================================================
9779
9780 * Add GSequence, a list that is implemented using
9781   a balanced binary tree.
9782
9783 * Add GRegex, an implementation of Perl regular expressions,
9784   based on PCRE.
9785  
9786 * Use Posix monotonic clocks instead of gettimeofday()
9787   for GTimer when available.
9788
9789 * Support static initialization of GQeues with G_QUEUE_INIT,
9790   g_queue_init() and g_queue_clear().
9791
9792 * Add g_string_chunk_clear() for clearing a 
9793   GStringChunk.
9794
9795 * Add g_unichar_get_script() to obtain Unicode
9796   script information.
9797
9798 * Add g_unichar_iszerowidth() to obtain information
9799   about zero-width characters.
9800
9801 * Add G_GNUC_MAY_ALIAS which wraps the gcc may_alias 
9802   type attribute.
9803
9804 * G_GNUC_INTERNAL has a working definition for the
9805   Sun Studio compiler. This requires the macro to
9806   be positioned before the function declaration.
9807
9808 * The slice allocator can produce detailed debugging
9809   information with G_SLICE=debug-blocks.
9810
9811 * Modules support G_DEBUG flags resident-modules and
9812   bind-now-modules.
9813
9814 * Add G_DEFINE_DYNAMIC_TYPE() to make it easier
9815   to define types in modules.
9816
9817 * Bug fixes: too many to list them in detail here.
9818
9819 * New and updated translations (be,bg,bn,ca,cs,de,
9820   en_CA,en_GB,et,fa,fr,he,hu,it,ja,ku,lt,mg,mk,ml,
9821   nb,ne,nn,pt,pt_BR,ro,sr,sr@Latn,sv,ta,uk,vi,zh_CN,
9822   zh_HK,zh_TW)
9823
9824
9825 Overview of Changes from GLib 2.12.1 to GLib 2.12.2
9826 ===================================================
9827
9828 * Unicode updates:
9829  - Normalization is following Unicode TR #29
9830  - g_unichar_isxdigit() only accept characters
9831    for which g_unichar_xdigit_value() returns a value
9832  - g_unichar_toupper and g_unichar_tolower leave
9833    unconvertable characters in place instead of
9834    replacing them by NUL
9835
9836 * Bugs fixed
9837  348491 g_utf8_strup() and g_utf8_strdown() returns 
9838         string with NUL bytes
9839  349825 GKeyFile always inserts a newline before a group
9840  347842 g_unichar_isxdigit() is too general about what 
9841         it considers a digit
9842  348694 g_utf8_normalize() hasn't been updated to PR #29
9843  348785 Hint about G_DEBUG in Message Logging docs
9844  349792 Wrong english string (UI)
9845  349952 gparamspecs.c uses gcc feature
9846
9847 * Translation updates (ca,cs,de,dz,es,eu,fi,gu,ko,
9848   nl,pl,tr,uk,zh_HK,zh_TW)
9849
9850
9851 Overview of Changes from GLib 2.12.0 to GLib 2.12.1
9852 ===================================================
9853
9854 * Update to final Unicode Character Database 5.0.0
9855
9856 * Bugs fixed:
9857  346660 issues with base64 api documentation / g_base64_decode_cl...
9858  348136 Coverity reports allocation of wrong size CID #2839
9859  336281 Update to UCD 5.0
9860  346197 g_date_strftime %F option doesnt work for win32
9861  348011 Small optimization to real_toupper()
9862  246494 prototype mismatch in glib/gconvert.c
9863
9864 * New and updated translations (bg,bn_IN,ca,dz,eu,fi,
9865   fr,he,it,ja,mk,or,pt)
9866
9867
9868 Overview of Changes from GLib 2.11.4 to GLib 2.12
9869 =================================================
9870
9871 * Bugs fixed:
9872  344905 leap-year bug in g_time_val_from_iso8601 w/o HAVE_TIMEGM
9873
9874 * Updated translations (cy,nb,nl)
9875
9876
9877 Overview of Changes from GLib 2.11.3 to GLib 2.11.4
9878 ===================================================
9879
9880 * GBookmarkFile:
9881  - g_bookmark_file_remove_item returns a boolean
9882  
9883 * g_mkstemp accepts the XXXXXX in the middle of
9884   the template
9885  
9886 * Bugs fixed:
9887  344868 g_key_file_to_data should separate groups 
9888
9889 * Updated translations (de,es,fr,gu,hi,ko,th)
9890
9891
9892 Overview of Changes from GLib 2.11.2 to GLib 2.11.3
9893 ===================================================
9894
9895 * GBookmarkFile:
9896   - g_bookmark_file_move_item: Return TRUE in case of
9897     an empty target
9898
9899 * Bugs fixed: 
9900  343919 gunicollate.c: strxfrm bug on VC8
9901
9902 * Updated translations (fi)
9903
9904 Overview of Changes from GLib 2.11.1 to GLib 2.11.2
9905 ===================================================
9906
9907 * Add g_ascii_stroll to parse signed 64bit integers
9908
9909 * GMarkup: add a flag to treat CDATA as text
9910
9911 * GHashTable: add functions to remove all entries
9912
9913 * GMainLoop: add functions to find the currently
9914   running source, and determine if it is destroyed
9915
9916 * Bug fixes:
9917  342563  g_atomic_thread_init() needs to be called before 
9918          other _g_*_thread_init() functions
9919  343548  Potential use after free in callers of g_string_free() 
9920  168538  Wish: Clearing contents of GHashTables
9921  321886  GTK+ cannot be reliably used in multi-threaded 
9922          applications
9923  341826  goption.c: 'strtoll' is C99's function
9924  343899  g_ascii_formatd dosn't work as expected for all 
9925          format strings
9926  317793  Make GEnumValue strings const
9927  337129  Compile warnings in G_IMPLEMENT_INTERFACE
9928  303622  What is G_TYPE_CHAR?
9929
9930 * Updated translations (bg,dz,eu,gl,ja,ko,nl,th,vi)
9931  
9932
9933 Overview of Changes from GLib 2.11.0 to GLib 2.11.1
9934 ===================================================
9935
9936 * GOption  
9937   - Support 64-bit integers 
9938   - Allow optional text before and after the options
9939     in help output
9940
9941 * Bug fixes:
9942  340538 gbase64-test writes OOB 
9943  340816 GKeyFile set_string_list invalid memory reads 
9944  339105 g_key_file_parse_value_as_double
9945  340434 convert-test.c fails (function test_one_half)
9946  311043 Memory leaks (and potential infinite loops) 
9947         when using G_ERRORCHECK_MUTEXES
9948  335198 Error checking mutexes are fubar  
9949  341237 Add a G_OPTION_ARG_INT64
9950  341192 g_io_channel_set_flags not implemented on win32
9951  336120 Allow adding description before/after GOption 
9952         --help output body
9953  341191 misplaced check in g_relation_delete
9954  340530 mismatched calloc / g_free in win32 threads
9955
9956 * Updated translation (es)
9957
9958 Overview of Changes from GLib 2.10.x to GLib 2.11.0
9959 ===================================================
9960
9961 * GBookmarkFile: a parser for files containing bookmarks
9962   stored using the Desktop Bookmark specification.
9963
9964 * Base64 encoding support
9965         
9966 * Unicode 5.0 support
9967
9968 * GOption supports floating point numbers 
9969
9970 * GKeyFile supports floating point numbers
9971
9972 * Bug fixes:
9973  155884 gatomic.c should be based on new SDK
9974  157877 update-desktop-database doesn't handle duplicate entries
9975  164719 keyfile parser doesn't support floats
9976  327662 Import BookmarkFile from libegg
9977  329548 Add G_OPTION_ARG_DOUBLE
9978  329789 option-test.c type confusion
9979  332841 Segmentation Fault when %llu is passed to vasnprintf and 
9980         HAVE_SNPRINTF is not defined
9981  333879 gthread/gthread-win32.c: IsDebuggerPresent needs '#define 
9982         _WIN32_WINDOWS 0x0401'
9983  333916 g_timer_elapsed docs should mention that microseconds 
9984         may be NULL
9985  334440 dlerror() portability issue causes crash on (old) a.out 
9986         NetBSD platform
9987  334646 goption + error out params
9988  334799 g_remove() must check return value of remove()
9989  334943 make check FAIL: threadpool-test
9990  335215 Some breakages with GThreadPool
9991  336085 g_option_context_new parameter lacks better explanation
9992  336677 Documentation for g_object_ref_sink() is incorrect
9993  337027 gbookmarkfile.c: sys/time.h include error
9994  337553 Wrong escaping of URIs
9995  338572 Dereferencing NULL value in g_key_file_get_group_comment
9996  338845 g_completion_complete_utf8 crashes when NULL is passed to it
9997  339337 g_bookmark_file_set_description
9998  339338 gbookmarkfile.c, function expand_exec_line
9999  339340 gbookmarkfile.c, function bookmark_app_info_dump
10000
10001 * Translation updates (bg,en_GB,et,gl,gu,he,hi,ka,nb,nl,nn,
10002                        or,pt_BR,ro,tr,vi,zh_CN)
10003
10004
10005 Overview of Changes from GLib 2.10.0 to GLib 2.10.1
10006 ===================================================
10007
10008 * Bugs fixed:
10009  314794 Broken pthread detection on Darwin [Gregor Riepl]
10010  322476 Missing check for .dylib [Vladimir Panov]
10011  333651 Inconsistent _g_charset_get_aliases prototype [Julio 
10012         M. Merino Vidal]
10013  333761 GInitiallyUnowned breaks application code [Sven Herzberg]
10014
10015 * Win32 changes:
10016  - Fix g_listenv() implementation.
10017  - Allow up to 100 GPrivate structs
10018
10019 * Translation updates (fr,hu,lt,pl,sv)
10020
10021
10022 Overview of Changes from GLib 2.9.6 to GLib 2.10.0
10023 ==================================================
10024
10025 * Bugs fixed:
10026  328997 64bit pointer trunction in glib slab-allocator
10027         [Pascal Hofstee]
10028  331110 g_cond_broadcast(inform_cond) without holding 
10029         inform_mutex [Chris Wilson, Sebastian Wilhelmi]
10030  332093 Fix some leaks in the tests [Kjartan Maraas]
10031  332435 g_utf8_strlen returns wrong value if a maximum 
10032         number of bytes to check is specified 
10033         [Matthias Clasen]
10034  331367 gslice requires more POSIX-like semantics for 
10035         GPrivate destructors [Tor Lillqvist]
10036
10037 * Documentation improvements [Matthias, Kang Jeong-Hee,
10038   Tor Lillqvist, Stefan Kost]
10039
10040 * Translation updates (el,eu,ka,uk)
10041
10042 Overview of Changes from GLib 2.9.5 to GLib 2.9.6
10043 =================================================
10044
10045 * Bugs fixed: 
10046  329124 distclean removes README [Kjartan Maraas, Tim Janik]
10047  317679 GRelation field type not documented [Behdad Esfahbod]
10048  329123 Typo in GTime docs [Kjartan Maraas]
10049
10050 * Documentation improvements [Sven Herzberg, David
10051   Schleef, Kjartan Maraas, Behdad Esfahbod]
10052
10053 * Translation updates (cs,cy,it,ko,pt,sq,sr,sr@Latn,ru
10054
10055 Overview of Changes from GLib 2.9.4 to GLib 2.9.5
10056 =================================================
10057
10058 * Memory management: 
10059   Runtime debugging support: The slice allocator
10060   can be turned off by setting G_SLICE=always-malloc
10061   in the environment. Zeroing of freed memory can
10062   now be turned on at runtime by setting
10063   G_DEBUG=gc-friendly in the environment. [Tim Janik]
10064
10065 * Bugs fixed:
10066  328253 HP-UX/IA-64 uses ".so" as default shared library 
10067         extension [Albert Chin]
10068  143380 unicode-encoding test fails converting to UTF-16 
10069         with libiconv [Marc Moorcroft]
10070  328254 Build breakage (GSlice) [Jens Ganseuer]
10071  328705 C99ism in glib/gmem.c [Kazuki Iwamoto]
10072
10073 * Translation updates (da,et,zh_CN)
10074
10075 Overview of Changes from GLib 2.9.3 to GLib 2.9.4
10076 =================================================
10077
10078 * Type system:
10079   Fix a problem with g_object_compat_control() which 
10080   can lead to segfaults in GTK+ applications on 64bit 
10081   platforms. 
10082
10083 * Thread suppport: 
10084   Unused threads now fall back to the global pool after 
10085   500 milliseconds, where they wait for another 
10086   max-idle-time milliseconds. [Sebastian Wilhelmi]
10087
10088 * Fix a memory allocation problem in GKeyFile. [Morten 
10089   Welinder]
10090
10091
10092 Overview of Changes from GLib 2.9.2 to GLib 2.9.3
10093 =================================================
10094
10095 * GTree:
10096  - Replace the simple recursive implementation by
10097    a nonrecursive, threaded one  [Maurizio Monge]
10098
10099 * Change g_filename_display_name and
10100   g_filename_display_basename to use the Unicode
10101   replacement character U+FFFD instead of a question
10102   mark, and don't append "(invalid encoding)"  [Matthias]
10103
10104 * Documentation improvements [Sven Herzberg, Federico
10105   Mena Quintero, Stefan Kost]
10106
10107 * Bugs fixed:
10108  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X 
10109         [Bogdan Nicula]
10110  326558 Some test failures on IRIX 6.5 [Daichi Kawahata]
10111  169285 "threaded" tree implementation for GTree 
10112         [Maurizio Monge]
10113  326747 g_filename_display_basename adds (invalid encoding) 
10114         [Alberto Ruiz]
10115
10116 Other contributors: Christian Kellner, Murray Cumming
10117
10118 New and updated translations (bg,ca,de,es,et,gu,ja,nl,th,vi)
10119
10120
10121 Overview of Changes from GLib 2.9.1 to GLib 2.9.2
10122 =================================================
10123
10124 * Memory management:
10125  - Add tests for cache colorization [Tim Janik]
10126  - Minimize space consumption if small amounts of differently
10127    sized slices are allocated, at a small performance cost.  [Tim]
10128
10129 * Thread support:
10130  - Add g_atomic_pointer_set() and g_atomic_int_set() [Tim Janik,
10131    Sebastian Wilhelmi]
10132  - Add g_thread_pool_set_sort_function() to allow sorting the 
10133    tasks of a threadpool.  [Martyn Russell]
10134  - Add g_thread_pool_set_idle_time() to allow unused threads
10135    to exit after a certain time.  [Martyn]
10136
10137 * Type system:
10138  - introduce a new type GInitiallyUnowned, which has an initial
10139    floating reference. [Tim]
10140  - Add support for GType parameters. [Matthias]
10141
10142 * Main loop:
10143  - Add g_main_context_is_owner() to determine if the current
10144    thread is the owner of the context.  [Michael Meeks]
10145
10146 * Provide g_access(), g_chdir(), g_unlink(), g_rmdir() as 
10147   wrapper functions instead of macros.  [Manish Singh]
10148
10149 * Documentation improvements [Tim, Matthias, Federico Mena Quintero,
10150   Stefan Kasal, Dan Williams]
10151
10152 * New and updated translations (en_CA,fi,fr,gl,ml,nb,no,zh_HK,zh_TW)
10153
10154 * Bugs fixed:
10155  324179 g_allocator_new() returns pointer to const dummy which Gtk+ 2.8 
10156         tries to modify [J. Ali Harlow]
10157  324332 g_option_context_parse() returns false without setting error 
10158         [Tim-Philipp Müller]
10159  324950 GLIB 2.9.1 testcase errors [Dan Yefimov]
10160  325015 gslice.c: process.h is needed on Windows [Kazuki Iwamoto]
10161  321978 G_DATALIST_GET_FLAGS() macro is not casting datalist to 
10162         gpointer [Andrew Paprocki]
10163  316221 G_LOCK warns about breaking strict-aliasing [Michal Benes, 
10164         Stanislav Brabec]
10165  325273 Error in documentation for glib_check_version () [Declan Naughton]
10166  325310 g_spawn_sync hangs when catching both stdout and 
10167         stderr [Tor Lillqvist]
10168  325249 gcc warning when using g_rmdir from <glib/gstdio.h> [Jani Monoses]
10169  325864 glib/gthreadpool.c:"#define debug(...)" is C99 [Kazuki Iwamoto]
10170  325874 Should say somewhere that source IDs are > 0 [Dan Williams]
10171  325438 a typo (compatability) [Stefan Kasal]
10172  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X [Bogdan Nicula]
10173
10174
10175 Overview of Changes from GLib 2.9.0 to GLib 2.9.1
10176 =================================================
10177
10178 * Memory management
10179  - The slice allocator is implemented [Tim Janik]
10180  - g_slice_free_chain() has been renamed to 
10181    g_slice_free_chain_with_offset()  [Tim, Behdad Esfahbod]
10182  - Mem chunks are deprecated [Matthias Clasen]
10183
10184 * Data structures
10185  - Hash tables are refcounted, and have a boxed type [Tim]
10186
10187 * Thread support
10188  - Support for Solaris threads has been removed 
10189    [Sebastian Wilhelmi, Andrew Paprocki]
10190  - g_async_queue_sort(), g_async_queue_push_sorted() have 
10191    been added to allow GAsyncQueue to be used as a priority 
10192    queue, together with the corresponding _unlocked 
10193    variants  [Martyn Russell]
10194
10195 * GObject:
10196  - The concept of a floating initial reference has been
10197    moved from GtkObject to GObject [Tim]
10198
10199 * Win32 changes:
10200  - Make g_rename() replace existing files [Tor Lillqvist]
10201
10202 * Misc new API:
10203  - G_GUINT64_CONSTANT macro to define guint64 
10204    constants [Andrew Paprocki]
10205  - G_GNUC_WARN_UNUSED_RESULT macro to instruct the 
10206    compiler to emit a warning if the value returned
10207    by a function is ignored. [Arjan van de Ven, Alex Larsson]
10208  - GList and GSList now have sort functions which take an
10209    extra user data argument [Martyn Russell]
10210  - g_param_spec_ref_sink() has been added for consistency [Tim]
10211
10212 * $LOGNAME is respected when determining user data. [Laszlo Peter]
10213
10214 * Other changes and bug fixes [Tim, Matthias, Behdad, 
10215   Christian Persch, Benedikt Meurer, Andrew Paprocki, 
10216   Kazuki Iwamoto, Alexis S. L. Carvalho, Stanislav Brabec,
10217   Andreas Schwab, Kalle Vahlman]
10218
10219 * Documentation
10220  - Deprecation warnings carry version information [Matthias]
10221  - The slice allocator has been documented [Matthias, Tim]
10222  - Other improvements [Morten Welinder]
10223
10224 Overview of Changes from GLib 2.8.x to GLib 2.9.0
10225 =================================================
10226 * Unicode support:
10227  - The Unicode tables have been updated to Unicode 4.1, 
10228    adding several new values to the GUnicodeBreakType 
10229    enumeration. This breaks Pango <= 1.10 
10230    [Behdad Esfahbod]
10231  - The various Unicode character predicate functions 
10232    (g_unichar_isalpha, g_unichar_isdigit,...) have
10233    been optimized
10234    [Behdad]
10235  - g_utf8_pointer_to_offset, g_utf8_offset_to_pointer:
10236    These functions handle negative offsets now, and
10237    going backwards in g_utf8_offset_to_pointer uses
10238    "stutter stepping".
10239    [Larry Ewing, Matthias Clasen]
10240
10241 * Memory management:
10242  - Mem chunks are no longer used internally in GLib and
10243    GObject. GMemChunk will be deprecated in GLib 2.10
10244  - All APIs based on GAllocator (g_list_push/pop_allocator,
10245    and similar push/pop_allocator functions for other
10246    data structures) have been deprecated, since they
10247    never worked as intended.
10248  - The g_slice_* functions have been added as a 
10249    new API for fast allocation of small memory blocks. 
10250    The implementation in GLib 2.9.0 is just a simple 
10251    wrapper around malloc. GLib 2.10 will have an
10252    efficient and scalable implementation. 
10253    [Tim Janik, Matthias]
10254
10255 * Pattern matching:
10256  - g_pattern_match has been optimized to avoid
10257    unnecessary recursion.
10258    [Tim, Matthias]
10259
10260 * g_intern_string, g_intern_static_string: 
10261  - New functions to intern strings. These are now used 
10262    by GObject to avoid duplicating static strings 
10263    [Matthias]
10264
10265 * g_thread_foreach: 
10266  - New function to iterate over all GThreads 
10267    [Tim, Matthias]
10268
10269 * g_date_set_time_t, g_date_set_time_val:
10270  - New functions to set a GDate from a time_t or
10271    GTimeVal value. g_date_set_time has been deprecated 
10272    in favor of these.
10273    [Roger Leigh]
10274
10275 * g_snprintf and g_vsnprintf:
10276  - These functions are no longer declared in gprintf.h, 
10277    since they are in glib.h
10278    [Matthias]
10279
10280 Overview of Changes from GLib 2.8.0 to GLib 2.8.1
10281 =================================================
10282 * Optimize single-character insertions in GString [Ross Burton]
10283 * Fix build problems on OS X
10284 * Fix build problems on Win32 [Tor Lillqvist, Hans Breuer]
10285 * Other bug fixes [Matthew F. Barnes, Stepan Kasal] 
10286 * Documentation improvements [Tristan van Berkom, Behnam
10287   Esfahbod, Gustavo Carneiro, Stepan Kasal, Matthias]
10288 * New and updated translations (ca,cy,ko,ro,uk)
10289
10290 Overview of Changes from GLib 2.7.7 to GLib 2.8.0
10291 =================================================
10292 * Make g_value_transform() handle enum values
10293   correctly on ppc64.  [Michael Lorenz]
10294   (Third-party code accessing enumeration values 
10295   in GValues should also be changed to access 
10296   v_long, not v_int, in order to work on bigendian 
10297   64bit machines.)
10298 * Make g_flags_get_first_value() handle a value
10299   of 0 meaningfully. [Tim-Philipp Müller] 
10300
10301 Overview of Changes from GLib 2.7.6 to GLib 2.7.7
10302 =================================================
10303 * Make atomic operations on s390 work [Matthias]
10304 * Fix C++ guards in gstdio.h [Tor Lillqvist]
10305
10306 Overview of Changes from GLib 2.7.5 to GLib 2.7.6
10307 =================================================
10308 * Add native implementations of atomic operations 
10309   on s390 [Matthias]
10310 * Make atomic reference counting of closures
10311   work on s390 [Matthias]
10312 * Avoid an infinite loop in g_convert_with_iconv().
10313   [Sebastian Bacher]
10314 * Documentation improvements [Ross Burton]
10315
10316 Overview of Changes from GLib 2.7.4 to GLib 2.7.5
10317 =================================================
10318 * Thread-related changes
10319  - Fix build issues on HP-UX [Paul Cornett]
10320  - Threadsafe access to flags stored in datasets [Tim Janik]
10321  - Fix several issues with atomic refcounting for 
10322    closures, objects and paramspecs [Tim]
10323  - Improve tests for atomic refcounting changes [Tim]
10324 * Fix handling of stateful encodings in g_convert_* [Matthias]
10325 * Fix translation of GOption help output [Dan Winship]
10326 * Catch format errors in translations. This may cause 
10327   "make check" to fail when using older versions
10328   of gettext [Matthias]
10329 * Win32 bug fixes [Tor Lillqvist]
10330 * Documentation improvements [Ross Burton, Jochen Baier, 
10331   Matthias, Tim]
10332 * New and updated translations (de,fi,gu,pl,pt,tr,zh_TW)
10333
10334 Overview of Changes from GLib 2.7.3 to GLib 2.7.4
10335 =================================================
10336 * Fix g_atomic_pointer_compare_and_exchange 
10337   on Sparc64 [Gert Doering]
10338 * Fix a hang in g_thread_pool_free. [Hong Jen Yee]
10339 * Win32 bug fixes [Tor Lillquist]
10340 * Other bug fixes [Benoit Dejean, Manish Singh]
10341 * Documentation improvements [Bryan Silverthorn,
10342   Callum McKenzie] 
10343 * New and updated translations (de,lt,sq,zh_CN)
10344
10345 Overview of Changes from GLib 2.7.2 to GLib 2.7.3
10346 =================================================
10347 * GOption
10348  - Allow callbacks with optional arguments [Pawel Sliwowski]
10349  - Allow to turn off the automatic long option name
10350    disambiguation  [Adam McLaurin]
10351  - Only allow printable ASCII as short option names [Matthias]
10352 * Win32
10353  - Build fixes [Tor Lillqvist]
10354  - Rewrite iochannel socket implementation [Tor]
10355 * GObject
10356  - Threadsafety improvements; in particular, refcounting
10357    of objects is done atomically now. [Wim Taymans, Tim Janik]
10358 * Bug fixes [Morten Welinder, Matthias, Wim Taymans]
10359 * Documentation improvements [Richard Laager, Matthias]
10360 * New and improved translations (bf,cs,hu,nb,nl,no)
10361
10362 Overview of Changes from GLib 2.7.1 to GLib 2.7.2
10363 =================================================
10364 * Win32 build fixes [Hans Breuer]
10365 * Bug fixes [Mikael Magnusson]
10366 * Documentation improvements [Matthias Clasen]
10367 * New and updated translations (en_CA,es,et,ja,sr,sr@Latn,zh_TW)
10368
10369 Overview of Changes from GLib 2.7.0 to GLib 2.7.1
10370 =================================================
10371 * GOption 
10372  - Allow callback arguments without parameters [Dan Winship]
10373 * GMappedFile: an mmap wrapper [David Schleef, Behdad Esfahbod]
10374 * Misc new functions:
10375  - g_get_host_name [Tor Lillqvist]
10376  - g_mkdir_with_parents [Tor]
10377  - g_build_pathv, g_build_filenamev [Todd A. Fisher, 
10378    Matthias Clasen]
10379 * Bug fixes [Roger Leigh, Masatake YAMATO, Kjartan Maraas,
10380   Manish Singh, Tor, Murray Cumming, Kian Duffy, Morten Welinder]
10381 * Documentation improvements [Hong Gang XU, Dan Winship, Matthias]
10382 * New and updated translations (bg,cs,da,en_CA,es,et,nb,nl,no,
10383   sk,th,zh_TW)
10384
10385 Overview of Changes from GLib 2.6.x to GLib 2.7.0
10386 =================================================
10387 * GKeyFile
10388  - Add unit tests [Matthias Clasen, Suren A. Chilingaryan]
10389  - Accept \r\n as line end [Bastian Nocera]
10390  - Don't interpret leading zeros as octal numbers. [Matthias]
10391  - Make key and group removal work [David Hoover, Matthias Hasselmann]
10392 * GOption
10393  - Improve formatting of --help output [Matthias, Noah Levitt]
10394  - Accept -? [Matthias]
10395  - Warn about duplicate main groups [Jeff Franks]
10396  - Treat '-' as non-option argument [Tim Musson, Thomas Leonard]
10397  - Report missing arguments as errors [Björn Lindqvist]
10398  - Add a boxed type for GDate [Tim-Philipp Müller]
10399 * GTree
10400  - g_tree_remove() and g_tree_steal() return status information [Matthew F. Barnes]
10401 * Stdio wrappers
10402  - Work regardless of large file support [Manish Singh]
10403  - Add g_access(), g_chmod(), g_creat(), g_chdir [Tor Lillqvist]
10404 * GObject
10405  - Implement "toggle references" to help language bindings [Owen Taylor]
10406  - Allow to mark names, nicks and blurbs of pspecs as static [Ben Maurer, Matthias]
10407  - Make pspec lookup a bit faster [Morten Welinder]
10408 * Add g_listenv() to list all set environment variables [Hans Petter Jansson]
10409 * Add g_file_set_contents() to atomically write a file.  [Søren Sandmann,
10410   Sven Neumann, Manish, Alexis S. L. Carvalho]
10411 * Add g_try_malloc(), g_try_new(), g_try_new0() and g_try_renew() [Stefan Kost]
10412 * Add g_utf8_collate_key_for_filename() to sort filenames taking
10413   extensions and numeric suffixes into account.  [Ole Laursen, Alex Larsson]
10414 * Add G_GNUC_NULL_TERMINATED to mark varargs function with 
10415   NULL-terminated argument lists. [Marc Meissner]
10416 * Win32 changes
10417  - Improved debugability [Ulf Lamping, Hans Breuer]
10418  - Make filename handling more robust [Tor, Billy Skaggs]
10419  - Improve g_get_system_data_dirs() [Tor]
10420  - Use more precise timers [Tor]
10421  - Build fixes [Kazuki Iwamoto, Hans, Tor, Robert Ögren]
10422 * Other bug fixes [Roger Leigh, Owen, Matthias, Morten, Kjartan Maraas, 
10423   Pawel Sakowski, Tor, Simon Budig, Ed Avis, Manish, Nicolas Laurent, 
10424   Bastien, Fabrício Barros Cabral, Michael Banck, Daniel Atallah, 
10425   J. Ali Harlow, Tim Janik, Hazael Maldonado Torres, Sven, Jon-Kare Hellan,
10426   Dave Benson, Tommi Komulainen, Benjamin Otte, Brian Cameron, Changwoo Ryu, 
10427   Christian Biere, Noah, Benoît Carpentier]
10428 * Documentation improvements [Vincent Untz, Matthias, Tim-Philipp Müller,
10429   Morten, Matthew, Federico Mena Quintero, Sebastian Bacher, Oliver Sessink, 
10430   Stefan, Jared Lash, Tor, Owen, Daniel Vaillard, Mathieu Lacage]
10431 * New and updated translations (ca,cs,da,el,en_CA,en_GB,es,et,eu,fa,fr,gl,
10432   hu,id,it,lt,mn,ne,nl,pl,pt,pt_BR,ro,rw,sk,sq,sr,sr@Latn,tl,uk,xh,zh_CN)
10433
10434 Overview of Changes from GLib 2.6.0 to GLib 2.6.1
10435 =================================================
10436 * GOption
10437  - Make gtk_init(NULL, NULL) work again [Marcin Krzyzanowski]
10438  - Improve handling of -- [Matthias Clasen]
10439  - Don't show G_OPTION_REMAINING in --help output [Matthew F. Barnes]
10440 * g_find_program_in_path() doesn't return directories [Tommi Komulainen]
10441 * Add gmodule-export-2.0.pc [Matthias]
10442 * Win32 changes
10443  - Improve hangling of UNC paths [Tor Lillqvist]
10444  - g_getenv(), g_setenv(), g_unsetenv(), g_find_program_in_path()
10445    take and return UTF-8 now [Tor] 
10446  - Make g_file_test() work more reliably, and use PATHEXT
10447    when check for executables [Tor]
10448  - Build and cross-compilation fixes [J. Ali Harlow]
10449 * Other bug fixes [Jens Hatlak, Morten Welinder, 
10450   Tor, Kalpesh Shah, Adrian Bunk]
10451 * Documentation improvements [Marcin Krzyzanowski, Tor, Crispin
10452   Flowerday, Mariano Suárez-Alvarez, Christian Biere, Danny Milo,
10453   Vincent Untz, Bastien Nocera]
10454 * New and updated translations (cy,de,nl,ru,sq,sv)
10455
10456 Overview of Changes from GLib 2.4.x to GLib 2.6.0
10457 =================================================
10458
10459 * Major new APIs
10460   - GOption, a commandline option parser
10461   - GKeyFile, a parser/editor for the .ini like files 
10462   - Functions to support the XDG basedir specification
10463   - Wrappers for common POSIX pathname functions to handle filename
10464     encodings consistently. On Windows, these use UTF-8.
10465
10466 * Miscellaneous new functions
10467   - g_filename_display_name() converts filenames in displayable UTF-8 strings
10468   - g_uri_list_extract_uris() splits uri lists
10469   - g_date_get_iso8601_week_of_year() gets ISO 8601 week numbers
10470   - g_log_set_default_handler() installs an alternate default log handler
10471   - g_get_language_names() obtains a list of applicable locale names
10472   - g_strv_length() calculates the length of NULL-terminated string arrays
10473   - g_win32_get_windows_version() determines the Windows version 
10474   - G_GNUC_INTERNAL marks functions as non-exported
10475   - glib_check_version() checks the GLib version at runtime
10476   - g_debug() completes the family of logging functions
10477
10478 * Performance improvements
10479   - Optimize g_utf8_validate()
10480   - Optimize g_markup_parse_context_parse()
10481   - Reduce signal connection complexity from O(n) to O(1) 
10482   - Get rid of many PLT entries for internally used exported symbols
10483   - Reduce code size by removing literal strings from g_return_if_fail()
10484
10485 * Other changes
10486   - On Windows, GLib functions that take file name arguments now require
10487     those to be in UTF-8. Functions that return file names return UTF-8.
10488   - Use higher precision for mathematical constants
10489   - Don't convert to/from UTF-8 in g_filename_to_uri/g_filename_from_uri
10490   - Support ll as printf format modifier for long long on all platforms
10491   - Clean up the ABI and enforce the list of exported symbols
10492   - Add a .pc file for using gmodule in libraries
10493   - Require ngettext
10494
10495 Overview of Changes from GLib 2.5.7 to GLib 2.6.0
10496 =================================================
10497 * GOption: Don't list help options if group-specific
10498   options have been requested [Glynn Foster]
10499 * Make g_get_language_names() track locale changes [Christian Persch]
10500 * Win32 bug fixes [Tor Lillqvist]
10501 * Bug fixes [Philippe Blain, Owen Taylor, Sebastian Wilhelmi]
10502 * New and updated translations (da,es,ja,lt,zh_CN)
10503 Bugs fixed: 159530,100697,160271,160645,157255
10504
10505 Overview of Changes from GLib 2.5.6 to GLib 2.5.7
10506 =================================================
10507 * Optimize g_utf8_validate() [Owen Taylor, Matthias Clasen]
10508 * Optimize g_markup_parse_context_parse() [Havoc Pennington, 
10509   Morten Welinder]
10510 * Reduce signal connection complexity from O(n) to O(1) 
10511   [Sven Neumann]
10512 * Add a .pc file for using gmodule in libraries [Owen]
10513 * Add G_GNUC_MALLOC to mark functions returning newly 
10514   allocated memory  [Matthias]
10515 * Win32 bug fixes [Hans Breuer, Tor Lillqvist, Robert Ögren,
10516   Bruce Hochstetler]
10517 * Bug fixes [Kazuki IWAMOTO, Matthias, Manish Singh, Morten,
10518   Frederic Crozat, Tor]
10519 * Documentation improvements [Matthias, Tor, Owen]
10520 * New and updated translations (cs,da,de,en_CA,en_GB,es,nb,nl,sq,zh_CN)
10521
10522 Overview of Changes from GLib 2.5.5 to GLib 2.5.6
10523 =================================================
10524 * GOption
10525   - Add G_OPTION_FLAG_REVERSE to allow options 
10526     which unset a  boolean variable [Tor Lillqvist]
10527 * GChildWatch
10528   - Use sigaction instead of signal [Jonas Jonnson, 
10529   Archana Shah]
10530   - Make the very first SIGCHLD work [Gustavo Carneiro]
10531 * Bug fixes [Morten Welinder, Tor, David MacLachlan,
10532   Manish Singh, J. Ali Harlow]
10533 * Documentation improvements [Matthias Clasen, Tor]
10534 * Updated translations (da,ja,tr,zh_CN)
10535
10536 Overview of Changes from GLib 2.5.4 to GLib 2.5.5
10537 =================================================
10538 * GKeyFile
10539   - Cleanups, add more error checking [Ray Strode]
10540   - Fall back to the untranslated string when getting 
10541     locale strings [Mark McLoughlin]
10542 * GOption
10543   - Document GOption [Matthias Clasen]
10544   - Better support for rest arguments [Owen Taylor, Matthias]
10545   - Handle conflicts between groups [Matthias]
10546 * Add g_lstat() to the stdio wrappers [Tor Lillqvist]
10547 * Add g_filename_display_name() to convert filenames
10548   in displayable UTF-8 strings  [Alex Larsson, Matthias]
10549 * Win32 bug fixes [Kazuki IWAMOTO, Hans Breuer, Tor]
10550 * Bug fixes [Christophe Fergeau, Morten Welinder, 
10551   Owen, Kjartan Maraas, Mark]
10552 * Documentation improvements [Matthias, Tor]
10553
10554 Overview of Changes from GLib 2.5.3 to GLib 2.5.4
10555 =================================================
10556 Add GKeyFile, a parser/editor for the .ini like files used in various
10557    freedesktop.org specifications. [Ray Strode]
10558 Make the handling of filename encodings consistent across all
10559    GLib functions, introduce wrappers for common POSIX 
10560    functions which accept the same filename encoding. [Tor Lillqvist, 
10561    Owen Taylor]
10562 GOption
10563  - Rename g_context_option_error_quark() to a more language-binding
10564    friendly name [Murray Cumming]
10565  - Accept backslashes in filenames on Win32 [Tor Lillqvist]
10566 * Strip the internal aliasing prefix IA__ from function names in 
10567   assertions [Matthias Clasen]
10568 * Add a function to split uri lists. [Matthias]
10569 * Win32 bug fixes 
10570  - Don't open console windows [Tor]
10571 * Other bug fixes [Philippe Blain, Robert Ögren, Hidetaka Iwai, Matthias,
10572  Morten Welinder, Mats-Ola Persson, Tor, Nickolay V. Shmyrev, Kjartan Maraas,
10573   Anders Carlsson, Tim-Philipp Müller, Lucas Rocha, Andrea Campi, Manish
10574   Singh, Thomas Fitzsimmons, Kazuki IWAMOTO]
10575 * Documentation improvements [Matthias, Linus Walleij, Nickolay, Philippe, 
10576  Adam Hooper, Gustavo Carneiro]
10577 * New and updated translations (cs,en_CA,en_GB,ja,nb,nl,or,sr,sr@Latn,sq)
10578
10579 Overview of Changes from GLib 2.5.2 to GLib 2.5.3
10580 =================================================
10581 * GOption
10582  - set the program name from argv[0] [Masatake YAMATO] 
10583  - make contexts work without a main group [Anders Carlsson]
10584 * Performance 
10585  - Get rid of many PLT entries for internally used exported symbols,
10586    and clean up the ABI at the same time and make make check check the
10587    list of exported symbols.  [Matthias Clasen]
10588 * Add API to get ISO 8601 week numbers [Niklas Lundell]
10589 * Add API to install an alternate default log handler [Darin Adler]
10590 * Add API to obtain a list of applicable locale names [Hidetoshi Tajima]
10591 * Reduce code size bloat by removing literal strings from
10592  the g_return_if_fail() macros [Owen Taylor]
10593 * Add g_strv_length [Tim-Philipp Müller]
10594 * Win32 changes
10595  - Add API to determine the Windows version [Tor Lillqvist]
10596 * Other bug fixes [Stepan Kasal, Anders, Tor, Kazuki Iwamoto,
10597   Manish Singh]
10598 * Documentation improvements [Morten Welinder, Matthias]
10599 * New and updated translations (es,nn,ro)
10600
10601 Overview of Changes from GLib 2.5.1 to GLib 2.5.2
10602 =================================================
10603 * Add G_GNUC_INTERNAL macro [Arjan van de Ven]
10604 * Add GOption, a commandline option parser [Anders Carlsson]
10605 * Add glib_check_version [Michael Natterer]
10606 * Add XDG basedir API [Ray Strode]
10607 * Require ngettext [Danilo Segan]
10608 * Bug fixes [Manish Singh, Ray Strode, Vincent Noel, 
10609   Jon-Kare Hellan, Jody Goldberg]
10610 * Win32 bug fixes [Tor Lillqvist, Hans Breuer, Peter Zelezny]
10611 * Documentation improvements [Matthias Clasen, Vincent Untz, Christian Persch]
10612 * New and updated translations (bs,eu,fi,gu,ne,pa)
10613
10614 Overview of Changes from GLib 2.5.0 to GLib 2.5.1
10615 =================================================
10616
10617 * Bug fixes [Oliver Guntermann, Sven Neumann, James 
10618   Henstridge, Hiroyuki Ikezoe, Matthias Clasen, Robert 
10619   Ögren, Tommi Komulainen]
10620 * Documentation improvements [Soeren Sandmann, 
10621   Christophe Fergeau, Danek Duvall]
10622 * New and updated translations (eu,hi)
10623   
10624 Overview of Changes from GLib 2.4.1 to GLib 2.5.0
10625 =================================================
10626
10627 * New functions g_debug [Sven Herzberg]
10628 * Use higher precision for mathematical constants [Morten 
10629  Welinder]
10630 * Don't convert to/from UTF-8 in g_filename_{to,from}_uri 
10631  [Federico Mena Quintero]
10632 * Win32
10633  - Handle empty digit string in printf() functions 
10634    correctly [Tor Lillqvist]
10635  - Support ll as format modifier for long long [Tor]
10636  - Be more careful about HOME [Tor, Ivan Wong]
10637  - Bug fixes [John Ehresman]
10638 * Miscellaneous bug and portability fixes [Danilo Segan, 
10639  Owen Taylor, Nikolai Weibull, Benoît Carpentier, Morten 
10640  Welinder, Manish Singh, Sven Neumann, Julio M. Merino Vidal,
10641  Kaz Sasayama, Murray Cumming, Federico, Mariano Suarez-Alvarez]
10642 * Documentation updates [Matthias Clasen, Crispin Flowerday,
10643  Tommi Komulainen, Federico Mena Quintero, Ed Griffiths]
10644 * New and updated translations (ja,ne,no,wa)
10645  
10646 Overview of Changes from GLib 2.4.0 to GLib 2.4.1
10647 =================================================
10648
10649 * Win32 bug fixes [Tor Lillqvist, Roger Leigh, John Ehresman]
10650 * Miscellaneous bug and portability fixes [Owen Taylor,
10651   Matthias Clasen, Jonas Jonsson, Christian Krause,
10652   Nickolay V. Shmyrev, Christophe Saout, Philippe Blain,
10653   Piotr Klaban]
10654 * Documentation updates [Matthias]
10655 * New and updated translations (ca,cs,cy,el,en_CA,en_GB,es,eu,fi,
10656   fr,gu,he,id,nl,pt,pl,ru,sr,sr@ije,sr@Latn,sv,uk)
10657
10658 Overview of Changes from GLib 2.3.6 to GLib 2.4.0
10659 =================================================
10660
10661 * Handle invalid-UTF-8 in g_log() properly [Matthias Clasen]
10662 * Win32 bug fixes [Tor Lillqvist, Bruce Hochstetler]
10663 * Miscellaneous bug and portability fixes [Olivier Biot, David L. Cooper II, 
10664   Kjartan Maraas, Frédéric L. W. Meunier, Christof Petig, Manish Singh, 
10665   Sebastian Wilhelmi]
10666 * Documentation updates [Owen]
10667 * Updated translations (hr,ro)
10668
10669 Overview of Changes from GLib 2.3.5 to GLib 2.3.6
10670 =================================================
10671
10672 * GAtomic bug fixes [Sebastian Wilhelmi, Mark McLoughlin]
10673 * GMain threading fixes and improvements [Sebastian]
10674 * Win32 [Tor Lillqvist]
10675  - restore some symbols extraneously exported from gobject to maintain ABI compatibility
10676  - Misc build improvements and fixes [Tor, Cedric Gustin, Hans Breuer]
10677 * Documentation updates [Sebastian, Takeshi AIHANA, Matthias, Sven Herzberg]
10678 * New and updated translations (be,es,fi,ga,pa,sr@ije,zh_CN)
10679
10680 Overview of Changes from GLib 2.3.3 to GLib 2.3.5
10681 =================================================
10682
10683 * Make glib-mkenums parse initializers with macros. [Matthias Clasen, muppet]
10684 * Respect locale era in g_date_set_parse(). [Theppitak Karoonboonyanan] 
10685 * Add atomic operations and use it for the async queue and
10686   gonce implementation. [Sebastian Wilhelmi]
10687 * Documentation improvements [Sebastian, Matthias, Sven Herzberg]
10688 * Add g_main_depth() for finding the recursion depth of the main
10689   loop [Owen Taylor, Tim Janik, Stefan Westerfeld]
10690 * Add g_spawn_close_pid(), needed on win32 [J. Ali]
10691 * Win32 fixes. [Hans Breuer, J. Ali Harlow]
10692 * Misc bugfixes [Sebastian, Matthias, Balazs Scheidler, Owen]
10693 * Updated translations (cy,et,ga,sq)
10694
10695 Overview of Changes from GLib 2.3.2 to GLib 2.3.3
10696 =================================================
10697
10698 * Add a native AIX gmodule implementation. [Laurent Vivier]
10699 * Add g_node_copy_deep().  [James M. Cape, Matthias Clasen]
10700 * Extend GQueue API to match the GList API. [Soeren Sandmann]
10701 * Add g_hash_table_find().  [Tim Janik]
10702 * Add a G_MODULE_BIND_LOCAL flag. [David Schleef]
10703 * Inline g_string_append_c() when possible. [Owen Taylor, Tim]
10704 * Wrap waitpid() as a GSource. [Jonathan R. Blandford]
10705 * Add g_completion_complete_utf8(). [Theppitak Karoonboonyanan, 
10706   Matthias]
10707 * Add g_strsplit_set(). [Soeren]
10708 * Documentation improvements. [Vincent Untz, Sebastian Wilhelmi, 
10709   Soeren, Matthias]
10710 * Win32 build fixes. [Tor Lillqvist]
10711 * Misc bugfixes [Manish Singh, Noah Levitt, Simon Josefsson, 
10712   Morten Welinder, Damien Carbery, Julio M. Merino Vidal, Sebastian, 
10713   Matthias]
10714 * Updated translations (nn,cs,it,ko,sq,ms,az,hr,uk,sr,sr@Latn,sq,ta)
10715
10716 Overview of Changes from GLib 2.3.1 to GLib 2.3.2
10717 =================================================
10718
10719 * Add G_MAXSIZE. [Manish Singh]
10720 * Add g_rand_new_with_seed_array(), g_rand_set_seed_array(),
10721   implementing the init-by-array functionality of the 
10722   original mersenne twister. Add g_rand_copy(). Improve seeding. 
10723   [George Lebl]
10724 * Add a lowercase_name option to glib-mkenums. [Murray Cumming]
10725 * Add g_ptr_array_foreach(). [Matthias Clasen]
10726 * Add g_timer_continue(). [Tim-Philipp Müller]
10727 * Fix a threadsafety issue in mem chunks. [Matthias, Balazs Scheidler]
10728 * Fix g_filename_{to,from}_utf8() on Win32 and improve 
10729   g_file_test() there too [Hans Breuer] 
10730 * Add a boxed type for NULL-terminated string arrays.  [Matthias]
10731 * Add G_DEFINE_TYPE() plus variants to ease the constuction
10732   of GObject boilerplate code.  [Tim Janik]
10733 * Support & in password GECOS field [Matthias, Soeren Boll Overgaard]
10734 * Documentation improvements [Matthias, Manish]
10735 * Win32 build fixes [Hans]
10736 * Misc bug fixes [Damien Carbery, Matthias, Manish, Olivier Poncet, 
10737   Zack Rusin]
10738 * Updated translations (ar,de,fa,ga,mn,nn,no,sq)
10739
10740 Overview of Changes from GLib 2.3.0 to GLib-2.3.1
10741 =================================================
10742
10743 * Add glib/gi18n.h and glib/gi18n-lib.h for common
10744   gettext support, including a Q_() macro for translation
10745   with context [Matthias Clasen]
10746 * Add a more flexible G_FILENAME_ENCODING variable
10747   as a replacement for G_BROKEN_FILENAMES [Matthias]
10748 * Fix the return value g_main_context_iterate() for
10749   newly ready sources [Padraig O'Briain]
10750 * Handle Hangul composition for normalization [Noah Levitt]
10751 * Add G_{MIN,MAX,MAXU}INT{8,16,32}. [Mark Jones, Matthias]
10752 * Add G_GSIZE_FORMAT/G_SSIZE_FORMAT [Manish Singh]
10753 * Add G_STRFUNC as a portable wrapper for __func__ [Tim Janik]
10754 * Documentation improvements [Matthias]
10755 * GObject [Tim Janik]
10756  - Support '-' in g_signal_connect()/disconnect() names
10757    like 'swapped-signal'.
10758  - Add g_type_class_peek_static() and use to optimize
10759    g_object_new() for static types [Tim]
10760  - Allow setting construct-only properties from within
10761    init() implementations
10762  - Enforce readability/writeability in g_object_set/get()
10763 * Fix bug with g_ascii_strtod and multi-byte separator.
10764   [Behdad Esfahbod, Roozbeh Pournader]  
10765 * Misc bug fixes [Matthias, John Ehresman, Andrew Lanoix,
10766   Tor Lillqvist, Mark McLoughlin, Tim-Philipp Müller, Manish, 
10767   Morten Welinder]
10768 * Updated translations (ca,cs,da,es,fr,ja,nn,no,pt,ru)
10769
10770 Overview of Changes from GLib 2.2.x to GLib-2.3.0
10771 =================================================
10772
10773 * Replace Trio printf by gnulib vasnprintf [Matthias Clasen]
10774 * Update Unicode data to Unicode 4.0 [Noah Levitt]
10775 * Support XML-safe formatted output with 
10776   g_markup_[v]printf_escaped [Owen Taylor]
10777 * Add g_file_read_link to read symbolic links [Matthias]
10778 * Add g_unichar_get_mirror_char to obtain the 
10779   mirrored variant of a character [Noah]
10780 * Support for one-time initialization functions. 
10781   [Sebastian Wilhelmi]
10782 * Miscellaneous API additions: g_vasprintf
10783   g_string_chunk_insert_len, g_setenv, g_unsetenv [Matthias]
10784 * Docs improvements [Matthias]
10785 * Add support instance-private data on classed types
10786   [Mark McLoughlin, Tim Janik, Owen]
10787 * Optimize signal emissions [Soeren Sandmann, Tim]
10788 * Support a "default vtable" per interface [Tim]
10789 * Add support for properties on interfaces [Owen, Tim]
10790 * Miscellaneous API additions: g_value_take_string(),
10791   g_value_take_param(), g_value_take_object(), 
10792   g_value_take_boxed(). [Matthias]
10793 * Win32 build fixes [Tor Lillqvist]
10794
10795 Overview of Changes from GLib 2.1.5 to GLib-2.2.0
10796 =================================================
10797
10798 * Fix a problem with g_thread_init() on 64-bit problems
10799   [Alceste Scalas, Sebastian Wilhelmi]
10800 * Add assembly implementations of byteswap macros
10801   for ia64 and x86_64. [Manish Singh]
10802 * IOChannel fixes for Win32 [Tor Lillqvist, Thorsten Maerz]
10803 * Updated translations (bg,ca,es,da,fi,lv,ru,sk)
10804
10805 Overview of Changes from GLib 2.1.4 to GLib-2.1.5
10806 =================================================
10807
10808 * Win32 bug fixes [Tor Lillqvist]
10809 * Various post-rewrite fixes for glib-gettext.m4 [Owen Taylor,
10810   Jody Goldberg, Kjartan Maraas, Johannes Stezenbach]
10811 * Ensure we have a GUINT64_FORMAT by pulling in Trio
10812   if necessary [Manish Singh]
10813 * Further Trio build fixes [Matthias Clasen, Owen]
10814 * Hack around gcc, libtool issues with -pthread [Owen]
10815 * Docs improvements [Matthias]
10816 * Bug and portability fixes 
10817 * Updated and new translations (bg,de,fi,fr,sq,fr)
10818
10819 Other contributors: Kai Poitschke, Morten Welinder
10820
10821 Overview of Changes from GLib 2.1.3 to GLib-2.1.4
10822 =================================================
10823
10824 * autoconf changes to make it possible to cross compile
10825   GLib. [Owen Taylor, Dan Kegel, Amy Lin, Dimi Shahbaz, 
10826   Johannes Stezenbach]
10827 * Use libintl when it has bind_textdomain_codeset() and
10828   GLib doesn't. [Owen]
10829 * Improve generation of pseudo-random integers [Morten Welinder, 
10830   Sebastian Wilhelmi]
10831 * Avoid literal UTF-8 in favor of octal escapes [Owen, Tomas Ogren]
10832 * Cleanup include order [Sven Neumann]
10833 * autoconf cleanups and bug fixes [Daniel, Matthias Clasen, Owen]
10834 * Doc fixes and additions [Matthias]
10835
10836 Other contributors: James M. Cape, Frederic Crozat, Martin Gansser,
10837   Phuc LeHong, Manish Singh, Joshua Weage, Morten Welinder
10838
10839 Overview of Changes from GLib 2.0.x to GLib-2.1.x
10840 =================================================
10841
10842 * Add copy of the Trio library to build and use for printf() when 
10843   system printf isn't good enough. Add g_printf()/etc. [Matthias Clasen]
10844 * Add g_str_has_suffix()/g_str_has_prefix() [Alex Larsson]
10845 * Add g_markup_parse_context_get_element() [Matthias]
10846 * Add g_utf8_strreverse [Matthias]
10847 * Add g_ascii_strtoull() [Tim Janik]
10848 * Support scanning of 64-bit values with GScanner [Tim]
10849 * Add g_set/get_application_name() [Havoc Pennington]
10850 * Add G_LIKELY()/G_UNLIKELY() macros for hinting branch probabilities. 
10851   Use for g_return_if_fail(). [Matthias Clasen]
10852 * Add G_GNUC_DEPRECATED macro [Tom Tromey]
10853 * Improve the seeding algorithm of GRandom to avoid problems
10854   with certain pathological seeds. Support G_RANDOM_VERSION=2.0
10855   environment variable. [Sebastian Wilhelmi]
10856 * Improve thread configure checks, use -pthread where applicable
10857   [Sebastian]
10858 * Improve handlng of thread priorities [Sebastian]
10859 * Fix up parameter names that might shadow functions from
10860   system headers [Soeren Sandmann]
10861 * Clean up usage of deprecated functions [Manish Singh]
10862 * Docs fixes and improvements. In particular, include "Since" information.
10863   [Matthias, Soeren, Martin Schulze, Daryll Strauss, Bill Janssen, 
10864   Owen Taylor, Morten Welinder]. 
10865
10866 Overview of Changes in GLib 2.0.7
10867 =================================
10868
10869 * Fix C++ warnings in gtype.h [Dom Lachowicz]
10870 * Fix g_type_fundamental_next() [Tim Janik]
10871 * Fix various missing includes of config.h [Morten Welinder]
10872 * Handle main loop initialization before g_thread_init [Sebastian Wilhelmi]
10873 * Various 64-bit fixes [Manish Singh]
10874 * Fix GPoll on Win32 [Tor Lillqvist, Herman Bloggs]
10875 * Fix bug with buffering on UTF-8 IOChannels [Daniel Elstner]
10876 * Misc bug and build fixes [Soren Andersen, Gustavo Carneiro, Tor,
10877      Tim, Havoc Pennington,  Matthias Clasen, Sebastian Rittau,
10878      Masahiro Sakai, Arvind Samptur, HideToshi Tajima, Owen Taylor]
10879 * Updated and new translations (be,cs,de,*fa,it,lv,pt_BR,tr)
10880
10881 Overview of Changes in GLib 2.0.6
10882 =================================
10883
10884 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
10885 * Clean up debug spew from GObject [Anders Carlsson]
10886 * Compiler warning fixes [David L. Cooper II]
10887 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
10888 * Fixes for --disable-debug [Sebastian Wilhelmi]
10889 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
10890   Rajkumar Sivasamy, Laurent Vivier]
10891 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
10892   Sebastian Rittau, Linus Welleij]
10893 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
10894 * Updated translations (bg,ko,vi)
10895
10896 Overview of Changes in GLib 2.0.5
10897 =================================
10898
10899 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
10900 * Clean up debug spew from GObject [Anders Carlsson]
10901 * Compiler warning fixes [David L. Cooper II]
10902 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
10903 * Fixes for --disable-debug [Sebastian Wilhelmi]
10904 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
10905   Rajkumar Sivasamy, Laurent Vivier]
10906 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
10907   Sebastian Rittau, Linus Welleij]
10908 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
10909 * Updated translations (bg,ko,vi)
10910
10911 Overview of Changes in GLib 2.0.4
10912 =================================
10913
10914 * Fix some 64-bit problems. (George Lebl, David L. Cooper II)
10915 * Add note about Tru64 iconv to INSTALL. (Manuel Op de Coul)
10916 * Fix problem with timouts > MAXINT. (Tim Janik, Owen Taylor)
10917 * Updated translations (ca,es,fr,ja,gl,ms,nl,pl,pt,ru)
10918
10919 Overview of Changes in GLib 2.0.3
10920 =================================
10921
10922 * Handle sorting 0-length arrays (Ron Arts)
10923 * Threading fixes (Sebastian Wilhelmi)
10924 * Portability fixes (Miroslaw Dobrzanski-Neumann, Jacob Berkman, Gareth Pierce, 
10925   Sebastian, Qingjiang Yuan)
10926 * Various fixes for glib-2.0.m4. (Jim Gettys, others.)
10927 * Locate right glib-genmarshal when cross-compiling. (Mitch Natterer)
10928 * Win32 fixes (Tor Lillqvist)
10929 * Try to fix g_get_charset() related segfaults. (Owen)
10930 * Fixes for gettext detection. (Dan Winship, HideToshi Tajima, Boyd Lynn Gerber,
10931   Andrew P. Lentvorski, Jr.)
10932 * Fix g_scanner_unexp_token() (Tim Janik, Sven Neumann)
10933 * g_markup fixes. (Matthias Clasen.)
10934 * Bug fixes and cleanups (Daniel Elstner, Matthias, Laszlo Peter, Morten Welinder,
10935   Wayne Schuller)
10936
10937 Overview of Changes in GLib 2.0.1
10938 =================================
10939
10940 * Portability fixes for Sun's Forte compiler [Erwann Chenede]
10941 * Performance improvements for GObject parameter lookup, 
10942   g_filename_to/from_utf8() [Alex Larsson]
10943 * Actually check interface prerequisites [Matthias Clasen,
10944   Miroslaw Dobrzanski-Neumann]
10945 * Fix problem with glib-mkenums taking huge amounts of stack. [Owen Taylor]
10946 * Fix g_signal_handlers_disconnect_by_func() for C++ [Damien Sandras]
10947 * Fixes for g_log() and threading.
10948   [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, Tim Janik]
10949 * Make g_print(), g_printerr(), g_warning(), etc, convert from
10950   UTF-8 to the encoding of the locale [Sebastian Wilhelmi, Tim]
10951 * Fixes for GIOChannel on windows. [Tor Lillqvist]
10952 * Fix gsize/gint mismatches in giochannel.c [Miroslaw Dobrzanski-Neumann]
10953 * Fix file descriptor leak in g_file_get_contents() [Matthias]
10954 * Workaround iconv() problems on older Solaris [Lauri Alanko]
10955 * Fix warnings with gcc-3.1 about asm const [Cody Russel]
10956 * Minor bug fixes.
10957
10958 Other contributors: Hans Breuer, LEE Sau Dan, Sven Neumann, Salmaso Raffaele,
10959   Akira Tagoh, Morten Welinder
10960
10961
10962 Overview of Changes in GLib 2.0.0
10963 =================================
10964
10965 * Thread portability fixes [Sebastian Wilhelmi]
10966 * Documentation updates [Owen Taylor]
10967 * Make g_strerror(), g_strsignal() properly return UTF-8,
10968   call bind_text_domain_codeset() so that error strings
10969   are in UTF-8 as well. [Owen, Tor Lillqvist]
10970
10971 Overview of Changes in GLib 2.0.0 rc1:
10972 ======================================
10973
10974 * Win32 fixes [Tor Lillqvist]
10975 * Portability fixes [Finlay Dobbie, Miroslaw Dobrzanski-Neumann]
10976 * Fix up g_date_strftime [Daniel Elstner]
10977 * Add some structure padding [Tim Janik]
10978 * Make g_get_homedir() prefer the users home directory to $HOME
10979
10980 Other contributors: Matthias Clasen, Paolo Maggi, Christian Rose
10981
10982 Overview of Changes in GLib 1.3.15:
10983 ===================================
10984
10985 * Speed up marshalers by using private access to GValue 
10986   [Anders Carlsson, Tim Janik]
10987 * Reduce GValue to 2 elements [Tim]
10988 * Add G_DEBUG environment variable, G_DEBUG=fatal_warnings [Matthias Clasen]
10989 * Fixes for AIX compilation [Miroslaw Dobrzanski-Neumann]
10990 * Add padding to various structures [Owen Taylor, Tim]
10991 * Win32 fixes [Tor Lillqvist]
10992
10993 Other contributors: James Henstridge, Ryan Lovett, Morten Welinder,
10994   Daniel Elstner
10995
10996 Overview of Changes in GLib 1.3.14:
10997 ===================================
10998
10999 * Register value transformations for gint64, guint64 [Andy Wingo]
11000 * Build with large-file support [Sven Neumann, Owen Taylor]
11001 * Fix handling of hostnames in URI's [Darin Adler]
11002 * Main loop bug fixes [Havoc Pennington, Owen]
11003 * Doc fixes and improvements [Manish Singh, Tim Janik]
11004 * Support ' as attribute delimiters in GMarkup [Matthias Clasen]
11005 * Win32 fixes [Hans Breuer, Tor Lillqvist]
11006 * Threading bug and build fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann]
11007 * Miscellaneous bug fixes
11008
11009 Other contributors: Matthias Clasen, James Henstridge, Mitch Natterer, 
11010   Morten Welinder.
11011
11012 Overview of Changes in GLib 1.3.13:
11013 ===================================
11014
11015 * Fix g_filename_to/from_uri for Win32 [Tor Lillqvist, Darin Adler]
11016 * Miscellaneous win32 fixes [Tor, Hans Breuer]
11017 * Fix thread options for gcc on AIX [Jerome Zago, Sebastian Wilhelmi]
11018 * Documentation improvements [Ron Steinke, Matthias, Sebastian]
11019 * Cache iconv converters as used by g_convert() [Jeffrey Stedfast]
11020 * Bug fixes [Sven Neumann, Owen Taylor, Matthias Clasen, Jeffrey,
11021   Laszlo Peter, Havoc Pennington, Tim Janik]
11022
11023 Overview of Changes in GLib 1.3.12:
11024 ===================================
11025
11026 * Implement closure chaining, fixing up API (Tim Janik)
11027 * Closure chaining test case (James Henstridge)
11028 * Make GType long not int where both are equal width (Tim)
11029 * Win32 fixes and improvements (Hans Breuer, Tor Lillqvist)
11030 * Fixes for NetBSD. (Dan Winship)
11031 * Use snprintf() for g_printf_string_upper_bound() where possible. (Matthias Clasen)
11032 * Save space for GBSearchArray (Tim Janik)
11033 * Documentation improvements. (Matthias, Sven Neumann, Havoc Pennington)
11034
11035 Other contributors: Darin Adler, Chris Blizzard, Anders Carlson, Daniel Elstner, Michael Meeks, 
11036   Mark McLoughlin, Dave Neary, Manish Singh, Owen Taylor, HideToshi Tajima, 
11037   Sebastian Wilhelmi.
11038
11039
11040 Overview of Changes in GLib 1.3.11:
11041 ===================================
11042
11043 * Win32 fixes [Hans Breuer, Tor Lillqvist]
11044 * Documentation improvements [Matthias Clasen]
11045 * Portable directory handling API [Hans]
11046 * Threading fixes [Sebastian Wilhelmi, Havoc Pennington]
11047 * Fix excess relocations in Unicode tables [Andrew Taylor]
11048 * Fix gpattern for UTF-8 [Matthias Clasen]
11049 * Support overriding class closures [Tim Janik]
11050 * Support for derivation from G_TYPE_POINTER [Owen Taylor]
11051 * Hide pointers to type information inside GType to reduce locking
11052   [Alex Larsson, Tim]
11053 * Adds check for direct inclusion of gobject/*.h [Owen]
11054 * GObject API cleanups [Tim]
11055
11056 Other contributors: Darin Adler, Jacob Berkman, Daniel Egger, Eric Lemings, 
11057   Michael Meeks, Mark McLoughlin, Arkadiusz Miskiewicz, Dan Winship
11058
11059
11060 Overview of Changes in GLib 1.3.10:
11061 ===================================
11062
11063 * Many Win32 fixes and improvements [Tor Lillqvist]
11064 * Documentation improvements [Matthias Clasen]
11065 * g_string_printfa() renamed to g_string_append_printf()
11066 * Use libcharset from libiconv to implement charset detection
11067   more portably. [Owen Taylor, Hidetoshi Tajima]
11068 * Add 64 bit type support to GObject [Joshua Pritikin, Mathieu Lacage, Owen]
11069 * Make support for 64 bit integers a requirement [Joshua]
11070 * GPattern improvements [Tim Janik, Matthias]
11071 * Locale independent g_ascii_strtod / g_ascii_dtostr [Alex Larsson]
11072 * Many bug fixes and minor tweaks.
11073
11074 Other Contributors: Darin Adler, Jakub Jelinek, James Antill, Andrew Taylor,
11075   Ben Gertzfield, Elliot Lee, Manish Singh, Abel Cheung, Laszlo Peter,
11076   Sven Neumann, George Lebl, Raja Harinath, Sebastian Wilhelmi,
11077   Jacob Berkman
11078
11079
11080 Overview of Changes in GLib 1.3.9:
11081 ==================================
11082
11083 * Fixes for comparison of threads [Sebastian Wilhelmi]
11084 * Use vasprintf() when possible for g_strdup_printf [Matthias Clasen]
11085 * Win32 fixes [Tor Lillqvist, Hans Breuer]
11086 * Add a len argument to g_ascii_strup/strdown
11087 * Bug, portability fixes, cleanups.
11088
11089 Other Contributors: Darin Adler, Katsuhiro Okuno, Joshua N. Pritikin
11090
11091
11092 Overview of Changes in GLib 1.3.8:
11093 ==================================
11094
11095 * Documentation updates [Owen]
11096 * Made GType interfaces overridable in derived types
11097 * Many win32 fixes [Tor Lillqvist]
11098 * Miscellaneous cleanups and fixes
11099
11100 Other contributors:
11101   Darin Adler, Matthias Clasen, Ron Steinke, Hans Breuer, Alex Larsson
11102
11103
11104 Overview of Changes in GLib 1.3.7:
11105 ==================================
11106
11107 * Integrate GClosure support into the main loop [Owen Taylor]
11108 * More GSignal convenience functions (macros) [Sven Neumann, Tim Janik]
11109 * Introduced weak references for GObject [James Henstridge, Sven, Tim] 
11110 * Minor hash table optimizations
11111 * Main loop and threading improvements [Sebastian Wilhelmi]
11112 * Added g_ascii_* functions to be used for locale insensitive UTF-8
11113   compliant code instead of old string functions  [Darin Adler, Alex Larsson]
11114 * Add functions for Unicode case-conversion, normalization, and 
11115   collation [Owen]* GString improvements [Owen]
11116 * Reworked the GIOChannel code [Hidetoshi Tajima, Ron Steinke]
11117 * Removed glib-config-2.0 in favour of pkgconfig [Sebastian]
11118 * Make code 64bit clean [Mark Murnane]
11119 * More G_CONST_RETURN fixes
11120 * Many improvements to the win32 code [Tor Lillqvist, Hans Breuer]
11121 * Miscellaneous bug and API fixes
11122
11123 Other contributors:
11124   Michael Natterer, Christopher James Lahey, Padraig O'Briain,
11125   Matthias Clasen, Josh Pritikin, Steve Baker, Cesar Rincon, Garry R. Osgood,
11126   Michael Meeks, Laszlo Peter,  Martin Baulig, Kjartan Maraas, Andrew Lanoix,
11127   Peter Williams
11128
11129
11130 Overview of Changes in GLib 1.3.6:
11131 ==================================
11132
11133 * Threads have a "return value" from g_thread_join
11134 * Removed ability to adjust thread stack size
11135 * Prefix warnings with progname/PID by default, change toggle for this to 
11136   be an env variable G_MESSAGES_PREFIXED not a compile-time option
11137 * GMarkup speedups
11138 * GDate const, convenience fixups
11139 * Include test cases that headers are compilable by C++ compiler
11140 * Add ability to spawn processes with argv[0] != executable path.
11141 * g_strstr_len, g_strrstr, g_strrstr_len
11142 * Add length argument to g_utf8_strchr and g_utf8_strrchr.
11143 * Misc bug fixes
11144
11145
11146 Overview of Changes in GLib 1.3.5:
11147 ==================================
11148
11149 * Added an installed glib-mkenums Perl program for parsing enumeration
11150   declarations from header files.
11151 * Mark some additional deprecated functions.
11152 * Bug and Portability fixes
11153
11154
11155 Overview of Changes in GLib 1.3.4:
11156 ==================================
11157
11158 * Efficiency improvements for GThreadPool
11159 * A few bug fixes
11160 * Build fixes
11161 * Documentation improvements
11162
11163
11164 Overview of Changes in GLib 1.3.3:
11165 ==================================
11166
11167 GLib:
11168
11169 * More user_data support in various functions.
11170 * Main loop API revamps to support per-thread main loops.
11171 * Unicode handling improvements.
11172 * Implemented debugging traps.
11173 * G_CONST_RETURN specification all over the place.
11174 * Various new small utility functions.
11175 * Random number generator precision improvements.
11176 * New configure option --disable-mem-pools.
11177 * Many Win32 improvements.
11178 * Added g_try_malloc() friends varinats.
11179 * Many documentation improvements.
11180 * Many threading improvements, support for dynamic allocation
11181   of static mutexes.
11182 * GHookLIst API cleanups.
11183 * Improved format support of GDate parser.
11184 * String function speed improvements with new g_stpcpy().
11185 * Hashtable API additions.
11186 * New GPatternSpec for shell-style pattern matching (from GtkPatternSpec).
11187 * Optimizations, cleanups, bug fixes.
11188
11189 GObject:
11190
11191 * Added many convenience functions.
11192 * GClosure and GParamSpec use float/sink ref-counting scheme now.
11193 * Reworked property change notification.
11194 * Binary searchable array cleanups, so it's widely usable now.
11195 * Added static content keeping for some GValue types.
11196 * Support for statically scoped signal parameters.
11197 * Extinguished property trailer args in set/get interface.
11198 * Added support for abstract types.
11199 * G_CONST_RETURN specification all over the place.
11200 * Split parameter exchange functionality into value transforms
11201   and parameter conversions.
11202 * Added signal emission hooks and signal accumulators.
11203 * Added interface prerequisites to support is_a (interface, object)
11204   relations.
11205 * Implemented GValueArray.
11206 * New types, boxed: G_TYPE_VALUE, G_TYPE_CLOSURE, G_TYPE_GSTRING
11207   GParamSpecs: G_TYPE_PARAM_PARAM, G_TYPE_PARAM_POINTER, G_TYPE_PARAM_CLOSURE,
11208   G_TYPE_VALUE_ARRAY, G_TYPE_PARAM_UNICHAR, G_TYPE_PARAM_VALUE_ARRAY.
11209 * Varrags value collection improvements.
11210 * Implemented debugging traps.
11211 * Made things thread-safe.
11212 * Many documentation improvements.
11213 * Many cleanups, optimizations and bug fixes.
11214
11215
11216 Overview of Changes in GLib 1.3.2:
11217 ==================================
11218
11219 GLib:
11220
11221 * Win32 build improvements  [Tor]
11222 * Improvements to error reporting  
11223   (g_critical(), g_return_if_reached()) [Darin]
11224 * Add g_strlcpy/g_strlcat  [David Wheeler]
11225 * New IO channel implementation for Win32  [Tor] 
11226 * Make g_array_free, g_string_free return pointer to memory requested
11227   not to be freed.  [Darin]
11228 * Added GError based error reporting for thread functions.  [Sebastian]
11229 * Moved reference docs into GLib distribution. [Owen]
11230 * Added g_convert() for doing convenient character set conversions based
11231   on iconv. (GLib now requires libiconv or a native iconv.) [Havoc/Owen]
11232 * Various Unicode handling additions (g_ucs4_to_utf8, g_utf8_validate(),
11233   g_{locale,filename}_{to,from}_utf8)  [Robert/Havoc/Owen]
11234 * Portability fixes for threading.  [Sebastian]
11235 * Added convenient functions for launching new processes (g_spawn_*),
11236   and shell quoting/unquoting functions.  [Havoc]
11237 * Split glib.h into many headers.  [Sebastian]
11238 * Added a simple callback-based parser for XML-like files (GMarkup).  [Havoc]
11239 * Fixed confusions between comparison functions that return <0, 0, >0
11240   and equaility functions that return FALSE,TRUE.  [Sebastian]
11241 * Added safe/portable temporary file manipulation functions.  [Tor]
11242 * autoconf improvements.  [Raja]
11243 * Many documentation improvements.
11244 * Bug fixes.
11245
11246 GObject:
11247
11248 * Added boxed and pointer types.  [Tim/Jonathan]
11249 * Added callback abstraction (GClosure)  [Tim]
11250 * Added signal system (GSignal)  [Tim]
11251 * Make GTypePlugin an interface  [Tim]
11252 * Added GTypeModule - a simple GTypePlugin instantiation  [Owen]
11253 * Bug fixes.
11254
11255
11256 What's new in GLib 1.3.1:
11257 =========================
11258
11259 * New GObject library added including object system based on
11260   the GTK+ object system. 
11261 * Functions for getting the properties of Unicode characters, 
11262   computing the canonical decomposition and ordering combining
11263   characters aand manipulating UTF-8 string manipulation based
11264   on libunicode.
11265 * GString now properly handles embedded nuls.
11266 * Multiple fixes from the 1.2.x branch.
11267 * Upgrade to libtool 1.3.3
11268 * Full thread support (thread creation and destruction).
11269 * BeOS port, BeOS dynamic modules.
11270 * Many improvements to the Windows ports.
11271 * Improvements to the OS/2 port, OS/2 module support.
11272 * Double ended queue implementation.
11273 * GLib macros for printf() formatting, e.g. G_GULONG_FORMAT = "lu"
11274 * New configure option --enable-msg-prefix to prefix messages, warnings
11275   et ceteri with the program name and the process id.
11276 * New thread-safe random number generator Mersenne Twister.
11277 * g_strcompress() added, g_strescape() had a slight API change, and
11278   more tightly defined semantics.
11279 * the g_string(x) macro has been removed, #x may be used instead.
11280                                 
11281