2016-11-25 13:42:21 +01:00
|
|
|
@comment $NetBSD: PLIST,v 1.89 2016/11/25 12:42:21 prlw1 Exp $
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
bin/gapplication
|
2010-11-02 15:52:24 +01:00
|
|
|
bin/gdbus
|
2016-11-25 13:42:21 +01:00
|
|
|
bin/gio
|
2010-05-31 19:30:36 +02:00
|
|
|
bin/gio-querymodules
|
2012-04-30 15:53:48 +02:00
|
|
|
bin/glib-compile-resources
|
2010-11-02 15:52:24 +01:00
|
|
|
bin/glib-compile-schemas
|
2002-03-24 21:27:12 +01:00
|
|
|
bin/glib-genmarshal
|
|
|
|
bin/glib-gettextize
|
|
|
|
bin/glib-mkenums
|
|
|
|
bin/gobject-query
|
2012-04-30 15:53:48 +02:00
|
|
|
bin/gresource
|
2010-11-02 15:52:24 +01:00
|
|
|
bin/gsettings
|
2008-04-10 14:13:49 +02:00
|
|
|
bin/gtester
|
|
|
|
bin/gtester-report
|
|
|
|
include/glib/gio-unix-2.0/gio/gdesktopappinfo.h
|
2010-05-31 19:30:36 +02:00
|
|
|
include/glib/gio-unix-2.0/gio/gfiledescriptorbased.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/gio-unix-2.0/gio/gunixconnection.h
|
2010-11-02 15:52:24 +01:00
|
|
|
include/glib/gio-unix-2.0/gio/gunixcredentialsmessage.h
|
2010-05-31 19:30:36 +02:00
|
|
|
include/glib/gio-unix-2.0/gio/gunixfdlist.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/gio-unix-2.0/gio/gunixfdmessage.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/gio-unix-2.0/gio/gunixinputstream.h
|
|
|
|
include/glib/gio-unix-2.0/gio/gunixmounts.h
|
|
|
|
include/glib/gio-unix-2.0/gio/gunixoutputstream.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/gio-unix-2.0/gio/gunixsocketaddress.h
|
2011-03-09 12:22:04 +01:00
|
|
|
include/glib/glib-2.0/gio/gaction.h
|
|
|
|
include/glib/glib-2.0/gio/gactiongroup.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/gio/gactiongroupexporter.h
|
|
|
|
include/glib/glib-2.0/gio/gactionmap.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gappinfo.h
|
2011-03-09 12:22:04 +01:00
|
|
|
include/glib/glib-2.0/gio/gapplication.h
|
|
|
|
include/glib/glib-2.0/gio/gapplicationcommandline.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/glib-2.0/gio/gasyncinitable.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gasyncresult.h
|
|
|
|
include/glib/glib-2.0/gio/gbufferedinputstream.h
|
|
|
|
include/glib/glib-2.0/gio/gbufferedoutputstream.h
|
Update glib2 to 2.38.2
Patches removed:
- patch-ce: fixed in 690d6b97 (Bug 697386)
- patch-gio_gcontenttype.c: committed as ab5aa2aa
- patch-gio_glocalfile.c: fixed in 584358 (Bug 698348)
- patch-gio_gthreadedresolver.c: fixed in 8372f22b
- patch-glib_gfileutils.c: fixed in 8372f22b
- patch-glib_gmarkup.c: : fixed in 8372f22b
- patch-glib_gstrfuncs.c: fixed in 8372f22b
Patches changed:
- patch-aa: last 3 hunks removed as committed as 996edb0 (Bug 706958)
- patch-ah: last 2 hunks removed as something similar in 8372f2
- patch-ak: last 3 hunks removed as committed as 996edb0 (Bug 706958)
- patch-ba: hunk 9 removed as committed as d47430 (Bug 697365)
Overview of changes from GLib 2.38.1 to 2.38.2
===============================================
* GCancellableSource will now dispatch for each time a cancellable is
cancelled (ie: in the case that it was reset) but this is still
considered undefined behaviour
* fix g_source_add_child_source() thread safety issues
* add workaround for buggy D-Bus daemons when path-matching on '/'
* fallback to pathname queryinfo to help g_file_copy() work on gvfs
filesystems that don't implement query_info_on_read()
* don't crash if loading a DBusActivatable application from keyfile
* fix crash when replacing a symlink with another using GIO
* add a fallback for '-symbolic' icons to the non-symbolic form
Overview of changes from GLib 2.38.0 to 2.38.1
===============================================
* Fix error code checks when SOCK_CLOEXEC is defined but not supported
(fix support for GNU/Hurd)
* g_settings_list_children: only list viable schemas
(fix gsettings list-recursively crashes with invalid schemas installed)
* GDBusObjectManagerClient: Fix typo in the /org/freedesktop/DBus path
when adding match rules
* Various -Werror=format-nonliteral fixes
* gmessages: fix clang annotations to work with older versions
* gio: don't dist (generated file) gnetworking.h
* Restore gl_GLIBC21 to configure; needed for libcharset
Translations:
Catalan (Valencian)
Norwegian bokmål
Russian
Serbian
What's new in Glib 2.38
========================
* Application support
- GIO now provides an implementation of Desktop Actions from the
desktop entry specification
- GApplication now implements the org.freedesktop.Application
interface as per the desktop entry specification, allowing for
standards-based D-Bus launching of GLib-based applications
- GDesktopAppInfo now supports DBusActivatable as per the desktop
entry specification, allowing GLib-based applications to use D-Bus
to launch other applications
- GApplication now has a "busy" flag that can be set on an application
to allow the shell to show that it is busy
* GObject
- the private offset for a given class type is now always constant.
This was done by reorganising the memory layout of instances so that
the private data comes before the "official" pointer for the object
(ie: at a negative offset). Valgrind macros were added to mitigate
any problems that this may have caused.
- a new G_DEFINE_TYPE_WITH_PRIVATE has been added along with a
generated function *_get_instance_private() that can now serve as an
equally-performing alternative to ->priv pointers in instances
(allowing memory savings)
- new G_PRIVATE_FIELD, G_PRIVATE_FIELD_P and G_PRIVATE_OFFSET macros
provide a convenient method of converting between named variables in
private structures and their (now constant) offsets
- installing properties on a GObjectClass must now be done from
class_init. It is no longer valid to install them after class_init
has returned.
- it is now possible to manually break a GObject property binding
without destroying one of the objects involved
* Icons
- the requirements for implementing the GIcon interface have changed
in order to make it possible to consume all implementations of GIcon
with a finite number of cases
- a new GBytesIcon type was added for an icon represented by an
in-memory binary blob in a known image format (ideally png).
- new APIs g_icon_serialize() and g_icon_deserialize() replace the old
to/from_string APIs and will always work, irrespective of which
types have been initialised in the calling process, allowing for a
serialised GdkPixbuf to be deserialised in a process that doesn't
have GdkPixbuf
- support for icons has been added to GMenuModel using the new APIs
* Actions and menus
- GPropertyAction provides a convenient way of creating a stateful
property corresponding to a property on a GObject, such as the
"visible-child-name" property of a GtkStack
- new API g_menu_remove_all()
- we now have established rules about what is a "valid" action name
and an API to check them
- a new API for converting detailed action names to and from the
split-out name and parameter value (as GVariant)
- for backwards compatibility, invalid action names can still be used
with most functions, but this is not recommended
* Other GIO
- GDBus now supports services that wish to handle some of all
properties on an interface asynchronously, without requiring the
service to reimplement the entire org.freedesktop.DBus.Properties
interface
- GFile now has a new _measure_disk_usage() (and async) API for
recursively determining the amount of disk space used by a
particular directory (akin to 'du').
- asynchronous version of g_file_trash() and g_file_make_directory()
have been added
* Other new API
- GRegex has a new function to query the maximum lookbehind length to
allow for regexp matching on streams
- GVariant has two new APIs for constructing strings that allow
avoiding copies in some cases: g_variant_new_take_string() and
g_variant_new_printf()
* Testing
- we can now generate TAP output
- new support functions for simplifying the process of dealing with
data files for srcdir != builddir and installed test cases
- g_test_trap_subprocess() provides a portable alternative to
g_test_trap_fork()
* Other
- GLib now builds on Android against the bionic C library
Overview of changes from GLib 2.37.93 to 2.38.0
================================================
* fix the documentation for GSourceFuncs
* fix compilation on OS X/ppc64
Bugs fixed: 708445, 647145
Translations updated:
Danish
French
Portuguese
Punjabi
Overview of changes from GLib 2.37.92 to 2.37.93
================================================
* a couple of bugfixes in the new g_file_measure_disk_usage() API
* updated Traditional Chinese translation
Overview of changes from GLib 2.37.7 to 2.37.92
===============================================
* new API g_file_measure_disk_usage() similar to du(1)
* minor fixes
* Translation updates:
Assamese
Belarusian
Brazilian Portuguese
Catalan
Czech
Galician
German
Hungarian
Indonesian
Italian
Korean
Korean
Latvian
Lithuanian
Polish
Serbian
Slovenian
Spanish
Overview of changes from GLib 2.37.6 to 2.37.7
==============================================
* GDateTime now supports %:z formatting variations
for timezones. This is a GNU date extension.
* Bugs fixed:
685387 Segfault with GObject.signal_handler_is_connected()...
686786 g_socket_get_available_bytes() returns wrong value ...
705027 GSocket GSource not threadsafe on Windows
706469 Fix G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE documentation
706706 Fix Gir annotations on g_loadable_icon_load_finish
706888 gtype: fix a no-op assertion
706958 configure.ac: fix atomic opts detection
707092 "File Utilities" page for GLib documentation doesn'...
707151 gdatetime: Extend the '%z' timezone format
* Translation updates:
Catalan
Hungarian
Japanese
Polish
Slovak
Tamil
Overview of changes from GLib 2.37.5 to 2.37.6
==============================================
* Tests using the g_test facilities can now generate TAP output
* Bugs fixed:
680926 generic type fallback logic is broken for -symbolic
684327 setting null icon to icon list
689245 GSocket unable to reuse (address,port) on Mac OS X
692125 Support TAP as GTest output format
693335 build: fix dtrace-related warnings
696633 gdbus-codegen trips over unicode chars when using python 3.x
696970 Compiling 2.36.0 for win64 fails
697185 GSocket – Allow specifying the multicast interface from...
700268 Add support for using the clang analyzer
701318 Add G_SPAWN_DEFAULT to GSpawnFlags
701529 glib/tests/gdatetime: use UTC time in test_GDateTime_diff()
701800 a new approach to reporting critical errors
702674 g_date_time_new_utc crash
704165 GLib.IOChannel read_unichar() fails
705075 Simplify g_get_tmp_dir()
705152 Race in glib/task.test
705398 gtype: Fix typo in g_type_class_add_private() error message
705570 Check ref_count in g_object_notify_by_pspec
705600 Deprecate GSimpleActionGroup functions?
* Updated translations:
Assamese
Brazilian Portuguese
Czech
Dutch
Galician
Gujarati
Hebrew
Italian
Lithuanian
Marathi
Norwegian bokmål
Russian
Slovenian
Spanish
Thai
Traditional Chinese
Overview of changes from GLib 2.37.4 to 2.37.5
==============================================
* Implement the Desktop Action specification: In the case that the
application is a GApplication and DBusActivatable, actions from the
desktop file are translated into GActions that have been added to
the application with g_action_map_add_action().
* GPropertyAction is a new type of GAction that represents the value
of a property on an object, and allows to change the value when
activated.
* GNetworkMonitorNetlink can now handle default routes via a device.
* The gsettings tool now reports failure to write a key (e.g. because
the key was locked down)
* Miscellaneous new api:
- g_variant_new_printf
- g_action_print_detailed_name
- g_regex_get_max_lookbehind
* Bugs fixed:
664444 Support additional application actions in .desktop files
684123 glib build only tries -D_GNU_SOURCE if glibc is detected
689794 support incremental matching
699259 add org.freedesktop.Application support to GIO
700460 rewrite tests to not rely on precise timing of timeouts
701511 updates to various GSource types
701609 gnetworkmonitornetlink: handle default route via device
703270 add GPropertyAction
704157 GAction: add function for printing detailed names
704250 Doc: various fixes
704267 regression gsourceclosure: segfault in gedit file chooser
704322 glib-unix: fix handling of multiple signal source for the...
704424 No error when failing to override a locked key
704447 Fix build/use of g_child_watch_closure_callback on Windows
704523 g_thread_create_full() can dereference NULL pointer
704543 Add implementations for G_GNUC_*_IGNORE_DEPRECATIONS for ...
704567 gdbusnameowning: Don't spew an error if we're releasing a...
704585 libc printf can give mixed-case strings for NaN and Inf
704587 FTBFS: statfs_result is undeclared for statvfs()
704699 gmain: Reset signal handlers to default when source is
704704 AI_NUMERICSERV cannot be used with ai_socktype = 0
704873 inotify: don't assume mainloop is running
704999 glib/convert.test crashing due to lack of iconv cache
704931 GMenuModel: add annotations to virtual functions
* Translation updates:
Assamese
Czech
German
Gujarati
Spanish
Tamil
Overview of changes from GLib 2.37.3 to 2.37.4
==============================================
* Bugs fixed:
701283 g_source_add_child_source() segfault
702147 inconsistency of G_STRFUNC
703191 new private macros interact poorly with versioning macros
703254 Doc: various fixes
703407 g_spawn_async() keeps child_pid_report_pipe open in child process
703437 GDBusConnection: be more careful with async GetAll
703478 Missing G_BEGIN/END_DECLS in gsettingsschema.h
* Translation updates:
Catalan
Overview of changes from GLib 2.37.2 to 2.37.3
==============================================
* add a new API for instance private data: G_DEFINE_TYPE_WITH_PRIVATE
* fix timestamps in tarball to prevent automake from being required to
build the unmodified source
* add new D-Bus API for async property handling
* add back fsync() on ext4 for g_file_set_contents() after it was
discovered that despite statements in the ext4 documentation
suggesting that this is safe, it is not safe.
* Translations:
Italian
Norwegian bokmål
* Bugs fixed:
698375 - D-Bus async properties
700350 - timestamp issue
701560 - fsync issue (fixed again)
700035 - new API for instance private data
Overview of changes from GLib 2.37.1 to 2.37.2
==============================================
* The GLib test utilities have grown some file-related APIs
to support tests that can be used installed and uninstalled.
* Installing properties after class initialization is deprecated,
and will trigger a warning.
* GApplication:
- Support org.freedesktop.Application, including D-Bus activation
from desktop files
- Set prgname to appid for services
* Bugs fixed:
549783 gtester lacks framework for tests with data files
692848 Fix property example in gobject tutorial
698018 Add an explicit g_binding_release()
698614 GObject: prevent installing properties after init
699259 add org.freedesktop.Application support to GIO
699959 g_file_copy(): Ensure we create private files by default
700123 Test failure: g_inet_socket_address_get_scope_id
700725 GIcon: NULLify the `type' out param in the sync methods too
701401 gtest: add function for testing for WINE
701456 Error in gnome/glib/gio/tests/file.c
701474 Error building glibmm due to extra comma in glib/gtestutils.h
701560 various improvements for g_file_set_contents()
701680 GFileEnumerator: Add some documentation about ordering
701878 Check wakeup() before iteration(TRUE) doesn't block
* Translations:
Assamese
Czech
Galician
Gujarati
Kannada
Marathi
Odia
Polish
Slovenian
Spanish
Telugu
Overview of changes from GLib 2.37.0 to 2.37.1
==============================================
* add support for installed tests:
https://live.gnome.org/GnomeGoals/InstalledTests
* add a new g_test_trap_subprocess() that works on Windows as a
replacement for the (now deprecated) g_test_trap_fork()
* support for explicitly cancelling a gobject property binding
* performance improvements for signal argument handling
* stop using `quotes' in very many log messages generated by GLib, for
favour of 'this style'. This may cause testcases in other packages
to fail if they were matching on the previous text.
* improve manpages: add missing arguments and flags
Translations:
Aragonese
Assamese
Gujarati
Hindi
Kannada
Norwegian bokmål
Odia
Slovenian
Spanish
Tamil
Telugu
Bugs fixed:
679683 replace g_test_trap_fork()
694380 Improve signal argument collection performance
695233 Strings require plural forms
697849 spelling fixes in cross.xml and running.xml
698877 GProxyAddressEnumerator calls g_network_address_parse_uri without port
698981 [PATCH] test /gdbus/connection/large_message could hang forever
699079 Prototype support for installed tests
699485 [PATCH] tests/mappedfile: Also handle ENOMEM
699493 SOCKS5 proxy code crashes if it cannot authenticate
699500 gbitlock: fix this to not unconditionally use futex emulation
699779 [PATCH] G_GNUC_FORMAT: documentation error
700263 m4macros/glib-gettext.m4: Don't use AC_HEADER_STDC
700714 [PATCH] gtestutils: Ensure test subprocesses don't dump core
700746 Use 'dumb quotes' rather than `really dumb quotes'
2013-12-08 14:08:59 +01:00
|
|
|
include/glib/glib-2.0/gio/gbytesicon.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gcancellable.h
|
2010-05-31 19:30:36 +02:00
|
|
|
include/glib/glib-2.0/gio/gcharsetconverter.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gcontenttype.h
|
2010-05-31 19:30:36 +02:00
|
|
|
include/glib/glib-2.0/gio/gconverter.h
|
|
|
|
include/glib/glib-2.0/gio/gconverterinputstream.h
|
|
|
|
include/glib/glib-2.0/gio/gconverteroutputstream.h
|
2010-11-02 15:52:24 +01:00
|
|
|
include/glib/glib-2.0/gio/gcredentials.h
|
Update glib2 to 2.48.0
- removed patch-gio_gtestdbus.c: applied upstream.
- removed patch-gio_gunixmounts.c: can no longer reproduce problem.
Overview of changes in GLib 2.48.0
==================================
* a minor build fix in the name of determinism
* a few coverity fixes
Bugs fixed:
763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
Translations updated:
Danish
Italian
Overview of changes in GLib 2.47.92
===================================
* gdbus-codegen now supports g_autoptr()
* g_get_user_runtime_dir() now reliably returns an existing directory
* g_array_remove_range() can now remove 0 items from the end of an array
* Many fixes for Windows
* build fixes
* file monitoring
* gsettings backend
* streams
* random numbers
* wide character support
* documentation improvements
* other small bugfixes
Bugs fixed:
724847 Segmentation fault on "gsettings list-recursively"
743933 gapplication: add --app-id command line option
756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
757506 gsettings: schema_list should use the passed schema's source
760694 W32: Apps linked with -mwindows make cursor busy sometimes
762202 g_win32_error_message improvements
762637 build: Unconditionally dist tapset files
762748 Undefined behavior
762937 Mention that g_clear_error can be used with an "empty" GError
763339 array: Support clearing an empty array with g_array_remove_range()
763344 g_get_user_runtime_dir(): ensure directory exists
763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
Translations updated:
Brazilian Portuguese
Czech
Finnish
French
Galician s
German
Greek
Hebrew
Hungarian
Italian
Kazakh
Korean
Latvian
Lithuanian
Occitan
Polish
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.6
==================================
* Windows usupport:
- Fixes and improvements to the GSettings registry backend
- Handle readability and writability of registry keys
- Use Unicode registry APIs
* Bugs fixed:
760852 744772 761126 747927 761337 744570 761504 761550 761843
744570 GString is missing (transfer none) annotations on many of its methods
744772 systemtap and gdb scripts install in wrong place
747927 Documentation: various small improvements
760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
761126 winiconv: update to upstream version
761337 Fix some annotations
761504 W32 registry GSettings backend does not use Unicode
761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
* Translation updates:
Brazilian Portuguese
Bulagarian
Chinese (Taiwan)
Hungarian
Polish
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.5
==================================
* the system copy of PCRE is now used by default to implement GRegex.
Configure with --with-pcre=internal if a system PCRE version
is unavailable or undesired.
* interfaces for DTLS support have been added. A new version of
glib-networking will also be required.
* GDBusMethodInvocation now drops replies if the sender set the
NO_REPLY_EXPECTED flag
* several GApplication fixes, including fixes for commandline arguments
in interpreted languages on Windows
Bugs fixed:
624186 Deprecate glib-gettext macros
734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
735754 Implement close on TLS GOutputStream
748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
752240 Add DTLS support to GIO
755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
756875 Include ntdef.h for NTSTATUS
759554 g_application_run() calls g_main_context_default() repeatidly
760199 gsettings: Install gettext ITS rules
760215 G_LIKELY/_UNLIKELY macros need more parentheses
760683 regex test: Check the expected PCRE exceptions at runtime
Translations updated:
Brazilian Portuguese
Czech
German
Lithuanian
Swedish
Overview of changes in GLib 2.47.4
==================================
* The GApplication documentation has been improved in several areas.
* Bugs fixed:
749092 gdb pretty-printers fail on Python 3 with a TypeError...
757374 macros: clean up "inline" mess
758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
759134 Add missing checks for gnulib vasnprintf()
759408 Do not use uninitialized var
756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
757372 GApplication: destroy the impl on shutdown
728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
757299 glib-compile-resources: do not leak c_name
758553 Fix gettext use
758823 file monitors: reorder some code to avoid segfault
756214 gsettings: Don't translate ""
710243 Add GParamSpec object ref management annotations
735696 xdgmime: Finer handling for cases where mmap() is not available
752983 gapplication: Acquire the main context before running
* Translation updates:
Swedish
Overview of changes in GLib 2.47.3
==================================
The inline cleanup in the last release accidentally removed three
symbols from libglib-2.0.so. It is unlikely that this will have caused
any problems because these symbols were only backup symbols for
definitions exported as inlines in the header files, but ABI is ABI.
This release corrects only this problem.
Overview of changes in GLib 2.47.2
==================================
* We have formalised the assumption that all compilers that are
interested in support 'static inline' and simplified the macros around
this considerably. Please watch for and report unintentional fallout.
* New API: hardware-assisted helpers for overflow-checked integer math.
* other fixes
Bugs fixed:
696324 gtester-report doesn't work with Python 3.x
719966 glib: Add missing (nullable) and (optional) annotations
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
755364 make gtkdoc-check happy again
756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
756988 GSequence should document each function's complexity
757294 Move G_POLLFD_FORMAT to glibconfig.h
757374 macros: clean up "inline" mess
757451 doc: fix g_task_attach_source() example
757628 gio tests fail to build when cross compiling 2.46.1
757693 Invalid free in g_local_file_trash()
757742 Fix up annotations in ghash.c
758181 GTask: fix wrong example code
Translations updated:
Greek
Hebrew
Hungarian
Norwegian bokmål
Portuguese
Scottish Gaelic
Simplified Chinese
Spanish
Overview of changes in GLib 2.47.1
==================================
* The Unicode support has been updated to version 8.0 of the Unicode standard
* GDesktopAppInfo no longer sets the DISPLAY environment variable when
launching apps. This is now done in the GAppLaunchContext implementations
when appropriate
* Bug fixes:
664740 Key-value file parser, space after integer
687223 cleverer GThreadPool management
692085 stderr and stdout are not always file descriptors 1 and 2
697907 Add interface for socket-like things (GSocket, DTLS, etc)
735754 Implement close on TLS GOutputStream
737116 Add functions to print GSocketConnectables and addresses as strings
743011 Minor additions to GError documentation
749161 undefined reference to `__imp__stat32i64'
749314 Cannot restore a just-trashed file
751924 Add recvmmsg()-like API on GSocket
752240 Add DTLS support to GIO
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
753310 Remove `#pragma GCC system_header` from gmessages.h
753935 Update example namespace and class names in GObject tutorial
754855 Object instantiation documentation refers to example that no longer ex...
754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
754994 g_date_time_get_second () sometimes returns an off-by-one result
755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
755351 Example still contains g_autoptr(gchar)
755355 Move GStrv to glib.h so it can be used with g_auto()
755374 g_variant_get_child(): flatten-first logic on '&'
755496 glib 2.46 fails GStreamer test suite
755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
755795 2.46 considers empty files as octet-stream rather than text (leads to...
755961 Fix up annotations in gbytes.c
756053 MSVC doesn't understand the symbol 'msghdr'
756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
756077 testutils: remove internal ABI comment
756099 g_main_context_query(): Annotate @n_fds as (in) parameter
756139 musl: ctors called in the wrong order
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
756316 GSequence should provide fast api to check if empty
756382 snprintf used on Windows with VS2015 doesn't support %n
756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
756550 gtypes.h: Make G_MININTn literals negative
756875 Include ntdef.h for NTSTATUS
756952 giomodule: return a copy of module name
* Translation updates:
Basque
Czech
Serbian
Serbian Latin
Vietnamese
Overview of changes in GLib 2.46.0
==================================
* Disable runtime-deprecation warnings
* Fix marshalling of flags on bigendian 64bit architectures
* Translation updates
Brazilian Portuguese
Danish
German
Latvian
Russian
Turkish
Overview of changes in GLib 2.45.8
==================================
* utf8 validation and utf8-to-ucs4 conversion are faster
* Small speedups to property change notification
* Various other small optimizations for GQuark, GData
* Bugs fixed:
696426 GParamSpecTypeInfo do not need to be static
735429 Cleanup MSVC Project Files Generation
738504 Optimize UTF-8 decoding by unrolling branches and expressions
742903 Add missing (transfer) annotation to GString
748633 g_set_object order of operations
754431 Fix build of glib/gstrfuncs.c on Windows
754560 gioerror: Add more mappings for WinSock error codes
754582 Glib cannot compile
754601 Make g_strerror work with non-glibc POSIX systems
754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
754788 more g_strerror stuff
754831 autocleanups: Add GString type
754924 Improve test coverage of g_utf8_validate() by added known-...
754986 Avoid unnecessary signal emission during draw
* Translation updates:
Italian
Kazakh
Korean
Lithuanian
Slovenian
Swedish
Overview of changes in GLib 2.45.7
==================================
* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
backends (e.g. cloud storage).
* GFileMonitor: Make the inotify backend work with atomic renames again
* GSettings: change notification is again working unconditionally
* GListStore has a sort function now
* Test infrastructure:
- Tests are now required to have unique names
- TAP support has been improved
- A macro for asserting that two memory regions have identical content
has been added
* Bugs fixed:
708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
742849 inotify: send paired events to both sides
744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
747364 Fix GError leak in g_file_query_writable_namespaces()
749492 Support file creation time on FreeBSD and NetBSD
752769 (g_socket_receive_message | g_socket_send_message) performance
753745 glib-genmarshal still needed for cross-compilation
754152 Add g_list_store_sort
754211 Memory leak in g_file_enumerator_iterate ()
754264 GLib 2.44 certificate chain construction fails if the PEM incl...
754283 gtestutils: add g_assert_cmpmem()
754284 gtestutils: print the TAP test plan first, not last
754286 misc gtestutils fixes
754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
* Translation updates:
Chinese (Taiwan)
French
Galician
Greek
Hebrew
Hungarian
Indonesian
Polish
Portuguese
Overview of changes in GLib 2.45.6
==================================
* Fix a test failure and a build failure
Overview of changes in GLib 2.45.5
==================================
* GNetworkMonitor now provides information about metered networks
* g_mem_set_vtable has been deprecated; it has not been working for
quite a while. The recommendation is to use valgrind, or replace
malloc itself.
* Bugs fixed:
656325 Make GDBusInterfaceVTable binding friendly
741779 Documentation tweaks addressing real-world API misuses
741822 Fails to build with VS 2015
742386 gdbusconnection: Don't g_printerr() when exiting
743018 gobject: Add more cross-links between documentation pages
750282 Add g_network_monitor_get_network_metered() to get if the connection...
751358 GFileMonitor doesn't react to "mv some-file watched-file"
751592 Stop using GMemVtable
751598 Stop 'handle-local-options' propagation when callback reports an err...
751610 g_str_hash produces collisions with strings of length 2
751751 Wrong docs of g_async_queue_remove
752210 gdbus command crashes with SIGSEGV
752656 gdbusconnection: Fix signal subscription documentation
752767 Fix typo in g_hash_table_replace() documentation
753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
753285 g_menu_item_set_icon fails if called with NULL icon
* Translation updates:
Catalan
Czech
French
Indonesian
Lithuanian
Norwegian bokmål
Slovak
Spanish
Thai
Turkish
Overview of changes in GLib 2.45.4
==================================
* Bugs fixed:
727829 win32: glibconfig.h.win32 updates
741901 Clang cannot know that g_error don't return
746339 GSocket kills process when fd is not a socket
747676 gio/tests/socket fails: test_fd_roundtrip
748610 Some tests fail with non-English locales
749911 g_inet_address_to_string broken on XP/2003
749912 g_inet_address_new_from_string broken on XP/2003
750625 Should dismiss Software Updates Available notification after...
750807 G_BREAKPOINT doesn't work as intended on Darwin
751160 gtask does unnecessary work
751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
751731 GFile/DirectoryMonitor emit move events with other_file=NULL
751737 gio/tests/appmonitor test fails in 2.45.3
751798 Wrong enum type used in some test-cases
752089 make gsocketservice::active a property
752293 small cleanup: use list_free_full
* Translation updates:
Greek
Hebrew
Portuguese
Overview of changes in GLib 2.45.3
==================================
* Improve performance of g_signal_handler_disconnect for signals
with many handlers
* GDBus has gained a new call flag to allow interactive authorization
* GSettings:
- New API: g_settings_schema_list_keys
- Deprecated: g_settings_list_keys
* OS X:
- Implement GNotification
- Bump the OS X requirement to 10.9
* Windows:
- Add registry reading API
- Reimplement GAppInfo using registry information
* Bugs fixed:
666831 Support URI opening on W32
728489 property action with inverted boolean state
730168 Incorrect annotation on g_action_group_get_action_state_type return...
733325 Several regex tests fail with pcre3 8.35
734888 GLib has no helper functions to work with W32 Registry
737009 signal handler lookup doesn't scale
738185 Misleading language about "file name encoding" in the docs on g_env...
738504 Optimize UTF-8 decoding by unrolling branches and expressions
739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
739424 gnome-shell crashes when files are added, deleted, or modified in $...
739616 DBus; Add new call flag to allow interactive authorization
740308 Add g_settings_schema_list_keys() method
740516 RFE: please provide an introspectible version of g_log_set_handler
741788 Document GSettings build system integration
745013 GBinding not thread safe
747146 Implement GNotification on OSX
747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
748727 Filechooser dialog shows no icons for directories on W32
749693 GActionGroupExporter: flush queue on requests
750203 GNetworkMonitorNetlink hangs in user namespace
750322 gapplication: Make sure --help output is translated
750344 GTlsInteractionClass is missing from doc
750369 Various GBinding cleanups
750386 Race condition in g_io_condition_get_type
750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
750573 GTlsDatabaseClass is not documented
750918 genmarshal: silence register storage class warnings
751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
479730 The "g_key_file_set_comment" interface prepends '#' character to...
* Translation updates:
Hungarian
Spanish
Overview of changes in GLib 2.45.2
==================================
* Improve error reporting in glib-compile-schemas.
* Add introspection annotations to GListStore.
* Bugs fixed:
696749 win32 : failed to compile because of careless mistake in the code
723394 const parameter to GtkPopover gtk_popover_set_pointing_to
724113 gdbus-connection-loss test can fail on slow machines
725981 tap-driver.sh: internal error getting exit status
733325 Several regex tests fail with pcre3 8.35
744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
747882 gtype: Bump allowed number of children
748534 gtest: if a subprocess assertion fails, print its stdout and stderr
748612 de_DE locale used in option-context test is not supported by FreeBSD
748614 Double unref in g_socket_listener_add_inet_port
748834 glocalfilemonitor: Emit notification on rate limit change
749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
749080 gdatetime test: fails if close to rollover between seconds
749180 gnetworkaddress: add return type annotation to parse methods
749352 g_binding_unbind() fails when source is also the target
749353 GBinding does not connect to the detailed notify signal
* Translation updates:
Catalan
French
Slovak
Thai
Overview of changes in GLib 2.45.1
==================================
* The GSettings schema compiler, glib-compile-schemas has been changed
to reject schema xml that has duplicate <summary> or <description>
elements. Such elements typically occur when translations are merged
into the schema, with xml:lang attributes. This is not the correct
way to translate schemas. Instead keep the translations in the .mo
file and set the gettext-domain attribute on the <schemalist> element.
* The file monitoring infrastructure has been rewritten, and all backends
have seen major improvements.
The inotify backend is reporting events with less delay (no event will
be delayed more than 10ms) and wakeups due to file monitoring have been
significantly reduced. A CHANGES_DONE event will also be sent when new
files appear.
The poll implementation is now using the thread default main context.
The fam implmentation is now running in the worker thread.
The fen implementation has been removed, since it was unmaintained.
* The GSettings schema compiler, glib-compile-schemas, is more strict
about rejecting schemas with xml:lang style merged translations.
Schema translations should be done by specifying the gettext domain
in the xml, and keeping the translations in gettext. To avoid breaking
already-installed schemas, this change is only taking effect when
you use the --strict option.
* The hardcoded 10-thread limit of GTask's thread pool has been removed,
since it was prone to causing deadlocks. The thread pool is now allowed
to grow dynamically and will shrink back over time.
* GSimpleAsyncResult has been deprecated in favor of GTask.
* The algorithm used by GAppInfo to find default handlers for mime types
has been tweaked to prefer apps that handle the specific subtype over
default handlers for a generic supertype.
* Bug fixes:
627285 inotify file monitor hardwired delay
631597 Segmentation fault in append_escaped_text
661767 merge/improve various bits of run-in-thread functionality
687223 cleverer GThreadPool management
711547 win32: silence some build warnings
719966 glib: Add missing (nullable) and (optional) annotations
726447 Possibly an error in text string
728663 W32: wrong stat struct is used when built with MinGW-w64
728669 W32: GLocalFile can't measure size of files larger than 2^32...
730188 gsocket: Document FD ownership with g_socket_new_from_fd()
733325 Several regex tests fail with pcre3 8.35
738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
739850 GClosure: add valgrind hints
741791 gmain: Save errno when handling unix signals
744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
745255 Add support for copying sessions between GTlsClientConnections
745745 gdbus: fix out-of-bound array access
745821 Don't use __alloc_size__ attribute with clang
746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
746753 Glib-compile-resources --generate-header not using ".h" as ...
747209 glib-compile-schemas ought to reject repeated <summary> and...
747349 Conversion of gdbus to use GTask causes deadlocks
747363 gatomic: Add missing new line in API doc comment
747472 Don't ignore already-installed schemas with multiple <summa...
747541 gdbus segfaults with invalid --dest
747772 Having hardcoded utf8 strings in the source code does not p...
748019 gsocketconnection: Fix copy-pasto in documentation
748177 not all test schemas are distributed, "make distcheck" fails
* Translation updates:
Basque
Czech
Danish
Finnish
German
Hebrew
Icelandic
Norwegian bokmål
Russian
Turkish
2016-04-07 20:33:05 +02:00
|
|
|
include/glib/glib-2.0/gio/gdatagrambased.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gdatainputstream.h
|
|
|
|
include/glib/glib-2.0/gio/gdataoutputstream.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/gio/gdbusactiongroup.h
|
2010-11-02 15:52:24 +01:00
|
|
|
include/glib/glib-2.0/gio/gdbusaddress.h
|
|
|
|
include/glib/glib-2.0/gio/gdbusauthobserver.h
|
|
|
|
include/glib/glib-2.0/gio/gdbusconnection.h
|
|
|
|
include/glib/glib-2.0/gio/gdbuserror.h
|
2012-01-29 11:46:52 +01:00
|
|
|
include/glib/glib-2.0/gio/gdbusinterface.h
|
|
|
|
include/glib/glib-2.0/gio/gdbusinterfaceskeleton.h
|
2010-11-02 15:52:24 +01:00
|
|
|
include/glib/glib-2.0/gio/gdbusintrospection.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/gio/gdbusmenumodel.h
|
2010-11-02 15:52:24 +01:00
|
|
|
include/glib/glib-2.0/gio/gdbusmessage.h
|
|
|
|
include/glib/glib-2.0/gio/gdbusmethodinvocation.h
|
|
|
|
include/glib/glib-2.0/gio/gdbusnameowning.h
|
|
|
|
include/glib/glib-2.0/gio/gdbusnamewatching.h
|
2012-01-29 11:46:52 +01:00
|
|
|
include/glib/glib-2.0/gio/gdbusobject.h
|
|
|
|
include/glib/glib-2.0/gio/gdbusobjectmanager.h
|
|
|
|
include/glib/glib-2.0/gio/gdbusobjectmanagerclient.h
|
|
|
|
include/glib/glib-2.0/gio/gdbusobjectmanagerserver.h
|
|
|
|
include/glib/glib-2.0/gio/gdbusobjectproxy.h
|
|
|
|
include/glib/glib-2.0/gio/gdbusobjectskeleton.h
|
2010-11-02 15:52:24 +01:00
|
|
|
include/glib/glib-2.0/gio/gdbusproxy.h
|
|
|
|
include/glib/glib-2.0/gio/gdbusserver.h
|
|
|
|
include/glib/glib-2.0/gio/gdbusutils.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gdrive.h
|
Update glib2 to 2.48.0
- removed patch-gio_gtestdbus.c: applied upstream.
- removed patch-gio_gunixmounts.c: can no longer reproduce problem.
Overview of changes in GLib 2.48.0
==================================
* a minor build fix in the name of determinism
* a few coverity fixes
Bugs fixed:
763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
Translations updated:
Danish
Italian
Overview of changes in GLib 2.47.92
===================================
* gdbus-codegen now supports g_autoptr()
* g_get_user_runtime_dir() now reliably returns an existing directory
* g_array_remove_range() can now remove 0 items from the end of an array
* Many fixes for Windows
* build fixes
* file monitoring
* gsettings backend
* streams
* random numbers
* wide character support
* documentation improvements
* other small bugfixes
Bugs fixed:
724847 Segmentation fault on "gsettings list-recursively"
743933 gapplication: add --app-id command line option
756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
757506 gsettings: schema_list should use the passed schema's source
760694 W32: Apps linked with -mwindows make cursor busy sometimes
762202 g_win32_error_message improvements
762637 build: Unconditionally dist tapset files
762748 Undefined behavior
762937 Mention that g_clear_error can be used with an "empty" GError
763339 array: Support clearing an empty array with g_array_remove_range()
763344 g_get_user_runtime_dir(): ensure directory exists
763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
Translations updated:
Brazilian Portuguese
Czech
Finnish
French
Galician s
German
Greek
Hebrew
Hungarian
Italian
Kazakh
Korean
Latvian
Lithuanian
Occitan
Polish
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.6
==================================
* Windows usupport:
- Fixes and improvements to the GSettings registry backend
- Handle readability and writability of registry keys
- Use Unicode registry APIs
* Bugs fixed:
760852 744772 761126 747927 761337 744570 761504 761550 761843
744570 GString is missing (transfer none) annotations on many of its methods
744772 systemtap and gdb scripts install in wrong place
747927 Documentation: various small improvements
760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
761126 winiconv: update to upstream version
761337 Fix some annotations
761504 W32 registry GSettings backend does not use Unicode
761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
* Translation updates:
Brazilian Portuguese
Bulagarian
Chinese (Taiwan)
Hungarian
Polish
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.5
==================================
* the system copy of PCRE is now used by default to implement GRegex.
Configure with --with-pcre=internal if a system PCRE version
is unavailable or undesired.
* interfaces for DTLS support have been added. A new version of
glib-networking will also be required.
* GDBusMethodInvocation now drops replies if the sender set the
NO_REPLY_EXPECTED flag
* several GApplication fixes, including fixes for commandline arguments
in interpreted languages on Windows
Bugs fixed:
624186 Deprecate glib-gettext macros
734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
735754 Implement close on TLS GOutputStream
748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
752240 Add DTLS support to GIO
755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
756875 Include ntdef.h for NTSTATUS
759554 g_application_run() calls g_main_context_default() repeatidly
760199 gsettings: Install gettext ITS rules
760215 G_LIKELY/_UNLIKELY macros need more parentheses
760683 regex test: Check the expected PCRE exceptions at runtime
Translations updated:
Brazilian Portuguese
Czech
German
Lithuanian
Swedish
Overview of changes in GLib 2.47.4
==================================
* The GApplication documentation has been improved in several areas.
* Bugs fixed:
749092 gdb pretty-printers fail on Python 3 with a TypeError...
757374 macros: clean up "inline" mess
758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
759134 Add missing checks for gnulib vasnprintf()
759408 Do not use uninitialized var
756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
757372 GApplication: destroy the impl on shutdown
728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
757299 glib-compile-resources: do not leak c_name
758553 Fix gettext use
758823 file monitors: reorder some code to avoid segfault
756214 gsettings: Don't translate ""
710243 Add GParamSpec object ref management annotations
735696 xdgmime: Finer handling for cases where mmap() is not available
752983 gapplication: Acquire the main context before running
* Translation updates:
Swedish
Overview of changes in GLib 2.47.3
==================================
The inline cleanup in the last release accidentally removed three
symbols from libglib-2.0.so. It is unlikely that this will have caused
any problems because these symbols were only backup symbols for
definitions exported as inlines in the header files, but ABI is ABI.
This release corrects only this problem.
Overview of changes in GLib 2.47.2
==================================
* We have formalised the assumption that all compilers that are
interested in support 'static inline' and simplified the macros around
this considerably. Please watch for and report unintentional fallout.
* New API: hardware-assisted helpers for overflow-checked integer math.
* other fixes
Bugs fixed:
696324 gtester-report doesn't work with Python 3.x
719966 glib: Add missing (nullable) and (optional) annotations
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
755364 make gtkdoc-check happy again
756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
756988 GSequence should document each function's complexity
757294 Move G_POLLFD_FORMAT to glibconfig.h
757374 macros: clean up "inline" mess
757451 doc: fix g_task_attach_source() example
757628 gio tests fail to build when cross compiling 2.46.1
757693 Invalid free in g_local_file_trash()
757742 Fix up annotations in ghash.c
758181 GTask: fix wrong example code
Translations updated:
Greek
Hebrew
Hungarian
Norwegian bokmål
Portuguese
Scottish Gaelic
Simplified Chinese
Spanish
Overview of changes in GLib 2.47.1
==================================
* The Unicode support has been updated to version 8.0 of the Unicode standard
* GDesktopAppInfo no longer sets the DISPLAY environment variable when
launching apps. This is now done in the GAppLaunchContext implementations
when appropriate
* Bug fixes:
664740 Key-value file parser, space after integer
687223 cleverer GThreadPool management
692085 stderr and stdout are not always file descriptors 1 and 2
697907 Add interface for socket-like things (GSocket, DTLS, etc)
735754 Implement close on TLS GOutputStream
737116 Add functions to print GSocketConnectables and addresses as strings
743011 Minor additions to GError documentation
749161 undefined reference to `__imp__stat32i64'
749314 Cannot restore a just-trashed file
751924 Add recvmmsg()-like API on GSocket
752240 Add DTLS support to GIO
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
753310 Remove `#pragma GCC system_header` from gmessages.h
753935 Update example namespace and class names in GObject tutorial
754855 Object instantiation documentation refers to example that no longer ex...
754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
754994 g_date_time_get_second () sometimes returns an off-by-one result
755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
755351 Example still contains g_autoptr(gchar)
755355 Move GStrv to glib.h so it can be used with g_auto()
755374 g_variant_get_child(): flatten-first logic on '&'
755496 glib 2.46 fails GStreamer test suite
755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
755795 2.46 considers empty files as octet-stream rather than text (leads to...
755961 Fix up annotations in gbytes.c
756053 MSVC doesn't understand the symbol 'msghdr'
756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
756077 testutils: remove internal ABI comment
756099 g_main_context_query(): Annotate @n_fds as (in) parameter
756139 musl: ctors called in the wrong order
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
756316 GSequence should provide fast api to check if empty
756382 snprintf used on Windows with VS2015 doesn't support %n
756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
756550 gtypes.h: Make G_MININTn literals negative
756875 Include ntdef.h for NTSTATUS
756952 giomodule: return a copy of module name
* Translation updates:
Basque
Czech
Serbian
Serbian Latin
Vietnamese
Overview of changes in GLib 2.46.0
==================================
* Disable runtime-deprecation warnings
* Fix marshalling of flags on bigendian 64bit architectures
* Translation updates
Brazilian Portuguese
Danish
German
Latvian
Russian
Turkish
Overview of changes in GLib 2.45.8
==================================
* utf8 validation and utf8-to-ucs4 conversion are faster
* Small speedups to property change notification
* Various other small optimizations for GQuark, GData
* Bugs fixed:
696426 GParamSpecTypeInfo do not need to be static
735429 Cleanup MSVC Project Files Generation
738504 Optimize UTF-8 decoding by unrolling branches and expressions
742903 Add missing (transfer) annotation to GString
748633 g_set_object order of operations
754431 Fix build of glib/gstrfuncs.c on Windows
754560 gioerror: Add more mappings for WinSock error codes
754582 Glib cannot compile
754601 Make g_strerror work with non-glibc POSIX systems
754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
754788 more g_strerror stuff
754831 autocleanups: Add GString type
754924 Improve test coverage of g_utf8_validate() by added known-...
754986 Avoid unnecessary signal emission during draw
* Translation updates:
Italian
Kazakh
Korean
Lithuanian
Slovenian
Swedish
Overview of changes in GLib 2.45.7
==================================
* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
backends (e.g. cloud storage).
* GFileMonitor: Make the inotify backend work with atomic renames again
* GSettings: change notification is again working unconditionally
* GListStore has a sort function now
* Test infrastructure:
- Tests are now required to have unique names
- TAP support has been improved
- A macro for asserting that two memory regions have identical content
has been added
* Bugs fixed:
708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
742849 inotify: send paired events to both sides
744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
747364 Fix GError leak in g_file_query_writable_namespaces()
749492 Support file creation time on FreeBSD and NetBSD
752769 (g_socket_receive_message | g_socket_send_message) performance
753745 glib-genmarshal still needed for cross-compilation
754152 Add g_list_store_sort
754211 Memory leak in g_file_enumerator_iterate ()
754264 GLib 2.44 certificate chain construction fails if the PEM incl...
754283 gtestutils: add g_assert_cmpmem()
754284 gtestutils: print the TAP test plan first, not last
754286 misc gtestutils fixes
754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
* Translation updates:
Chinese (Taiwan)
French
Galician
Greek
Hebrew
Hungarian
Indonesian
Polish
Portuguese
Overview of changes in GLib 2.45.6
==================================
* Fix a test failure and a build failure
Overview of changes in GLib 2.45.5
==================================
* GNetworkMonitor now provides information about metered networks
* g_mem_set_vtable has been deprecated; it has not been working for
quite a while. The recommendation is to use valgrind, or replace
malloc itself.
* Bugs fixed:
656325 Make GDBusInterfaceVTable binding friendly
741779 Documentation tweaks addressing real-world API misuses
741822 Fails to build with VS 2015
742386 gdbusconnection: Don't g_printerr() when exiting
743018 gobject: Add more cross-links between documentation pages
750282 Add g_network_monitor_get_network_metered() to get if the connection...
751358 GFileMonitor doesn't react to "mv some-file watched-file"
751592 Stop using GMemVtable
751598 Stop 'handle-local-options' propagation when callback reports an err...
751610 g_str_hash produces collisions with strings of length 2
751751 Wrong docs of g_async_queue_remove
752210 gdbus command crashes with SIGSEGV
752656 gdbusconnection: Fix signal subscription documentation
752767 Fix typo in g_hash_table_replace() documentation
753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
753285 g_menu_item_set_icon fails if called with NULL icon
* Translation updates:
Catalan
Czech
French
Indonesian
Lithuanian
Norwegian bokmål
Slovak
Spanish
Thai
Turkish
Overview of changes in GLib 2.45.4
==================================
* Bugs fixed:
727829 win32: glibconfig.h.win32 updates
741901 Clang cannot know that g_error don't return
746339 GSocket kills process when fd is not a socket
747676 gio/tests/socket fails: test_fd_roundtrip
748610 Some tests fail with non-English locales
749911 g_inet_address_to_string broken on XP/2003
749912 g_inet_address_new_from_string broken on XP/2003
750625 Should dismiss Software Updates Available notification after...
750807 G_BREAKPOINT doesn't work as intended on Darwin
751160 gtask does unnecessary work
751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
751731 GFile/DirectoryMonitor emit move events with other_file=NULL
751737 gio/tests/appmonitor test fails in 2.45.3
751798 Wrong enum type used in some test-cases
752089 make gsocketservice::active a property
752293 small cleanup: use list_free_full
* Translation updates:
Greek
Hebrew
Portuguese
Overview of changes in GLib 2.45.3
==================================
* Improve performance of g_signal_handler_disconnect for signals
with many handlers
* GDBus has gained a new call flag to allow interactive authorization
* GSettings:
- New API: g_settings_schema_list_keys
- Deprecated: g_settings_list_keys
* OS X:
- Implement GNotification
- Bump the OS X requirement to 10.9
* Windows:
- Add registry reading API
- Reimplement GAppInfo using registry information
* Bugs fixed:
666831 Support URI opening on W32
728489 property action with inverted boolean state
730168 Incorrect annotation on g_action_group_get_action_state_type return...
733325 Several regex tests fail with pcre3 8.35
734888 GLib has no helper functions to work with W32 Registry
737009 signal handler lookup doesn't scale
738185 Misleading language about "file name encoding" in the docs on g_env...
738504 Optimize UTF-8 decoding by unrolling branches and expressions
739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
739424 gnome-shell crashes when files are added, deleted, or modified in $...
739616 DBus; Add new call flag to allow interactive authorization
740308 Add g_settings_schema_list_keys() method
740516 RFE: please provide an introspectible version of g_log_set_handler
741788 Document GSettings build system integration
745013 GBinding not thread safe
747146 Implement GNotification on OSX
747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
748727 Filechooser dialog shows no icons for directories on W32
749693 GActionGroupExporter: flush queue on requests
750203 GNetworkMonitorNetlink hangs in user namespace
750322 gapplication: Make sure --help output is translated
750344 GTlsInteractionClass is missing from doc
750369 Various GBinding cleanups
750386 Race condition in g_io_condition_get_type
750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
750573 GTlsDatabaseClass is not documented
750918 genmarshal: silence register storage class warnings
751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
479730 The "g_key_file_set_comment" interface prepends '#' character to...
* Translation updates:
Hungarian
Spanish
Overview of changes in GLib 2.45.2
==================================
* Improve error reporting in glib-compile-schemas.
* Add introspection annotations to GListStore.
* Bugs fixed:
696749 win32 : failed to compile because of careless mistake in the code
723394 const parameter to GtkPopover gtk_popover_set_pointing_to
724113 gdbus-connection-loss test can fail on slow machines
725981 tap-driver.sh: internal error getting exit status
733325 Several regex tests fail with pcre3 8.35
744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
747882 gtype: Bump allowed number of children
748534 gtest: if a subprocess assertion fails, print its stdout and stderr
748612 de_DE locale used in option-context test is not supported by FreeBSD
748614 Double unref in g_socket_listener_add_inet_port
748834 glocalfilemonitor: Emit notification on rate limit change
749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
749080 gdatetime test: fails if close to rollover between seconds
749180 gnetworkaddress: add return type annotation to parse methods
749352 g_binding_unbind() fails when source is also the target
749353 GBinding does not connect to the detailed notify signal
* Translation updates:
Catalan
French
Slovak
Thai
Overview of changes in GLib 2.45.1
==================================
* The GSettings schema compiler, glib-compile-schemas has been changed
to reject schema xml that has duplicate <summary> or <description>
elements. Such elements typically occur when translations are merged
into the schema, with xml:lang attributes. This is not the correct
way to translate schemas. Instead keep the translations in the .mo
file and set the gettext-domain attribute on the <schemalist> element.
* The file monitoring infrastructure has been rewritten, and all backends
have seen major improvements.
The inotify backend is reporting events with less delay (no event will
be delayed more than 10ms) and wakeups due to file monitoring have been
significantly reduced. A CHANGES_DONE event will also be sent when new
files appear.
The poll implementation is now using the thread default main context.
The fam implmentation is now running in the worker thread.
The fen implementation has been removed, since it was unmaintained.
* The GSettings schema compiler, glib-compile-schemas, is more strict
about rejecting schemas with xml:lang style merged translations.
Schema translations should be done by specifying the gettext domain
in the xml, and keeping the translations in gettext. To avoid breaking
already-installed schemas, this change is only taking effect when
you use the --strict option.
* The hardcoded 10-thread limit of GTask's thread pool has been removed,
since it was prone to causing deadlocks. The thread pool is now allowed
to grow dynamically and will shrink back over time.
* GSimpleAsyncResult has been deprecated in favor of GTask.
* The algorithm used by GAppInfo to find default handlers for mime types
has been tweaked to prefer apps that handle the specific subtype over
default handlers for a generic supertype.
* Bug fixes:
627285 inotify file monitor hardwired delay
631597 Segmentation fault in append_escaped_text
661767 merge/improve various bits of run-in-thread functionality
687223 cleverer GThreadPool management
711547 win32: silence some build warnings
719966 glib: Add missing (nullable) and (optional) annotations
726447 Possibly an error in text string
728663 W32: wrong stat struct is used when built with MinGW-w64
728669 W32: GLocalFile can't measure size of files larger than 2^32...
730188 gsocket: Document FD ownership with g_socket_new_from_fd()
733325 Several regex tests fail with pcre3 8.35
738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
739850 GClosure: add valgrind hints
741791 gmain: Save errno when handling unix signals
744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
745255 Add support for copying sessions between GTlsClientConnections
745745 gdbus: fix out-of-bound array access
745821 Don't use __alloc_size__ attribute with clang
746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
746753 Glib-compile-resources --generate-header not using ".h" as ...
747209 glib-compile-schemas ought to reject repeated <summary> and...
747349 Conversion of gdbus to use GTask causes deadlocks
747363 gatomic: Add missing new line in API doc comment
747472 Don't ignore already-installed schemas with multiple <summa...
747541 gdbus segfaults with invalid --dest
747772 Having hardcoded utf8 strings in the source code does not p...
748019 gsocketconnection: Fix copy-pasto in documentation
748177 not all test schemas are distributed, "make distcheck" fails
* Translation updates:
Basque
Czech
Danish
Finnish
German
Hebrew
Icelandic
Norwegian bokmål
Russian
Turkish
2016-04-07 20:33:05 +02:00
|
|
|
include/glib/glib-2.0/gio/gdtlsclientconnection.h
|
|
|
|
include/glib/glib-2.0/gio/gdtlsconnection.h
|
|
|
|
include/glib/glib-2.0/gio/gdtlsserverconnection.h
|
Update glib2 to 2.18.0.
Based on patch provided by Juan RP in pkgsrc-users ml.
Overview of Changes from GLib 2.17.7 to GLib 2.18.0
===================================================
* Win32:
- rework the g_poll() implementation to match poll() semantics more closely
* Bugs fixed:
324234 Using g_io_add_watch_full() to wait for connect() to return...
548278 Async GETs connections are always terminated unexpectedly...
500246 Bug fixes for giowin32
523939 Example program for GValue
550096 GBookmarkFile parser is not forward compatible
550040 Move GString, rand and printf tests to the unit test framework
550104 trivial documentation fix for g_get_home_dir
548988 g_file_replace fails on Windows when the target file exists
550059 Wrong docs for g_emblemed_icon_add_emblem
548800 Missing a g_object_get_type function
550056 Missing documentation for g_emblemed_icon_get_emblems
* Updated translations:
Bulgarian (bg)
Czech (cs)
German (de)
Estonian (et)
Basque (eu)
French (fr)
Hebrew (he)
Hungarian (hu)
Italian (it)
Japanese (ja)
Lithuanian (lt)
Maithili (mai)
Dutch (nl)
Swedish (sv)
Thai (th)
Ukrainian (uk)
Vietnamese (vi)
Overview of Changes from GLib 2.17.6 to GLib 2.17.7
===================================================
* More fixes for 64-bit Windows
* GIO
- Add a vfs implementation for HTTP and HTTPS URIs on Windows
* Bugs fixed:
546329 API docs for g_utf8_normalize() are incorrect
546876 Modify GMarkup parser to accept  .. 
547200 g_utf8_find_next_char() issues
547637 unconditional #include of sys/statfs.h in configure
547337 G_DISABLE_DEPRECATED breaks tests build
547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
502498 Test framework assertion failures should follow gcc
546371 Improve docs re g_file_monitor
546483 GThemedIcon:use-default-fallbacks is not readable without...
546132 GFileIcon is bindings-unfriendly
542156 zfs mount in home directory shown on nautilus desktop
535124 umask 002 not being applied for new directories...
547080 g_file_copy leaks expected errors
546582 Callbacks from GFileMonitor present a GFile...
547262 Missing link in the docs
* Updated translations:
Arabic (ar)
Catalan (ca)
Spanish (es)
Basque (eu)
Finnish (fi)
Galician (gl)
Hebrew (he)
Marathi (mr)
Norwegian bokmål (nb)
Portugese (pt)
Brazilian Portugese (pt_BR)
Swedish (sv)
Thai (th)
Overview of Changes from GLib 2.17.4 to GLib 2.17.6
===================================================
* Fix problems on 64-bit Windows
* g_markup_context_get_user_data: New function to access
the user_data outside of callbacks
* GIO
- g_mount_guess_content_type_sync: synchronous version of
g_mount_guess_content_type
- GEmblem: A GIcon implementation that adds emblem-related
metadata to icons
- GEmblemedIcon: A GIcon implementation that can add emblems
to icons
* Bugs fixed:
544088 option_test_LDADD is left in tests/Makefile.am
544465 gmarkup makes it hard to use pre-rolled parsers
545485 Implicit declaration of utime()
545798 "Since: 2.18" mark is missing in g_set_error_literal...
544140 fam-helper 64-bit issue
529694 SELinux context setting support
545157 wrong/no list of "open with" applications for .cc...
545203 gfile.c: argument is different type
545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
544177 Fix trivial cut and paste error in documentation
545395 Language tweak for g_value_set_string* docs
541036 Gnumeric crashes when trying to open Desktop...
546079 leak in xdgmime
545395 Language tweak for g_value_set_string* docs
546017 Don't copy attributes when copying a symlink
* Updated translations:
Arabic (ar)
Estonian (et)
Galician (gl)
Italian (it)
Japanese (ja)
Korean (ko)
Norwegian bokmål (nb)
Pashto (ps)
Portugese (pt)
Overview of Changes from GLib 2.17.3 to GLib 2.17.4
===================================================
* GIO:
- New API to handle content types: g_mount_guess_content_type,
g_content_type_guess_for_tree.
- Export the eject-button signal on the volume monitor class
- New API to enable out-of-process volume monitors:
g_volume_get_activation_root
* GObject:
- New API to handle signals without slots in the class structure:
g_signal_new_class_handler, g_signal_override_class_handler
* Internationalization:
- Add an NC_ macro that is a no-op equivalent of C_
* GMarkup:
- Add two new functions g_markup_parse_context_push,
g_markup_parse_context_pop to support "subparsers"
* Bugs fixed:
541208 Functions to easily install and use signals without...
541507 Ambiguous description of assigned characters in the...
543040 async reading on dummy file will crash on GIO_USE_VFS=local
543560 enable gio-FEN back-end warnings on Solaris will crash...
528317 GRegex does not allow recursion limit
337518 GMarkup: Subparser support
541794 drive-eject-button signal
541793 activation root for volumes
467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
428048 2 of 51 tests fail on Solaris
542332 small fix for error message in GMarkup
482413 get_contents_stdio -- overflow and memory corruption
406120 g_ascii_strtod
334234 "printf" format error
536996 Missing noop i18n macro equivalent to C_
540616 mem leak in filechooser button
539229 gobject-query calls itself query
521589 [RFC] gobject documentation should mention Vala
543168 Description of G_SLICE=debug-blocks discourages its use
543220 Case collision on gio-extension-points.html
530759 update the gobject tutorial to the XXI century
535223 gbookmark file inefficiency ...
543504 crash in Epiphany Web Browser: Opening local file
* Updated translation:
German (de)
Estonian (et)
Pashto (ps)
Albanian (sq)
Thai (th)
Traditional Chinese (zh_HK)
Traditional Chinese (zh_TW)
Overview of Changes from GLib 2.17.1 to GLib 2.17.3
===================================================
* PCRE
- fix for CVE-2008-2371
* Bugs fixed:
538119 glib's mainloop leaks a pipe to sub-processes
537635 Corrections and improvements to g_time_val_{to,from}_iso8601
539067 The document g_io_channel_win32_new_fd() says...
535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
539123 annotate g_d[n]gettext with G_GNUC_FORMAT
539074 Cannot get exit status with g_spawn_command_line_sync
316221 G_LOCK warns about breaking strict-aliasing rules
539770 migrate gstrfunc unit tests to gtest
539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
538044 unconditional use of LC_MESSAGES
540545 Monotonic time and timer offset
535947 want g_set_error_literal
539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF
536252 GFileEnumerator should allow access to the containing GFile
538362 Get Win32 icons back in the file chooser
540802 g_list_prepend doesn't concat lists
540423 unrecoverable error after g_seekable_truncate
538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
539090 g_content_type_from_mime_type() should unalias
540331 g_file_append_to () documentation: can return NULL
534639 add g_desktop_app_info_new_from_keyfile
536733 gio build failure on Irix
536160 Add g_file_monitor()
538127 FileChooser broken on win32
531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
538564 gio should have gio-types.h
540047 glib-genmarshal.c: '#include <io.h>' is too before
Updated translations:
Korean (ko)
Occitan (oc)
Overview of Changes from GLib 2.17.0 to GLib 2.17.1
===================================================
* New function: g_utime(), a gstdio wrapper for utime()
* New functions: g_dgettext() and g_dngettext(), wrappers
for corresponding gettext functions with added functionaliy
* Support the latest version of the shared-mime spec, including
icons for mime types
* New function: g_themed_icon_prepend_name()
* Bugs fixed:
535418 Please document which glib version defines goffset
528715 Misprint in the description of the interface g_type_class_add_private
528714 Misprint in the description of the interface g_param_spec_flags
537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
530527 Misprint in the description of the interface
g_cclosure_marshal_VOID__FLAGS
530526 Misprint in the description of the fields 'class_init' and
'class_finalize' of the structure GTypeInfo
528719 Improvement to the documentation of the "g_object_connect" interface
528172 gtk_signal_handlers_unblock_* functions return value
amount of matched signals, not amount of actually unblocked
528717 Misprint in the description of the parameter 'type_id' for
the interface g_type_register_fundamental
528716 Misprint in the description of the parameter 'iface_data' for
the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc
537555 GObject instantiation not thread safe
537546 'desktop' shortcut in file chooser looks like a generic folder
537392 Additional colon in xattr name
536641 Filesystem querying in gio does not list AFS and autofs file systems
528600 g_dummy_file_get_parent("scheme://example.com/")
503071 Application direction changes to right to left even if theres no
translation
502511 g_assert_cmphex prints invalid message
338162 Use po/LINGUAS
314453 Nautilus crashes in Solaris when browsing the attached file
529321 make check fails in glib/pcre
455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD
fallback to $HOME/Desktop if xdg-user-dirs is not in use
498732 g_key_file_to_data cannot fail
511367 add g_file_make_directory_with_parents
531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with
gcc 4.0 or newer
536158 also bump GHashTable version when a node is removed via
g_hash_table_iter_remove()/g_hash_table_iter_steal()
531403 g_utf8_collate broken on Mac
535628 test/patterntest.c still includes gpattern.h directly
535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
* Translation updates:
Arabic (ar)
German (de)
Italian (it)
Norwegian bokmål (nb)
Thai (th)
Overview of Changes from GLib 2.16.x to GLib 2.17.0
===================================================
* Update to Unicode 5.1
* Update included libcharset to the one shipped with libiconv 0.12
* Update included PCRE to 7.7
* Enforce that only toplevel headers are directly included.
This is turned on by default for GObject and GIO. To turn
it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
* Fix library version of GIO. GLib 2.16 shipped with libgio-2.0.so.0.0.0
* On Solaris, use FEN for file monitoring in GIO
* Use the GIO_EXTRA_MODULES environment variable to find
additional GIO modules
* G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
function attribute
* g_checksum_reset: New function to reset the state of a GChecksum
* g_unix_mount_monitor_set_rate_limit: New function to limit the
rate at which events are reported
* g_file_query_file_type: New utility function to query the type of
a file
* g_memory_output_stream_get_data_size: New function to obtain the
size of the written data.
* Bugs fixed:
522292 Gives warnings in glib/gutils.h with GCC in C99 mode
523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
518160 replace two g_strdup_printf calls in GBookmarkFile
523877 gbookmarkfile: avoid using g_string_append_printf() and
other optimizations
525192 100% CPU if run main loop with no IO sources
315437 extern inline -> static inline
524314 g_convert() on Win32 implicitly converts full width
alphanumerics into half width
525732 Error in documentation for g_list_first
525674 A typo in gmarkup.c
448943 g_timeout_add_seconds() problems
525972 UCS-4 not in the new win_iconv implementation
526619 make test-report crash
491554 Update to Unicode 5.1.0
519137 g_slice_dup macro needs cast for 64-bit platform
528752 Win32 build and SSL not working
530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
528667 Typos in testing module documentation
459905 Bug in wcwidth data
534085 g_unichar_iswide_cjk() has a totally wrong table
501651 Update glib/libcharset
519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
534319 GLib's .pc files could use Libs.private
534137 Typo in g_spawn_async_with_pipes doc
517419 gio win32 directory monitor
526796 Wrong order of arguments in g_file_copy's fallback
530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
532965 Should not return filesystem::free for certain file systems
525553 fix typo and nitpicking in GArray documentation
526572 Missing * in declaration of parent_class in Object
Destruction section of GObject Reference Manual
528648 Extra >s in Object Construction section
535021 g_param_spec_internal documentation should
describe purpose of nick and blurb
521513 Firefox crash when using file picker
528433 gdesktopappinfo snafu ...
533369 API g_file_info_get_attribute_string () unables to get "...
521045 glib f_fstypename miscellany
521672 compile error
521946 control rate limit on GUnixMountMonitor
522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
523015 Implement sliding window based upload operation
523019 Use new GCC 4 feature
523338 list nfs4 as a nfs mount type
524350 Make glib build without NLS again
524579 g_file_copy reports wrong total on progress callback for ...
524742 A typo in gtestutils.c.
524950 Minor documentation typos.
525866 the user directory should not be considered as a mount to...
526320 should not list mounts that the user doesn't have permiss...
527132 nautilus crash when making ftp connection
532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
534759 Build failure in gio
534764 Typo in error produced by g_file_make_directory
521851 Redudant tests in gunixmounts.c
524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
534177 Invalid description of the interface g_cclosure_marshal_S...
520715 Add GFile method g_file_query_file_type
523039 nautilus can't access to trash/computer/network if gvfs i...
* Updated translations:
Arabic (ar)
Bulgarian (bg)
Catalan (ca)
Czech (cs)
Greek (el)
Candian English (en_CA)
British English (en_GB)
Spanish (es)
Estonian (et)
Basque (eu)
Galician (gl)
Hebrew (he)
Hungarian (hu)
Japanese (ja)
Lithuanian (lt)
Norwegian bokmål (nb)
Dutch (nl)
Occitan (oc)
Portugese (pt)
Russian (ru)
Slovak (sk)
Albanian (sq)
Swedish (sv)
Turkish (tr)
Vietnamese (vi)
2008-09-06 13:07:20 +02:00
|
|
|
include/glib/glib-2.0/gio/gemblem.h
|
|
|
|
include/glib/glib-2.0/gio/gemblemedicon.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gfile.h
|
|
|
|
include/glib/glib-2.0/gio/gfileattribute.h
|
|
|
|
include/glib/glib-2.0/gio/gfileenumerator.h
|
|
|
|
include/glib/glib-2.0/gio/gfileicon.h
|
|
|
|
include/glib/glib-2.0/gio/gfileinfo.h
|
|
|
|
include/glib/glib-2.0/gio/gfileinputstream.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/glib-2.0/gio/gfileiostream.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gfilemonitor.h
|
|
|
|
include/glib/glib-2.0/gio/gfilenamecompleter.h
|
|
|
|
include/glib/glib-2.0/gio/gfileoutputstream.h
|
|
|
|
include/glib/glib-2.0/gio/gfilterinputstream.h
|
|
|
|
include/glib/glib-2.0/gio/gfilteroutputstream.h
|
|
|
|
include/glib/glib-2.0/gio/gicon.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/glib-2.0/gio/ginetaddress.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/gio/ginetaddressmask.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/glib-2.0/gio/ginetsocketaddress.h
|
|
|
|
include/glib/glib-2.0/gio/ginitable.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/ginputstream.h
|
2015-06-11 01:00:05 +02:00
|
|
|
include/glib/glib-2.0/gio/gio-autocleanups.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gio.h
|
Update glib2 to 2.18.0.
Based on patch provided by Juan RP in pkgsrc-users ml.
Overview of Changes from GLib 2.17.7 to GLib 2.18.0
===================================================
* Win32:
- rework the g_poll() implementation to match poll() semantics more closely
* Bugs fixed:
324234 Using g_io_add_watch_full() to wait for connect() to return...
548278 Async GETs connections are always terminated unexpectedly...
500246 Bug fixes for giowin32
523939 Example program for GValue
550096 GBookmarkFile parser is not forward compatible
550040 Move GString, rand and printf tests to the unit test framework
550104 trivial documentation fix for g_get_home_dir
548988 g_file_replace fails on Windows when the target file exists
550059 Wrong docs for g_emblemed_icon_add_emblem
548800 Missing a g_object_get_type function
550056 Missing documentation for g_emblemed_icon_get_emblems
* Updated translations:
Bulgarian (bg)
Czech (cs)
German (de)
Estonian (et)
Basque (eu)
French (fr)
Hebrew (he)
Hungarian (hu)
Italian (it)
Japanese (ja)
Lithuanian (lt)
Maithili (mai)
Dutch (nl)
Swedish (sv)
Thai (th)
Ukrainian (uk)
Vietnamese (vi)
Overview of Changes from GLib 2.17.6 to GLib 2.17.7
===================================================
* More fixes for 64-bit Windows
* GIO
- Add a vfs implementation for HTTP and HTTPS URIs on Windows
* Bugs fixed:
546329 API docs for g_utf8_normalize() are incorrect
546876 Modify GMarkup parser to accept  .. 
547200 g_utf8_find_next_char() issues
547637 unconditional #include of sys/statfs.h in configure
547337 G_DISABLE_DEPRECATED breaks tests build
547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
502498 Test framework assertion failures should follow gcc
546371 Improve docs re g_file_monitor
546483 GThemedIcon:use-default-fallbacks is not readable without...
546132 GFileIcon is bindings-unfriendly
542156 zfs mount in home directory shown on nautilus desktop
535124 umask 002 not being applied for new directories...
547080 g_file_copy leaks expected errors
546582 Callbacks from GFileMonitor present a GFile...
547262 Missing link in the docs
* Updated translations:
Arabic (ar)
Catalan (ca)
Spanish (es)
Basque (eu)
Finnish (fi)
Galician (gl)
Hebrew (he)
Marathi (mr)
Norwegian bokmål (nb)
Portugese (pt)
Brazilian Portugese (pt_BR)
Swedish (sv)
Thai (th)
Overview of Changes from GLib 2.17.4 to GLib 2.17.6
===================================================
* Fix problems on 64-bit Windows
* g_markup_context_get_user_data: New function to access
the user_data outside of callbacks
* GIO
- g_mount_guess_content_type_sync: synchronous version of
g_mount_guess_content_type
- GEmblem: A GIcon implementation that adds emblem-related
metadata to icons
- GEmblemedIcon: A GIcon implementation that can add emblems
to icons
* Bugs fixed:
544088 option_test_LDADD is left in tests/Makefile.am
544465 gmarkup makes it hard to use pre-rolled parsers
545485 Implicit declaration of utime()
545798 "Since: 2.18" mark is missing in g_set_error_literal...
544140 fam-helper 64-bit issue
529694 SELinux context setting support
545157 wrong/no list of "open with" applications for .cc...
545203 gfile.c: argument is different type
545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
544177 Fix trivial cut and paste error in documentation
545395 Language tweak for g_value_set_string* docs
541036 Gnumeric crashes when trying to open Desktop...
546079 leak in xdgmime
545395 Language tweak for g_value_set_string* docs
546017 Don't copy attributes when copying a symlink
* Updated translations:
Arabic (ar)
Estonian (et)
Galician (gl)
Italian (it)
Japanese (ja)
Korean (ko)
Norwegian bokmål (nb)
Pashto (ps)
Portugese (pt)
Overview of Changes from GLib 2.17.3 to GLib 2.17.4
===================================================
* GIO:
- New API to handle content types: g_mount_guess_content_type,
g_content_type_guess_for_tree.
- Export the eject-button signal on the volume monitor class
- New API to enable out-of-process volume monitors:
g_volume_get_activation_root
* GObject:
- New API to handle signals without slots in the class structure:
g_signal_new_class_handler, g_signal_override_class_handler
* Internationalization:
- Add an NC_ macro that is a no-op equivalent of C_
* GMarkup:
- Add two new functions g_markup_parse_context_push,
g_markup_parse_context_pop to support "subparsers"
* Bugs fixed:
541208 Functions to easily install and use signals without...
541507 Ambiguous description of assigned characters in the...
543040 async reading on dummy file will crash on GIO_USE_VFS=local
543560 enable gio-FEN back-end warnings on Solaris will crash...
528317 GRegex does not allow recursion limit
337518 GMarkup: Subparser support
541794 drive-eject-button signal
541793 activation root for volumes
467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
428048 2 of 51 tests fail on Solaris
542332 small fix for error message in GMarkup
482413 get_contents_stdio -- overflow and memory corruption
406120 g_ascii_strtod
334234 "printf" format error
536996 Missing noop i18n macro equivalent to C_
540616 mem leak in filechooser button
539229 gobject-query calls itself query
521589 [RFC] gobject documentation should mention Vala
543168 Description of G_SLICE=debug-blocks discourages its use
543220 Case collision on gio-extension-points.html
530759 update the gobject tutorial to the XXI century
535223 gbookmark file inefficiency ...
543504 crash in Epiphany Web Browser: Opening local file
* Updated translation:
German (de)
Estonian (et)
Pashto (ps)
Albanian (sq)
Thai (th)
Traditional Chinese (zh_HK)
Traditional Chinese (zh_TW)
Overview of Changes from GLib 2.17.1 to GLib 2.17.3
===================================================
* PCRE
- fix for CVE-2008-2371
* Bugs fixed:
538119 glib's mainloop leaks a pipe to sub-processes
537635 Corrections and improvements to g_time_val_{to,from}_iso8601
539067 The document g_io_channel_win32_new_fd() says...
535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
539123 annotate g_d[n]gettext with G_GNUC_FORMAT
539074 Cannot get exit status with g_spawn_command_line_sync
316221 G_LOCK warns about breaking strict-aliasing rules
539770 migrate gstrfunc unit tests to gtest
539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
538044 unconditional use of LC_MESSAGES
540545 Monotonic time and timer offset
535947 want g_set_error_literal
539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF
536252 GFileEnumerator should allow access to the containing GFile
538362 Get Win32 icons back in the file chooser
540802 g_list_prepend doesn't concat lists
540423 unrecoverable error after g_seekable_truncate
538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
539090 g_content_type_from_mime_type() should unalias
540331 g_file_append_to () documentation: can return NULL
534639 add g_desktop_app_info_new_from_keyfile
536733 gio build failure on Irix
536160 Add g_file_monitor()
538127 FileChooser broken on win32
531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
538564 gio should have gio-types.h
540047 glib-genmarshal.c: '#include <io.h>' is too before
Updated translations:
Korean (ko)
Occitan (oc)
Overview of Changes from GLib 2.17.0 to GLib 2.17.1
===================================================
* New function: g_utime(), a gstdio wrapper for utime()
* New functions: g_dgettext() and g_dngettext(), wrappers
for corresponding gettext functions with added functionaliy
* Support the latest version of the shared-mime spec, including
icons for mime types
* New function: g_themed_icon_prepend_name()
* Bugs fixed:
535418 Please document which glib version defines goffset
528715 Misprint in the description of the interface g_type_class_add_private
528714 Misprint in the description of the interface g_param_spec_flags
537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
530527 Misprint in the description of the interface
g_cclosure_marshal_VOID__FLAGS
530526 Misprint in the description of the fields 'class_init' and
'class_finalize' of the structure GTypeInfo
528719 Improvement to the documentation of the "g_object_connect" interface
528172 gtk_signal_handlers_unblock_* functions return value
amount of matched signals, not amount of actually unblocked
528717 Misprint in the description of the parameter 'type_id' for
the interface g_type_register_fundamental
528716 Misprint in the description of the parameter 'iface_data' for
the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc
537555 GObject instantiation not thread safe
537546 'desktop' shortcut in file chooser looks like a generic folder
537392 Additional colon in xattr name
536641 Filesystem querying in gio does not list AFS and autofs file systems
528600 g_dummy_file_get_parent("scheme://example.com/")
503071 Application direction changes to right to left even if theres no
translation
502511 g_assert_cmphex prints invalid message
338162 Use po/LINGUAS
314453 Nautilus crashes in Solaris when browsing the attached file
529321 make check fails in glib/pcre
455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD
fallback to $HOME/Desktop if xdg-user-dirs is not in use
498732 g_key_file_to_data cannot fail
511367 add g_file_make_directory_with_parents
531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with
gcc 4.0 or newer
536158 also bump GHashTable version when a node is removed via
g_hash_table_iter_remove()/g_hash_table_iter_steal()
531403 g_utf8_collate broken on Mac
535628 test/patterntest.c still includes gpattern.h directly
535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
* Translation updates:
Arabic (ar)
German (de)
Italian (it)
Norwegian bokmål (nb)
Thai (th)
Overview of Changes from GLib 2.16.x to GLib 2.17.0
===================================================
* Update to Unicode 5.1
* Update included libcharset to the one shipped with libiconv 0.12
* Update included PCRE to 7.7
* Enforce that only toplevel headers are directly included.
This is turned on by default for GObject and GIO. To turn
it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
* Fix library version of GIO. GLib 2.16 shipped with libgio-2.0.so.0.0.0
* On Solaris, use FEN for file monitoring in GIO
* Use the GIO_EXTRA_MODULES environment variable to find
additional GIO modules
* G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
function attribute
* g_checksum_reset: New function to reset the state of a GChecksum
* g_unix_mount_monitor_set_rate_limit: New function to limit the
rate at which events are reported
* g_file_query_file_type: New utility function to query the type of
a file
* g_memory_output_stream_get_data_size: New function to obtain the
size of the written data.
* Bugs fixed:
522292 Gives warnings in glib/gutils.h with GCC in C99 mode
523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
518160 replace two g_strdup_printf calls in GBookmarkFile
523877 gbookmarkfile: avoid using g_string_append_printf() and
other optimizations
525192 100% CPU if run main loop with no IO sources
315437 extern inline -> static inline
524314 g_convert() on Win32 implicitly converts full width
alphanumerics into half width
525732 Error in documentation for g_list_first
525674 A typo in gmarkup.c
448943 g_timeout_add_seconds() problems
525972 UCS-4 not in the new win_iconv implementation
526619 make test-report crash
491554 Update to Unicode 5.1.0
519137 g_slice_dup macro needs cast for 64-bit platform
528752 Win32 build and SSL not working
530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
528667 Typos in testing module documentation
459905 Bug in wcwidth data
534085 g_unichar_iswide_cjk() has a totally wrong table
501651 Update glib/libcharset
519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
534319 GLib's .pc files could use Libs.private
534137 Typo in g_spawn_async_with_pipes doc
517419 gio win32 directory monitor
526796 Wrong order of arguments in g_file_copy's fallback
530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
532965 Should not return filesystem::free for certain file systems
525553 fix typo and nitpicking in GArray documentation
526572 Missing * in declaration of parent_class in Object
Destruction section of GObject Reference Manual
528648 Extra >s in Object Construction section
535021 g_param_spec_internal documentation should
describe purpose of nick and blurb
521513 Firefox crash when using file picker
528433 gdesktopappinfo snafu ...
533369 API g_file_info_get_attribute_string () unables to get "...
521045 glib f_fstypename miscellany
521672 compile error
521946 control rate limit on GUnixMountMonitor
522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
523015 Implement sliding window based upload operation
523019 Use new GCC 4 feature
523338 list nfs4 as a nfs mount type
524350 Make glib build without NLS again
524579 g_file_copy reports wrong total on progress callback for ...
524742 A typo in gtestutils.c.
524950 Minor documentation typos.
525866 the user directory should not be considered as a mount to...
526320 should not list mounts that the user doesn't have permiss...
527132 nautilus crash when making ftp connection
532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
534759 Build failure in gio
534764 Typo in error produced by g_file_make_directory
521851 Redudant tests in gunixmounts.c
524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
534177 Invalid description of the interface g_cclosure_marshal_S...
520715 Add GFile method g_file_query_file_type
523039 nautilus can't access to trash/computer/network if gvfs i...
* Updated translations:
Arabic (ar)
Bulgarian (bg)
Catalan (ca)
Czech (cs)
Greek (el)
Candian English (en_CA)
British English (en_GB)
Spanish (es)
Estonian (et)
Basque (eu)
Galician (gl)
Hebrew (he)
Hungarian (hu)
Japanese (ja)
Lithuanian (lt)
Norwegian bokmål (nb)
Dutch (nl)
Occitan (oc)
Portugese (pt)
Russian (ru)
Slovak (sk)
Albanian (sq)
Swedish (sv)
Turkish (tr)
Vietnamese (vi)
2008-09-06 13:07:20 +02:00
|
|
|
include/glib/glib-2.0/gio/gioenums.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gioenumtypes.h
|
|
|
|
include/glib/glib-2.0/gio/gioerror.h
|
|
|
|
include/glib/glib-2.0/gio/giomodule.h
|
|
|
|
include/glib/glib-2.0/gio/gioscheduler.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/glib-2.0/gio/giostream.h
|
Update glib2 to 2.18.0.
Based on patch provided by Juan RP in pkgsrc-users ml.
Overview of Changes from GLib 2.17.7 to GLib 2.18.0
===================================================
* Win32:
- rework the g_poll() implementation to match poll() semantics more closely
* Bugs fixed:
324234 Using g_io_add_watch_full() to wait for connect() to return...
548278 Async GETs connections are always terminated unexpectedly...
500246 Bug fixes for giowin32
523939 Example program for GValue
550096 GBookmarkFile parser is not forward compatible
550040 Move GString, rand and printf tests to the unit test framework
550104 trivial documentation fix for g_get_home_dir
548988 g_file_replace fails on Windows when the target file exists
550059 Wrong docs for g_emblemed_icon_add_emblem
548800 Missing a g_object_get_type function
550056 Missing documentation for g_emblemed_icon_get_emblems
* Updated translations:
Bulgarian (bg)
Czech (cs)
German (de)
Estonian (et)
Basque (eu)
French (fr)
Hebrew (he)
Hungarian (hu)
Italian (it)
Japanese (ja)
Lithuanian (lt)
Maithili (mai)
Dutch (nl)
Swedish (sv)
Thai (th)
Ukrainian (uk)
Vietnamese (vi)
Overview of Changes from GLib 2.17.6 to GLib 2.17.7
===================================================
* More fixes for 64-bit Windows
* GIO
- Add a vfs implementation for HTTP and HTTPS URIs on Windows
* Bugs fixed:
546329 API docs for g_utf8_normalize() are incorrect
546876 Modify GMarkup parser to accept  .. 
547200 g_utf8_find_next_char() issues
547637 unconditional #include of sys/statfs.h in configure
547337 G_DISABLE_DEPRECATED breaks tests build
547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
502498 Test framework assertion failures should follow gcc
546371 Improve docs re g_file_monitor
546483 GThemedIcon:use-default-fallbacks is not readable without...
546132 GFileIcon is bindings-unfriendly
542156 zfs mount in home directory shown on nautilus desktop
535124 umask 002 not being applied for new directories...
547080 g_file_copy leaks expected errors
546582 Callbacks from GFileMonitor present a GFile...
547262 Missing link in the docs
* Updated translations:
Arabic (ar)
Catalan (ca)
Spanish (es)
Basque (eu)
Finnish (fi)
Galician (gl)
Hebrew (he)
Marathi (mr)
Norwegian bokmål (nb)
Portugese (pt)
Brazilian Portugese (pt_BR)
Swedish (sv)
Thai (th)
Overview of Changes from GLib 2.17.4 to GLib 2.17.6
===================================================
* Fix problems on 64-bit Windows
* g_markup_context_get_user_data: New function to access
the user_data outside of callbacks
* GIO
- g_mount_guess_content_type_sync: synchronous version of
g_mount_guess_content_type
- GEmblem: A GIcon implementation that adds emblem-related
metadata to icons
- GEmblemedIcon: A GIcon implementation that can add emblems
to icons
* Bugs fixed:
544088 option_test_LDADD is left in tests/Makefile.am
544465 gmarkup makes it hard to use pre-rolled parsers
545485 Implicit declaration of utime()
545798 "Since: 2.18" mark is missing in g_set_error_literal...
544140 fam-helper 64-bit issue
529694 SELinux context setting support
545157 wrong/no list of "open with" applications for .cc...
545203 gfile.c: argument is different type
545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
544177 Fix trivial cut and paste error in documentation
545395 Language tweak for g_value_set_string* docs
541036 Gnumeric crashes when trying to open Desktop...
546079 leak in xdgmime
545395 Language tweak for g_value_set_string* docs
546017 Don't copy attributes when copying a symlink
* Updated translations:
Arabic (ar)
Estonian (et)
Galician (gl)
Italian (it)
Japanese (ja)
Korean (ko)
Norwegian bokmål (nb)
Pashto (ps)
Portugese (pt)
Overview of Changes from GLib 2.17.3 to GLib 2.17.4
===================================================
* GIO:
- New API to handle content types: g_mount_guess_content_type,
g_content_type_guess_for_tree.
- Export the eject-button signal on the volume monitor class
- New API to enable out-of-process volume monitors:
g_volume_get_activation_root
* GObject:
- New API to handle signals without slots in the class structure:
g_signal_new_class_handler, g_signal_override_class_handler
* Internationalization:
- Add an NC_ macro that is a no-op equivalent of C_
* GMarkup:
- Add two new functions g_markup_parse_context_push,
g_markup_parse_context_pop to support "subparsers"
* Bugs fixed:
541208 Functions to easily install and use signals without...
541507 Ambiguous description of assigned characters in the...
543040 async reading on dummy file will crash on GIO_USE_VFS=local
543560 enable gio-FEN back-end warnings on Solaris will crash...
528317 GRegex does not allow recursion limit
337518 GMarkup: Subparser support
541794 drive-eject-button signal
541793 activation root for volumes
467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
428048 2 of 51 tests fail on Solaris
542332 small fix for error message in GMarkup
482413 get_contents_stdio -- overflow and memory corruption
406120 g_ascii_strtod
334234 "printf" format error
536996 Missing noop i18n macro equivalent to C_
540616 mem leak in filechooser button
539229 gobject-query calls itself query
521589 [RFC] gobject documentation should mention Vala
543168 Description of G_SLICE=debug-blocks discourages its use
543220 Case collision on gio-extension-points.html
530759 update the gobject tutorial to the XXI century
535223 gbookmark file inefficiency ...
543504 crash in Epiphany Web Browser: Opening local file
* Updated translation:
German (de)
Estonian (et)
Pashto (ps)
Albanian (sq)
Thai (th)
Traditional Chinese (zh_HK)
Traditional Chinese (zh_TW)
Overview of Changes from GLib 2.17.1 to GLib 2.17.3
===================================================
* PCRE
- fix for CVE-2008-2371
* Bugs fixed:
538119 glib's mainloop leaks a pipe to sub-processes
537635 Corrections and improvements to g_time_val_{to,from}_iso8601
539067 The document g_io_channel_win32_new_fd() says...
535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
539123 annotate g_d[n]gettext with G_GNUC_FORMAT
539074 Cannot get exit status with g_spawn_command_line_sync
316221 G_LOCK warns about breaking strict-aliasing rules
539770 migrate gstrfunc unit tests to gtest
539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
538044 unconditional use of LC_MESSAGES
540545 Monotonic time and timer offset
535947 want g_set_error_literal
539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF
536252 GFileEnumerator should allow access to the containing GFile
538362 Get Win32 icons back in the file chooser
540802 g_list_prepend doesn't concat lists
540423 unrecoverable error after g_seekable_truncate
538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
539090 g_content_type_from_mime_type() should unalias
540331 g_file_append_to () documentation: can return NULL
534639 add g_desktop_app_info_new_from_keyfile
536733 gio build failure on Irix
536160 Add g_file_monitor()
538127 FileChooser broken on win32
531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
538564 gio should have gio-types.h
540047 glib-genmarshal.c: '#include <io.h>' is too before
Updated translations:
Korean (ko)
Occitan (oc)
Overview of Changes from GLib 2.17.0 to GLib 2.17.1
===================================================
* New function: g_utime(), a gstdio wrapper for utime()
* New functions: g_dgettext() and g_dngettext(), wrappers
for corresponding gettext functions with added functionaliy
* Support the latest version of the shared-mime spec, including
icons for mime types
* New function: g_themed_icon_prepend_name()
* Bugs fixed:
535418 Please document which glib version defines goffset
528715 Misprint in the description of the interface g_type_class_add_private
528714 Misprint in the description of the interface g_param_spec_flags
537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
530527 Misprint in the description of the interface
g_cclosure_marshal_VOID__FLAGS
530526 Misprint in the description of the fields 'class_init' and
'class_finalize' of the structure GTypeInfo
528719 Improvement to the documentation of the "g_object_connect" interface
528172 gtk_signal_handlers_unblock_* functions return value
amount of matched signals, not amount of actually unblocked
528717 Misprint in the description of the parameter 'type_id' for
the interface g_type_register_fundamental
528716 Misprint in the description of the parameter 'iface_data' for
the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc
537555 GObject instantiation not thread safe
537546 'desktop' shortcut in file chooser looks like a generic folder
537392 Additional colon in xattr name
536641 Filesystem querying in gio does not list AFS and autofs file systems
528600 g_dummy_file_get_parent("scheme://example.com/")
503071 Application direction changes to right to left even if theres no
translation
502511 g_assert_cmphex prints invalid message
338162 Use po/LINGUAS
314453 Nautilus crashes in Solaris when browsing the attached file
529321 make check fails in glib/pcre
455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD
fallback to $HOME/Desktop if xdg-user-dirs is not in use
498732 g_key_file_to_data cannot fail
511367 add g_file_make_directory_with_parents
531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with
gcc 4.0 or newer
536158 also bump GHashTable version when a node is removed via
g_hash_table_iter_remove()/g_hash_table_iter_steal()
531403 g_utf8_collate broken on Mac
535628 test/patterntest.c still includes gpattern.h directly
535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
* Translation updates:
Arabic (ar)
German (de)
Italian (it)
Norwegian bokmål (nb)
Thai (th)
Overview of Changes from GLib 2.16.x to GLib 2.17.0
===================================================
* Update to Unicode 5.1
* Update included libcharset to the one shipped with libiconv 0.12
* Update included PCRE to 7.7
* Enforce that only toplevel headers are directly included.
This is turned on by default for GObject and GIO. To turn
it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
* Fix library version of GIO. GLib 2.16 shipped with libgio-2.0.so.0.0.0
* On Solaris, use FEN for file monitoring in GIO
* Use the GIO_EXTRA_MODULES environment variable to find
additional GIO modules
* G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
function attribute
* g_checksum_reset: New function to reset the state of a GChecksum
* g_unix_mount_monitor_set_rate_limit: New function to limit the
rate at which events are reported
* g_file_query_file_type: New utility function to query the type of
a file
* g_memory_output_stream_get_data_size: New function to obtain the
size of the written data.
* Bugs fixed:
522292 Gives warnings in glib/gutils.h with GCC in C99 mode
523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
518160 replace two g_strdup_printf calls in GBookmarkFile
523877 gbookmarkfile: avoid using g_string_append_printf() and
other optimizations
525192 100% CPU if run main loop with no IO sources
315437 extern inline -> static inline
524314 g_convert() on Win32 implicitly converts full width
alphanumerics into half width
525732 Error in documentation for g_list_first
525674 A typo in gmarkup.c
448943 g_timeout_add_seconds() problems
525972 UCS-4 not in the new win_iconv implementation
526619 make test-report crash
491554 Update to Unicode 5.1.0
519137 g_slice_dup macro needs cast for 64-bit platform
528752 Win32 build and SSL not working
530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
528667 Typos in testing module documentation
459905 Bug in wcwidth data
534085 g_unichar_iswide_cjk() has a totally wrong table
501651 Update glib/libcharset
519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
534319 GLib's .pc files could use Libs.private
534137 Typo in g_spawn_async_with_pipes doc
517419 gio win32 directory monitor
526796 Wrong order of arguments in g_file_copy's fallback
530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
532965 Should not return filesystem::free for certain file systems
525553 fix typo and nitpicking in GArray documentation
526572 Missing * in declaration of parent_class in Object
Destruction section of GObject Reference Manual
528648 Extra >s in Object Construction section
535021 g_param_spec_internal documentation should
describe purpose of nick and blurb
521513 Firefox crash when using file picker
528433 gdesktopappinfo snafu ...
533369 API g_file_info_get_attribute_string () unables to get "...
521045 glib f_fstypename miscellany
521672 compile error
521946 control rate limit on GUnixMountMonitor
522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
523015 Implement sliding window based upload operation
523019 Use new GCC 4 feature
523338 list nfs4 as a nfs mount type
524350 Make glib build without NLS again
524579 g_file_copy reports wrong total on progress callback for ...
524742 A typo in gtestutils.c.
524950 Minor documentation typos.
525866 the user directory should not be considered as a mount to...
526320 should not list mounts that the user doesn't have permiss...
527132 nautilus crash when making ftp connection
532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
534759 Build failure in gio
534764 Typo in error produced by g_file_make_directory
521851 Redudant tests in gunixmounts.c
524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
534177 Invalid description of the interface g_cclosure_marshal_S...
520715 Add GFile method g_file_query_file_type
523039 nautilus can't access to trash/computer/network if gvfs i...
* Updated translations:
Arabic (ar)
Bulgarian (bg)
Catalan (ca)
Czech (cs)
Greek (el)
Candian English (en_CA)
British English (en_GB)
Spanish (es)
Estonian (et)
Basque (eu)
Galician (gl)
Hebrew (he)
Hungarian (hu)
Japanese (ja)
Lithuanian (lt)
Norwegian bokmål (nb)
Dutch (nl)
Occitan (oc)
Portugese (pt)
Russian (ru)
Slovak (sk)
Albanian (sq)
Swedish (sv)
Turkish (tr)
Vietnamese (vi)
2008-09-06 13:07:20 +02:00
|
|
|
include/glib/glib-2.0/gio/giotypes.h
|
2015-06-11 01:00:05 +02:00
|
|
|
include/glib/glib-2.0/gio/glistmodel.h
|
|
|
|
include/glib/glib-2.0/gio/gliststore.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gloadableicon.h
|
|
|
|
include/glib/glib-2.0/gio/gmemoryinputstream.h
|
|
|
|
include/glib/glib-2.0/gio/gmemoryoutputstream.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/gio/gmenu.h
|
|
|
|
include/glib/glib-2.0/gio/gmenuexporter.h
|
|
|
|
include/glib/glib-2.0/gio/gmenumodel.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gmount.h
|
|
|
|
include/glib/glib-2.0/gio/gmountoperation.h
|
|
|
|
include/glib/glib-2.0/gio/gnativevolumemonitor.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/glib-2.0/gio/gnetworkaddress.h
|
2013-04-20 00:21:41 +02:00
|
|
|
include/glib/glib-2.0/gio/gnetworking.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/gio/gnetworkmonitor.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/glib-2.0/gio/gnetworkservice.h
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
include/glib/glib-2.0/gio/gnotification.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/goutputstream.h
|
2010-11-02 15:52:24 +01:00
|
|
|
include/glib/glib-2.0/gio/gpermission.h
|
2011-03-09 12:22:04 +01:00
|
|
|
include/glib/glib-2.0/gio/gpollableinputstream.h
|
|
|
|
include/glib/glib-2.0/gio/gpollableoutputstream.h
|
2012-10-06 22:44:04 +02:00
|
|
|
include/glib/glib-2.0/gio/gpollableutils.h
|
Update glib2 to 2.38.2
Patches removed:
- patch-ce: fixed in 690d6b97 (Bug 697386)
- patch-gio_gcontenttype.c: committed as ab5aa2aa
- patch-gio_glocalfile.c: fixed in 584358 (Bug 698348)
- patch-gio_gthreadedresolver.c: fixed in 8372f22b
- patch-glib_gfileutils.c: fixed in 8372f22b
- patch-glib_gmarkup.c: : fixed in 8372f22b
- patch-glib_gstrfuncs.c: fixed in 8372f22b
Patches changed:
- patch-aa: last 3 hunks removed as committed as 996edb0 (Bug 706958)
- patch-ah: last 2 hunks removed as something similar in 8372f2
- patch-ak: last 3 hunks removed as committed as 996edb0 (Bug 706958)
- patch-ba: hunk 9 removed as committed as d47430 (Bug 697365)
Overview of changes from GLib 2.38.1 to 2.38.2
===============================================
* GCancellableSource will now dispatch for each time a cancellable is
cancelled (ie: in the case that it was reset) but this is still
considered undefined behaviour
* fix g_source_add_child_source() thread safety issues
* add workaround for buggy D-Bus daemons when path-matching on '/'
* fallback to pathname queryinfo to help g_file_copy() work on gvfs
filesystems that don't implement query_info_on_read()
* don't crash if loading a DBusActivatable application from keyfile
* fix crash when replacing a symlink with another using GIO
* add a fallback for '-symbolic' icons to the non-symbolic form
Overview of changes from GLib 2.38.0 to 2.38.1
===============================================
* Fix error code checks when SOCK_CLOEXEC is defined but not supported
(fix support for GNU/Hurd)
* g_settings_list_children: only list viable schemas
(fix gsettings list-recursively crashes with invalid schemas installed)
* GDBusObjectManagerClient: Fix typo in the /org/freedesktop/DBus path
when adding match rules
* Various -Werror=format-nonliteral fixes
* gmessages: fix clang annotations to work with older versions
* gio: don't dist (generated file) gnetworking.h
* Restore gl_GLIBC21 to configure; needed for libcharset
Translations:
Catalan (Valencian)
Norwegian bokmål
Russian
Serbian
What's new in Glib 2.38
========================
* Application support
- GIO now provides an implementation of Desktop Actions from the
desktop entry specification
- GApplication now implements the org.freedesktop.Application
interface as per the desktop entry specification, allowing for
standards-based D-Bus launching of GLib-based applications
- GDesktopAppInfo now supports DBusActivatable as per the desktop
entry specification, allowing GLib-based applications to use D-Bus
to launch other applications
- GApplication now has a "busy" flag that can be set on an application
to allow the shell to show that it is busy
* GObject
- the private offset for a given class type is now always constant.
This was done by reorganising the memory layout of instances so that
the private data comes before the "official" pointer for the object
(ie: at a negative offset). Valgrind macros were added to mitigate
any problems that this may have caused.
- a new G_DEFINE_TYPE_WITH_PRIVATE has been added along with a
generated function *_get_instance_private() that can now serve as an
equally-performing alternative to ->priv pointers in instances
(allowing memory savings)
- new G_PRIVATE_FIELD, G_PRIVATE_FIELD_P and G_PRIVATE_OFFSET macros
provide a convenient method of converting between named variables in
private structures and their (now constant) offsets
- installing properties on a GObjectClass must now be done from
class_init. It is no longer valid to install them after class_init
has returned.
- it is now possible to manually break a GObject property binding
without destroying one of the objects involved
* Icons
- the requirements for implementing the GIcon interface have changed
in order to make it possible to consume all implementations of GIcon
with a finite number of cases
- a new GBytesIcon type was added for an icon represented by an
in-memory binary blob in a known image format (ideally png).
- new APIs g_icon_serialize() and g_icon_deserialize() replace the old
to/from_string APIs and will always work, irrespective of which
types have been initialised in the calling process, allowing for a
serialised GdkPixbuf to be deserialised in a process that doesn't
have GdkPixbuf
- support for icons has been added to GMenuModel using the new APIs
* Actions and menus
- GPropertyAction provides a convenient way of creating a stateful
property corresponding to a property on a GObject, such as the
"visible-child-name" property of a GtkStack
- new API g_menu_remove_all()
- we now have established rules about what is a "valid" action name
and an API to check them
- a new API for converting detailed action names to and from the
split-out name and parameter value (as GVariant)
- for backwards compatibility, invalid action names can still be used
with most functions, but this is not recommended
* Other GIO
- GDBus now supports services that wish to handle some of all
properties on an interface asynchronously, without requiring the
service to reimplement the entire org.freedesktop.DBus.Properties
interface
- GFile now has a new _measure_disk_usage() (and async) API for
recursively determining the amount of disk space used by a
particular directory (akin to 'du').
- asynchronous version of g_file_trash() and g_file_make_directory()
have been added
* Other new API
- GRegex has a new function to query the maximum lookbehind length to
allow for regexp matching on streams
- GVariant has two new APIs for constructing strings that allow
avoiding copies in some cases: g_variant_new_take_string() and
g_variant_new_printf()
* Testing
- we can now generate TAP output
- new support functions for simplifying the process of dealing with
data files for srcdir != builddir and installed test cases
- g_test_trap_subprocess() provides a portable alternative to
g_test_trap_fork()
* Other
- GLib now builds on Android against the bionic C library
Overview of changes from GLib 2.37.93 to 2.38.0
================================================
* fix the documentation for GSourceFuncs
* fix compilation on OS X/ppc64
Bugs fixed: 708445, 647145
Translations updated:
Danish
French
Portuguese
Punjabi
Overview of changes from GLib 2.37.92 to 2.37.93
================================================
* a couple of bugfixes in the new g_file_measure_disk_usage() API
* updated Traditional Chinese translation
Overview of changes from GLib 2.37.7 to 2.37.92
===============================================
* new API g_file_measure_disk_usage() similar to du(1)
* minor fixes
* Translation updates:
Assamese
Belarusian
Brazilian Portuguese
Catalan
Czech
Galician
German
Hungarian
Indonesian
Italian
Korean
Korean
Latvian
Lithuanian
Polish
Serbian
Slovenian
Spanish
Overview of changes from GLib 2.37.6 to 2.37.7
==============================================
* GDateTime now supports %:z formatting variations
for timezones. This is a GNU date extension.
* Bugs fixed:
685387 Segfault with GObject.signal_handler_is_connected()...
686786 g_socket_get_available_bytes() returns wrong value ...
705027 GSocket GSource not threadsafe on Windows
706469 Fix G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE documentation
706706 Fix Gir annotations on g_loadable_icon_load_finish
706888 gtype: fix a no-op assertion
706958 configure.ac: fix atomic opts detection
707092 "File Utilities" page for GLib documentation doesn'...
707151 gdatetime: Extend the '%z' timezone format
* Translation updates:
Catalan
Hungarian
Japanese
Polish
Slovak
Tamil
Overview of changes from GLib 2.37.5 to 2.37.6
==============================================
* Tests using the g_test facilities can now generate TAP output
* Bugs fixed:
680926 generic type fallback logic is broken for -symbolic
684327 setting null icon to icon list
689245 GSocket unable to reuse (address,port) on Mac OS X
692125 Support TAP as GTest output format
693335 build: fix dtrace-related warnings
696633 gdbus-codegen trips over unicode chars when using python 3.x
696970 Compiling 2.36.0 for win64 fails
697185 GSocket – Allow specifying the multicast interface from...
700268 Add support for using the clang analyzer
701318 Add G_SPAWN_DEFAULT to GSpawnFlags
701529 glib/tests/gdatetime: use UTC time in test_GDateTime_diff()
701800 a new approach to reporting critical errors
702674 g_date_time_new_utc crash
704165 GLib.IOChannel read_unichar() fails
705075 Simplify g_get_tmp_dir()
705152 Race in glib/task.test
705398 gtype: Fix typo in g_type_class_add_private() error message
705570 Check ref_count in g_object_notify_by_pspec
705600 Deprecate GSimpleActionGroup functions?
* Updated translations:
Assamese
Brazilian Portuguese
Czech
Dutch
Galician
Gujarati
Hebrew
Italian
Lithuanian
Marathi
Norwegian bokmål
Russian
Slovenian
Spanish
Thai
Traditional Chinese
Overview of changes from GLib 2.37.4 to 2.37.5
==============================================
* Implement the Desktop Action specification: In the case that the
application is a GApplication and DBusActivatable, actions from the
desktop file are translated into GActions that have been added to
the application with g_action_map_add_action().
* GPropertyAction is a new type of GAction that represents the value
of a property on an object, and allows to change the value when
activated.
* GNetworkMonitorNetlink can now handle default routes via a device.
* The gsettings tool now reports failure to write a key (e.g. because
the key was locked down)
* Miscellaneous new api:
- g_variant_new_printf
- g_action_print_detailed_name
- g_regex_get_max_lookbehind
* Bugs fixed:
664444 Support additional application actions in .desktop files
684123 glib build only tries -D_GNU_SOURCE if glibc is detected
689794 support incremental matching
699259 add org.freedesktop.Application support to GIO
700460 rewrite tests to not rely on precise timing of timeouts
701511 updates to various GSource types
701609 gnetworkmonitornetlink: handle default route via device
703270 add GPropertyAction
704157 GAction: add function for printing detailed names
704250 Doc: various fixes
704267 regression gsourceclosure: segfault in gedit file chooser
704322 glib-unix: fix handling of multiple signal source for the...
704424 No error when failing to override a locked key
704447 Fix build/use of g_child_watch_closure_callback on Windows
704523 g_thread_create_full() can dereference NULL pointer
704543 Add implementations for G_GNUC_*_IGNORE_DEPRECATIONS for ...
704567 gdbusnameowning: Don't spew an error if we're releasing a...
704585 libc printf can give mixed-case strings for NaN and Inf
704587 FTBFS: statfs_result is undeclared for statvfs()
704699 gmain: Reset signal handlers to default when source is
704704 AI_NUMERICSERV cannot be used with ai_socktype = 0
704873 inotify: don't assume mainloop is running
704999 glib/convert.test crashing due to lack of iconv cache
704931 GMenuModel: add annotations to virtual functions
* Translation updates:
Assamese
Czech
German
Gujarati
Spanish
Tamil
Overview of changes from GLib 2.37.3 to 2.37.4
==============================================
* Bugs fixed:
701283 g_source_add_child_source() segfault
702147 inconsistency of G_STRFUNC
703191 new private macros interact poorly with versioning macros
703254 Doc: various fixes
703407 g_spawn_async() keeps child_pid_report_pipe open in child process
703437 GDBusConnection: be more careful with async GetAll
703478 Missing G_BEGIN/END_DECLS in gsettingsschema.h
* Translation updates:
Catalan
Overview of changes from GLib 2.37.2 to 2.37.3
==============================================
* add a new API for instance private data: G_DEFINE_TYPE_WITH_PRIVATE
* fix timestamps in tarball to prevent automake from being required to
build the unmodified source
* add new D-Bus API for async property handling
* add back fsync() on ext4 for g_file_set_contents() after it was
discovered that despite statements in the ext4 documentation
suggesting that this is safe, it is not safe.
* Translations:
Italian
Norwegian bokmål
* Bugs fixed:
698375 - D-Bus async properties
700350 - timestamp issue
701560 - fsync issue (fixed again)
700035 - new API for instance private data
Overview of changes from GLib 2.37.1 to 2.37.2
==============================================
* The GLib test utilities have grown some file-related APIs
to support tests that can be used installed and uninstalled.
* Installing properties after class initialization is deprecated,
and will trigger a warning.
* GApplication:
- Support org.freedesktop.Application, including D-Bus activation
from desktop files
- Set prgname to appid for services
* Bugs fixed:
549783 gtester lacks framework for tests with data files
692848 Fix property example in gobject tutorial
698018 Add an explicit g_binding_release()
698614 GObject: prevent installing properties after init
699259 add org.freedesktop.Application support to GIO
699959 g_file_copy(): Ensure we create private files by default
700123 Test failure: g_inet_socket_address_get_scope_id
700725 GIcon: NULLify the `type' out param in the sync methods too
701401 gtest: add function for testing for WINE
701456 Error in gnome/glib/gio/tests/file.c
701474 Error building glibmm due to extra comma in glib/gtestutils.h
701560 various improvements for g_file_set_contents()
701680 GFileEnumerator: Add some documentation about ordering
701878 Check wakeup() before iteration(TRUE) doesn't block
* Translations:
Assamese
Czech
Galician
Gujarati
Kannada
Marathi
Odia
Polish
Slovenian
Spanish
Telugu
Overview of changes from GLib 2.37.0 to 2.37.1
==============================================
* add support for installed tests:
https://live.gnome.org/GnomeGoals/InstalledTests
* add a new g_test_trap_subprocess() that works on Windows as a
replacement for the (now deprecated) g_test_trap_fork()
* support for explicitly cancelling a gobject property binding
* performance improvements for signal argument handling
* stop using `quotes' in very many log messages generated by GLib, for
favour of 'this style'. This may cause testcases in other packages
to fail if they were matching on the previous text.
* improve manpages: add missing arguments and flags
Translations:
Aragonese
Assamese
Gujarati
Hindi
Kannada
Norwegian bokmål
Odia
Slovenian
Spanish
Tamil
Telugu
Bugs fixed:
679683 replace g_test_trap_fork()
694380 Improve signal argument collection performance
695233 Strings require plural forms
697849 spelling fixes in cross.xml and running.xml
698877 GProxyAddressEnumerator calls g_network_address_parse_uri without port
698981 [PATCH] test /gdbus/connection/large_message could hang forever
699079 Prototype support for installed tests
699485 [PATCH] tests/mappedfile: Also handle ENOMEM
699493 SOCKS5 proxy code crashes if it cannot authenticate
699500 gbitlock: fix this to not unconditionally use futex emulation
699779 [PATCH] G_GNUC_FORMAT: documentation error
700263 m4macros/glib-gettext.m4: Don't use AC_HEADER_STDC
700714 [PATCH] gtestutils: Ensure test subprocesses don't dump core
700746 Use 'dumb quotes' rather than `really dumb quotes'
2013-12-08 14:08:59 +01:00
|
|
|
include/glib/glib-2.0/gio/gpropertyaction.h
|
2010-11-02 15:52:24 +01:00
|
|
|
include/glib/glib-2.0/gio/gproxy.h
|
|
|
|
include/glib/glib-2.0/gio/gproxyaddress.h
|
|
|
|
include/glib/glib-2.0/gio/gproxyaddressenumerator.h
|
|
|
|
include/glib/glib-2.0/gio/gproxyresolver.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/gio/gremoteactiongroup.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/glib-2.0/gio/gresolver.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/gio/gresource.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gseekable.h
|
2010-11-02 15:52:24 +01:00
|
|
|
include/glib/glib-2.0/gio/gsettings.h
|
|
|
|
include/glib/glib-2.0/gio/gsettingsbackend.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/gio/gsettingsschema.h
|
2011-03-09 12:22:04 +01:00
|
|
|
include/glib/glib-2.0/gio/gsimpleaction.h
|
|
|
|
include/glib/glib-2.0/gio/gsimpleactiongroup.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gsimpleasyncresult.h
|
2015-06-11 01:00:05 +02:00
|
|
|
include/glib/glib-2.0/gio/gsimpleiostream.h
|
2010-11-02 15:52:24 +01:00
|
|
|
include/glib/glib-2.0/gio/gsimplepermission.h
|
2013-04-20 00:21:41 +02:00
|
|
|
include/glib/glib-2.0/gio/gsimpleproxyresolver.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/glib-2.0/gio/gsocket.h
|
|
|
|
include/glib/glib-2.0/gio/gsocketaddress.h
|
|
|
|
include/glib/glib-2.0/gio/gsocketaddressenumerator.h
|
|
|
|
include/glib/glib-2.0/gio/gsocketclient.h
|
|
|
|
include/glib/glib-2.0/gio/gsocketconnectable.h
|
|
|
|
include/glib/glib-2.0/gio/gsocketconnection.h
|
|
|
|
include/glib/glib-2.0/gio/gsocketcontrolmessage.h
|
|
|
|
include/glib/glib-2.0/gio/gsocketlistener.h
|
|
|
|
include/glib/glib-2.0/gio/gsocketservice.h
|
|
|
|
include/glib/glib-2.0/gio/gsrvtarget.h
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
include/glib/glib-2.0/gio/gsubprocess.h
|
|
|
|
include/glib/glib-2.0/gio/gsubprocesslauncher.h
|
2013-04-20 00:21:41 +02:00
|
|
|
include/glib/glib-2.0/gio/gtask.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/glib-2.0/gio/gtcpconnection.h
|
2011-03-09 12:22:04 +01:00
|
|
|
include/glib/glib-2.0/gio/gtcpwrapperconnection.h
|
2012-10-06 22:44:04 +02:00
|
|
|
include/glib/glib-2.0/gio/gtestdbus.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gthemedicon.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/glib-2.0/gio/gthreadedsocketservice.h
|
2011-03-09 12:22:04 +01:00
|
|
|
include/glib/glib-2.0/gio/gtlsbackend.h
|
|
|
|
include/glib/glib-2.0/gio/gtlscertificate.h
|
|
|
|
include/glib/glib-2.0/gio/gtlsclientconnection.h
|
|
|
|
include/glib/glib-2.0/gio/gtlsconnection.h
|
2012-01-29 11:46:52 +01:00
|
|
|
include/glib/glib-2.0/gio/gtlsdatabase.h
|
|
|
|
include/glib/glib-2.0/gio/gtlsfiledatabase.h
|
|
|
|
include/glib/glib-2.0/gio/gtlsinteraction.h
|
|
|
|
include/glib/glib-2.0/gio/gtlspassword.h
|
2011-03-09 12:22:04 +01:00
|
|
|
include/glib/glib-2.0/gio/gtlsserverconnection.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/gio/gvfs.h
|
|
|
|
include/glib/glib-2.0/gio/gvolume.h
|
|
|
|
include/glib/glib-2.0/gio/gvolumemonitor.h
|
2010-05-31 19:30:36 +02:00
|
|
|
include/glib/glib-2.0/gio/gzlibcompressor.h
|
|
|
|
include/glib/glib-2.0/gio/gzlibdecompressor.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib-object.h
|
2012-01-29 11:46:52 +01:00
|
|
|
include/glib/glib-2.0/glib-unix.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/glib/deprecated/gallocator.h
|
|
|
|
include/glib/glib-2.0/glib/deprecated/gcache.h
|
|
|
|
include/glib/glib-2.0/glib/deprecated/gcompletion.h
|
|
|
|
include/glib/glib-2.0/glib/deprecated/gmain.h
|
|
|
|
include/glib/glib-2.0/glib/deprecated/grel.h
|
|
|
|
include/glib/glib-2.0/glib/deprecated/gthread.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/galloca.h
|
|
|
|
include/glib/glib-2.0/glib/garray.h
|
|
|
|
include/glib/glib-2.0/glib/gasyncqueue.h
|
2004-04-01 20:13:31 +02:00
|
|
|
include/glib/glib-2.0/glib/gatomic.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gbacktrace.h
|
Update to 2.12.0. Add a patch fixing PR 33908, provided by
Martijn van Buul.
Changes:
Overview of Changes from GLib 2.11.4 to GLib 2.12
=================================================
* Bugs fixed:
344905 leap-year bug in g_time_val_from_iso8601 w/o HAVE_TIMEGM
* Updated translations (cy,nb,nl)
Overview of Changes from GLib 2.11.3 to GLib 2.11.4
===================================================
* GBookmarkFile:
- g_bookmark_file_remove_item returns a boolean
* g_mkstemp accepts the XXXXXX in the middle of
the template
* Bugs fixed:
344868 g_key_file_to_data should separate groups
* Updated translations (de,es,fr,gu,hi,ko,th)
Overview of Changes from GLib 2.11.2 to GLib 2.11.3
===================================================
* GBookmarkFile:
- g_bookmark_file_move_item: Return TRUE in case of
an empty target
* Bugs fixed:
343919 gunicollate.c: strxfrm bug on VC8
* Updated translations (fi)
Overview of Changes from GLib 2.11.1 to GLib 2.11.2
===================================================
* Add g_ascii_stroll to parse signed 64bit integers
* GMarkup: add a flag to treat CDATA as text
* GHashTable: add functions to remove all entries
* GMainLoop: add functions to find the currently
running source, and determine if it is destroyed
* Bug fixes:
342563 g_atomic_thread_init() needs to be called before
other _g_*_thread_init() functions
343548 Potential use after free in callers of g_string_free()
168538 Wish: Clearing contents of GHashTables
321886 GTK+ cannot be reliably used in multi-threaded
applications
341826 goption.c: 'strtoll' is C99's function
343899 g_ascii_formatd dosn't work as expected for all
format strings
317793 Make GEnumValue strings const
337129 Compile warnings in G_IMPLEMENT_INTERFACE
303622 What is G_TYPE_CHAR?
* Updated translations (bg,dz,eu,gl,ja,ko,nl,th,vi)
Overview of Changes from GLib 2.11.0 to GLib 2.11.1
===================================================
* GOption
- Support 64-bit integers
- Allow optional text before and after the options
in help output
* Bug fixes:
340538 gbase64-test writes OOB
340816 GKeyFile set_string_list invalid memory reads
339105 g_key_file_parse_value_as_double
340434 convert-test.c fails (function test_one_half)
311043 Memory leaks (and potential infinite loops)
when using G_ERRORCHECK_MUTEXES
335198 Error checking mutexes are fubar
341237 Add a G_OPTION_ARG_INT64
341192 g_io_channel_set_flags not implemented on win32
336120 Allow adding description before/after GOption
--help output body
341191 misplaced check in g_relation_delete
340530 mismatched calloc / g_free in win32 threads
* Updated translation (es)
Overview of Changes from GLib 2.10.x to GLib 2.11.0
===================================================
* GBookmarkFile: a parser for files containing bookmarks
stored using the Desktop Bookmark specification.
* Base64 encoding support
* Unicode 5.0 support
* GOption supports floating point numbers
* GKeyFile supports floating point numbers
* Bug fixes:
155884 gatomic.c should be based on new SDK
157877 update-desktop-database doesn't handle duplicate entries
164719 keyfile parser doesn't support floats
327662 Import BookmarkFile from libegg
329548 Add G_OPTION_ARG_DOUBLE
329789 option-test.c type confusion
332841 Segmentation Fault when %llu is passed to vasnprintf and
HAVE_SNPRINTF is not defined
333879 gthread/gthread-win32.c: IsDebuggerPresent needs '#define
_WIN32_WINDOWS 0x0401'
333916 g_timer_elapsed docs should mention that microseconds
may be NULL
334440 dlerror() portability issue causes crash on (old) a.out
NetBSD platform
334646 goption + error out params
334799 g_remove() must check return value of remove()
334943 make check FAIL: threadpool-test
335215 Some breakages with GThreadPool
336085 g_option_context_new parameter lacks better explanation
336677 Documentation for g_object_ref_sink() is incorrect
337027 gbookmarkfile.c: sys/time.h include error
337553 Wrong escaping of URIs
338572 Dereferencing NULL value in g_key_file_get_group_comment
338845 g_completion_complete_utf8 crashes when NULL is passed to it
339337 g_bookmark_file_set_description
339338 gbookmarkfile.c, function expand_exec_line
339340 gbookmarkfile.c, function bookmark_app_info_dump
* Translation updates (bg,en_GB,et,gl,gu,he,hi,ka,nb,nl,nn,
or,pt_BR,ro,tr,vi,zh_CN)
2006-07-03 23:01:53 +02:00
|
|
|
include/glib/glib-2.0/glib/gbase64.h
|
2010-05-31 19:30:36 +02:00
|
|
|
include/glib/glib-2.0/glib/gbitlock.h
|
Update to 2.12.0. Add a patch fixing PR 33908, provided by
Martijn van Buul.
Changes:
Overview of Changes from GLib 2.11.4 to GLib 2.12
=================================================
* Bugs fixed:
344905 leap-year bug in g_time_val_from_iso8601 w/o HAVE_TIMEGM
* Updated translations (cy,nb,nl)
Overview of Changes from GLib 2.11.3 to GLib 2.11.4
===================================================
* GBookmarkFile:
- g_bookmark_file_remove_item returns a boolean
* g_mkstemp accepts the XXXXXX in the middle of
the template
* Bugs fixed:
344868 g_key_file_to_data should separate groups
* Updated translations (de,es,fr,gu,hi,ko,th)
Overview of Changes from GLib 2.11.2 to GLib 2.11.3
===================================================
* GBookmarkFile:
- g_bookmark_file_move_item: Return TRUE in case of
an empty target
* Bugs fixed:
343919 gunicollate.c: strxfrm bug on VC8
* Updated translations (fi)
Overview of Changes from GLib 2.11.1 to GLib 2.11.2
===================================================
* Add g_ascii_stroll to parse signed 64bit integers
* GMarkup: add a flag to treat CDATA as text
* GHashTable: add functions to remove all entries
* GMainLoop: add functions to find the currently
running source, and determine if it is destroyed
* Bug fixes:
342563 g_atomic_thread_init() needs to be called before
other _g_*_thread_init() functions
343548 Potential use after free in callers of g_string_free()
168538 Wish: Clearing contents of GHashTables
321886 GTK+ cannot be reliably used in multi-threaded
applications
341826 goption.c: 'strtoll' is C99's function
343899 g_ascii_formatd dosn't work as expected for all
format strings
317793 Make GEnumValue strings const
337129 Compile warnings in G_IMPLEMENT_INTERFACE
303622 What is G_TYPE_CHAR?
* Updated translations (bg,dz,eu,gl,ja,ko,nl,th,vi)
Overview of Changes from GLib 2.11.0 to GLib 2.11.1
===================================================
* GOption
- Support 64-bit integers
- Allow optional text before and after the options
in help output
* Bug fixes:
340538 gbase64-test writes OOB
340816 GKeyFile set_string_list invalid memory reads
339105 g_key_file_parse_value_as_double
340434 convert-test.c fails (function test_one_half)
311043 Memory leaks (and potential infinite loops)
when using G_ERRORCHECK_MUTEXES
335198 Error checking mutexes are fubar
341237 Add a G_OPTION_ARG_INT64
341192 g_io_channel_set_flags not implemented on win32
336120 Allow adding description before/after GOption
--help output body
341191 misplaced check in g_relation_delete
340530 mismatched calloc / g_free in win32 threads
* Updated translation (es)
Overview of Changes from GLib 2.10.x to GLib 2.11.0
===================================================
* GBookmarkFile: a parser for files containing bookmarks
stored using the Desktop Bookmark specification.
* Base64 encoding support
* Unicode 5.0 support
* GOption supports floating point numbers
* GKeyFile supports floating point numbers
* Bug fixes:
155884 gatomic.c should be based on new SDK
157877 update-desktop-database doesn't handle duplicate entries
164719 keyfile parser doesn't support floats
327662 Import BookmarkFile from libegg
329548 Add G_OPTION_ARG_DOUBLE
329789 option-test.c type confusion
332841 Segmentation Fault when %llu is passed to vasnprintf and
HAVE_SNPRINTF is not defined
333879 gthread/gthread-win32.c: IsDebuggerPresent needs '#define
_WIN32_WINDOWS 0x0401'
333916 g_timer_elapsed docs should mention that microseconds
may be NULL
334440 dlerror() portability issue causes crash on (old) a.out
NetBSD platform
334646 goption + error out params
334799 g_remove() must check return value of remove()
334943 make check FAIL: threadpool-test
335215 Some breakages with GThreadPool
336085 g_option_context_new parameter lacks better explanation
336677 Documentation for g_object_ref_sink() is incorrect
337027 gbookmarkfile.c: sys/time.h include error
337553 Wrong escaping of URIs
338572 Dereferencing NULL value in g_key_file_get_group_comment
338845 g_completion_complete_utf8 crashes when NULL is passed to it
339337 g_bookmark_file_set_description
339338 gbookmarkfile.c, function expand_exec_line
339340 gbookmarkfile.c, function bookmark_app_info_dump
* Translation updates (bg,en_GB,et,gl,gu,he,hi,ka,nb,nl,nn,
or,pt_BR,ro,tr,vi,zh_CN)
2006-07-03 23:01:53 +02:00
|
|
|
include/glib/glib-2.0/glib/gbookmarkfile.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/glib/gbytes.h
|
|
|
|
include/glib/glib-2.0/glib/gcharset.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/glib/gchecksum.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gconvert.h
|
|
|
|
include/glib/glib-2.0/glib/gdataset.h
|
|
|
|
include/glib/glib-2.0/glib/gdate.h
|
2010-11-02 15:52:24 +01:00
|
|
|
include/glib/glib-2.0/glib/gdatetime.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gdir.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/glib/genviron.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gerror.h
|
|
|
|
include/glib/glib-2.0/glib/gfileutils.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/glib/ggettext.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/ghash.h
|
2012-01-29 11:46:52 +01:00
|
|
|
include/glib/glib-2.0/glib/ghmac.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/ghook.h
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
include/glib/glib-2.0/glib/ghostutils.h
|
2004-04-01 20:13:31 +02:00
|
|
|
include/glib/glib-2.0/glib/gi18n-lib.h
|
|
|
|
include/glib/glib-2.0/glib/gi18n.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/giochannel.h
|
2004-12-24 11:03:27 +01:00
|
|
|
include/glib/glib-2.0/glib/gkeyfile.h
|
2015-06-11 01:00:05 +02:00
|
|
|
include/glib/glib-2.0/glib/glib-autocleanups.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/glist.h
|
|
|
|
include/glib/glib-2.0/glib/gmacros.h
|
|
|
|
include/glib/glib-2.0/glib/gmain.h
|
Update to 2.8.2:
Overview of Changes from GLib 2.8.1 to GLib 2.8.2
=================================================
* Win32 changes
- the g_spawn* functions now take their arguments
in UTF-8 [Tor Lillqvist]
- Avoid extra console windows in some situations
[Tor Lillqvist]
* Bug fixes [Kjartan Maraas, Sebastian Wilhelmi,
Mathias Hasselmann]
* Documentation improvements [Matthias, Mark Drago,
Matthew F. Barnes, Behdad Esfahbod]
* Translation updates (bg,ca,cs,cy,da,de,el,en_CA,es,et,
eu,fi,fr,gl,gu,hu,it,ja,nb,nl,no,pl,pt,pt_BR,ro,ru,sk,
sq,sr,sr@Latn,sv,uk,vi,zh_TW)
Overview of Changes from GLib 2.8.0 to GLib 2.8.1
=================================================
* Optimize single-character insertions in GString [Ross Burton]
* Fix build problems on OS X
* Fix build problems on Win32 [Tor Lillqvist, Hans Breuer]
* Other bug fixes [Matthew F. Barnes, Stepan Kasal]
* Documentation improvements [Tristan van Berkom, Behnam
Esfahbod, Gustavo Carneiro, Stepan Kasal, Matthias]
* New and updated translations (ca,cy,ko,ro,uk)
Overview of Changes from GLib 2.7.7 to GLib 2.8.0
=================================================
* Make g_value_transform() handle enum values
correctly on ppc64. [Michael Lorenz]
(Third-party code accessing enumeration values
in GValues should also be changed to access
v_long, not v_int, in order to work on bigendian
64bit machines.)
* Make g_flags_get_first_value() handle a value
of 0 meaningfully. [Tim-Philipp Müller]
Overview of Changes from GLib 2.7.6 to GLib 2.7.7
=================================================
* Make atomic operations on s390 work [Matthias]
* Fix C++ guards in gstdio.h [Tor Lillqvist]
Overview of Changes from GLib 2.7.5 to GLib 2.7.6
=================================================
* Add native implementations of atomic operations
on s390 [Matthias]
* Make atomic reference counting of closures
work on s390 [Matthias]
* Avoid an infinite loop in g_convert_with_iconv().
[Sebastian Bacher]
* Documentation improvements [Ross Burton]
Overview of Changes from GLib 2.7.4 to GLib 2.7.5
=================================================
* Thread-related changes
- Fix build issues on HP-UX [Paul Cornett]
- Threadsafe access to flags stored in datasets [Tim Janik]
- Fix several issues with atomic refcounting for
closures, objects and paramspecs [Tim]
- Improve tests for atomic refcounting changes [Tim]
* Fix handling of stateful encodings in g_convert_* [Matthias]
* Fix translation of GOption help output [Dan Winship]
* Catch format errors in translations. This may cause
"make check" to fail when using older versions
of gettext [Matthias]
* Win32 bug fixes [Tor Lillqvist]
* Documentation improvements [Ross Burton, Jochen Baier,
Matthias, Tim]
* New and updated translations (de,fi,gu,pl,pt,tr,zh_TW)
Overview of Changes from GLib 2.7.3 to GLib 2.7.4
=================================================
* Fix g_atomic_pointer_compare_and_exchange
on Sparc64 [Gert Doering]
* Fix a hang in g_thread_pool_free. [Hong Jen Yee]
* Win32 bug fixes [Tor Lillquist]
* Other bug fixes [Benoit Dejean, Manish Singh]
* Documentation improvements [Bryan Silverthorn,
Callum McKenzie]
* New and updated translations (de,lt,sq,zh_CN)
Overview of Changes from GLib 2.7.2 to GLib 2.7.3
=================================================
* GOption
- Allow callbacks with optional arguments [Pawel Sliwowski]
- Allow to turn off the automatic long option name
disambiguation [Adam McLaurin]
- Only allow printable ASCII as short option names [Matthias]
* Win32
- Build fixes [Tor Lillqvist]
- Rewrite iochannel socket implementation [Tor]
* GObject
- Threadsafety improvements; in particular, refcounting
of objects is done atomically now. [Wim Taymans, Tim Janik]
* Bug fixes [Morten Welinder, Matthias, Wim Taymans]
* Documentation improvements [Richard Laager, Matthias]
* New and improved translations (bf,cs,hu,nb,nl,no)
Overview of Changes from GLib 2.7.1 to GLib 2.7.2
=================================================
* Win32 build fixes [Hans Breuer]
* Bug fixes [Mikael Magnusson]
* Documentation improvements [Matthias Clasen]
* New and updated translations (en_CA,es,et,ja,sr,sr@Latn,zh_TW)
Overview of Changes from GLib 2.7.0 to GLib 2.7.1
=================================================
* GOption
- Allow callback arguments without parameters [Dan Winship]
* GMappedFile: an mmap wrapper [David Schleef, Behdad Esfahbod]
* Misc new functions:
- g_get_host_name [Tor Lillqvist]
- g_mkdir_with_parents [Tor]
- g_build_pathv, g_build_filenamev [Todd A. Fisher,
Matthias Clasen]
* Bug fixes [Roger Leigh, Masatake YAMATO, Kjartan Maraas,
Manish Singh, Tor, Murray Cumming, Kian Duffy, Morten Welinder]
* Documentation improvements [Hong Gang XU, Dan Winship, Matthias]
* New and updated translations (bg,cs,da,en_CA,es,et,nb,nl,no,
sk,th,zh_TW)
Overview of Changes from GLib 2.6.x to GLib 2.7.0
=================================================
* GKeyFile
- Add unit tests [Matthias Clasen, Suren A. Chilingaryan]
- Accept \r\n as line end [Bastian Nocera]
- Don't interpret leading zeros as octal numbers. [Matthias]
- Make key and group removal work [David Hoover, Matthias Hasselmann]
* GOption
- Improve formatting of --help output [Matthias, Noah Levitt]
- Accept -? [Matthias]
- Warn about duplicate main groups [Jeff Franks]
- Treat '-' as non-option argument [Tim Musson, Thomas Leonard]
- Report missing arguments as errors [Björn Lindqvist]
- Add a boxed type for GDate [Tim-Philipp Müller]
* GTree
- g_tree_remove() and g_tree_steal() return status information [Matthew F. Barnes]
* Stdio wrappers
- Work regardless of large file support [Manish Singh]
- Add g_access(), g_chmod(), g_creat(), g_chdir [Tor Lillqvist]
* GObject
- Implement "toggle references" to help language bindings [Owen Taylor]
- Allow to mark names, nicks and blurbs of pspecs as static [Ben Maurer, Matthias]
- Make pspec lookup a bit faster [Morten Welinder]
* Add g_listenv() to list all set environment variables [Hans Petter Jansson]
* Add g_file_set_contents() to atomically write a file. [Søren Sandmann,
Sven Neumann, Manish, Alexis S. L. Carvalho]
* Add g_try_malloc(), g_try_new(), g_try_new0() and g_try_renew() [Stefan Kost]
* Add g_utf8_collate_key_for_filename() to sort filenames taking
extensions and numeric suffixes into account. [Ole Laursen, Alex Larsson]
* Add G_GNUC_NULL_TERMINATED to mark varargs function with
NULL-terminated argument lists. [Marc Meissner]
* Win32 changes
- Improved debugability [Ulf Lamping, Hans Breuer]
- Make filename handling more robust [Tor, Billy Skaggs]
- Improve g_get_system_data_dirs() [Tor]
- Use more precise timers [Tor]
- Build fixes [Kazuki Iwamoto, Hans, Tor, Robert Ögren]
* Other bug fixes [Roger Leigh, Owen, Matthias, Morten, Kjartan Maraas,
Pawel Sakowski, Tor, Simon Budig, Ed Avis, Manish, Nicolas Laurent,
Bastien, Fabrício Barros Cabral, Michael Banck, Daniel Atallah,
J. Ali Harlow, Tim Janik, Hazael Maldonado Torres, Sven, Jon-Kare Hellan,
Dave Benson, Tommi Komulainen, Benjamin Otte, Brian Cameron, Changwoo Ryu,
Christian Biere, Noah, Benoît Carpentier]
* Documentation improvements [Vincent Untz, Matthias, Tim-Philipp Müller,
Morten, Matthew, Federico Mena Quintero, Sebastian Bacher, Oliver Sessink,
Stefan, Jared Lash, Tor, Owen, Daniel Vaillard, Mathieu Lacage]
* New and updated translations (ca,cs,da,el,en_CA,en_GB,es,et,eu,fa,fr,gl,
hu,id,it,lt,mn,ne,nl,pl,pt,pt_BR,ro,rw,sk,sq,sr,sr@Latn,tl,uk,xh,zh_CN)
2005-10-02 14:15:09 +02:00
|
|
|
include/glib/glib-2.0/glib/gmappedfile.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gmarkup.h
|
|
|
|
include/glib/glib-2.0/glib/gmem.h
|
|
|
|
include/glib/glib-2.0/glib/gmessages.h
|
|
|
|
include/glib/glib-2.0/glib/gnode.h
|
2004-12-24 11:03:27 +01:00
|
|
|
include/glib/glib-2.0/glib/goption.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gpattern.h
|
Update glib2 to 2.20.0.
Changes:
2009-03-13 Matthias Clasen <mclasen@redhat.com>
* === Released 2.20.0 ===
* configure.in: Bump version to 2.20.0
2009-03-13 Matthias Clasen <mclasen@redhat.com>
* NEWS: Updates
2009-03-12 Matthias Clasen <mclasen@redhat.com>
* glib/gbase64.c: Avoid integer overflows in the base64
functions. Fixes CVE-2008-4316
2009-03-11 Stef Walter <stef@memberwebs.com>
* glib/gchecksum.c: Document and guarantee hex digests will
be returned in lower case. Fixes bug #574019
2009-03-02 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version
2009-03-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.19.10 ===
2009-03-02 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version
2009-03-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.19.9 ===
2009-03-02 Matthias Clasen <mclasen@redhat.com>
* NEWS: Updates
2009-03-01 Matthias Clasen <mclasen@redhat.com>
Bug 572508 – gmarkup speedup ...
* glib/gmarkup.c: Various optimizations: do less allocations by
keeping a pool of GStrings, do in-place unescaping, avoid redundant
utf-8 validation. Patch by Michael Meeks
* tests/markups/fail-36.gmarkup: Adapt
2009-03-01 Matthias Clasen <mclasen@redhat.com>
* glib/gthread.c: Fix docs.
2009-03-01 Matthias Clasen <mclasen@redhat.com>
* tests/slice-threadinit.c: Change one magazine size from 77 to 81
to make distcheck work on x86-64.
2009-02-27 Tor Lillqvist <tml@novell.com>
Bug 167569 - g_string_append_printf crashes on win32 when used
with a NULL argument
* glib/gnulib/vasnprintf.c (vasnprintf): Add workaround for buggy
programs. Patch by Owen.
2009-02-23 Paolo Borelli <pborelli@katamail.com>
* glib/gutf8.c (_g_utf8_make_valid):
sanity check the input paramter.
2009-02-23 Tor Lillqvist <tml@novell.com>
Bug 570501 - g_win32_get_system_data_dirs uses invalid conversion
of function pointer to object pointer
* glib/gutils.c (g_win32_get_system_data_dirs_for_module): Change
the type of the function's parameter to be explicitly a function
pointer.
* glib/gutils.h (_g_win32_get_system_data_dirs): Modify
declaration and the only caller, the inline
_g_win32_get_system_data_dirs(), accordingly. Add comments
pointing out these are internal GLib functions.
2009-02-22 Matthias Clasen <mclasen@redhat.com>
Bug 572151 – “it's” and “its” confused in docs and comments
* Fix "it's" vs "its" confusion throughout the source. Patch
by Will Thompson.
2009-02-22 Matthias Clasen <mclasen@redhat.com>
Bug 572464 – Doc for g_file_get_contents
* glib/gfileutils.c (g_file_get_contents): Improve docs. Pointed
out by Øystein Johansen.
2009-02-22 Matthias Clasen <mclasen@redhat.com>
Bug 572672 – glib/gthread.c: argument is different type
* glib/gthread.c (g_once_init_leave): Add a necessary cast back.
Pointed out by Kazuki Iwamoto.
2009-02-17 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version
2009-02-17 Matthias Clasen <mclasen@redhat.com>
* === Released 2.19.8 ===
2009-02-17 Matthias Clasen <mclasen@redhat.com>
Fix strict aliasing warnings and viiolations to make GLib and
GLib users buildable with gcc 4.4. Patch by Jakub Jelinek.
* glib/gatomic.[hc]: Add G_GNUC_MAY_ALIAS to pointer arguments,
fix macro versions to only operate on objects of the same size.
* glib/gdataset.c:
* glib/gthread.[hc]:
* glib/gdatasetprivate.h: Remove unnecessary casts in
g_atomic_pointer_get calls.
2009-02-16 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version
2009-02-16 Matthias Clasen <mclasen@redhat.com>
* === Released 2.19.7 ===
2009-02-16 Matthias Clasen <mclasen@redhat.com>
* NEWS: Updates
2009-02-13 Mathias Hasselmann <hasselmm@gnome.org>
Add note about g_utf8_offset_to_pointer() not checking string
boundaries.
* glib/gutf8.c (g_utf8_offset_to_pointer()): See summary.
2999-02-11 Matthias Clasen <mclasen@redhat.com>
Bug 523742 – Use noinst for non-installable libraries
* tests/Makefile.am: use noninst_LTLIBRARIES for noninstalled
libraries.Patch by Björn Lindqvist
2009-02-06 Murray Cumming <murrayc@murrayc.com>
* gio/gfilterinputstream.c:
* gio/gfilteroutputstream.c: Correct the grammar in some property
documentation.
* gio/gdatainputstream.c:
* glib/gregex.c: Correct the spelling of
occurrence in documentation.
2009-02-02 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version
2009-02-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.19.6 ===
2009-02-02 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version
2009-01-31 Matthias Clasen <mclasen@redhat.com>
* NEWS: Updates
2009-01-31 Matthias Clasen <mclasen@redhat.com>
Bug 569105 – g_time_val_to_iso8601() assumes time_t==long
* glib/gtimer.c (g_time_val_to_iso8601): Pass a time_t* to gmtime().
Pointed out by Matthias Drochner.
2009-01-27 Christian Persch <chpe@gnome.org>
* configure.in:
* docs/reference/glib/glib-sections.txt:
* docs/reference/macros_misc.sgml:
* docs/reference/glib/tmpl/types.sgml: Add
G_GOFFSET_FORMAT and friends. Bug #563141.
2009-01-23 Stefan Kost <ensonic@users.sf.net>
* docs/reference/glib/Makefile.am:
Add SCAN_OPTIONS=--ignore-decorators="GLIB_VAR" to Makefile.am to fix
on problem with the doc build.
2009-01-21 Tor Lillqvist <tml@novell.com>
* glib/gwin32.c (g_win32_locale_filename_from_utf8): Drop the code
in the else branch of #if GLIB_CHECK_VERSION (2, 19, 0). Drop
unused variables.
2009-01-20 Matthias Clasen <mclasen@redhat.com>
Bug 568294 – A wrong reference in the description of
g_bookmark_file_add_application()
* glib/gbookmarkfile.c (g_bookmark_file_add_application):
Fix a typo in the docs. Pointed out by Takeshi Aihana
2009-01-19 Matthias Clasen <mclasen@redhat.com>
* === Released 2.19.5 ===
2009-01-18 Matthias Clasen <mclasen@redhat.com>
* glib/gstrfuncs.c (g_strdup_printf): Fix a doc typo.
2009-01-18 Matthias Clasen <mclasen@redhat.com>
* NEWS: Updates
2009-01-18 Matthias Clasen <mclasen@redhat.com>
Bug 512779 – --disable-regex breaks compilation
* configure.in: Define an ENABLE_REGEX macro
* gobject/gboxed.c: Don't refer to g_regex_ref if ENABLE_REGEX
is not defined.
2009-01-18 Matthias Clasen <mclasen@redhat.com>
* glib/gbsearcharray.h: Quell some compiler warnings.
2009-01-18 Matthias Clasen <mclasen@redhat.com>
* glib/pcre: Update to PCRE 7.8
2009-01-17 Matthias Clasen <mclasen@redhat.com>
Bug 567977 – textdomain() macro should not return NULL when
ENABLE_NLS is not set
* glib/glibintl.h: If !ENABLE_NLS, make textomain() macro
return "messages" in case of a NULL argument. Patch by
Peter Kjellerstedt.
2009-01-17 Matthias Clasen <mclasen@redhat.com>
Bug 567838 – G_STRUCT_OFFSETOF fails to compile under icc 9.1
* glib/gmacros.h (G_STRUCT_OFFSETOF): Use offsetof instead of
__builtin_offsetof, for icc's sake. Proposed by Hrvoje Niksic.
2009-01-13 Matthias Clasen <mclasen@redhat.com>
Bug 564728 Add function to decode base64 encoded data in place
* glib/glib.symbols:
* glib/gbase64.[hc] (g_base64_decode_inplace): New convenience
API to decode in place, overwriting the input string. Patch by
Sebastian Dröge.
2009-01-12 Matthias Clasen <mclasen@redhat.com>
* glib/gtestutils.c (g_strcmp0): Be more explicit about the NULL
handling in the docs.
2009-01-12 Tor Lillqvist <tml@novell.com>
* glib/goption.c (parse_arg): Guard against a mis-written
GOptionArgFunc that has returned FALSE but not set the GError.
2009-01-10 Matthias Clasen <mclasen@redhat.com>
Bug 566573 – g_match_info_fetch_pos docs
* glib/gregex.c: Mention that positions are in bytes.
Proposed by Christian Persch.
2009-01-10 Matthias Clasen <mclasen@redhat.com>
Bug 566569 – gregex docs clarification
* glib/gregex.c: Copy the warning about @string to all
relevant docs. Proposed by Christian Persch
2009-01-09 Tor Lillqvist <tml@iki.fi>
Bug 567138 - get_package_directory_from_module() does not free its
lock when failing
* glib/gwin32.c (get_package_directory_from_module): Obvious fix.
2009-01-05 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version
2009-01-05 Matthias Clasen <mclasen@redhat.com>
* === Released 2.19.4 ===
* NEWS: Updates
2009-01-05 Dan Winship <danw@gnome.org>
* glib/tests/.gitignore: update
* tests/.gitignore: update, sort
* tests/gobject/.gitignore: add
2009-01-05 Tor Lillqvist <tml@iki.fi>
Bug 566348 - g_file_open_tmp uses the wrong g_mkstemp on win32
* glib/gfileutils.c: Move the binary compatibility versions of
g_file_test(), g_file_get_contents(), g_mkstemp() and
g_file_open_tmp() last in the file. Remove the restriction that
the XXXXXX is last in the template in the binary compatibility
version of g_mkstemp(). Thanks to Morten Welinder and Jody
Goldberg.
2009-01-03 Matthias Clasen <mclasen@redhat.com>
* NEWS: Updates
2009-01-02 Matthias Clasen <mclasen@redhat.com>
* glib/gregex.c: Add an example to the g_regex_replace_eval() docs.
2009-01-02 Matthias Clasen <mclasen@redhat.com>
* glib/gstrfuncs.c: Move docs inline, adding references to g_free()
where appropriate.
2009-01-02 Matthias Clasen <mclasen@redhat.com>
Bug 564210 – SUN Studio 12 has supported visibility attribute
* configure.in: Use visibility attribute for new enough sun cc.
Patch by Chris Wang
2008-12-30 Matthias Clasen <mclasen@redhat.com>
Bug 565905 – There is no named g_context_group_set_translation_domain()
in GOption command line parser
* glib/goption.c: Fix a wrong reference in the docs, reported by
Takeshi Aihana.
2008-12-30 Matthias Clasen <mclasen@redhat.com>
* glib/gspawn.c:
* glib/gthread.c:
* glib/goption.c:
* glib/gmain.c:
* glib/gkeyfile.c:
* glib/gfileutils.c:
* glib/gdate.c:
* glib/garray.c:
* glib/gbookmarkfile.c:
* glib/gbacktrace.c: Fix some compiler warnings.
2008-12-19 Tor Lillqvist <tml@novell.com>
* glib/glib.symbols: Add g_thread_get_initialized here,
too. Surround g_test_config_vars with ifdef INCLUDE_VARIABLES.
2008-12-18 Mike Kestner <mkestner@novell.com>
Bug 560676 - function access for g_threads_supported
* glib/gthreads.c (g_thread_get_initialized): new accessor for
g_threads_supported macro.
* glib/gthreads.h: add g_thread_get_initialized
2008-12-15 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version
* === Released 2.19.3 ===
2008-12-13 Matthias Clasen <mclasen@redhat.com>
* NEWS: Updates
2008-12-12 Dan Winship <danw@gnome.org>
* glib/pltcheck.sh: make this work on x86_64
2008-12-12 Behdad Esfahbod <behdad@gnome.org>
* glib/guniprop.c: Improve g_unichar_iswide_cjk() docs.
2008-12-07 Matthias Clasen <mclasen@redhat.com>
Bug 508021 – Add support for the CRIS and CRISv32 architectures
* configure.in:
* glib/gatomic.c: Add an implementation for the CRIS and CRISv32
architectures, by Peter Kjellerstedt
2008-12-02 Matthias Clasen <mclasen@redhat.com>
* glib/gkeyfile.c: Some more documentation additions.
2008-12-01 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version
2008-12-01 Matthias Clasen <mclasen@redhat.com>
* === Released 2.19.2 ===
2008-12-01 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version
2008-12-01 Matthias Clasen <mclasen@redhat.com>
* === Released 2.19.1 ===
* NEWS: Updates
2008-11-28 Behdad Esfahbod <behdad@gnome.org>
Bug 562639 – g_parse_debug_flags() parsing "help"
* glib/gutils.c (g_parse_debug_string): Print available keys if
string is "help".
2008-11-28 Behdad Esfahbod <behdad@gnome.org>
Bug 562638 – GDebugKey key member should be const
* glib/gutils.h: Change GDebugKey key member from gchar * to
const gchar *.
2008-11-28 Matthias Clasen <mclasen@redhat.com>
Bug 547264 – Missing "no flags" flag
* glib/gregex.c: Mention 0 as value for 'no flags' in some places..
Pointed out by Bastien Nocera
2008-11-28 Matthias Clasen <mclasen@redhat.com>
Bug 562544 – g_key_file_get_string and g_key_file_get_value
documentation does not explain the difference
* glib/gkeyfile.c (g_key_file_get_string): Explain the difference
to g_key_file_get_value(). Pointed out by Mart Raudsepp.
2008-11-28 Matthias Clasen <mclasen@redhat.com>
* glib/gkeyfile.c: Refer to @locale parameters as locale identifier
in docs.
2008-11-28 Matthias Clasen <mclasen@redhat.com>
Bug 557603 – carbon check output misplaced
* configure.in: Call AC_PROG_CPP early to avoid it messing up
carbon check output. Fix proposed by Christian Persch
2008-11-28 Matthias Clasen <mclasen@redhat.com>
Bug 559110 – Do not include libintl.h after glibintl.h
* glib/glibintl.h: Define bind_textdomain_codeset in the DISABLE_NLS
branch. Patch by Peter Kjellerstedt.
* glib/gutil.c: Don't include libintl.h directly.
2008-11-28 Matthias Clasen <mclasen@redhat.com>
Bug 562378 – callback return value not respected for callback option
with no arg
* glib/goption.c (parse_long_option): Return the parse_arg return
value even for no-arg callbacks. Patch by Christian Persch
* glib/tests/option-context.c: Add a test for a callback which
returns FALSE.
2008-11-23 Christian Persch <chpe@gnome.org>
Bug 559413 – g_option_group_set_error_hook docs buglet
* glib/goption.c: Doc fix.
2008-11-23 Christian Persch <chpe@gnome.org>
Bug 560568 – gkeyfile docs buglet
* glib/gkeyfile.c: Clarify the docs.
2008-11-23 Christian Persch <chpe@gnome.org>
Bug 560569 – gkeyfile doesn't use the set list_separator in some cases
* glib/gkeyfile.c: (g_key_file_get_locale_string_list),
(g_key_file_set_locale_string_list), (g_key_file_set_integer_list),
(g_key_file_set_double_list): Use the key file's list separator character,
not the default one.
* glib/tests/keyfile.c: (test_lists), (test_reload_idempotency): Test
this.
2008-11-21 Christophe Fergeau <teuf@gnome.org>
Bug 561212 – GFileReadMoreCallback API doc refers to non-existant function
* gio/giotypes.h: fix name of function referred to in
GFileReadMoreCallback API documentation
2008-11-21 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump gtk-doc dependency to 1.11 for
nicer index-generation.
2008-11-14 Matthias Clasen <mclasen@redhat.com>
* NEWS: Updates
2008-11-04 Christian Dywan <christian@imendio.com>
Bug 558672 – NULL key lookup using g_hash_table_lookup_extended()
* glib/ghash.c:
Clarify g_hash_table_lookup_extended
2008-11-02 Tor Lillqvist <tml@novell.com>
* configure.in: Expand also build/win32/vs9/Makefile.
2008-10-31 Christian Dywan <christian@imendio.com>
Bug 558513 – g_warn_if_fail FIXME in gtestutils
* glib/gtestutils.c (g_test_log_send):
Turn g_assert into g_warn_if_fail as advised
2008-10-31 Grahame Bowland <grahame@angrygoats.net>
Bug 558185 – 'parent' variable in g_local_file_get_child_for_display_name()
hits g_object_unref(NULL) assertion
* gio/glocalfile.c:
- remove unused variable. Patch by Matt Johnston <matt@ucc.asn.au>
2008-10-29 16:11:14 Tim Janik <timj@gtk.org>
* glib/gmacros.h: added G_PASTE() and G_STATIC_ASSERT(), based on
patches by Christian Persch and Christian Dywan. Fixes:
Bug 558381 - Add support for compile time assertions
2008-10-27 Joseph Pingenot <gnomesvn@digitasaru.net>
* glib/ghash.c: changed "#GHashTableIterator" to "#GHashTableIter"
in the documentation-comments above g_hash_table_foreach_remove()
and g_hash_table_foreach_steal() to correctly name and link to
GHashTableIter. This affects the GNOME documentation website
as well, so further steps are likely necessary beyond this subproject..
2008-10-23 Matthias Clasen <mclasen@redhat.com>
Bug 557210 – g_compute_checksum_for_* asserts with less than 2 bytes
* glib/gchecksum.c (g_compute_checksum_for_data): Accept
lengths < 2. Patch by Tommi Komulainen
* tests/checksum-test.c: Add a test for this
2008-10-23 Matthias Clasen <mclasen@redhat.com>
Bug 556921 – gpoll.h breaks hal compilation
* glib/gpoll.h: Include gtypes.h. Pointed out by Anis Elleuch
2008-10-20 Christian Persch <chpe@gnome.org>
Bug 557087 – mem leak in g_content_types_get_registered
* gio/gcontenttype.c: Plug a mem leak.
2008-10-19 Michael Natterer <mitch@imendio.com>
Bug 556186 – gpoll.h breaks gmain.h inclusion
* glib/gpoll.h: different fix: disallow direct inclusion
unconditionally again but make an exception if included from
gmain.h to maintain compatibility.
2008-10-16 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version to 2.19.1
* === Released 2.19.0 ===
* NEWS: Updates
2008-10-14 Christian Persch <chpe@gnome.org>
Bug 556186 – gpoll.h breaks gmain.h inclusion
* glib/gpoll.h: Only disallow direct inclusion when
G_DISABLE_SINGLE_INCLUDES is defined.
2008-10-13 Sven Herzberg <sven@imendio.com>
Bug 556101 – static mutex yields warnings with g++
Reviewed by Tim Janik
* configure.in: added an intermediate cast to gpointer
2008-10-13 Christian Persch <chpe@gnome.org>
Bug 555311 – format not a string literal and no format arguments
* glib/gmarkup.c:
* glib/gshell.c: Use literal errors where appropriate.
2008-10-10 Behdad Esfahbod <behdad@gnome.org>
Bug 551355 – [PATCH] Make glib build with libtool 2.2
* autogen.sh: Accept libtool 2.2. We are moving towards having
it working.
2008-10-10 Behdad Esfahbod <behdad@gnome.org>
* configure.in: With libtool 2.x, regenerate libtool early.
Based on bug 552107, patch by Patryk Zawadzki
2008-10-10 Matthias Clasen <mclasen@redhat.com>
Bug 554557 – Patch to fix gcc warnings about missing format
specifiers
* glib/gmarkup.c:
* glib/gshell.c:
* glib/grel.c: Fix gcc warnings. Patch by Kjartan Maraas
2008-10-10 Matthias Clasen <mclasen@redhat.com>
Bug 552861 – glib-2.0.m4 calls system(3) without storing its result
* m4macros/glib-2.0.m4: Cosmetic change to make -Werror happy.
Patch by Andreas Köhler
2008-10-08 Christian Persch <chpe@gnome.org>
Bug 555313 – GFileAttribute boxed type get_type function should
use usual get_type pattern
* gio/gfileattribute.c (g_file_attribute_info_list_get_type): Use
g_once_init_enter/leave.
2008-10-08 Christian Persch <chpe@gnome.org>
Bug 555314 – mem leak in gmarkup
* glib/gmarkup.c: (g_markup_parse_context_parse): Plug a mem leak.
2008-10-08 Tor Lillqvist <tml@novell.com>
Bug 554790 - g_convert() misbehaves with winiconv versions
* glib/win_iconv.c (kernel_mbtowc): If converting from ASCII,
explicitly check for and reject 8bit chars. MultiByteToWideChar()
doesn't, at least not on XP.
2008-10-06 Matthias Clasen <mclasen@redhat.com>
* glib/gtypes.h: Properly include gmacros.h
2008-10-06 Behdad Esfahbod <behdad@gnome.org>
Bug 555309 – giochannel breaks on error
Patch from Christian Persch
* glib/giounix.c (g_io_unix_read), (g_io_unix_write),
(g_io_unix_seek), (g_io_unix_close), (g_io_unix_set_flags):
Don't shadow err. Oops!
2008-10-06 Christophe Fergeau <teuf@gnome.org>
Bug 555224 – Improve g_format_size_for_display doc
* glib/gfileutils.c: change g_format_size_for_display API doc to
explicitly say that the returned string has to be freed. Change
spelling of "newly allocated" to "newly-allocated" in g_file_read_link
API doc to be more consistent with what is done in that file.
2008-10-01 David Zeuthen <davidz@redhat.com>
* README.in: Add "Notes about glib 2.20" section detailing the
ramifications of the patch from bug #528670.
2008-09-30 Behdad Esfahbod <behdad@gnome.org>
Bug 554092 – glib doesn't return G_FILE_ERROR_NOENT et al on OS X
* glib/giounix.c (g_io_unix_read), (g_io_unix_write),
(g_io_unix_seek), (g_io_unix_close), (g_io_unix_set_flags),
(g_io_unix_get_flags), (g_io_channel_new_file):
Like mclasen says: "well, thats the way errno works...,
save it or loose it". Save errno.
2008-09-30 Tor Lillqvist <tml@novell.com>
* Makefile.decl
* glib/tests/Makefile.am: Bypass gtester related stuff on Windows.
2008-09-30 Tor Lillqvist <tml@novell.com>
* glib/gprintf.c
* glib/gnulib/vasnprintf.c: Don't define _GNU_SOURCE on Windows,
as _GNU_SOURCE has unintended side effects when compiling against
newest mingw headers.
2008-09-26 Dan Winship <danw@gnome.org>
Bug 553447 – g_assert_no_error()
* glib/gtestutils.h (g_assert_no_error, g_assert_error): Macros to
assert that a GError is not set, or else is set to a particular
error.
* glib/gtestutils.c (g_assertion_message_error): utility for
those macros
* glib/tests/keyfile.c:
* tests/asyncqueue-test.c:
* tests/bookmarkfile-test.c:
* tests/convert-test.c:
* tests/file-test.c: Use g_assert_error/g_assert_no_error
2008-09-26 Dan Winship <danw@gnome.org>
* glib/gthreadpool.c (wakeup_thread_marker): make this a "const
gpointer" rather than a gconstpointer to avoid warnings later
* glib/pcre/pcre_ucp_searchfuncs.c:
* glib/pcre/pcre_valid_utf8.c: #include "config.h"
* glib/tests/printf.c (test_d): fool gcc into not warning about
some printf format strings that we know are dubious
2008-09-26 Matthias Clasen <mclasen@redhat.com>
Bug 553857 – gbacktrace.h requires signal.h
* glib/gbacktrace.h: Include signal.h for raise().
Pointed out by Sebastien Bacher
2008-09-26 Matthias Clasen <mclasen@redhat.com>
Bug 553724 – python interpretter path not patched in correctly
* glib/Makefile.am: Fix the sed magic to replace python.
2008-09-26 Matthias Clasen <mclasen@redhat.com>
* glib/gmain.c: Add some more docs.
* glib/giochannel.c: Move more docs inline, and improve them
on the way.
2008-09-25 Tor Lillqvist <tml@novell.com>
Bug 553820 - gpoll.c: undeclared identifier
* glib/gmain.c
* glib/gpoll.c: Make the g_poll() function non-static also on
Windows. Prefix an underscore to the g_main_poll_debug variable
and make it non-static in gmain.c so that it can be used in
gpoll.c. Add back missing variable declaration.
2008-09-25 Tor Lillqvist <tml@novell.com>
* glib/gspawn-win32.c (do_spawn_with_pipes) (do_spawn_directly):
Just ignore the child_setup function, never call it. The is no
situation in which it could be useful on Windows. Do print a
warning, like before.
* glib/gspawn.c (g_spawn_async_with_pipes): Corresponding change
in documentation.
2008-09-24 Sven Herzberg <sven@imendio.com>
Be a little more explcit in the docs. Includes Owen's requested
changes.
* glib/gmain.c: improved documentation for g_source_attach() and
g_source_destroy()
2008-09-23 Michael Natterer <mitch@imendio.com>
* glib/glib.h: #include <glib/gpoll.h>
* glib/gpoll.h: #error out if gpoll.h is included directly.
* glib/gpoll.c: remove trailing whitespace.
2008-09-23 Dan Winship <danw@gnome.org>
* glib/gpoll.[ch] (g_poll): Move this out of gmain.c and make it part
of the public API. (Part of Bug 505361 - gunixinputstream.c assumes
poll() available.)
2008-09-23 Tor Lillqvist <tml@novell.com>
* glib/gmain.c (poll_rest) [Win32]: Fix embarrassing bug: I was
passing an incorrect third parameter to memmove(), had forgotten
to multiply by the size of the table entry. Just use a for loop
instead, clearer. Odd I didn't notice when testing this code.
2008-09-19 Hans Petter Jansson <hpj@novell.com>
Rewrite most of GHashTable to use open addressing with quadratic
probing instead of chaining. This has the potential to reduce memory
fragmentation significantly, while being slightly faster due to
better locality and no need to call alloc/free functions for nodes.
Benchmarks suggest it also uses less memory overall.
* glib/ghash.c (prime_mod): Table of suitable primes for
initial-probe distribution.
(g_hash_table_set_shift): New function.
(g_hash_table_find_closest_shift): New function.
(g_hash_table_set_shift_from_size): New function.
(g_hash_table_lookup_node_for_insertion): New function.
(g_hash_table_lookup_node): Rewritten to return node index instead of
pointer, use quadratic probe on flat table, and not return insertion
data. The latter saves some computation for read-only lookups.
(g_hash_table_remove_node): Rewrite to take a pointer directly to the
node structure to remove, and clear that. Remove unlinking code.
(g_hash_table_remove_all_nodes): Rewrite to not clear nodes
individually, but en masse using memset () after potentially calling
notify functions.
(iter_remove_or_steal): Use new data structure and algorithm. Vastly
simplified - now just a call to g_hash_table_remove_node ().
(g_hash_table_resize): New resize code, re-indexing with new prime
and cleaning up tombstones.
(g_hash_table_maybe_resize): Table may hold 8 buckets minimum, no less
than 1/4 load excluding tombstones, and no more than 15/16 load
including tombstones. These numbers are the results of a lot of
benchmarking with multiple complex applications, and should not be
changed lightly.
(g_hash_table_iter_next)
(g_hash_table_lookup)
(g_hash_table_lookup_extended)
(g_hash_table_insert_internal)
(g_hash_table_remove_internal)
(g_hash_table_foreach_remove_or_steal)
(g_hash_table_foreach)
(g_hash_table_find)
(g_hash_table_get_keys)
(g_hash_table_get_values): Use new data structure and algorithm,
fairly trivial changes.
2008-09-19 Tor Lillqvist <tml@novell.com>
* glib-zip.in: Look for man pages in share/man.
* glib/gutils.c (_glib_get_dll_directory)
* glib/gspawn-win32.c (do_spawn_with_pipes): Be a bit less
restrictive, look for the helper programs in the same folder where
the GLib DLL is, not necessarily in a "bin" subfolder of the top
GLib installation folder.
2008-09-18 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version to 2.19.0
* ChangeLog.pre-2-18: rotate ChangeLog
* === branch for 2.18 ===
2009-03-15 14:32:31 +01:00
|
|
|
include/glib/glib-2.0/glib/gpoll.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gprimes.h
|
2002-12-24 04:36:58 +01:00
|
|
|
include/glib/glib-2.0/glib/gprintf.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gqsort.h
|
|
|
|
include/glib/glib-2.0/glib/gquark.h
|
|
|
|
include/glib/glib-2.0/glib/gqueue.h
|
|
|
|
include/glib/glib-2.0/glib/grand.h
|
2007-08-16 00:09:13 +02:00
|
|
|
include/glib/glib-2.0/glib/gregex.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gscanner.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/glib/gsequence.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gshell.h
|
Update to 2.10.0:
Overview of Changes from GLib 2.9.6 to GLib 2.10.0
==================================================
* Bugs fixed:
328997 64bit pointer trunction in glib slab-allocator
[Pascal Hofstee]
331110 g_cond_broadcast(inform_cond) without holding
inform_mutex [Chris Wilson, Sebastian Wilhelmi]
332093 Fix some leaks in the tests [Kjartan Maraas]
332435 g_utf8_strlen returns wrong value if a maximum
number of bytes to check is specified
[Matthias Clasen]
331367 gslice requires more POSIX-like semantics for
GPrivate destructors [Tor Lillqvist]
* Documentation improvements [Matthias, Kang Jeong-Hee,
Tor Lillqvist, Stefan Kost]
* Translation updates (el,eu,ka,uk)
Overview of Changes from GLib 2.9.5 to GLib 2.9.6
=================================================
* Bugs fixed:
329124 distclean removes README [Kjartan Maraas, Tim Janik]
317679 GRelation field type not documented [Behdad Esfahbod]
329123 Typo in GTime docs [Kjartan Maraas]
* Documentation improvements [Sven Herzberg, David
Schleef, Kjartan Maraas, Behdad Esfahbod]
* Translation updates (cs,cy,it,ko,pt,sq,sr,sr@Latn,ru
Overview of Changes from GLib 2.9.4 to GLib 2.9.5
=================================================
* Memory management:
Runtime debugging support: The slice allocator
can be turned off by setting G_SLICE=always-malloc
in the environment. Zeroing of freed memory can
now be turned on at runtime by setting
G_DEBUG=gc-friendly in the environment. [Tim Janik]
* Bugs fixed:
328253 HP-UX/IA-64 uses ".so" as default shared library
extension [Albert Chin]
143380 unicode-encoding test fails converting to UTF-16
with libiconv [Marc Moorcroft]
328254 Build breakage (GSlice) [Jens Ganseuer]
328705 C99ism in glib/gmem.c [Kazuki Iwamoto]
* Translation updates (da,et,zh_CN)
Overview of Changes from GLib 2.9.3 to GLib 2.9.4
=================================================
* Type system:
Fix a problem with g_object_compat_control() which
can lead to segfaults in GTK+ applications on 64bit
platforms.
* Thread suppport:
Unused threads now fall back to the global pool after
500 milliseconds, where they wait for another
max-idle-time milliseconds. [Sebastian Wilhelmi]
* Fix a memory allocation problem in GKeyFile. [Morten
Welinder]
Overview of Changes from GLib 2.9.2 to GLib 2.9.3
=================================================
* GTree:
- Replace the simple recursive implementation by
a nonrecursive, threaded one [Maurizio Monge]
* Change g_filename_display_name and
g_filename_display_basename to use the Unicode
replacement character U+FFFD instead of a question
mark, and don't append "(invalid encoding)" [Matthias]
* Documentation improvements [Sven Herzberg, Federico
Mena Quintero, Stefan Kost]
* Bugs fixed:
323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X
[Bogdan Nicula]
326558 Some test failures on IRIX 6.5 [Daichi Kawahata]
169285 "threaded" tree implementation for GTree
[Maurizio Monge]
326747 g_filename_display_basename adds (invalid encoding)
[Alberto Ruiz]
Other contributors: Christian Kellner, Murray Cumming
New and updated translations (bg,ca,de,es,et,gu,ja,nl,th,vi)
Overview of Changes from GLib 2.9.1 to GLib 2.9.2
=================================================
* Memory management:
- Add tests for cache colorization [Tim Janik]
- Minimize space consumption if small amounts of differently
sized slices are allocated, at a small performance cost. [Tim]
* Thread support:
- Add g_atomic_pointer_set() and g_atomic_int_set() [Tim Janik,
Sebastian Wilhelmi]
- Add g_thread_pool_set_sort_function() to allow sorting the
tasks of a threadpool. [Martyn Russell]
- Add g_thread_pool_set_idle_time() to allow unused threads
to exit after a certain time. [Martyn]
* Type system:
- introduce a new type GInitiallyUnowned, which has an initial
floating reference. [Tim]
- Add support for GType parameters. [Matthias]
* Main loop:
- Add g_main_context_is_owner() to determine if the current
thread is the owner of the context. [Michael Meeks]
* Provide g_access(), g_chdir(), g_unlink(), g_rmdir() as
wrapper functions instead of macros. [Manish Singh]
* Documentation improvements [Tim, Matthias, Federico Mena Quintero,
Stefan Kasal, Dan Williams]
* New and updated translations (en_CA,fi,fr,gl,ml,nb,no,zh_HK,zh_TW)
* Bugs fixed:
324179 g_allocator_new() returns pointer to const dummy which Gtk+ 2.8
tries to modify [J. Ali Harlow]
324332 g_option_context_parse() returns false without setting error
[Tim-Philipp Müller]
324950 GLIB 2.9.1 testcase errors [Dan Yefimov]
325015 gslice.c: process.h is needed on Windows [Kazuki Iwamoto]
321978 G_DATALIST_GET_FLAGS() macro is not casting datalist to
gpointer [Andrew Paprocki]
316221 G_LOCK warns about breaking strict-aliasing [Michal Benes,
Stanislav Brabec]
325273 Error in documentation for glib_check_version () [Declan Naughton]
325310 g_spawn_sync hangs when catching both stdout and
stderr [Tor Lillqvist]
325249 gcc warning when using g_rmdir from <glib/gstdio.h> [Jani Monoses]
325864 glib/gthreadpool.c:"#define debug(...)" is C99 [Kazuki Iwamoto]
325874 Should say somewhere that source IDs are > 0 [Dan Williams]
325438 a typo (compatability) [Stefan Kasal]
323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X [Bogdan Nicula]
Overview of Changes from GLib 2.9.0 to GLib 2.9.1
=================================================
* Memory management
- The slice allocator is implemented [Tim Janik]
- g_slice_free_chain() has been renamed to
g_slice_free_chain_with_offset() [Tim, Behdad Esfahbod]
- Mem chunks are deprecated [Matthias Clasen]
* Data structures
- Hash tables are refcounted, and have a boxed type [Tim]
* Thread support
- Support for Solaris threads has been removed
[Sebastian Wilhelmi, Andrew Paprocki]
- g_async_queue_sort(), g_async_queue_push_sorted() have
been added to allow GAsyncQueue to be used as a priority
queue, together with the corresponding _unlocked
variants [Martyn Russell]
* GObject:
- The concept of a floating initial reference has been
moved from GtkObject to GObject [Tim]
* Win32 changes:
- Make g_rename() replace existing files [Tor Lillqvist]
* Misc new API:
- G_GUINT64_CONSTANT macro to define guint64
constants [Andrew Paprocki]
- G_GNUC_WARN_UNUSED_RESULT macro to instruct the
compiler to emit a warning if the value returned
by a function is ignored. [Arjan van de Ven, Alex Larsson]
- GList and GSList now have sort functions which take an
extra user data argument [Martyn Russell]
- g_param_spec_ref_sink() has been added for consistency [Tim]
* $LOGNAME is respected when determining user data. [Laszlo Peter]
* Other changes and bug fixes [Tim, Matthias, Behdad,
Christian Persch, Benedikt Meurer, Andrew Paprocki,
Kazuki Iwamoto, Alexis S. L. Carvalho, Stanislav Brabec,
Andreas Schwab, Kalle Vahlman]
* Documentation
- Deprecation warnings carry version information [Matthias]
- The slice allocator has been documented [Matthias, Tim]
- Other improvements [Morten Welinder]
Overview of Changes from GLib 2.8.x to GLib 2.9.0
=================================================
* Unicode support:
- The Unicode tables have been updated to Unicode 4.1,
adding several new values to the GUnicodeBreakType
enumeration. This breaks Pango <= 1.10
[Behdad Esfahbod]
- The various Unicode character predicate functions
(g_unichar_isalpha, g_unichar_isdigit,...) have
been optimized
[Behdad]
- g_utf8_pointer_to_offset, g_utf8_offset_to_pointer:
These functions handle negative offsets now, and
going backwards in g_utf8_offset_to_pointer uses
"stutter stepping".
[Larry Ewing, Matthias Clasen]
* Memory management:
- Mem chunks are no longer used internally in GLib and
GObject. GMemChunk will be deprecated in GLib 2.10
- All APIs based on GAllocator (g_list_push/pop_allocator,
and similar push/pop_allocator functions for other
data structures) have been deprecated, since they
never worked as intended.
- The g_slice_* functions have been added as a
new API for fast allocation of small memory blocks.
The implementation in GLib 2.9.0 is just a simple
wrapper around malloc. GLib 2.10 will have an
efficient and scalable implementation.
[Tim Janik, Matthias]
* Pattern matching:
- g_pattern_match has been optimized to avoid
unnecessary recursion.
[Tim, Matthias]
* g_intern_string, g_intern_static_string:
- New functions to intern strings. These are now used
by GObject to avoid duplicating static strings
[Matthias]
* g_thread_foreach:
- New function to iterate over all GThreads
[Tim, Matthias]
* g_date_set_time_t, g_date_set_time_val:
- New functions to set a GDate from a time_t or
GTimeVal value. g_date_set_time has been deprecated
in favor of these.
[Roger Leigh]
* g_snprintf and g_vsnprintf:
- These functions are no longer declared in gprintf.h,
since they are in glib.h
[Matthias]
2006-02-25 14:31:03 +01:00
|
|
|
include/glib/glib-2.0/glib/gslice.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gslist.h
|
|
|
|
include/glib/glib-2.0/glib/gspawn.h
|
2004-12-24 11:03:27 +01:00
|
|
|
include/glib/glib-2.0/glib/gstdio.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gstrfuncs.h
|
|
|
|
include/glib/glib-2.0/glib/gstring.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/glib/gstringchunk.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/glib/gtestutils.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gthread.h
|
|
|
|
include/glib/glib-2.0/glib/gthreadpool.h
|
|
|
|
include/glib/glib-2.0/glib/gtimer.h
|
2010-11-02 15:52:24 +01:00
|
|
|
include/glib/glib-2.0/glib/gtimezone.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/glib/gtrashstack.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gtree.h
|
|
|
|
include/glib/glib-2.0/glib/gtypes.h
|
|
|
|
include/glib/glib-2.0/glib/gunicode.h
|
2008-04-10 14:13:49 +02:00
|
|
|
include/glib/glib-2.0/glib/gurifuncs.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gutils.h
|
2010-05-31 19:30:36 +02:00
|
|
|
include/glib/glib-2.0/glib/gvariant.h
|
|
|
|
include/glib/glib-2.0/glib/gvarianttype.h
|
2012-04-30 15:53:48 +02:00
|
|
|
include/glib/glib-2.0/glib/gversion.h
|
|
|
|
include/glib/glib-2.0/glib/gversionmacros.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/glib/gwin32.h
|
|
|
|
include/glib/glib-2.0/gmodule.h
|
2010-11-02 15:52:24 +01:00
|
|
|
include/glib/glib-2.0/gobject/gbinding.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/gobject/gboxed.h
|
|
|
|
include/glib/glib-2.0/gobject/gclosure.h
|
|
|
|
include/glib/glib-2.0/gobject/genums.h
|
2012-01-29 11:46:52 +01:00
|
|
|
include/glib/glib-2.0/gobject/glib-types.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/gobject/gmarshal.h
|
2015-06-11 01:00:05 +02:00
|
|
|
include/glib/glib-2.0/gobject/gobject-autocleanups.h
|
2002-03-24 21:27:12 +01:00
|
|
|
include/glib/glib-2.0/gobject/gobject.h
|
|
|
|
include/glib/glib-2.0/gobject/gobjectnotifyqueue.c
|
|
|
|
include/glib/glib-2.0/gobject/gparam.h
|
|
|
|
include/glib/glib-2.0/gobject/gparamspecs.h
|
|
|
|
include/glib/glib-2.0/gobject/gsignal.h
|
|
|
|
include/glib/glib-2.0/gobject/gsourceclosure.h
|
|
|
|
include/glib/glib-2.0/gobject/gtype.h
|
|
|
|
include/glib/glib-2.0/gobject/gtypemodule.h
|
|
|
|
include/glib/glib-2.0/gobject/gtypeplugin.h
|
|
|
|
include/glib/glib-2.0/gobject/gvalue.h
|
|
|
|
include/glib/glib-2.0/gobject/gvaluearray.h
|
|
|
|
include/glib/glib-2.0/gobject/gvaluecollector.h
|
|
|
|
include/glib/glib-2.0/gobject/gvaluetypes.h
|
|
|
|
lib/glib-2.0/include/glibconfig.h
|
2008-04-10 14:13:49 +02:00
|
|
|
lib/libgio-2.0.la
|
2002-03-24 21:27:12 +01:00
|
|
|
lib/libglib-2.0.la
|
|
|
|
lib/libgmodule-2.0.la
|
|
|
|
lib/libgobject-2.0.la
|
|
|
|
lib/libgthread-2.0.la
|
2008-04-10 14:13:49 +02:00
|
|
|
lib/pkgconfig/gio-2.0.pc
|
|
|
|
lib/pkgconfig/gio-unix-2.0.pc
|
2002-03-24 21:27:12 +01:00
|
|
|
lib/pkgconfig/glib-2.0.pc
|
|
|
|
lib/pkgconfig/gmodule-2.0.pc
|
Update to 2.8.2:
Overview of Changes from GLib 2.8.1 to GLib 2.8.2
=================================================
* Win32 changes
- the g_spawn* functions now take their arguments
in UTF-8 [Tor Lillqvist]
- Avoid extra console windows in some situations
[Tor Lillqvist]
* Bug fixes [Kjartan Maraas, Sebastian Wilhelmi,
Mathias Hasselmann]
* Documentation improvements [Matthias, Mark Drago,
Matthew F. Barnes, Behdad Esfahbod]
* Translation updates (bg,ca,cs,cy,da,de,el,en_CA,es,et,
eu,fi,fr,gl,gu,hu,it,ja,nb,nl,no,pl,pt,pt_BR,ro,ru,sk,
sq,sr,sr@Latn,sv,uk,vi,zh_TW)
Overview of Changes from GLib 2.8.0 to GLib 2.8.1
=================================================
* Optimize single-character insertions in GString [Ross Burton]
* Fix build problems on OS X
* Fix build problems on Win32 [Tor Lillqvist, Hans Breuer]
* Other bug fixes [Matthew F. Barnes, Stepan Kasal]
* Documentation improvements [Tristan van Berkom, Behnam
Esfahbod, Gustavo Carneiro, Stepan Kasal, Matthias]
* New and updated translations (ca,cy,ko,ro,uk)
Overview of Changes from GLib 2.7.7 to GLib 2.8.0
=================================================
* Make g_value_transform() handle enum values
correctly on ppc64. [Michael Lorenz]
(Third-party code accessing enumeration values
in GValues should also be changed to access
v_long, not v_int, in order to work on bigendian
64bit machines.)
* Make g_flags_get_first_value() handle a value
of 0 meaningfully. [Tim-Philipp Müller]
Overview of Changes from GLib 2.7.6 to GLib 2.7.7
=================================================
* Make atomic operations on s390 work [Matthias]
* Fix C++ guards in gstdio.h [Tor Lillqvist]
Overview of Changes from GLib 2.7.5 to GLib 2.7.6
=================================================
* Add native implementations of atomic operations
on s390 [Matthias]
* Make atomic reference counting of closures
work on s390 [Matthias]
* Avoid an infinite loop in g_convert_with_iconv().
[Sebastian Bacher]
* Documentation improvements [Ross Burton]
Overview of Changes from GLib 2.7.4 to GLib 2.7.5
=================================================
* Thread-related changes
- Fix build issues on HP-UX [Paul Cornett]
- Threadsafe access to flags stored in datasets [Tim Janik]
- Fix several issues with atomic refcounting for
closures, objects and paramspecs [Tim]
- Improve tests for atomic refcounting changes [Tim]
* Fix handling of stateful encodings in g_convert_* [Matthias]
* Fix translation of GOption help output [Dan Winship]
* Catch format errors in translations. This may cause
"make check" to fail when using older versions
of gettext [Matthias]
* Win32 bug fixes [Tor Lillqvist]
* Documentation improvements [Ross Burton, Jochen Baier,
Matthias, Tim]
* New and updated translations (de,fi,gu,pl,pt,tr,zh_TW)
Overview of Changes from GLib 2.7.3 to GLib 2.7.4
=================================================
* Fix g_atomic_pointer_compare_and_exchange
on Sparc64 [Gert Doering]
* Fix a hang in g_thread_pool_free. [Hong Jen Yee]
* Win32 bug fixes [Tor Lillquist]
* Other bug fixes [Benoit Dejean, Manish Singh]
* Documentation improvements [Bryan Silverthorn,
Callum McKenzie]
* New and updated translations (de,lt,sq,zh_CN)
Overview of Changes from GLib 2.7.2 to GLib 2.7.3
=================================================
* GOption
- Allow callbacks with optional arguments [Pawel Sliwowski]
- Allow to turn off the automatic long option name
disambiguation [Adam McLaurin]
- Only allow printable ASCII as short option names [Matthias]
* Win32
- Build fixes [Tor Lillqvist]
- Rewrite iochannel socket implementation [Tor]
* GObject
- Threadsafety improvements; in particular, refcounting
of objects is done atomically now. [Wim Taymans, Tim Janik]
* Bug fixes [Morten Welinder, Matthias, Wim Taymans]
* Documentation improvements [Richard Laager, Matthias]
* New and improved translations (bf,cs,hu,nb,nl,no)
Overview of Changes from GLib 2.7.1 to GLib 2.7.2
=================================================
* Win32 build fixes [Hans Breuer]
* Bug fixes [Mikael Magnusson]
* Documentation improvements [Matthias Clasen]
* New and updated translations (en_CA,es,et,ja,sr,sr@Latn,zh_TW)
Overview of Changes from GLib 2.7.0 to GLib 2.7.1
=================================================
* GOption
- Allow callback arguments without parameters [Dan Winship]
* GMappedFile: an mmap wrapper [David Schleef, Behdad Esfahbod]
* Misc new functions:
- g_get_host_name [Tor Lillqvist]
- g_mkdir_with_parents [Tor]
- g_build_pathv, g_build_filenamev [Todd A. Fisher,
Matthias Clasen]
* Bug fixes [Roger Leigh, Masatake YAMATO, Kjartan Maraas,
Manish Singh, Tor, Murray Cumming, Kian Duffy, Morten Welinder]
* Documentation improvements [Hong Gang XU, Dan Winship, Matthias]
* New and updated translations (bg,cs,da,en_CA,es,et,nb,nl,no,
sk,th,zh_TW)
Overview of Changes from GLib 2.6.x to GLib 2.7.0
=================================================
* GKeyFile
- Add unit tests [Matthias Clasen, Suren A. Chilingaryan]
- Accept \r\n as line end [Bastian Nocera]
- Don't interpret leading zeros as octal numbers. [Matthias]
- Make key and group removal work [David Hoover, Matthias Hasselmann]
* GOption
- Improve formatting of --help output [Matthias, Noah Levitt]
- Accept -? [Matthias]
- Warn about duplicate main groups [Jeff Franks]
- Treat '-' as non-option argument [Tim Musson, Thomas Leonard]
- Report missing arguments as errors [Björn Lindqvist]
- Add a boxed type for GDate [Tim-Philipp Müller]
* GTree
- g_tree_remove() and g_tree_steal() return status information [Matthew F. Barnes]
* Stdio wrappers
- Work regardless of large file support [Manish Singh]
- Add g_access(), g_chmod(), g_creat(), g_chdir [Tor Lillqvist]
* GObject
- Implement "toggle references" to help language bindings [Owen Taylor]
- Allow to mark names, nicks and blurbs of pspecs as static [Ben Maurer, Matthias]
- Make pspec lookup a bit faster [Morten Welinder]
* Add g_listenv() to list all set environment variables [Hans Petter Jansson]
* Add g_file_set_contents() to atomically write a file. [Søren Sandmann,
Sven Neumann, Manish, Alexis S. L. Carvalho]
* Add g_try_malloc(), g_try_new(), g_try_new0() and g_try_renew() [Stefan Kost]
* Add g_utf8_collate_key_for_filename() to sort filenames taking
extensions and numeric suffixes into account. [Ole Laursen, Alex Larsson]
* Add G_GNUC_NULL_TERMINATED to mark varargs function with
NULL-terminated argument lists. [Marc Meissner]
* Win32 changes
- Improved debugability [Ulf Lamping, Hans Breuer]
- Make filename handling more robust [Tor, Billy Skaggs]
- Improve g_get_system_data_dirs() [Tor]
- Use more precise timers [Tor]
- Build fixes [Kazuki Iwamoto, Hans, Tor, Robert Ögren]
* Other bug fixes [Roger Leigh, Owen, Matthias, Morten, Kjartan Maraas,
Pawel Sakowski, Tor, Simon Budig, Ed Avis, Manish, Nicolas Laurent,
Bastien, Fabrício Barros Cabral, Michael Banck, Daniel Atallah,
J. Ali Harlow, Tim Janik, Hazael Maldonado Torres, Sven, Jon-Kare Hellan,
Dave Benson, Tommi Komulainen, Benjamin Otte, Brian Cameron, Changwoo Ryu,
Christian Biere, Noah, Benoît Carpentier]
* Documentation improvements [Vincent Untz, Matthias, Tim-Philipp Müller,
Morten, Matthew, Federico Mena Quintero, Sebastian Bacher, Oliver Sessink,
Stefan, Jared Lash, Tor, Owen, Daniel Vaillard, Mathieu Lacage]
* New and updated translations (ca,cs,da,el,en_CA,en_GB,es,et,eu,fa,fr,gl,
hu,id,it,lt,mn,ne,nl,pl,pt,pt_BR,ro,rw,sk,sq,sr,sr@Latn,tl,uk,xh,zh_CN)
2005-10-02 14:15:09 +02:00
|
|
|
lib/pkgconfig/gmodule-export-2.0.pc
|
2004-12-24 11:03:27 +01:00
|
|
|
lib/pkgconfig/gmodule-no-export-2.0.pc
|
2002-03-24 21:27:12 +01:00
|
|
|
lib/pkgconfig/gobject-2.0.pc
|
|
|
|
lib/pkgconfig/gthread-2.0.pc
|
|
|
|
share/aclocal/glib-2.0.m4
|
|
|
|
share/aclocal/glib-gettext.m4
|
2010-11-02 15:52:24 +01:00
|
|
|
share/aclocal/gsettings.m4
|
2016-11-25 13:42:21 +01:00
|
|
|
share/gdb/auto-load${LOCALBASE}/lib/libglib-2.0.so.0.5000.2-gdb.py
|
|
|
|
share/gdb/auto-load${LOCALBASE}/lib/libgobject-2.0.so.0.5000.2-gdb.py
|
Update glib2 to 2.48.0
- removed patch-gio_gtestdbus.c: applied upstream.
- removed patch-gio_gunixmounts.c: can no longer reproduce problem.
Overview of changes in GLib 2.48.0
==================================
* a minor build fix in the name of determinism
* a few coverity fixes
Bugs fixed:
763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
Translations updated:
Danish
Italian
Overview of changes in GLib 2.47.92
===================================
* gdbus-codegen now supports g_autoptr()
* g_get_user_runtime_dir() now reliably returns an existing directory
* g_array_remove_range() can now remove 0 items from the end of an array
* Many fixes for Windows
* build fixes
* file monitoring
* gsettings backend
* streams
* random numbers
* wide character support
* documentation improvements
* other small bugfixes
Bugs fixed:
724847 Segmentation fault on "gsettings list-recursively"
743933 gapplication: add --app-id command line option
756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
757506 gsettings: schema_list should use the passed schema's source
760694 W32: Apps linked with -mwindows make cursor busy sometimes
762202 g_win32_error_message improvements
762637 build: Unconditionally dist tapset files
762748 Undefined behavior
762937 Mention that g_clear_error can be used with an "empty" GError
763339 array: Support clearing an empty array with g_array_remove_range()
763344 g_get_user_runtime_dir(): ensure directory exists
763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
Translations updated:
Brazilian Portuguese
Czech
Finnish
French
Galician s
German
Greek
Hebrew
Hungarian
Italian
Kazakh
Korean
Latvian
Lithuanian
Occitan
Polish
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.6
==================================
* Windows usupport:
- Fixes and improvements to the GSettings registry backend
- Handle readability and writability of registry keys
- Use Unicode registry APIs
* Bugs fixed:
760852 744772 761126 747927 761337 744570 761504 761550 761843
744570 GString is missing (transfer none) annotations on many of its methods
744772 systemtap and gdb scripts install in wrong place
747927 Documentation: various small improvements
760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
761126 winiconv: update to upstream version
761337 Fix some annotations
761504 W32 registry GSettings backend does not use Unicode
761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
* Translation updates:
Brazilian Portuguese
Bulagarian
Chinese (Taiwan)
Hungarian
Polish
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.5
==================================
* the system copy of PCRE is now used by default to implement GRegex.
Configure with --with-pcre=internal if a system PCRE version
is unavailable or undesired.
* interfaces for DTLS support have been added. A new version of
glib-networking will also be required.
* GDBusMethodInvocation now drops replies if the sender set the
NO_REPLY_EXPECTED flag
* several GApplication fixes, including fixes for commandline arguments
in interpreted languages on Windows
Bugs fixed:
624186 Deprecate glib-gettext macros
734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
735754 Implement close on TLS GOutputStream
748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
752240 Add DTLS support to GIO
755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
756875 Include ntdef.h for NTSTATUS
759554 g_application_run() calls g_main_context_default() repeatidly
760199 gsettings: Install gettext ITS rules
760215 G_LIKELY/_UNLIKELY macros need more parentheses
760683 regex test: Check the expected PCRE exceptions at runtime
Translations updated:
Brazilian Portuguese
Czech
German
Lithuanian
Swedish
Overview of changes in GLib 2.47.4
==================================
* The GApplication documentation has been improved in several areas.
* Bugs fixed:
749092 gdb pretty-printers fail on Python 3 with a TypeError...
757374 macros: clean up "inline" mess
758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
759134 Add missing checks for gnulib vasnprintf()
759408 Do not use uninitialized var
756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
757372 GApplication: destroy the impl on shutdown
728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
757299 glib-compile-resources: do not leak c_name
758553 Fix gettext use
758823 file monitors: reorder some code to avoid segfault
756214 gsettings: Don't translate ""
710243 Add GParamSpec object ref management annotations
735696 xdgmime: Finer handling for cases where mmap() is not available
752983 gapplication: Acquire the main context before running
* Translation updates:
Swedish
Overview of changes in GLib 2.47.3
==================================
The inline cleanup in the last release accidentally removed three
symbols from libglib-2.0.so. It is unlikely that this will have caused
any problems because these symbols were only backup symbols for
definitions exported as inlines in the header files, but ABI is ABI.
This release corrects only this problem.
Overview of changes in GLib 2.47.2
==================================
* We have formalised the assumption that all compilers that are
interested in support 'static inline' and simplified the macros around
this considerably. Please watch for and report unintentional fallout.
* New API: hardware-assisted helpers for overflow-checked integer math.
* other fixes
Bugs fixed:
696324 gtester-report doesn't work with Python 3.x
719966 glib: Add missing (nullable) and (optional) annotations
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
755364 make gtkdoc-check happy again
756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
756988 GSequence should document each function's complexity
757294 Move G_POLLFD_FORMAT to glibconfig.h
757374 macros: clean up "inline" mess
757451 doc: fix g_task_attach_source() example
757628 gio tests fail to build when cross compiling 2.46.1
757693 Invalid free in g_local_file_trash()
757742 Fix up annotations in ghash.c
758181 GTask: fix wrong example code
Translations updated:
Greek
Hebrew
Hungarian
Norwegian bokmål
Portuguese
Scottish Gaelic
Simplified Chinese
Spanish
Overview of changes in GLib 2.47.1
==================================
* The Unicode support has been updated to version 8.0 of the Unicode standard
* GDesktopAppInfo no longer sets the DISPLAY environment variable when
launching apps. This is now done in the GAppLaunchContext implementations
when appropriate
* Bug fixes:
664740 Key-value file parser, space after integer
687223 cleverer GThreadPool management
692085 stderr and stdout are not always file descriptors 1 and 2
697907 Add interface for socket-like things (GSocket, DTLS, etc)
735754 Implement close on TLS GOutputStream
737116 Add functions to print GSocketConnectables and addresses as strings
743011 Minor additions to GError documentation
749161 undefined reference to `__imp__stat32i64'
749314 Cannot restore a just-trashed file
751924 Add recvmmsg()-like API on GSocket
752240 Add DTLS support to GIO
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
753310 Remove `#pragma GCC system_header` from gmessages.h
753935 Update example namespace and class names in GObject tutorial
754855 Object instantiation documentation refers to example that no longer ex...
754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
754994 g_date_time_get_second () sometimes returns an off-by-one result
755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
755351 Example still contains g_autoptr(gchar)
755355 Move GStrv to glib.h so it can be used with g_auto()
755374 g_variant_get_child(): flatten-first logic on '&'
755496 glib 2.46 fails GStreamer test suite
755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
755795 2.46 considers empty files as octet-stream rather than text (leads to...
755961 Fix up annotations in gbytes.c
756053 MSVC doesn't understand the symbol 'msghdr'
756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
756077 testutils: remove internal ABI comment
756099 g_main_context_query(): Annotate @n_fds as (in) parameter
756139 musl: ctors called in the wrong order
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
756316 GSequence should provide fast api to check if empty
756382 snprintf used on Windows with VS2015 doesn't support %n
756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
756550 gtypes.h: Make G_MININTn literals negative
756875 Include ntdef.h for NTSTATUS
756952 giomodule: return a copy of module name
* Translation updates:
Basque
Czech
Serbian
Serbian Latin
Vietnamese
Overview of changes in GLib 2.46.0
==================================
* Disable runtime-deprecation warnings
* Fix marshalling of flags on bigendian 64bit architectures
* Translation updates
Brazilian Portuguese
Danish
German
Latvian
Russian
Turkish
Overview of changes in GLib 2.45.8
==================================
* utf8 validation and utf8-to-ucs4 conversion are faster
* Small speedups to property change notification
* Various other small optimizations for GQuark, GData
* Bugs fixed:
696426 GParamSpecTypeInfo do not need to be static
735429 Cleanup MSVC Project Files Generation
738504 Optimize UTF-8 decoding by unrolling branches and expressions
742903 Add missing (transfer) annotation to GString
748633 g_set_object order of operations
754431 Fix build of glib/gstrfuncs.c on Windows
754560 gioerror: Add more mappings for WinSock error codes
754582 Glib cannot compile
754601 Make g_strerror work with non-glibc POSIX systems
754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
754788 more g_strerror stuff
754831 autocleanups: Add GString type
754924 Improve test coverage of g_utf8_validate() by added known-...
754986 Avoid unnecessary signal emission during draw
* Translation updates:
Italian
Kazakh
Korean
Lithuanian
Slovenian
Swedish
Overview of changes in GLib 2.45.7
==================================
* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
backends (e.g. cloud storage).
* GFileMonitor: Make the inotify backend work with atomic renames again
* GSettings: change notification is again working unconditionally
* GListStore has a sort function now
* Test infrastructure:
- Tests are now required to have unique names
- TAP support has been improved
- A macro for asserting that two memory regions have identical content
has been added
* Bugs fixed:
708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
742849 inotify: send paired events to both sides
744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
747364 Fix GError leak in g_file_query_writable_namespaces()
749492 Support file creation time on FreeBSD and NetBSD
752769 (g_socket_receive_message | g_socket_send_message) performance
753745 glib-genmarshal still needed for cross-compilation
754152 Add g_list_store_sort
754211 Memory leak in g_file_enumerator_iterate ()
754264 GLib 2.44 certificate chain construction fails if the PEM incl...
754283 gtestutils: add g_assert_cmpmem()
754284 gtestutils: print the TAP test plan first, not last
754286 misc gtestutils fixes
754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
* Translation updates:
Chinese (Taiwan)
French
Galician
Greek
Hebrew
Hungarian
Indonesian
Polish
Portuguese
Overview of changes in GLib 2.45.6
==================================
* Fix a test failure and a build failure
Overview of changes in GLib 2.45.5
==================================
* GNetworkMonitor now provides information about metered networks
* g_mem_set_vtable has been deprecated; it has not been working for
quite a while. The recommendation is to use valgrind, or replace
malloc itself.
* Bugs fixed:
656325 Make GDBusInterfaceVTable binding friendly
741779 Documentation tweaks addressing real-world API misuses
741822 Fails to build with VS 2015
742386 gdbusconnection: Don't g_printerr() when exiting
743018 gobject: Add more cross-links between documentation pages
750282 Add g_network_monitor_get_network_metered() to get if the connection...
751358 GFileMonitor doesn't react to "mv some-file watched-file"
751592 Stop using GMemVtable
751598 Stop 'handle-local-options' propagation when callback reports an err...
751610 g_str_hash produces collisions with strings of length 2
751751 Wrong docs of g_async_queue_remove
752210 gdbus command crashes with SIGSEGV
752656 gdbusconnection: Fix signal subscription documentation
752767 Fix typo in g_hash_table_replace() documentation
753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
753285 g_menu_item_set_icon fails if called with NULL icon
* Translation updates:
Catalan
Czech
French
Indonesian
Lithuanian
Norwegian bokmål
Slovak
Spanish
Thai
Turkish
Overview of changes in GLib 2.45.4
==================================
* Bugs fixed:
727829 win32: glibconfig.h.win32 updates
741901 Clang cannot know that g_error don't return
746339 GSocket kills process when fd is not a socket
747676 gio/tests/socket fails: test_fd_roundtrip
748610 Some tests fail with non-English locales
749911 g_inet_address_to_string broken on XP/2003
749912 g_inet_address_new_from_string broken on XP/2003
750625 Should dismiss Software Updates Available notification after...
750807 G_BREAKPOINT doesn't work as intended on Darwin
751160 gtask does unnecessary work
751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
751731 GFile/DirectoryMonitor emit move events with other_file=NULL
751737 gio/tests/appmonitor test fails in 2.45.3
751798 Wrong enum type used in some test-cases
752089 make gsocketservice::active a property
752293 small cleanup: use list_free_full
* Translation updates:
Greek
Hebrew
Portuguese
Overview of changes in GLib 2.45.3
==================================
* Improve performance of g_signal_handler_disconnect for signals
with many handlers
* GDBus has gained a new call flag to allow interactive authorization
* GSettings:
- New API: g_settings_schema_list_keys
- Deprecated: g_settings_list_keys
* OS X:
- Implement GNotification
- Bump the OS X requirement to 10.9
* Windows:
- Add registry reading API
- Reimplement GAppInfo using registry information
* Bugs fixed:
666831 Support URI opening on W32
728489 property action with inverted boolean state
730168 Incorrect annotation on g_action_group_get_action_state_type return...
733325 Several regex tests fail with pcre3 8.35
734888 GLib has no helper functions to work with W32 Registry
737009 signal handler lookup doesn't scale
738185 Misleading language about "file name encoding" in the docs on g_env...
738504 Optimize UTF-8 decoding by unrolling branches and expressions
739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
739424 gnome-shell crashes when files are added, deleted, or modified in $...
739616 DBus; Add new call flag to allow interactive authorization
740308 Add g_settings_schema_list_keys() method
740516 RFE: please provide an introspectible version of g_log_set_handler
741788 Document GSettings build system integration
745013 GBinding not thread safe
747146 Implement GNotification on OSX
747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
748727 Filechooser dialog shows no icons for directories on W32
749693 GActionGroupExporter: flush queue on requests
750203 GNetworkMonitorNetlink hangs in user namespace
750322 gapplication: Make sure --help output is translated
750344 GTlsInteractionClass is missing from doc
750369 Various GBinding cleanups
750386 Race condition in g_io_condition_get_type
750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
750573 GTlsDatabaseClass is not documented
750918 genmarshal: silence register storage class warnings
751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
479730 The "g_key_file_set_comment" interface prepends '#' character to...
* Translation updates:
Hungarian
Spanish
Overview of changes in GLib 2.45.2
==================================
* Improve error reporting in glib-compile-schemas.
* Add introspection annotations to GListStore.
* Bugs fixed:
696749 win32 : failed to compile because of careless mistake in the code
723394 const parameter to GtkPopover gtk_popover_set_pointing_to
724113 gdbus-connection-loss test can fail on slow machines
725981 tap-driver.sh: internal error getting exit status
733325 Several regex tests fail with pcre3 8.35
744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
747882 gtype: Bump allowed number of children
748534 gtest: if a subprocess assertion fails, print its stdout and stderr
748612 de_DE locale used in option-context test is not supported by FreeBSD
748614 Double unref in g_socket_listener_add_inet_port
748834 glocalfilemonitor: Emit notification on rate limit change
749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
749080 gdatetime test: fails if close to rollover between seconds
749180 gnetworkaddress: add return type annotation to parse methods
749352 g_binding_unbind() fails when source is also the target
749353 GBinding does not connect to the detailed notify signal
* Translation updates:
Catalan
French
Slovak
Thai
Overview of changes in GLib 2.45.1
==================================
* The GSettings schema compiler, glib-compile-schemas has been changed
to reject schema xml that has duplicate <summary> or <description>
elements. Such elements typically occur when translations are merged
into the schema, with xml:lang attributes. This is not the correct
way to translate schemas. Instead keep the translations in the .mo
file and set the gettext-domain attribute on the <schemalist> element.
* The file monitoring infrastructure has been rewritten, and all backends
have seen major improvements.
The inotify backend is reporting events with less delay (no event will
be delayed more than 10ms) and wakeups due to file monitoring have been
significantly reduced. A CHANGES_DONE event will also be sent when new
files appear.
The poll implementation is now using the thread default main context.
The fam implmentation is now running in the worker thread.
The fen implementation has been removed, since it was unmaintained.
* The GSettings schema compiler, glib-compile-schemas, is more strict
about rejecting schemas with xml:lang style merged translations.
Schema translations should be done by specifying the gettext domain
in the xml, and keeping the translations in gettext. To avoid breaking
already-installed schemas, this change is only taking effect when
you use the --strict option.
* The hardcoded 10-thread limit of GTask's thread pool has been removed,
since it was prone to causing deadlocks. The thread pool is now allowed
to grow dynamically and will shrink back over time.
* GSimpleAsyncResult has been deprecated in favor of GTask.
* The algorithm used by GAppInfo to find default handlers for mime types
has been tweaked to prefer apps that handle the specific subtype over
default handlers for a generic supertype.
* Bug fixes:
627285 inotify file monitor hardwired delay
631597 Segmentation fault in append_escaped_text
661767 merge/improve various bits of run-in-thread functionality
687223 cleverer GThreadPool management
711547 win32: silence some build warnings
719966 glib: Add missing (nullable) and (optional) annotations
726447 Possibly an error in text string
728663 W32: wrong stat struct is used when built with MinGW-w64
728669 W32: GLocalFile can't measure size of files larger than 2^32...
730188 gsocket: Document FD ownership with g_socket_new_from_fd()
733325 Several regex tests fail with pcre3 8.35
738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
739850 GClosure: add valgrind hints
741791 gmain: Save errno when handling unix signals
744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
745255 Add support for copying sessions between GTlsClientConnections
745745 gdbus: fix out-of-bound array access
745821 Don't use __alloc_size__ attribute with clang
746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
746753 Glib-compile-resources --generate-header not using ".h" as ...
747209 glib-compile-schemas ought to reject repeated <summary> and...
747349 Conversion of gdbus to use GTask causes deadlocks
747363 gatomic: Add missing new line in API doc comment
747472 Don't ignore already-installed schemas with multiple <summa...
747541 gdbus segfaults with invalid --dest
747772 Having hardcoded utf8 strings in the source code does not p...
748019 gsocketconnection: Fix copy-pasto in documentation
748177 not all test schemas are distributed, "make distcheck" fails
* Translation updates:
Basque
Czech
Danish
Finnish
German
Hebrew
Icelandic
Norwegian bokmål
Russian
Turkish
2016-04-07 20:33:05 +02:00
|
|
|
share/gettext/its/gschema.its
|
|
|
|
share/gettext/its/gschema.loc
|
2016-11-25 13:42:21 +01:00
|
|
|
share/glib-2.0/gdb/glib_gdb.py
|
|
|
|
share/glib-2.0/gdb/gobject_gdb.py
|
2002-03-24 21:27:12 +01:00
|
|
|
share/glib-2.0/gettext/po/Makefile.in.in
|
2010-11-02 15:52:24 +01:00
|
|
|
share/glib-2.0/schemas/gschema.dtd
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/gio/GAction.html
|
|
|
|
share/gtk-doc/html/gio/GActionGroup.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/gio/GActionMap.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GAppInfo.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/gio/GAppInfoMonitor.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/gio/GApplication.html
|
|
|
|
share/gtk-doc/html/gio/GApplicationCommandLine.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/GAsyncInitable.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GAsyncResult.html
|
|
|
|
share/gtk-doc/html/gio/GBufferedInputStream.html
|
|
|
|
share/gtk-doc/html/gio/GBufferedOutputStream.html
|
2015-06-11 01:00:05 +02:00
|
|
|
share/gtk-doc/html/gio/GBytesIcon.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GCancellable.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/gio/GCharsetConverter.html
|
|
|
|
share/gtk-doc/html/gio/GConverter.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/GCredentials.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/gio/GDBusActionGroup.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/GDBusAuthObserver.html
|
|
|
|
share/gtk-doc/html/gio/GDBusConnection.html
|
2012-01-29 11:46:52 +01:00
|
|
|
share/gtk-doc/html/gio/GDBusInterface.html
|
|
|
|
share/gtk-doc/html/gio/GDBusInterfaceSkeleton.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/gio/GDBusMenuModel.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/GDBusMessage.html
|
|
|
|
share/gtk-doc/html/gio/GDBusMethodInvocation.html
|
2012-01-29 11:46:52 +01:00
|
|
|
share/gtk-doc/html/gio/GDBusObject.html
|
|
|
|
share/gtk-doc/html/gio/GDBusObjectManager.html
|
|
|
|
share/gtk-doc/html/gio/GDBusObjectManagerClient.html
|
|
|
|
share/gtk-doc/html/gio/GDBusObjectManagerServer.html
|
|
|
|
share/gtk-doc/html/gio/GDBusObjectProxy.html
|
|
|
|
share/gtk-doc/html/gio/GDBusObjectSkeleton.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/GDBusProxy.html
|
|
|
|
share/gtk-doc/html/gio/GDBusServer.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GDataInputStream.html
|
|
|
|
share/gtk-doc/html/gio/GDataOutputStream.html
|
Update glib2 to 2.48.0
- removed patch-gio_gtestdbus.c: applied upstream.
- removed patch-gio_gunixmounts.c: can no longer reproduce problem.
Overview of changes in GLib 2.48.0
==================================
* a minor build fix in the name of determinism
* a few coverity fixes
Bugs fixed:
763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
Translations updated:
Danish
Italian
Overview of changes in GLib 2.47.92
===================================
* gdbus-codegen now supports g_autoptr()
* g_get_user_runtime_dir() now reliably returns an existing directory
* g_array_remove_range() can now remove 0 items from the end of an array
* Many fixes for Windows
* build fixes
* file monitoring
* gsettings backend
* streams
* random numbers
* wide character support
* documentation improvements
* other small bugfixes
Bugs fixed:
724847 Segmentation fault on "gsettings list-recursively"
743933 gapplication: add --app-id command line option
756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
757506 gsettings: schema_list should use the passed schema's source
760694 W32: Apps linked with -mwindows make cursor busy sometimes
762202 g_win32_error_message improvements
762637 build: Unconditionally dist tapset files
762748 Undefined behavior
762937 Mention that g_clear_error can be used with an "empty" GError
763339 array: Support clearing an empty array with g_array_remove_range()
763344 g_get_user_runtime_dir(): ensure directory exists
763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
Translations updated:
Brazilian Portuguese
Czech
Finnish
French
Galician s
German
Greek
Hebrew
Hungarian
Italian
Kazakh
Korean
Latvian
Lithuanian
Occitan
Polish
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.6
==================================
* Windows usupport:
- Fixes and improvements to the GSettings registry backend
- Handle readability and writability of registry keys
- Use Unicode registry APIs
* Bugs fixed:
760852 744772 761126 747927 761337 744570 761504 761550 761843
744570 GString is missing (transfer none) annotations on many of its methods
744772 systemtap and gdb scripts install in wrong place
747927 Documentation: various small improvements
760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
761126 winiconv: update to upstream version
761337 Fix some annotations
761504 W32 registry GSettings backend does not use Unicode
761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
* Translation updates:
Brazilian Portuguese
Bulagarian
Chinese (Taiwan)
Hungarian
Polish
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.5
==================================
* the system copy of PCRE is now used by default to implement GRegex.
Configure with --with-pcre=internal if a system PCRE version
is unavailable or undesired.
* interfaces for DTLS support have been added. A new version of
glib-networking will also be required.
* GDBusMethodInvocation now drops replies if the sender set the
NO_REPLY_EXPECTED flag
* several GApplication fixes, including fixes for commandline arguments
in interpreted languages on Windows
Bugs fixed:
624186 Deprecate glib-gettext macros
734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
735754 Implement close on TLS GOutputStream
748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
752240 Add DTLS support to GIO
755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
756875 Include ntdef.h for NTSTATUS
759554 g_application_run() calls g_main_context_default() repeatidly
760199 gsettings: Install gettext ITS rules
760215 G_LIKELY/_UNLIKELY macros need more parentheses
760683 regex test: Check the expected PCRE exceptions at runtime
Translations updated:
Brazilian Portuguese
Czech
German
Lithuanian
Swedish
Overview of changes in GLib 2.47.4
==================================
* The GApplication documentation has been improved in several areas.
* Bugs fixed:
749092 gdb pretty-printers fail on Python 3 with a TypeError...
757374 macros: clean up "inline" mess
758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
759134 Add missing checks for gnulib vasnprintf()
759408 Do not use uninitialized var
756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
757372 GApplication: destroy the impl on shutdown
728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
757299 glib-compile-resources: do not leak c_name
758553 Fix gettext use
758823 file monitors: reorder some code to avoid segfault
756214 gsettings: Don't translate ""
710243 Add GParamSpec object ref management annotations
735696 xdgmime: Finer handling for cases where mmap() is not available
752983 gapplication: Acquire the main context before running
* Translation updates:
Swedish
Overview of changes in GLib 2.47.3
==================================
The inline cleanup in the last release accidentally removed three
symbols from libglib-2.0.so. It is unlikely that this will have caused
any problems because these symbols were only backup symbols for
definitions exported as inlines in the header files, but ABI is ABI.
This release corrects only this problem.
Overview of changes in GLib 2.47.2
==================================
* We have formalised the assumption that all compilers that are
interested in support 'static inline' and simplified the macros around
this considerably. Please watch for and report unintentional fallout.
* New API: hardware-assisted helpers for overflow-checked integer math.
* other fixes
Bugs fixed:
696324 gtester-report doesn't work with Python 3.x
719966 glib: Add missing (nullable) and (optional) annotations
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
755364 make gtkdoc-check happy again
756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
756988 GSequence should document each function's complexity
757294 Move G_POLLFD_FORMAT to glibconfig.h
757374 macros: clean up "inline" mess
757451 doc: fix g_task_attach_source() example
757628 gio tests fail to build when cross compiling 2.46.1
757693 Invalid free in g_local_file_trash()
757742 Fix up annotations in ghash.c
758181 GTask: fix wrong example code
Translations updated:
Greek
Hebrew
Hungarian
Norwegian bokmål
Portuguese
Scottish Gaelic
Simplified Chinese
Spanish
Overview of changes in GLib 2.47.1
==================================
* The Unicode support has been updated to version 8.0 of the Unicode standard
* GDesktopAppInfo no longer sets the DISPLAY environment variable when
launching apps. This is now done in the GAppLaunchContext implementations
when appropriate
* Bug fixes:
664740 Key-value file parser, space after integer
687223 cleverer GThreadPool management
692085 stderr and stdout are not always file descriptors 1 and 2
697907 Add interface for socket-like things (GSocket, DTLS, etc)
735754 Implement close on TLS GOutputStream
737116 Add functions to print GSocketConnectables and addresses as strings
743011 Minor additions to GError documentation
749161 undefined reference to `__imp__stat32i64'
749314 Cannot restore a just-trashed file
751924 Add recvmmsg()-like API on GSocket
752240 Add DTLS support to GIO
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
753310 Remove `#pragma GCC system_header` from gmessages.h
753935 Update example namespace and class names in GObject tutorial
754855 Object instantiation documentation refers to example that no longer ex...
754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
754994 g_date_time_get_second () sometimes returns an off-by-one result
755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
755351 Example still contains g_autoptr(gchar)
755355 Move GStrv to glib.h so it can be used with g_auto()
755374 g_variant_get_child(): flatten-first logic on '&'
755496 glib 2.46 fails GStreamer test suite
755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
755795 2.46 considers empty files as octet-stream rather than text (leads to...
755961 Fix up annotations in gbytes.c
756053 MSVC doesn't understand the symbol 'msghdr'
756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
756077 testutils: remove internal ABI comment
756099 g_main_context_query(): Annotate @n_fds as (in) parameter
756139 musl: ctors called in the wrong order
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
756316 GSequence should provide fast api to check if empty
756382 snprintf used on Windows with VS2015 doesn't support %n
756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
756550 gtypes.h: Make G_MININTn literals negative
756875 Include ntdef.h for NTSTATUS
756952 giomodule: return a copy of module name
* Translation updates:
Basque
Czech
Serbian
Serbian Latin
Vietnamese
Overview of changes in GLib 2.46.0
==================================
* Disable runtime-deprecation warnings
* Fix marshalling of flags on bigendian 64bit architectures
* Translation updates
Brazilian Portuguese
Danish
German
Latvian
Russian
Turkish
Overview of changes in GLib 2.45.8
==================================
* utf8 validation and utf8-to-ucs4 conversion are faster
* Small speedups to property change notification
* Various other small optimizations for GQuark, GData
* Bugs fixed:
696426 GParamSpecTypeInfo do not need to be static
735429 Cleanup MSVC Project Files Generation
738504 Optimize UTF-8 decoding by unrolling branches and expressions
742903 Add missing (transfer) annotation to GString
748633 g_set_object order of operations
754431 Fix build of glib/gstrfuncs.c on Windows
754560 gioerror: Add more mappings for WinSock error codes
754582 Glib cannot compile
754601 Make g_strerror work with non-glibc POSIX systems
754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
754788 more g_strerror stuff
754831 autocleanups: Add GString type
754924 Improve test coverage of g_utf8_validate() by added known-...
754986 Avoid unnecessary signal emission during draw
* Translation updates:
Italian
Kazakh
Korean
Lithuanian
Slovenian
Swedish
Overview of changes in GLib 2.45.7
==================================
* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
backends (e.g. cloud storage).
* GFileMonitor: Make the inotify backend work with atomic renames again
* GSettings: change notification is again working unconditionally
* GListStore has a sort function now
* Test infrastructure:
- Tests are now required to have unique names
- TAP support has been improved
- A macro for asserting that two memory regions have identical content
has been added
* Bugs fixed:
708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
742849 inotify: send paired events to both sides
744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
747364 Fix GError leak in g_file_query_writable_namespaces()
749492 Support file creation time on FreeBSD and NetBSD
752769 (g_socket_receive_message | g_socket_send_message) performance
753745 glib-genmarshal still needed for cross-compilation
754152 Add g_list_store_sort
754211 Memory leak in g_file_enumerator_iterate ()
754264 GLib 2.44 certificate chain construction fails if the PEM incl...
754283 gtestutils: add g_assert_cmpmem()
754284 gtestutils: print the TAP test plan first, not last
754286 misc gtestutils fixes
754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
* Translation updates:
Chinese (Taiwan)
French
Galician
Greek
Hebrew
Hungarian
Indonesian
Polish
Portuguese
Overview of changes in GLib 2.45.6
==================================
* Fix a test failure and a build failure
Overview of changes in GLib 2.45.5
==================================
* GNetworkMonitor now provides information about metered networks
* g_mem_set_vtable has been deprecated; it has not been working for
quite a while. The recommendation is to use valgrind, or replace
malloc itself.
* Bugs fixed:
656325 Make GDBusInterfaceVTable binding friendly
741779 Documentation tweaks addressing real-world API misuses
741822 Fails to build with VS 2015
742386 gdbusconnection: Don't g_printerr() when exiting
743018 gobject: Add more cross-links between documentation pages
750282 Add g_network_monitor_get_network_metered() to get if the connection...
751358 GFileMonitor doesn't react to "mv some-file watched-file"
751592 Stop using GMemVtable
751598 Stop 'handle-local-options' propagation when callback reports an err...
751610 g_str_hash produces collisions with strings of length 2
751751 Wrong docs of g_async_queue_remove
752210 gdbus command crashes with SIGSEGV
752656 gdbusconnection: Fix signal subscription documentation
752767 Fix typo in g_hash_table_replace() documentation
753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
753285 g_menu_item_set_icon fails if called with NULL icon
* Translation updates:
Catalan
Czech
French
Indonesian
Lithuanian
Norwegian bokmål
Slovak
Spanish
Thai
Turkish
Overview of changes in GLib 2.45.4
==================================
* Bugs fixed:
727829 win32: glibconfig.h.win32 updates
741901 Clang cannot know that g_error don't return
746339 GSocket kills process when fd is not a socket
747676 gio/tests/socket fails: test_fd_roundtrip
748610 Some tests fail with non-English locales
749911 g_inet_address_to_string broken on XP/2003
749912 g_inet_address_new_from_string broken on XP/2003
750625 Should dismiss Software Updates Available notification after...
750807 G_BREAKPOINT doesn't work as intended on Darwin
751160 gtask does unnecessary work
751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
751731 GFile/DirectoryMonitor emit move events with other_file=NULL
751737 gio/tests/appmonitor test fails in 2.45.3
751798 Wrong enum type used in some test-cases
752089 make gsocketservice::active a property
752293 small cleanup: use list_free_full
* Translation updates:
Greek
Hebrew
Portuguese
Overview of changes in GLib 2.45.3
==================================
* Improve performance of g_signal_handler_disconnect for signals
with many handlers
* GDBus has gained a new call flag to allow interactive authorization
* GSettings:
- New API: g_settings_schema_list_keys
- Deprecated: g_settings_list_keys
* OS X:
- Implement GNotification
- Bump the OS X requirement to 10.9
* Windows:
- Add registry reading API
- Reimplement GAppInfo using registry information
* Bugs fixed:
666831 Support URI opening on W32
728489 property action with inverted boolean state
730168 Incorrect annotation on g_action_group_get_action_state_type return...
733325 Several regex tests fail with pcre3 8.35
734888 GLib has no helper functions to work with W32 Registry
737009 signal handler lookup doesn't scale
738185 Misleading language about "file name encoding" in the docs on g_env...
738504 Optimize UTF-8 decoding by unrolling branches and expressions
739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
739424 gnome-shell crashes when files are added, deleted, or modified in $...
739616 DBus; Add new call flag to allow interactive authorization
740308 Add g_settings_schema_list_keys() method
740516 RFE: please provide an introspectible version of g_log_set_handler
741788 Document GSettings build system integration
745013 GBinding not thread safe
747146 Implement GNotification on OSX
747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
748727 Filechooser dialog shows no icons for directories on W32
749693 GActionGroupExporter: flush queue on requests
750203 GNetworkMonitorNetlink hangs in user namespace
750322 gapplication: Make sure --help output is translated
750344 GTlsInteractionClass is missing from doc
750369 Various GBinding cleanups
750386 Race condition in g_io_condition_get_type
750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
750573 GTlsDatabaseClass is not documented
750918 genmarshal: silence register storage class warnings
751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
479730 The "g_key_file_set_comment" interface prepends '#' character to...
* Translation updates:
Hungarian
Spanish
Overview of changes in GLib 2.45.2
==================================
* Improve error reporting in glib-compile-schemas.
* Add introspection annotations to GListStore.
* Bugs fixed:
696749 win32 : failed to compile because of careless mistake in the code
723394 const parameter to GtkPopover gtk_popover_set_pointing_to
724113 gdbus-connection-loss test can fail on slow machines
725981 tap-driver.sh: internal error getting exit status
733325 Several regex tests fail with pcre3 8.35
744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
747882 gtype: Bump allowed number of children
748534 gtest: if a subprocess assertion fails, print its stdout and stderr
748612 de_DE locale used in option-context test is not supported by FreeBSD
748614 Double unref in g_socket_listener_add_inet_port
748834 glocalfilemonitor: Emit notification on rate limit change
749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
749080 gdatetime test: fails if close to rollover between seconds
749180 gnetworkaddress: add return type annotation to parse methods
749352 g_binding_unbind() fails when source is also the target
749353 GBinding does not connect to the detailed notify signal
* Translation updates:
Catalan
French
Slovak
Thai
Overview of changes in GLib 2.45.1
==================================
* The GSettings schema compiler, glib-compile-schemas has been changed
to reject schema xml that has duplicate <summary> or <description>
elements. Such elements typically occur when translations are merged
into the schema, with xml:lang attributes. This is not the correct
way to translate schemas. Instead keep the translations in the .mo
file and set the gettext-domain attribute on the <schemalist> element.
* The file monitoring infrastructure has been rewritten, and all backends
have seen major improvements.
The inotify backend is reporting events with less delay (no event will
be delayed more than 10ms) and wakeups due to file monitoring have been
significantly reduced. A CHANGES_DONE event will also be sent when new
files appear.
The poll implementation is now using the thread default main context.
The fam implmentation is now running in the worker thread.
The fen implementation has been removed, since it was unmaintained.
* The GSettings schema compiler, glib-compile-schemas, is more strict
about rejecting schemas with xml:lang style merged translations.
Schema translations should be done by specifying the gettext domain
in the xml, and keeping the translations in gettext. To avoid breaking
already-installed schemas, this change is only taking effect when
you use the --strict option.
* The hardcoded 10-thread limit of GTask's thread pool has been removed,
since it was prone to causing deadlocks. The thread pool is now allowed
to grow dynamically and will shrink back over time.
* GSimpleAsyncResult has been deprecated in favor of GTask.
* The algorithm used by GAppInfo to find default handlers for mime types
has been tweaked to prefer apps that handle the specific subtype over
default handlers for a generic supertype.
* Bug fixes:
627285 inotify file monitor hardwired delay
631597 Segmentation fault in append_escaped_text
661767 merge/improve various bits of run-in-thread functionality
687223 cleverer GThreadPool management
711547 win32: silence some build warnings
719966 glib: Add missing (nullable) and (optional) annotations
726447 Possibly an error in text string
728663 W32: wrong stat struct is used when built with MinGW-w64
728669 W32: GLocalFile can't measure size of files larger than 2^32...
730188 gsocket: Document FD ownership with g_socket_new_from_fd()
733325 Several regex tests fail with pcre3 8.35
738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
739850 GClosure: add valgrind hints
741791 gmain: Save errno when handling unix signals
744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
745255 Add support for copying sessions between GTlsClientConnections
745745 gdbus: fix out-of-bound array access
745821 Don't use __alloc_size__ attribute with clang
746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
746753 Glib-compile-resources --generate-header not using ".h" as ...
747209 glib-compile-schemas ought to reject repeated <summary> and...
747349 Conversion of gdbus to use GTask causes deadlocks
747363 gatomic: Add missing new line in API doc comment
747472 Don't ignore already-installed schemas with multiple <summa...
747541 gdbus segfaults with invalid --dest
747772 Having hardcoded utf8 strings in the source code does not p...
748019 gsocketconnection: Fix copy-pasto in documentation
748177 not all test schemas are distributed, "make distcheck" fails
* Translation updates:
Basque
Czech
Danish
Finnish
German
Hebrew
Icelandic
Norwegian bokmål
Russian
Turkish
2016-04-07 20:33:05 +02:00
|
|
|
share/gtk-doc/html/gio/GDatagramBased.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GDrive.html
|
Update glib2 to 2.48.0
- removed patch-gio_gtestdbus.c: applied upstream.
- removed patch-gio_gunixmounts.c: can no longer reproduce problem.
Overview of changes in GLib 2.48.0
==================================
* a minor build fix in the name of determinism
* a few coverity fixes
Bugs fixed:
763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
Translations updated:
Danish
Italian
Overview of changes in GLib 2.47.92
===================================
* gdbus-codegen now supports g_autoptr()
* g_get_user_runtime_dir() now reliably returns an existing directory
* g_array_remove_range() can now remove 0 items from the end of an array
* Many fixes for Windows
* build fixes
* file monitoring
* gsettings backend
* streams
* random numbers
* wide character support
* documentation improvements
* other small bugfixes
Bugs fixed:
724847 Segmentation fault on "gsettings list-recursively"
743933 gapplication: add --app-id command line option
756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
757506 gsettings: schema_list should use the passed schema's source
760694 W32: Apps linked with -mwindows make cursor busy sometimes
762202 g_win32_error_message improvements
762637 build: Unconditionally dist tapset files
762748 Undefined behavior
762937 Mention that g_clear_error can be used with an "empty" GError
763339 array: Support clearing an empty array with g_array_remove_range()
763344 g_get_user_runtime_dir(): ensure directory exists
763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
Translations updated:
Brazilian Portuguese
Czech
Finnish
French
Galician s
German
Greek
Hebrew
Hungarian
Italian
Kazakh
Korean
Latvian
Lithuanian
Occitan
Polish
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.6
==================================
* Windows usupport:
- Fixes and improvements to the GSettings registry backend
- Handle readability and writability of registry keys
- Use Unicode registry APIs
* Bugs fixed:
760852 744772 761126 747927 761337 744570 761504 761550 761843
744570 GString is missing (transfer none) annotations on many of its methods
744772 systemtap and gdb scripts install in wrong place
747927 Documentation: various small improvements
760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
761126 winiconv: update to upstream version
761337 Fix some annotations
761504 W32 registry GSettings backend does not use Unicode
761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
* Translation updates:
Brazilian Portuguese
Bulagarian
Chinese (Taiwan)
Hungarian
Polish
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.5
==================================
* the system copy of PCRE is now used by default to implement GRegex.
Configure with --with-pcre=internal if a system PCRE version
is unavailable or undesired.
* interfaces for DTLS support have been added. A new version of
glib-networking will also be required.
* GDBusMethodInvocation now drops replies if the sender set the
NO_REPLY_EXPECTED flag
* several GApplication fixes, including fixes for commandline arguments
in interpreted languages on Windows
Bugs fixed:
624186 Deprecate glib-gettext macros
734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
735754 Implement close on TLS GOutputStream
748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
752240 Add DTLS support to GIO
755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
756875 Include ntdef.h for NTSTATUS
759554 g_application_run() calls g_main_context_default() repeatidly
760199 gsettings: Install gettext ITS rules
760215 G_LIKELY/_UNLIKELY macros need more parentheses
760683 regex test: Check the expected PCRE exceptions at runtime
Translations updated:
Brazilian Portuguese
Czech
German
Lithuanian
Swedish
Overview of changes in GLib 2.47.4
==================================
* The GApplication documentation has been improved in several areas.
* Bugs fixed:
749092 gdb pretty-printers fail on Python 3 with a TypeError...
757374 macros: clean up "inline" mess
758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
759134 Add missing checks for gnulib vasnprintf()
759408 Do not use uninitialized var
756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
757372 GApplication: destroy the impl on shutdown
728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
757299 glib-compile-resources: do not leak c_name
758553 Fix gettext use
758823 file monitors: reorder some code to avoid segfault
756214 gsettings: Don't translate ""
710243 Add GParamSpec object ref management annotations
735696 xdgmime: Finer handling for cases where mmap() is not available
752983 gapplication: Acquire the main context before running
* Translation updates:
Swedish
Overview of changes in GLib 2.47.3
==================================
The inline cleanup in the last release accidentally removed three
symbols from libglib-2.0.so. It is unlikely that this will have caused
any problems because these symbols were only backup symbols for
definitions exported as inlines in the header files, but ABI is ABI.
This release corrects only this problem.
Overview of changes in GLib 2.47.2
==================================
* We have formalised the assumption that all compilers that are
interested in support 'static inline' and simplified the macros around
this considerably. Please watch for and report unintentional fallout.
* New API: hardware-assisted helpers for overflow-checked integer math.
* other fixes
Bugs fixed:
696324 gtester-report doesn't work with Python 3.x
719966 glib: Add missing (nullable) and (optional) annotations
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
755364 make gtkdoc-check happy again
756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
756988 GSequence should document each function's complexity
757294 Move G_POLLFD_FORMAT to glibconfig.h
757374 macros: clean up "inline" mess
757451 doc: fix g_task_attach_source() example
757628 gio tests fail to build when cross compiling 2.46.1
757693 Invalid free in g_local_file_trash()
757742 Fix up annotations in ghash.c
758181 GTask: fix wrong example code
Translations updated:
Greek
Hebrew
Hungarian
Norwegian bokmål
Portuguese
Scottish Gaelic
Simplified Chinese
Spanish
Overview of changes in GLib 2.47.1
==================================
* The Unicode support has been updated to version 8.0 of the Unicode standard
* GDesktopAppInfo no longer sets the DISPLAY environment variable when
launching apps. This is now done in the GAppLaunchContext implementations
when appropriate
* Bug fixes:
664740 Key-value file parser, space after integer
687223 cleverer GThreadPool management
692085 stderr and stdout are not always file descriptors 1 and 2
697907 Add interface for socket-like things (GSocket, DTLS, etc)
735754 Implement close on TLS GOutputStream
737116 Add functions to print GSocketConnectables and addresses as strings
743011 Minor additions to GError documentation
749161 undefined reference to `__imp__stat32i64'
749314 Cannot restore a just-trashed file
751924 Add recvmmsg()-like API on GSocket
752240 Add DTLS support to GIO
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
753310 Remove `#pragma GCC system_header` from gmessages.h
753935 Update example namespace and class names in GObject tutorial
754855 Object instantiation documentation refers to example that no longer ex...
754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
754994 g_date_time_get_second () sometimes returns an off-by-one result
755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
755351 Example still contains g_autoptr(gchar)
755355 Move GStrv to glib.h so it can be used with g_auto()
755374 g_variant_get_child(): flatten-first logic on '&'
755496 glib 2.46 fails GStreamer test suite
755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
755795 2.46 considers empty files as octet-stream rather than text (leads to...
755961 Fix up annotations in gbytes.c
756053 MSVC doesn't understand the symbol 'msghdr'
756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
756077 testutils: remove internal ABI comment
756099 g_main_context_query(): Annotate @n_fds as (in) parameter
756139 musl: ctors called in the wrong order
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
756316 GSequence should provide fast api to check if empty
756382 snprintf used on Windows with VS2015 doesn't support %n
756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
756550 gtypes.h: Make G_MININTn literals negative
756875 Include ntdef.h for NTSTATUS
756952 giomodule: return a copy of module name
* Translation updates:
Basque
Czech
Serbian
Serbian Latin
Vietnamese
Overview of changes in GLib 2.46.0
==================================
* Disable runtime-deprecation warnings
* Fix marshalling of flags on bigendian 64bit architectures
* Translation updates
Brazilian Portuguese
Danish
German
Latvian
Russian
Turkish
Overview of changes in GLib 2.45.8
==================================
* utf8 validation and utf8-to-ucs4 conversion are faster
* Small speedups to property change notification
* Various other small optimizations for GQuark, GData
* Bugs fixed:
696426 GParamSpecTypeInfo do not need to be static
735429 Cleanup MSVC Project Files Generation
738504 Optimize UTF-8 decoding by unrolling branches and expressions
742903 Add missing (transfer) annotation to GString
748633 g_set_object order of operations
754431 Fix build of glib/gstrfuncs.c on Windows
754560 gioerror: Add more mappings for WinSock error codes
754582 Glib cannot compile
754601 Make g_strerror work with non-glibc POSIX systems
754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
754788 more g_strerror stuff
754831 autocleanups: Add GString type
754924 Improve test coverage of g_utf8_validate() by added known-...
754986 Avoid unnecessary signal emission during draw
* Translation updates:
Italian
Kazakh
Korean
Lithuanian
Slovenian
Swedish
Overview of changes in GLib 2.45.7
==================================
* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
backends (e.g. cloud storage).
* GFileMonitor: Make the inotify backend work with atomic renames again
* GSettings: change notification is again working unconditionally
* GListStore has a sort function now
* Test infrastructure:
- Tests are now required to have unique names
- TAP support has been improved
- A macro for asserting that two memory regions have identical content
has been added
* Bugs fixed:
708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
742849 inotify: send paired events to both sides
744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
747364 Fix GError leak in g_file_query_writable_namespaces()
749492 Support file creation time on FreeBSD and NetBSD
752769 (g_socket_receive_message | g_socket_send_message) performance
753745 glib-genmarshal still needed for cross-compilation
754152 Add g_list_store_sort
754211 Memory leak in g_file_enumerator_iterate ()
754264 GLib 2.44 certificate chain construction fails if the PEM incl...
754283 gtestutils: add g_assert_cmpmem()
754284 gtestutils: print the TAP test plan first, not last
754286 misc gtestutils fixes
754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
* Translation updates:
Chinese (Taiwan)
French
Galician
Greek
Hebrew
Hungarian
Indonesian
Polish
Portuguese
Overview of changes in GLib 2.45.6
==================================
* Fix a test failure and a build failure
Overview of changes in GLib 2.45.5
==================================
* GNetworkMonitor now provides information about metered networks
* g_mem_set_vtable has been deprecated; it has not been working for
quite a while. The recommendation is to use valgrind, or replace
malloc itself.
* Bugs fixed:
656325 Make GDBusInterfaceVTable binding friendly
741779 Documentation tweaks addressing real-world API misuses
741822 Fails to build with VS 2015
742386 gdbusconnection: Don't g_printerr() when exiting
743018 gobject: Add more cross-links between documentation pages
750282 Add g_network_monitor_get_network_metered() to get if the connection...
751358 GFileMonitor doesn't react to "mv some-file watched-file"
751592 Stop using GMemVtable
751598 Stop 'handle-local-options' propagation when callback reports an err...
751610 g_str_hash produces collisions with strings of length 2
751751 Wrong docs of g_async_queue_remove
752210 gdbus command crashes with SIGSEGV
752656 gdbusconnection: Fix signal subscription documentation
752767 Fix typo in g_hash_table_replace() documentation
753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
753285 g_menu_item_set_icon fails if called with NULL icon
* Translation updates:
Catalan
Czech
French
Indonesian
Lithuanian
Norwegian bokmål
Slovak
Spanish
Thai
Turkish
Overview of changes in GLib 2.45.4
==================================
* Bugs fixed:
727829 win32: glibconfig.h.win32 updates
741901 Clang cannot know that g_error don't return
746339 GSocket kills process when fd is not a socket
747676 gio/tests/socket fails: test_fd_roundtrip
748610 Some tests fail with non-English locales
749911 g_inet_address_to_string broken on XP/2003
749912 g_inet_address_new_from_string broken on XP/2003
750625 Should dismiss Software Updates Available notification after...
750807 G_BREAKPOINT doesn't work as intended on Darwin
751160 gtask does unnecessary work
751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
751731 GFile/DirectoryMonitor emit move events with other_file=NULL
751737 gio/tests/appmonitor test fails in 2.45.3
751798 Wrong enum type used in some test-cases
752089 make gsocketservice::active a property
752293 small cleanup: use list_free_full
* Translation updates:
Greek
Hebrew
Portuguese
Overview of changes in GLib 2.45.3
==================================
* Improve performance of g_signal_handler_disconnect for signals
with many handlers
* GDBus has gained a new call flag to allow interactive authorization
* GSettings:
- New API: g_settings_schema_list_keys
- Deprecated: g_settings_list_keys
* OS X:
- Implement GNotification
- Bump the OS X requirement to 10.9
* Windows:
- Add registry reading API
- Reimplement GAppInfo using registry information
* Bugs fixed:
666831 Support URI opening on W32
728489 property action with inverted boolean state
730168 Incorrect annotation on g_action_group_get_action_state_type return...
733325 Several regex tests fail with pcre3 8.35
734888 GLib has no helper functions to work with W32 Registry
737009 signal handler lookup doesn't scale
738185 Misleading language about "file name encoding" in the docs on g_env...
738504 Optimize UTF-8 decoding by unrolling branches and expressions
739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
739424 gnome-shell crashes when files are added, deleted, or modified in $...
739616 DBus; Add new call flag to allow interactive authorization
740308 Add g_settings_schema_list_keys() method
740516 RFE: please provide an introspectible version of g_log_set_handler
741788 Document GSettings build system integration
745013 GBinding not thread safe
747146 Implement GNotification on OSX
747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
748727 Filechooser dialog shows no icons for directories on W32
749693 GActionGroupExporter: flush queue on requests
750203 GNetworkMonitorNetlink hangs in user namespace
750322 gapplication: Make sure --help output is translated
750344 GTlsInteractionClass is missing from doc
750369 Various GBinding cleanups
750386 Race condition in g_io_condition_get_type
750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
750573 GTlsDatabaseClass is not documented
750918 genmarshal: silence register storage class warnings
751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
479730 The "g_key_file_set_comment" interface prepends '#' character to...
* Translation updates:
Hungarian
Spanish
Overview of changes in GLib 2.45.2
==================================
* Improve error reporting in glib-compile-schemas.
* Add introspection annotations to GListStore.
* Bugs fixed:
696749 win32 : failed to compile because of careless mistake in the code
723394 const parameter to GtkPopover gtk_popover_set_pointing_to
724113 gdbus-connection-loss test can fail on slow machines
725981 tap-driver.sh: internal error getting exit status
733325 Several regex tests fail with pcre3 8.35
744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
747882 gtype: Bump allowed number of children
748534 gtest: if a subprocess assertion fails, print its stdout and stderr
748612 de_DE locale used in option-context test is not supported by FreeBSD
748614 Double unref in g_socket_listener_add_inet_port
748834 glocalfilemonitor: Emit notification on rate limit change
749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
749080 gdatetime test: fails if close to rollover between seconds
749180 gnetworkaddress: add return type annotation to parse methods
749352 g_binding_unbind() fails when source is also the target
749353 GBinding does not connect to the detailed notify signal
* Translation updates:
Catalan
French
Slovak
Thai
Overview of changes in GLib 2.45.1
==================================
* The GSettings schema compiler, glib-compile-schemas has been changed
to reject schema xml that has duplicate <summary> or <description>
elements. Such elements typically occur when translations are merged
into the schema, with xml:lang attributes. This is not the correct
way to translate schemas. Instead keep the translations in the .mo
file and set the gettext-domain attribute on the <schemalist> element.
* The file monitoring infrastructure has been rewritten, and all backends
have seen major improvements.
The inotify backend is reporting events with less delay (no event will
be delayed more than 10ms) and wakeups due to file monitoring have been
significantly reduced. A CHANGES_DONE event will also be sent when new
files appear.
The poll implementation is now using the thread default main context.
The fam implmentation is now running in the worker thread.
The fen implementation has been removed, since it was unmaintained.
* The GSettings schema compiler, glib-compile-schemas, is more strict
about rejecting schemas with xml:lang style merged translations.
Schema translations should be done by specifying the gettext domain
in the xml, and keeping the translations in gettext. To avoid breaking
already-installed schemas, this change is only taking effect when
you use the --strict option.
* The hardcoded 10-thread limit of GTask's thread pool has been removed,
since it was prone to causing deadlocks. The thread pool is now allowed
to grow dynamically and will shrink back over time.
* GSimpleAsyncResult has been deprecated in favor of GTask.
* The algorithm used by GAppInfo to find default handlers for mime types
has been tweaked to prefer apps that handle the specific subtype over
default handlers for a generic supertype.
* Bug fixes:
627285 inotify file monitor hardwired delay
631597 Segmentation fault in append_escaped_text
661767 merge/improve various bits of run-in-thread functionality
687223 cleverer GThreadPool management
711547 win32: silence some build warnings
719966 glib: Add missing (nullable) and (optional) annotations
726447 Possibly an error in text string
728663 W32: wrong stat struct is used when built with MinGW-w64
728669 W32: GLocalFile can't measure size of files larger than 2^32...
730188 gsocket: Document FD ownership with g_socket_new_from_fd()
733325 Several regex tests fail with pcre3 8.35
738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
739850 GClosure: add valgrind hints
741791 gmain: Save errno when handling unix signals
744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
745255 Add support for copying sessions between GTlsClientConnections
745745 gdbus: fix out-of-bound array access
745821 Don't use __alloc_size__ attribute with clang
746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
746753 Glib-compile-resources --generate-header not using ".h" as ...
747209 glib-compile-schemas ought to reject repeated <summary> and...
747349 Conversion of gdbus to use GTask causes deadlocks
747363 gatomic: Add missing new line in API doc comment
747472 Don't ignore already-installed schemas with multiple <summa...
747541 gdbus segfaults with invalid --dest
747772 Having hardcoded utf8 strings in the source code does not p...
748019 gsocketconnection: Fix copy-pasto in documentation
748177 not all test schemas are distributed, "make distcheck" fails
* Translation updates:
Basque
Czech
Danish
Finnish
German
Hebrew
Icelandic
Norwegian bokmål
Russian
Turkish
2016-04-07 20:33:05 +02:00
|
|
|
share/gtk-doc/html/gio/GDtlsClientConnection.html
|
|
|
|
share/gtk-doc/html/gio/GDtlsConnection.html
|
|
|
|
share/gtk-doc/html/gio/GDtlsServerConnection.html
|
Update glib2 to 2.18.0.
Based on patch provided by Juan RP in pkgsrc-users ml.
Overview of Changes from GLib 2.17.7 to GLib 2.18.0
===================================================
* Win32:
- rework the g_poll() implementation to match poll() semantics more closely
* Bugs fixed:
324234 Using g_io_add_watch_full() to wait for connect() to return...
548278 Async GETs connections are always terminated unexpectedly...
500246 Bug fixes for giowin32
523939 Example program for GValue
550096 GBookmarkFile parser is not forward compatible
550040 Move GString, rand and printf tests to the unit test framework
550104 trivial documentation fix for g_get_home_dir
548988 g_file_replace fails on Windows when the target file exists
550059 Wrong docs for g_emblemed_icon_add_emblem
548800 Missing a g_object_get_type function
550056 Missing documentation for g_emblemed_icon_get_emblems
* Updated translations:
Bulgarian (bg)
Czech (cs)
German (de)
Estonian (et)
Basque (eu)
French (fr)
Hebrew (he)
Hungarian (hu)
Italian (it)
Japanese (ja)
Lithuanian (lt)
Maithili (mai)
Dutch (nl)
Swedish (sv)
Thai (th)
Ukrainian (uk)
Vietnamese (vi)
Overview of Changes from GLib 2.17.6 to GLib 2.17.7
===================================================
* More fixes for 64-bit Windows
* GIO
- Add a vfs implementation for HTTP and HTTPS URIs on Windows
* Bugs fixed:
546329 API docs for g_utf8_normalize() are incorrect
546876 Modify GMarkup parser to accept  .. 
547200 g_utf8_find_next_char() issues
547637 unconditional #include of sys/statfs.h in configure
547337 G_DISABLE_DEPRECATED breaks tests build
547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
502498 Test framework assertion failures should follow gcc
546371 Improve docs re g_file_monitor
546483 GThemedIcon:use-default-fallbacks is not readable without...
546132 GFileIcon is bindings-unfriendly
542156 zfs mount in home directory shown on nautilus desktop
535124 umask 002 not being applied for new directories...
547080 g_file_copy leaks expected errors
546582 Callbacks from GFileMonitor present a GFile...
547262 Missing link in the docs
* Updated translations:
Arabic (ar)
Catalan (ca)
Spanish (es)
Basque (eu)
Finnish (fi)
Galician (gl)
Hebrew (he)
Marathi (mr)
Norwegian bokmål (nb)
Portugese (pt)
Brazilian Portugese (pt_BR)
Swedish (sv)
Thai (th)
Overview of Changes from GLib 2.17.4 to GLib 2.17.6
===================================================
* Fix problems on 64-bit Windows
* g_markup_context_get_user_data: New function to access
the user_data outside of callbacks
* GIO
- g_mount_guess_content_type_sync: synchronous version of
g_mount_guess_content_type
- GEmblem: A GIcon implementation that adds emblem-related
metadata to icons
- GEmblemedIcon: A GIcon implementation that can add emblems
to icons
* Bugs fixed:
544088 option_test_LDADD is left in tests/Makefile.am
544465 gmarkup makes it hard to use pre-rolled parsers
545485 Implicit declaration of utime()
545798 "Since: 2.18" mark is missing in g_set_error_literal...
544140 fam-helper 64-bit issue
529694 SELinux context setting support
545157 wrong/no list of "open with" applications for .cc...
545203 gfile.c: argument is different type
545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
544177 Fix trivial cut and paste error in documentation
545395 Language tweak for g_value_set_string* docs
541036 Gnumeric crashes when trying to open Desktop...
546079 leak in xdgmime
545395 Language tweak for g_value_set_string* docs
546017 Don't copy attributes when copying a symlink
* Updated translations:
Arabic (ar)
Estonian (et)
Galician (gl)
Italian (it)
Japanese (ja)
Korean (ko)
Norwegian bokmål (nb)
Pashto (ps)
Portugese (pt)
Overview of Changes from GLib 2.17.3 to GLib 2.17.4
===================================================
* GIO:
- New API to handle content types: g_mount_guess_content_type,
g_content_type_guess_for_tree.
- Export the eject-button signal on the volume monitor class
- New API to enable out-of-process volume monitors:
g_volume_get_activation_root
* GObject:
- New API to handle signals without slots in the class structure:
g_signal_new_class_handler, g_signal_override_class_handler
* Internationalization:
- Add an NC_ macro that is a no-op equivalent of C_
* GMarkup:
- Add two new functions g_markup_parse_context_push,
g_markup_parse_context_pop to support "subparsers"
* Bugs fixed:
541208 Functions to easily install and use signals without...
541507 Ambiguous description of assigned characters in the...
543040 async reading on dummy file will crash on GIO_USE_VFS=local
543560 enable gio-FEN back-end warnings on Solaris will crash...
528317 GRegex does not allow recursion limit
337518 GMarkup: Subparser support
541794 drive-eject-button signal
541793 activation root for volumes
467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
428048 2 of 51 tests fail on Solaris
542332 small fix for error message in GMarkup
482413 get_contents_stdio -- overflow and memory corruption
406120 g_ascii_strtod
334234 "printf" format error
536996 Missing noop i18n macro equivalent to C_
540616 mem leak in filechooser button
539229 gobject-query calls itself query
521589 [RFC] gobject documentation should mention Vala
543168 Description of G_SLICE=debug-blocks discourages its use
543220 Case collision on gio-extension-points.html
530759 update the gobject tutorial to the XXI century
535223 gbookmark file inefficiency ...
543504 crash in Epiphany Web Browser: Opening local file
* Updated translation:
German (de)
Estonian (et)
Pashto (ps)
Albanian (sq)
Thai (th)
Traditional Chinese (zh_HK)
Traditional Chinese (zh_TW)
Overview of Changes from GLib 2.17.1 to GLib 2.17.3
===================================================
* PCRE
- fix for CVE-2008-2371
* Bugs fixed:
538119 glib's mainloop leaks a pipe to sub-processes
537635 Corrections and improvements to g_time_val_{to,from}_iso8601
539067 The document g_io_channel_win32_new_fd() says...
535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
539123 annotate g_d[n]gettext with G_GNUC_FORMAT
539074 Cannot get exit status with g_spawn_command_line_sync
316221 G_LOCK warns about breaking strict-aliasing rules
539770 migrate gstrfunc unit tests to gtest
539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
538044 unconditional use of LC_MESSAGES
540545 Monotonic time and timer offset
535947 want g_set_error_literal
539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF
536252 GFileEnumerator should allow access to the containing GFile
538362 Get Win32 icons back in the file chooser
540802 g_list_prepend doesn't concat lists
540423 unrecoverable error after g_seekable_truncate
538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
539090 g_content_type_from_mime_type() should unalias
540331 g_file_append_to () documentation: can return NULL
534639 add g_desktop_app_info_new_from_keyfile
536733 gio build failure on Irix
536160 Add g_file_monitor()
538127 FileChooser broken on win32
531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
538564 gio should have gio-types.h
540047 glib-genmarshal.c: '#include <io.h>' is too before
Updated translations:
Korean (ko)
Occitan (oc)
Overview of Changes from GLib 2.17.0 to GLib 2.17.1
===================================================
* New function: g_utime(), a gstdio wrapper for utime()
* New functions: g_dgettext() and g_dngettext(), wrappers
for corresponding gettext functions with added functionaliy
* Support the latest version of the shared-mime spec, including
icons for mime types
* New function: g_themed_icon_prepend_name()
* Bugs fixed:
535418 Please document which glib version defines goffset
528715 Misprint in the description of the interface g_type_class_add_private
528714 Misprint in the description of the interface g_param_spec_flags
537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
530527 Misprint in the description of the interface
g_cclosure_marshal_VOID__FLAGS
530526 Misprint in the description of the fields 'class_init' and
'class_finalize' of the structure GTypeInfo
528719 Improvement to the documentation of the "g_object_connect" interface
528172 gtk_signal_handlers_unblock_* functions return value
amount of matched signals, not amount of actually unblocked
528717 Misprint in the description of the parameter 'type_id' for
the interface g_type_register_fundamental
528716 Misprint in the description of the parameter 'iface_data' for
the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc
537555 GObject instantiation not thread safe
537546 'desktop' shortcut in file chooser looks like a generic folder
537392 Additional colon in xattr name
536641 Filesystem querying in gio does not list AFS and autofs file systems
528600 g_dummy_file_get_parent("scheme://example.com/")
503071 Application direction changes to right to left even if theres no
translation
502511 g_assert_cmphex prints invalid message
338162 Use po/LINGUAS
314453 Nautilus crashes in Solaris when browsing the attached file
529321 make check fails in glib/pcre
455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD
fallback to $HOME/Desktop if xdg-user-dirs is not in use
498732 g_key_file_to_data cannot fail
511367 add g_file_make_directory_with_parents
531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with
gcc 4.0 or newer
536158 also bump GHashTable version when a node is removed via
g_hash_table_iter_remove()/g_hash_table_iter_steal()
531403 g_utf8_collate broken on Mac
535628 test/patterntest.c still includes gpattern.h directly
535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
* Translation updates:
Arabic (ar)
German (de)
Italian (it)
Norwegian bokmål (nb)
Thai (th)
Overview of Changes from GLib 2.16.x to GLib 2.17.0
===================================================
* Update to Unicode 5.1
* Update included libcharset to the one shipped with libiconv 0.12
* Update included PCRE to 7.7
* Enforce that only toplevel headers are directly included.
This is turned on by default for GObject and GIO. To turn
it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
* Fix library version of GIO. GLib 2.16 shipped with libgio-2.0.so.0.0.0
* On Solaris, use FEN for file monitoring in GIO
* Use the GIO_EXTRA_MODULES environment variable to find
additional GIO modules
* G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
function attribute
* g_checksum_reset: New function to reset the state of a GChecksum
* g_unix_mount_monitor_set_rate_limit: New function to limit the
rate at which events are reported
* g_file_query_file_type: New utility function to query the type of
a file
* g_memory_output_stream_get_data_size: New function to obtain the
size of the written data.
* Bugs fixed:
522292 Gives warnings in glib/gutils.h with GCC in C99 mode
523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
518160 replace two g_strdup_printf calls in GBookmarkFile
523877 gbookmarkfile: avoid using g_string_append_printf() and
other optimizations
525192 100% CPU if run main loop with no IO sources
315437 extern inline -> static inline
524314 g_convert() on Win32 implicitly converts full width
alphanumerics into half width
525732 Error in documentation for g_list_first
525674 A typo in gmarkup.c
448943 g_timeout_add_seconds() problems
525972 UCS-4 not in the new win_iconv implementation
526619 make test-report crash
491554 Update to Unicode 5.1.0
519137 g_slice_dup macro needs cast for 64-bit platform
528752 Win32 build and SSL not working
530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
528667 Typos in testing module documentation
459905 Bug in wcwidth data
534085 g_unichar_iswide_cjk() has a totally wrong table
501651 Update glib/libcharset
519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
534319 GLib's .pc files could use Libs.private
534137 Typo in g_spawn_async_with_pipes doc
517419 gio win32 directory monitor
526796 Wrong order of arguments in g_file_copy's fallback
530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
532965 Should not return filesystem::free for certain file systems
525553 fix typo and nitpicking in GArray documentation
526572 Missing * in declaration of parent_class in Object
Destruction section of GObject Reference Manual
528648 Extra >s in Object Construction section
535021 g_param_spec_internal documentation should
describe purpose of nick and blurb
521513 Firefox crash when using file picker
528433 gdesktopappinfo snafu ...
533369 API g_file_info_get_attribute_string () unables to get "...
521045 glib f_fstypename miscellany
521672 compile error
521946 control rate limit on GUnixMountMonitor
522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
523015 Implement sliding window based upload operation
523019 Use new GCC 4 feature
523338 list nfs4 as a nfs mount type
524350 Make glib build without NLS again
524579 g_file_copy reports wrong total on progress callback for ...
524742 A typo in gtestutils.c.
524950 Minor documentation typos.
525866 the user directory should not be considered as a mount to...
526320 should not list mounts that the user doesn't have permiss...
527132 nautilus crash when making ftp connection
532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
534759 Build failure in gio
534764 Typo in error produced by g_file_make_directory
521851 Redudant tests in gunixmounts.c
524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
534177 Invalid description of the interface g_cclosure_marshal_S...
520715 Add GFile method g_file_query_file_type
523039 nautilus can't access to trash/computer/network if gvfs i...
* Updated translations:
Arabic (ar)
Bulgarian (bg)
Catalan (ca)
Czech (cs)
Greek (el)
Candian English (en_CA)
British English (en_GB)
Spanish (es)
Estonian (et)
Basque (eu)
Galician (gl)
Hebrew (he)
Hungarian (hu)
Japanese (ja)
Lithuanian (lt)
Norwegian bokmål (nb)
Dutch (nl)
Occitan (oc)
Portugese (pt)
Russian (ru)
Slovak (sk)
Albanian (sq)
Swedish (sv)
Turkish (tr)
Vietnamese (vi)
2008-09-06 13:07:20 +02:00
|
|
|
share/gtk-doc/html/gio/GEmblem.html
|
|
|
|
share/gtk-doc/html/gio/GEmblemedIcon.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GFile.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/gio/GFileDescriptorBased.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GFileEnumerator.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/GFileIOStream.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GFileIcon.html
|
|
|
|
share/gtk-doc/html/gio/GFileInfo.html
|
|
|
|
share/gtk-doc/html/gio/GFileInputStream.html
|
|
|
|
share/gtk-doc/html/gio/GFileMonitor.html
|
|
|
|
share/gtk-doc/html/gio/GFileOutputStream.html
|
|
|
|
share/gtk-doc/html/gio/GFilenameCompleter.html
|
|
|
|
share/gtk-doc/html/gio/GFilterInputStream.html
|
|
|
|
share/gtk-doc/html/gio/GFilterOutputStream.html
|
|
|
|
share/gtk-doc/html/gio/GIOModule.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/GIOStream.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GIcon.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/GInetAddress.html
|
2015-06-11 01:00:05 +02:00
|
|
|
share/gtk-doc/html/gio/GInetAddressMask.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/GInetSocketAddress.html
|
|
|
|
share/gtk-doc/html/gio/GInitable.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GInputStream.html
|
2015-06-11 01:00:05 +02:00
|
|
|
share/gtk-doc/html/gio/GListModel.html
|
|
|
|
share/gtk-doc/html/gio/GListStore.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GLoadableIcon.html
|
|
|
|
share/gtk-doc/html/gio/GMemoryInputStream.html
|
|
|
|
share/gtk-doc/html/gio/GMemoryOutputStream.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/gio/GMenu.html
|
|
|
|
share/gtk-doc/html/gio/GMenuModel.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GMount.html
|
|
|
|
share/gtk-doc/html/gio/GMountOperation.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/GNetworkAddress.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/gio/GNetworkMonitor.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/GNetworkService.html
|
2015-06-11 01:00:05 +02:00
|
|
|
share/gtk-doc/html/gio/GNotification.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GOutputStream.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/GPermission.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/gio/GPollableInputStream.html
|
|
|
|
share/gtk-doc/html/gio/GPollableOutputStream.html
|
2015-06-11 01:00:05 +02:00
|
|
|
share/gtk-doc/html/gio/GPropertyAction.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/GProxy.html
|
|
|
|
share/gtk-doc/html/gio/GProxyAddress.html
|
|
|
|
share/gtk-doc/html/gio/GProxyResolver.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/gio/GRemoteActionGroup.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/GResolver.html
|
2015-06-11 01:00:05 +02:00
|
|
|
share/gtk-doc/html/gio/GResource.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GSeekable.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/GSettings.html
|
|
|
|
share/gtk-doc/html/gio/GSettingsBackend.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/gio/GSimpleAction.html
|
|
|
|
share/gtk-doc/html/gio/GSimpleActionGroup.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GSimpleAsyncResult.html
|
2015-06-11 01:00:05 +02:00
|
|
|
share/gtk-doc/html/gio/GSimpleIOStream.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/GSimplePermission.html
|
2013-04-20 00:21:41 +02:00
|
|
|
share/gtk-doc/html/gio/GSimpleProxyResolver.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/GSocket.html
|
|
|
|
share/gtk-doc/html/gio/GSocketAddress.html
|
|
|
|
share/gtk-doc/html/gio/GSocketClient.html
|
|
|
|
share/gtk-doc/html/gio/GSocketConnectable.html
|
|
|
|
share/gtk-doc/html/gio/GSocketConnection.html
|
|
|
|
share/gtk-doc/html/gio/GSocketControlMessage.html
|
|
|
|
share/gtk-doc/html/gio/GSocketListener.html
|
|
|
|
share/gtk-doc/html/gio/GSocketService.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/gio/GSrvTarget.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/gio/GSubprocess.html
|
2015-06-11 01:00:05 +02:00
|
|
|
share/gtk-doc/html/gio/GSubprocessLauncher.html
|
2013-04-20 00:21:41 +02:00
|
|
|
share/gtk-doc/html/gio/GTask.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/GTcpConnection.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/gio/GTcpWrapperConnection.html
|
2012-10-06 22:44:04 +02:00
|
|
|
share/gtk-doc/html/gio/GTestDBus.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GThemedIcon.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/GThreadedSocketService.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/gio/GTlsBackend.html
|
|
|
|
share/gtk-doc/html/gio/GTlsCertificate.html
|
|
|
|
share/gtk-doc/html/gio/GTlsClientConnection.html
|
|
|
|
share/gtk-doc/html/gio/GTlsConnection.html
|
2012-01-29 11:46:52 +01:00
|
|
|
share/gtk-doc/html/gio/GTlsDatabase.html
|
|
|
|
share/gtk-doc/html/gio/GTlsFileDatabase.html
|
|
|
|
share/gtk-doc/html/gio/GTlsInteraction.html
|
|
|
|
share/gtk-doc/html/gio/GTlsPassword.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/gio/GTlsServerConnection.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/GUnixConnection.html
|
|
|
|
share/gtk-doc/html/gio/GUnixCredentialsMessage.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/gio/GUnixFDList.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/GUnixFDMessage.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GUnixInputStream.html
|
|
|
|
share/gtk-doc/html/gio/GUnixOutputStream.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/GUnixSocketAddress.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/GVfs.html
|
|
|
|
share/gtk-doc/html/gio/GVolume.html
|
|
|
|
share/gtk-doc/html/gio/GVolumeMonitor.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/gio/GZlibCompressor.html
|
|
|
|
share/gtk-doc/html/gio/GZlibDecompressor.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/annotation-glossary.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/gio/api-index-2-18.html
|
|
|
|
share/gtk-doc/html/gio/api-index-2-20.html
|
|
|
|
share/gtk-doc/html/gio/api-index-2-22.html
|
|
|
|
share/gtk-doc/html/gio/api-index-2-24.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/api-index-2-26.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/gio/api-index-2-28.html
|
2012-01-29 11:46:52 +01:00
|
|
|
share/gtk-doc/html/gio/api-index-2-30.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/gio/api-index-2-32.html
|
2012-10-06 22:44:04 +02:00
|
|
|
share/gtk-doc/html/gio/api-index-2-34.html
|
2013-04-20 00:21:41 +02:00
|
|
|
share/gtk-doc/html/gio/api-index-2-36.html
|
Update glib2 to 2.38.2
Patches removed:
- patch-ce: fixed in 690d6b97 (Bug 697386)
- patch-gio_gcontenttype.c: committed as ab5aa2aa
- patch-gio_glocalfile.c: fixed in 584358 (Bug 698348)
- patch-gio_gthreadedresolver.c: fixed in 8372f22b
- patch-glib_gfileutils.c: fixed in 8372f22b
- patch-glib_gmarkup.c: : fixed in 8372f22b
- patch-glib_gstrfuncs.c: fixed in 8372f22b
Patches changed:
- patch-aa: last 3 hunks removed as committed as 996edb0 (Bug 706958)
- patch-ah: last 2 hunks removed as something similar in 8372f2
- patch-ak: last 3 hunks removed as committed as 996edb0 (Bug 706958)
- patch-ba: hunk 9 removed as committed as d47430 (Bug 697365)
Overview of changes from GLib 2.38.1 to 2.38.2
===============================================
* GCancellableSource will now dispatch for each time a cancellable is
cancelled (ie: in the case that it was reset) but this is still
considered undefined behaviour
* fix g_source_add_child_source() thread safety issues
* add workaround for buggy D-Bus daemons when path-matching on '/'
* fallback to pathname queryinfo to help g_file_copy() work on gvfs
filesystems that don't implement query_info_on_read()
* don't crash if loading a DBusActivatable application from keyfile
* fix crash when replacing a symlink with another using GIO
* add a fallback for '-symbolic' icons to the non-symbolic form
Overview of changes from GLib 2.38.0 to 2.38.1
===============================================
* Fix error code checks when SOCK_CLOEXEC is defined but not supported
(fix support for GNU/Hurd)
* g_settings_list_children: only list viable schemas
(fix gsettings list-recursively crashes with invalid schemas installed)
* GDBusObjectManagerClient: Fix typo in the /org/freedesktop/DBus path
when adding match rules
* Various -Werror=format-nonliteral fixes
* gmessages: fix clang annotations to work with older versions
* gio: don't dist (generated file) gnetworking.h
* Restore gl_GLIBC21 to configure; needed for libcharset
Translations:
Catalan (Valencian)
Norwegian bokmål
Russian
Serbian
What's new in Glib 2.38
========================
* Application support
- GIO now provides an implementation of Desktop Actions from the
desktop entry specification
- GApplication now implements the org.freedesktop.Application
interface as per the desktop entry specification, allowing for
standards-based D-Bus launching of GLib-based applications
- GDesktopAppInfo now supports DBusActivatable as per the desktop
entry specification, allowing GLib-based applications to use D-Bus
to launch other applications
- GApplication now has a "busy" flag that can be set on an application
to allow the shell to show that it is busy
* GObject
- the private offset for a given class type is now always constant.
This was done by reorganising the memory layout of instances so that
the private data comes before the "official" pointer for the object
(ie: at a negative offset). Valgrind macros were added to mitigate
any problems that this may have caused.
- a new G_DEFINE_TYPE_WITH_PRIVATE has been added along with a
generated function *_get_instance_private() that can now serve as an
equally-performing alternative to ->priv pointers in instances
(allowing memory savings)
- new G_PRIVATE_FIELD, G_PRIVATE_FIELD_P and G_PRIVATE_OFFSET macros
provide a convenient method of converting between named variables in
private structures and their (now constant) offsets
- installing properties on a GObjectClass must now be done from
class_init. It is no longer valid to install them after class_init
has returned.
- it is now possible to manually break a GObject property binding
without destroying one of the objects involved
* Icons
- the requirements for implementing the GIcon interface have changed
in order to make it possible to consume all implementations of GIcon
with a finite number of cases
- a new GBytesIcon type was added for an icon represented by an
in-memory binary blob in a known image format (ideally png).
- new APIs g_icon_serialize() and g_icon_deserialize() replace the old
to/from_string APIs and will always work, irrespective of which
types have been initialised in the calling process, allowing for a
serialised GdkPixbuf to be deserialised in a process that doesn't
have GdkPixbuf
- support for icons has been added to GMenuModel using the new APIs
* Actions and menus
- GPropertyAction provides a convenient way of creating a stateful
property corresponding to a property on a GObject, such as the
"visible-child-name" property of a GtkStack
- new API g_menu_remove_all()
- we now have established rules about what is a "valid" action name
and an API to check them
- a new API for converting detailed action names to and from the
split-out name and parameter value (as GVariant)
- for backwards compatibility, invalid action names can still be used
with most functions, but this is not recommended
* Other GIO
- GDBus now supports services that wish to handle some of all
properties on an interface asynchronously, without requiring the
service to reimplement the entire org.freedesktop.DBus.Properties
interface
- GFile now has a new _measure_disk_usage() (and async) API for
recursively determining the amount of disk space used by a
particular directory (akin to 'du').
- asynchronous version of g_file_trash() and g_file_make_directory()
have been added
* Other new API
- GRegex has a new function to query the maximum lookbehind length to
allow for regexp matching on streams
- GVariant has two new APIs for constructing strings that allow
avoiding copies in some cases: g_variant_new_take_string() and
g_variant_new_printf()
* Testing
- we can now generate TAP output
- new support functions for simplifying the process of dealing with
data files for srcdir != builddir and installed test cases
- g_test_trap_subprocess() provides a portable alternative to
g_test_trap_fork()
* Other
- GLib now builds on Android against the bionic C library
Overview of changes from GLib 2.37.93 to 2.38.0
================================================
* fix the documentation for GSourceFuncs
* fix compilation on OS X/ppc64
Bugs fixed: 708445, 647145
Translations updated:
Danish
French
Portuguese
Punjabi
Overview of changes from GLib 2.37.92 to 2.37.93
================================================
* a couple of bugfixes in the new g_file_measure_disk_usage() API
* updated Traditional Chinese translation
Overview of changes from GLib 2.37.7 to 2.37.92
===============================================
* new API g_file_measure_disk_usage() similar to du(1)
* minor fixes
* Translation updates:
Assamese
Belarusian
Brazilian Portuguese
Catalan
Czech
Galician
German
Hungarian
Indonesian
Italian
Korean
Korean
Latvian
Lithuanian
Polish
Serbian
Slovenian
Spanish
Overview of changes from GLib 2.37.6 to 2.37.7
==============================================
* GDateTime now supports %:z formatting variations
for timezones. This is a GNU date extension.
* Bugs fixed:
685387 Segfault with GObject.signal_handler_is_connected()...
686786 g_socket_get_available_bytes() returns wrong value ...
705027 GSocket GSource not threadsafe on Windows
706469 Fix G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE documentation
706706 Fix Gir annotations on g_loadable_icon_load_finish
706888 gtype: fix a no-op assertion
706958 configure.ac: fix atomic opts detection
707092 "File Utilities" page for GLib documentation doesn'...
707151 gdatetime: Extend the '%z' timezone format
* Translation updates:
Catalan
Hungarian
Japanese
Polish
Slovak
Tamil
Overview of changes from GLib 2.37.5 to 2.37.6
==============================================
* Tests using the g_test facilities can now generate TAP output
* Bugs fixed:
680926 generic type fallback logic is broken for -symbolic
684327 setting null icon to icon list
689245 GSocket unable to reuse (address,port) on Mac OS X
692125 Support TAP as GTest output format
693335 build: fix dtrace-related warnings
696633 gdbus-codegen trips over unicode chars when using python 3.x
696970 Compiling 2.36.0 for win64 fails
697185 GSocket – Allow specifying the multicast interface from...
700268 Add support for using the clang analyzer
701318 Add G_SPAWN_DEFAULT to GSpawnFlags
701529 glib/tests/gdatetime: use UTC time in test_GDateTime_diff()
701800 a new approach to reporting critical errors
702674 g_date_time_new_utc crash
704165 GLib.IOChannel read_unichar() fails
705075 Simplify g_get_tmp_dir()
705152 Race in glib/task.test
705398 gtype: Fix typo in g_type_class_add_private() error message
705570 Check ref_count in g_object_notify_by_pspec
705600 Deprecate GSimpleActionGroup functions?
* Updated translations:
Assamese
Brazilian Portuguese
Czech
Dutch
Galician
Gujarati
Hebrew
Italian
Lithuanian
Marathi
Norwegian bokmål
Russian
Slovenian
Spanish
Thai
Traditional Chinese
Overview of changes from GLib 2.37.4 to 2.37.5
==============================================
* Implement the Desktop Action specification: In the case that the
application is a GApplication and DBusActivatable, actions from the
desktop file are translated into GActions that have been added to
the application with g_action_map_add_action().
* GPropertyAction is a new type of GAction that represents the value
of a property on an object, and allows to change the value when
activated.
* GNetworkMonitorNetlink can now handle default routes via a device.
* The gsettings tool now reports failure to write a key (e.g. because
the key was locked down)
* Miscellaneous new api:
- g_variant_new_printf
- g_action_print_detailed_name
- g_regex_get_max_lookbehind
* Bugs fixed:
664444 Support additional application actions in .desktop files
684123 glib build only tries -D_GNU_SOURCE if glibc is detected
689794 support incremental matching
699259 add org.freedesktop.Application support to GIO
700460 rewrite tests to not rely on precise timing of timeouts
701511 updates to various GSource types
701609 gnetworkmonitornetlink: handle default route via device
703270 add GPropertyAction
704157 GAction: add function for printing detailed names
704250 Doc: various fixes
704267 regression gsourceclosure: segfault in gedit file chooser
704322 glib-unix: fix handling of multiple signal source for the...
704424 No error when failing to override a locked key
704447 Fix build/use of g_child_watch_closure_callback on Windows
704523 g_thread_create_full() can dereference NULL pointer
704543 Add implementations for G_GNUC_*_IGNORE_DEPRECATIONS for ...
704567 gdbusnameowning: Don't spew an error if we're releasing a...
704585 libc printf can give mixed-case strings for NaN and Inf
704587 FTBFS: statfs_result is undeclared for statvfs()
704699 gmain: Reset signal handlers to default when source is
704704 AI_NUMERICSERV cannot be used with ai_socktype = 0
704873 inotify: don't assume mainloop is running
704999 glib/convert.test crashing due to lack of iconv cache
704931 GMenuModel: add annotations to virtual functions
* Translation updates:
Assamese
Czech
German
Gujarati
Spanish
Tamil
Overview of changes from GLib 2.37.3 to 2.37.4
==============================================
* Bugs fixed:
701283 g_source_add_child_source() segfault
702147 inconsistency of G_STRFUNC
703191 new private macros interact poorly with versioning macros
703254 Doc: various fixes
703407 g_spawn_async() keeps child_pid_report_pipe open in child process
703437 GDBusConnection: be more careful with async GetAll
703478 Missing G_BEGIN/END_DECLS in gsettingsschema.h
* Translation updates:
Catalan
Overview of changes from GLib 2.37.2 to 2.37.3
==============================================
* add a new API for instance private data: G_DEFINE_TYPE_WITH_PRIVATE
* fix timestamps in tarball to prevent automake from being required to
build the unmodified source
* add new D-Bus API for async property handling
* add back fsync() on ext4 for g_file_set_contents() after it was
discovered that despite statements in the ext4 documentation
suggesting that this is safe, it is not safe.
* Translations:
Italian
Norwegian bokmål
* Bugs fixed:
698375 - D-Bus async properties
700350 - timestamp issue
701560 - fsync issue (fixed again)
700035 - new API for instance private data
Overview of changes from GLib 2.37.1 to 2.37.2
==============================================
* The GLib test utilities have grown some file-related APIs
to support tests that can be used installed and uninstalled.
* Installing properties after class initialization is deprecated,
and will trigger a warning.
* GApplication:
- Support org.freedesktop.Application, including D-Bus activation
from desktop files
- Set prgname to appid for services
* Bugs fixed:
549783 gtester lacks framework for tests with data files
692848 Fix property example in gobject tutorial
698018 Add an explicit g_binding_release()
698614 GObject: prevent installing properties after init
699259 add org.freedesktop.Application support to GIO
699959 g_file_copy(): Ensure we create private files by default
700123 Test failure: g_inet_socket_address_get_scope_id
700725 GIcon: NULLify the `type' out param in the sync methods too
701401 gtest: add function for testing for WINE
701456 Error in gnome/glib/gio/tests/file.c
701474 Error building glibmm due to extra comma in glib/gtestutils.h
701560 various improvements for g_file_set_contents()
701680 GFileEnumerator: Add some documentation about ordering
701878 Check wakeup() before iteration(TRUE) doesn't block
* Translations:
Assamese
Czech
Galician
Gujarati
Kannada
Marathi
Odia
Polish
Slovenian
Spanish
Telugu
Overview of changes from GLib 2.37.0 to 2.37.1
==============================================
* add support for installed tests:
https://live.gnome.org/GnomeGoals/InstalledTests
* add a new g_test_trap_subprocess() that works on Windows as a
replacement for the (now deprecated) g_test_trap_fork()
* support for explicitly cancelling a gobject property binding
* performance improvements for signal argument handling
* stop using `quotes' in very many log messages generated by GLib, for
favour of 'this style'. This may cause testcases in other packages
to fail if they were matching on the previous text.
* improve manpages: add missing arguments and flags
Translations:
Aragonese
Assamese
Gujarati
Hindi
Kannada
Norwegian bokmål
Odia
Slovenian
Spanish
Tamil
Telugu
Bugs fixed:
679683 replace g_test_trap_fork()
694380 Improve signal argument collection performance
695233 Strings require plural forms
697849 spelling fixes in cross.xml and running.xml
698877 GProxyAddressEnumerator calls g_network_address_parse_uri without port
698981 [PATCH] test /gdbus/connection/large_message could hang forever
699079 Prototype support for installed tests
699485 [PATCH] tests/mappedfile: Also handle ENOMEM
699493 SOCKS5 proxy code crashes if it cannot authenticate
699500 gbitlock: fix this to not unconditionally use futex emulation
699779 [PATCH] G_GNUC_FORMAT: documentation error
700263 m4macros/glib-gettext.m4: Don't use AC_HEADER_STDC
700714 [PATCH] gtestutils: Ensure test subprocesses don't dump core
700746 Use 'dumb quotes' rather than `really dumb quotes'
2013-12-08 14:08:59 +01:00
|
|
|
share/gtk-doc/html/gio/api-index-2-38.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/gio/api-index-2-40.html
|
2014-10-08 01:18:36 +02:00
|
|
|
share/gtk-doc/html/gio/api-index-2-42.html
|
2015-06-11 01:00:05 +02:00
|
|
|
share/gtk-doc/html/gio/api-index-2-44.html
|
Update glib2 to 2.48.0
- removed patch-gio_gtestdbus.c: applied upstream.
- removed patch-gio_gunixmounts.c: can no longer reproduce problem.
Overview of changes in GLib 2.48.0
==================================
* a minor build fix in the name of determinism
* a few coverity fixes
Bugs fixed:
763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
Translations updated:
Danish
Italian
Overview of changes in GLib 2.47.92
===================================
* gdbus-codegen now supports g_autoptr()
* g_get_user_runtime_dir() now reliably returns an existing directory
* g_array_remove_range() can now remove 0 items from the end of an array
* Many fixes for Windows
* build fixes
* file monitoring
* gsettings backend
* streams
* random numbers
* wide character support
* documentation improvements
* other small bugfixes
Bugs fixed:
724847 Segmentation fault on "gsettings list-recursively"
743933 gapplication: add --app-id command line option
756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
757506 gsettings: schema_list should use the passed schema's source
760694 W32: Apps linked with -mwindows make cursor busy sometimes
762202 g_win32_error_message improvements
762637 build: Unconditionally dist tapset files
762748 Undefined behavior
762937 Mention that g_clear_error can be used with an "empty" GError
763339 array: Support clearing an empty array with g_array_remove_range()
763344 g_get_user_runtime_dir(): ensure directory exists
763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
Translations updated:
Brazilian Portuguese
Czech
Finnish
French
Galician s
German
Greek
Hebrew
Hungarian
Italian
Kazakh
Korean
Latvian
Lithuanian
Occitan
Polish
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.6
==================================
* Windows usupport:
- Fixes and improvements to the GSettings registry backend
- Handle readability and writability of registry keys
- Use Unicode registry APIs
* Bugs fixed:
760852 744772 761126 747927 761337 744570 761504 761550 761843
744570 GString is missing (transfer none) annotations on many of its methods
744772 systemtap and gdb scripts install in wrong place
747927 Documentation: various small improvements
760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
761126 winiconv: update to upstream version
761337 Fix some annotations
761504 W32 registry GSettings backend does not use Unicode
761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
* Translation updates:
Brazilian Portuguese
Bulagarian
Chinese (Taiwan)
Hungarian
Polish
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.5
==================================
* the system copy of PCRE is now used by default to implement GRegex.
Configure with --with-pcre=internal if a system PCRE version
is unavailable or undesired.
* interfaces for DTLS support have been added. A new version of
glib-networking will also be required.
* GDBusMethodInvocation now drops replies if the sender set the
NO_REPLY_EXPECTED flag
* several GApplication fixes, including fixes for commandline arguments
in interpreted languages on Windows
Bugs fixed:
624186 Deprecate glib-gettext macros
734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
735754 Implement close on TLS GOutputStream
748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
752240 Add DTLS support to GIO
755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
756875 Include ntdef.h for NTSTATUS
759554 g_application_run() calls g_main_context_default() repeatidly
760199 gsettings: Install gettext ITS rules
760215 G_LIKELY/_UNLIKELY macros need more parentheses
760683 regex test: Check the expected PCRE exceptions at runtime
Translations updated:
Brazilian Portuguese
Czech
German
Lithuanian
Swedish
Overview of changes in GLib 2.47.4
==================================
* The GApplication documentation has been improved in several areas.
* Bugs fixed:
749092 gdb pretty-printers fail on Python 3 with a TypeError...
757374 macros: clean up "inline" mess
758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
759134 Add missing checks for gnulib vasnprintf()
759408 Do not use uninitialized var
756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
757372 GApplication: destroy the impl on shutdown
728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
757299 glib-compile-resources: do not leak c_name
758553 Fix gettext use
758823 file monitors: reorder some code to avoid segfault
756214 gsettings: Don't translate ""
710243 Add GParamSpec object ref management annotations
735696 xdgmime: Finer handling for cases where mmap() is not available
752983 gapplication: Acquire the main context before running
* Translation updates:
Swedish
Overview of changes in GLib 2.47.3
==================================
The inline cleanup in the last release accidentally removed three
symbols from libglib-2.0.so. It is unlikely that this will have caused
any problems because these symbols were only backup symbols for
definitions exported as inlines in the header files, but ABI is ABI.
This release corrects only this problem.
Overview of changes in GLib 2.47.2
==================================
* We have formalised the assumption that all compilers that are
interested in support 'static inline' and simplified the macros around
this considerably. Please watch for and report unintentional fallout.
* New API: hardware-assisted helpers for overflow-checked integer math.
* other fixes
Bugs fixed:
696324 gtester-report doesn't work with Python 3.x
719966 glib: Add missing (nullable) and (optional) annotations
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
755364 make gtkdoc-check happy again
756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
756988 GSequence should document each function's complexity
757294 Move G_POLLFD_FORMAT to glibconfig.h
757374 macros: clean up "inline" mess
757451 doc: fix g_task_attach_source() example
757628 gio tests fail to build when cross compiling 2.46.1
757693 Invalid free in g_local_file_trash()
757742 Fix up annotations in ghash.c
758181 GTask: fix wrong example code
Translations updated:
Greek
Hebrew
Hungarian
Norwegian bokmål
Portuguese
Scottish Gaelic
Simplified Chinese
Spanish
Overview of changes in GLib 2.47.1
==================================
* The Unicode support has been updated to version 8.0 of the Unicode standard
* GDesktopAppInfo no longer sets the DISPLAY environment variable when
launching apps. This is now done in the GAppLaunchContext implementations
when appropriate
* Bug fixes:
664740 Key-value file parser, space after integer
687223 cleverer GThreadPool management
692085 stderr and stdout are not always file descriptors 1 and 2
697907 Add interface for socket-like things (GSocket, DTLS, etc)
735754 Implement close on TLS GOutputStream
737116 Add functions to print GSocketConnectables and addresses as strings
743011 Minor additions to GError documentation
749161 undefined reference to `__imp__stat32i64'
749314 Cannot restore a just-trashed file
751924 Add recvmmsg()-like API on GSocket
752240 Add DTLS support to GIO
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
753310 Remove `#pragma GCC system_header` from gmessages.h
753935 Update example namespace and class names in GObject tutorial
754855 Object instantiation documentation refers to example that no longer ex...
754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
754994 g_date_time_get_second () sometimes returns an off-by-one result
755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
755351 Example still contains g_autoptr(gchar)
755355 Move GStrv to glib.h so it can be used with g_auto()
755374 g_variant_get_child(): flatten-first logic on '&'
755496 glib 2.46 fails GStreamer test suite
755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
755795 2.46 considers empty files as octet-stream rather than text (leads to...
755961 Fix up annotations in gbytes.c
756053 MSVC doesn't understand the symbol 'msghdr'
756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
756077 testutils: remove internal ABI comment
756099 g_main_context_query(): Annotate @n_fds as (in) parameter
756139 musl: ctors called in the wrong order
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
756316 GSequence should provide fast api to check if empty
756382 snprintf used on Windows with VS2015 doesn't support %n
756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
756550 gtypes.h: Make G_MININTn literals negative
756875 Include ntdef.h for NTSTATUS
756952 giomodule: return a copy of module name
* Translation updates:
Basque
Czech
Serbian
Serbian Latin
Vietnamese
Overview of changes in GLib 2.46.0
==================================
* Disable runtime-deprecation warnings
* Fix marshalling of flags on bigendian 64bit architectures
* Translation updates
Brazilian Portuguese
Danish
German
Latvian
Russian
Turkish
Overview of changes in GLib 2.45.8
==================================
* utf8 validation and utf8-to-ucs4 conversion are faster
* Small speedups to property change notification
* Various other small optimizations for GQuark, GData
* Bugs fixed:
696426 GParamSpecTypeInfo do not need to be static
735429 Cleanup MSVC Project Files Generation
738504 Optimize UTF-8 decoding by unrolling branches and expressions
742903 Add missing (transfer) annotation to GString
748633 g_set_object order of operations
754431 Fix build of glib/gstrfuncs.c on Windows
754560 gioerror: Add more mappings for WinSock error codes
754582 Glib cannot compile
754601 Make g_strerror work with non-glibc POSIX systems
754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
754788 more g_strerror stuff
754831 autocleanups: Add GString type
754924 Improve test coverage of g_utf8_validate() by added known-...
754986 Avoid unnecessary signal emission during draw
* Translation updates:
Italian
Kazakh
Korean
Lithuanian
Slovenian
Swedish
Overview of changes in GLib 2.45.7
==================================
* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
backends (e.g. cloud storage).
* GFileMonitor: Make the inotify backend work with atomic renames again
* GSettings: change notification is again working unconditionally
* GListStore has a sort function now
* Test infrastructure:
- Tests are now required to have unique names
- TAP support has been improved
- A macro for asserting that two memory regions have identical content
has been added
* Bugs fixed:
708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
742849 inotify: send paired events to both sides
744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
747364 Fix GError leak in g_file_query_writable_namespaces()
749492 Support file creation time on FreeBSD and NetBSD
752769 (g_socket_receive_message | g_socket_send_message) performance
753745 glib-genmarshal still needed for cross-compilation
754152 Add g_list_store_sort
754211 Memory leak in g_file_enumerator_iterate ()
754264 GLib 2.44 certificate chain construction fails if the PEM incl...
754283 gtestutils: add g_assert_cmpmem()
754284 gtestutils: print the TAP test plan first, not last
754286 misc gtestutils fixes
754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
* Translation updates:
Chinese (Taiwan)
French
Galician
Greek
Hebrew
Hungarian
Indonesian
Polish
Portuguese
Overview of changes in GLib 2.45.6
==================================
* Fix a test failure and a build failure
Overview of changes in GLib 2.45.5
==================================
* GNetworkMonitor now provides information about metered networks
* g_mem_set_vtable has been deprecated; it has not been working for
quite a while. The recommendation is to use valgrind, or replace
malloc itself.
* Bugs fixed:
656325 Make GDBusInterfaceVTable binding friendly
741779 Documentation tweaks addressing real-world API misuses
741822 Fails to build with VS 2015
742386 gdbusconnection: Don't g_printerr() when exiting
743018 gobject: Add more cross-links between documentation pages
750282 Add g_network_monitor_get_network_metered() to get if the connection...
751358 GFileMonitor doesn't react to "mv some-file watched-file"
751592 Stop using GMemVtable
751598 Stop 'handle-local-options' propagation when callback reports an err...
751610 g_str_hash produces collisions with strings of length 2
751751 Wrong docs of g_async_queue_remove
752210 gdbus command crashes with SIGSEGV
752656 gdbusconnection: Fix signal subscription documentation
752767 Fix typo in g_hash_table_replace() documentation
753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
753285 g_menu_item_set_icon fails if called with NULL icon
* Translation updates:
Catalan
Czech
French
Indonesian
Lithuanian
Norwegian bokmål
Slovak
Spanish
Thai
Turkish
Overview of changes in GLib 2.45.4
==================================
* Bugs fixed:
727829 win32: glibconfig.h.win32 updates
741901 Clang cannot know that g_error don't return
746339 GSocket kills process when fd is not a socket
747676 gio/tests/socket fails: test_fd_roundtrip
748610 Some tests fail with non-English locales
749911 g_inet_address_to_string broken on XP/2003
749912 g_inet_address_new_from_string broken on XP/2003
750625 Should dismiss Software Updates Available notification after...
750807 G_BREAKPOINT doesn't work as intended on Darwin
751160 gtask does unnecessary work
751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
751731 GFile/DirectoryMonitor emit move events with other_file=NULL
751737 gio/tests/appmonitor test fails in 2.45.3
751798 Wrong enum type used in some test-cases
752089 make gsocketservice::active a property
752293 small cleanup: use list_free_full
* Translation updates:
Greek
Hebrew
Portuguese
Overview of changes in GLib 2.45.3
==================================
* Improve performance of g_signal_handler_disconnect for signals
with many handlers
* GDBus has gained a new call flag to allow interactive authorization
* GSettings:
- New API: g_settings_schema_list_keys
- Deprecated: g_settings_list_keys
* OS X:
- Implement GNotification
- Bump the OS X requirement to 10.9
* Windows:
- Add registry reading API
- Reimplement GAppInfo using registry information
* Bugs fixed:
666831 Support URI opening on W32
728489 property action with inverted boolean state
730168 Incorrect annotation on g_action_group_get_action_state_type return...
733325 Several regex tests fail with pcre3 8.35
734888 GLib has no helper functions to work with W32 Registry
737009 signal handler lookup doesn't scale
738185 Misleading language about "file name encoding" in the docs on g_env...
738504 Optimize UTF-8 decoding by unrolling branches and expressions
739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
739424 gnome-shell crashes when files are added, deleted, or modified in $...
739616 DBus; Add new call flag to allow interactive authorization
740308 Add g_settings_schema_list_keys() method
740516 RFE: please provide an introspectible version of g_log_set_handler
741788 Document GSettings build system integration
745013 GBinding not thread safe
747146 Implement GNotification on OSX
747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
748727 Filechooser dialog shows no icons for directories on W32
749693 GActionGroupExporter: flush queue on requests
750203 GNetworkMonitorNetlink hangs in user namespace
750322 gapplication: Make sure --help output is translated
750344 GTlsInteractionClass is missing from doc
750369 Various GBinding cleanups
750386 Race condition in g_io_condition_get_type
750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
750573 GTlsDatabaseClass is not documented
750918 genmarshal: silence register storage class warnings
751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
479730 The "g_key_file_set_comment" interface prepends '#' character to...
* Translation updates:
Hungarian
Spanish
Overview of changes in GLib 2.45.2
==================================
* Improve error reporting in glib-compile-schemas.
* Add introspection annotations to GListStore.
* Bugs fixed:
696749 win32 : failed to compile because of careless mistake in the code
723394 const parameter to GtkPopover gtk_popover_set_pointing_to
724113 gdbus-connection-loss test can fail on slow machines
725981 tap-driver.sh: internal error getting exit status
733325 Several regex tests fail with pcre3 8.35
744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
747882 gtype: Bump allowed number of children
748534 gtest: if a subprocess assertion fails, print its stdout and stderr
748612 de_DE locale used in option-context test is not supported by FreeBSD
748614 Double unref in g_socket_listener_add_inet_port
748834 glocalfilemonitor: Emit notification on rate limit change
749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
749080 gdatetime test: fails if close to rollover between seconds
749180 gnetworkaddress: add return type annotation to parse methods
749352 g_binding_unbind() fails when source is also the target
749353 GBinding does not connect to the detailed notify signal
* Translation updates:
Catalan
French
Slovak
Thai
Overview of changes in GLib 2.45.1
==================================
* The GSettings schema compiler, glib-compile-schemas has been changed
to reject schema xml that has duplicate <summary> or <description>
elements. Such elements typically occur when translations are merged
into the schema, with xml:lang attributes. This is not the correct
way to translate schemas. Instead keep the translations in the .mo
file and set the gettext-domain attribute on the <schemalist> element.
* The file monitoring infrastructure has been rewritten, and all backends
have seen major improvements.
The inotify backend is reporting events with less delay (no event will
be delayed more than 10ms) and wakeups due to file monitoring have been
significantly reduced. A CHANGES_DONE event will also be sent when new
files appear.
The poll implementation is now using the thread default main context.
The fam implmentation is now running in the worker thread.
The fen implementation has been removed, since it was unmaintained.
* The GSettings schema compiler, glib-compile-schemas, is more strict
about rejecting schemas with xml:lang style merged translations.
Schema translations should be done by specifying the gettext domain
in the xml, and keeping the translations in gettext. To avoid breaking
already-installed schemas, this change is only taking effect when
you use the --strict option.
* The hardcoded 10-thread limit of GTask's thread pool has been removed,
since it was prone to causing deadlocks. The thread pool is now allowed
to grow dynamically and will shrink back over time.
* GSimpleAsyncResult has been deprecated in favor of GTask.
* The algorithm used by GAppInfo to find default handlers for mime types
has been tweaked to prefer apps that handle the specific subtype over
default handlers for a generic supertype.
* Bug fixes:
627285 inotify file monitor hardwired delay
631597 Segmentation fault in append_escaped_text
661767 merge/improve various bits of run-in-thread functionality
687223 cleverer GThreadPool management
711547 win32: silence some build warnings
719966 glib: Add missing (nullable) and (optional) annotations
726447 Possibly an error in text string
728663 W32: wrong stat struct is used when built with MinGW-w64
728669 W32: GLocalFile can't measure size of files larger than 2^32...
730188 gsocket: Document FD ownership with g_socket_new_from_fd()
733325 Several regex tests fail with pcre3 8.35
738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
739850 GClosure: add valgrind hints
741791 gmain: Save errno when handling unix signals
744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
745255 Add support for copying sessions between GTlsClientConnections
745745 gdbus: fix out-of-bound array access
745821 Don't use __alloc_size__ attribute with clang
746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
746753 Glib-compile-resources --generate-header not using ".h" as ...
747209 glib-compile-schemas ought to reject repeated <summary> and...
747349 Conversion of gdbus to use GTask causes deadlocks
747363 gatomic: Add missing new line in API doc comment
747472 Don't ignore already-installed schemas with multiple <summa...
747541 gdbus segfaults with invalid --dest
747772 Having hardcoded utf8 strings in the source code does not p...
748019 gsocketconnection: Fix copy-pasto in documentation
748177 not all test schemas are distributed, "make distcheck" fails
* Translation updates:
Basque
Czech
Danish
Finnish
German
Hebrew
Icelandic
Norwegian bokmål
Russian
Turkish
2016-04-07 20:33:05 +02:00
|
|
|
share/gtk-doc/html/gio/api-index-2-46.html
|
|
|
|
share/gtk-doc/html/gio/api-index-2-48.html
|
2016-11-25 13:42:21 +01:00
|
|
|
share/gtk-doc/html/gio/api-index-2-50.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/gio/api-index-deprecated.html
|
|
|
|
share/gtk-doc/html/gio/api-index-full.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/gio/application.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/async.html
|
|
|
|
share/gtk-doc/html/gio/ch01.html
|
|
|
|
share/gtk-doc/html/gio/ch02.html
|
|
|
|
share/gtk-doc/html/gio/ch03.html
|
2012-10-06 22:44:04 +02:00
|
|
|
share/gtk-doc/html/gio/ch32.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/gio/ch33.html
|
|
|
|
share/gtk-doc/html/gio/ch33s02.html
|
|
|
|
share/gtk-doc/html/gio/ch33s03.html
|
2015-06-11 01:00:05 +02:00
|
|
|
share/gtk-doc/html/gio/ch34.html
|
|
|
|
share/gtk-doc/html/gio/ch34s02.html
|
|
|
|
share/gtk-doc/html/gio/ch34s03.html
|
|
|
|
share/gtk-doc/html/gio/ch34s04.html
|
|
|
|
share/gtk-doc/html/gio/ch34s05.html
|
Update glib2 to 2.48.0
- removed patch-gio_gtestdbus.c: applied upstream.
- removed patch-gio_gunixmounts.c: can no longer reproduce problem.
Overview of changes in GLib 2.48.0
==================================
* a minor build fix in the name of determinism
* a few coverity fixes
Bugs fixed:
763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
Translations updated:
Danish
Italian
Overview of changes in GLib 2.47.92
===================================
* gdbus-codegen now supports g_autoptr()
* g_get_user_runtime_dir() now reliably returns an existing directory
* g_array_remove_range() can now remove 0 items from the end of an array
* Many fixes for Windows
* build fixes
* file monitoring
* gsettings backend
* streams
* random numbers
* wide character support
* documentation improvements
* other small bugfixes
Bugs fixed:
724847 Segmentation fault on "gsettings list-recursively"
743933 gapplication: add --app-id command line option
756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
757506 gsettings: schema_list should use the passed schema's source
760694 W32: Apps linked with -mwindows make cursor busy sometimes
762202 g_win32_error_message improvements
762637 build: Unconditionally dist tapset files
762748 Undefined behavior
762937 Mention that g_clear_error can be used with an "empty" GError
763339 array: Support clearing an empty array with g_array_remove_range()
763344 g_get_user_runtime_dir(): ensure directory exists
763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
Translations updated:
Brazilian Portuguese
Czech
Finnish
French
Galician s
German
Greek
Hebrew
Hungarian
Italian
Kazakh
Korean
Latvian
Lithuanian
Occitan
Polish
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.6
==================================
* Windows usupport:
- Fixes and improvements to the GSettings registry backend
- Handle readability and writability of registry keys
- Use Unicode registry APIs
* Bugs fixed:
760852 744772 761126 747927 761337 744570 761504 761550 761843
744570 GString is missing (transfer none) annotations on many of its methods
744772 systemtap and gdb scripts install in wrong place
747927 Documentation: various small improvements
760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
761126 winiconv: update to upstream version
761337 Fix some annotations
761504 W32 registry GSettings backend does not use Unicode
761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
* Translation updates:
Brazilian Portuguese
Bulagarian
Chinese (Taiwan)
Hungarian
Polish
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.5
==================================
* the system copy of PCRE is now used by default to implement GRegex.
Configure with --with-pcre=internal if a system PCRE version
is unavailable or undesired.
* interfaces for DTLS support have been added. A new version of
glib-networking will also be required.
* GDBusMethodInvocation now drops replies if the sender set the
NO_REPLY_EXPECTED flag
* several GApplication fixes, including fixes for commandline arguments
in interpreted languages on Windows
Bugs fixed:
624186 Deprecate glib-gettext macros
734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
735754 Implement close on TLS GOutputStream
748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
752240 Add DTLS support to GIO
755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
756875 Include ntdef.h for NTSTATUS
759554 g_application_run() calls g_main_context_default() repeatidly
760199 gsettings: Install gettext ITS rules
760215 G_LIKELY/_UNLIKELY macros need more parentheses
760683 regex test: Check the expected PCRE exceptions at runtime
Translations updated:
Brazilian Portuguese
Czech
German
Lithuanian
Swedish
Overview of changes in GLib 2.47.4
==================================
* The GApplication documentation has been improved in several areas.
* Bugs fixed:
749092 gdb pretty-printers fail on Python 3 with a TypeError...
757374 macros: clean up "inline" mess
758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
759134 Add missing checks for gnulib vasnprintf()
759408 Do not use uninitialized var
756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
757372 GApplication: destroy the impl on shutdown
728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
757299 glib-compile-resources: do not leak c_name
758553 Fix gettext use
758823 file monitors: reorder some code to avoid segfault
756214 gsettings: Don't translate ""
710243 Add GParamSpec object ref management annotations
735696 xdgmime: Finer handling for cases where mmap() is not available
752983 gapplication: Acquire the main context before running
* Translation updates:
Swedish
Overview of changes in GLib 2.47.3
==================================
The inline cleanup in the last release accidentally removed three
symbols from libglib-2.0.so. It is unlikely that this will have caused
any problems because these symbols were only backup symbols for
definitions exported as inlines in the header files, but ABI is ABI.
This release corrects only this problem.
Overview of changes in GLib 2.47.2
==================================
* We have formalised the assumption that all compilers that are
interested in support 'static inline' and simplified the macros around
this considerably. Please watch for and report unintentional fallout.
* New API: hardware-assisted helpers for overflow-checked integer math.
* other fixes
Bugs fixed:
696324 gtester-report doesn't work with Python 3.x
719966 glib: Add missing (nullable) and (optional) annotations
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
755364 make gtkdoc-check happy again
756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
756988 GSequence should document each function's complexity
757294 Move G_POLLFD_FORMAT to glibconfig.h
757374 macros: clean up "inline" mess
757451 doc: fix g_task_attach_source() example
757628 gio tests fail to build when cross compiling 2.46.1
757693 Invalid free in g_local_file_trash()
757742 Fix up annotations in ghash.c
758181 GTask: fix wrong example code
Translations updated:
Greek
Hebrew
Hungarian
Norwegian bokmål
Portuguese
Scottish Gaelic
Simplified Chinese
Spanish
Overview of changes in GLib 2.47.1
==================================
* The Unicode support has been updated to version 8.0 of the Unicode standard
* GDesktopAppInfo no longer sets the DISPLAY environment variable when
launching apps. This is now done in the GAppLaunchContext implementations
when appropriate
* Bug fixes:
664740 Key-value file parser, space after integer
687223 cleverer GThreadPool management
692085 stderr and stdout are not always file descriptors 1 and 2
697907 Add interface for socket-like things (GSocket, DTLS, etc)
735754 Implement close on TLS GOutputStream
737116 Add functions to print GSocketConnectables and addresses as strings
743011 Minor additions to GError documentation
749161 undefined reference to `__imp__stat32i64'
749314 Cannot restore a just-trashed file
751924 Add recvmmsg()-like API on GSocket
752240 Add DTLS support to GIO
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
753310 Remove `#pragma GCC system_header` from gmessages.h
753935 Update example namespace and class names in GObject tutorial
754855 Object instantiation documentation refers to example that no longer ex...
754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
754994 g_date_time_get_second () sometimes returns an off-by-one result
755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
755351 Example still contains g_autoptr(gchar)
755355 Move GStrv to glib.h so it can be used with g_auto()
755374 g_variant_get_child(): flatten-first logic on '&'
755496 glib 2.46 fails GStreamer test suite
755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
755795 2.46 considers empty files as octet-stream rather than text (leads to...
755961 Fix up annotations in gbytes.c
756053 MSVC doesn't understand the symbol 'msghdr'
756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
756077 testutils: remove internal ABI comment
756099 g_main_context_query(): Annotate @n_fds as (in) parameter
756139 musl: ctors called in the wrong order
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
756316 GSequence should provide fast api to check if empty
756382 snprintf used on Windows with VS2015 doesn't support %n
756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
756550 gtypes.h: Make G_MININTn literals negative
756875 Include ntdef.h for NTSTATUS
756952 giomodule: return a copy of module name
* Translation updates:
Basque
Czech
Serbian
Serbian Latin
Vietnamese
Overview of changes in GLib 2.46.0
==================================
* Disable runtime-deprecation warnings
* Fix marshalling of flags on bigendian 64bit architectures
* Translation updates
Brazilian Portuguese
Danish
German
Latvian
Russian
Turkish
Overview of changes in GLib 2.45.8
==================================
* utf8 validation and utf8-to-ucs4 conversion are faster
* Small speedups to property change notification
* Various other small optimizations for GQuark, GData
* Bugs fixed:
696426 GParamSpecTypeInfo do not need to be static
735429 Cleanup MSVC Project Files Generation
738504 Optimize UTF-8 decoding by unrolling branches and expressions
742903 Add missing (transfer) annotation to GString
748633 g_set_object order of operations
754431 Fix build of glib/gstrfuncs.c on Windows
754560 gioerror: Add more mappings for WinSock error codes
754582 Glib cannot compile
754601 Make g_strerror work with non-glibc POSIX systems
754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
754788 more g_strerror stuff
754831 autocleanups: Add GString type
754924 Improve test coverage of g_utf8_validate() by added known-...
754986 Avoid unnecessary signal emission during draw
* Translation updates:
Italian
Kazakh
Korean
Lithuanian
Slovenian
Swedish
Overview of changes in GLib 2.45.7
==================================
* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
backends (e.g. cloud storage).
* GFileMonitor: Make the inotify backend work with atomic renames again
* GSettings: change notification is again working unconditionally
* GListStore has a sort function now
* Test infrastructure:
- Tests are now required to have unique names
- TAP support has been improved
- A macro for asserting that two memory regions have identical content
has been added
* Bugs fixed:
708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
742849 inotify: send paired events to both sides
744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
747364 Fix GError leak in g_file_query_writable_namespaces()
749492 Support file creation time on FreeBSD and NetBSD
752769 (g_socket_receive_message | g_socket_send_message) performance
753745 glib-genmarshal still needed for cross-compilation
754152 Add g_list_store_sort
754211 Memory leak in g_file_enumerator_iterate ()
754264 GLib 2.44 certificate chain construction fails if the PEM incl...
754283 gtestutils: add g_assert_cmpmem()
754284 gtestutils: print the TAP test plan first, not last
754286 misc gtestutils fixes
754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
* Translation updates:
Chinese (Taiwan)
French
Galician
Greek
Hebrew
Hungarian
Indonesian
Polish
Portuguese
Overview of changes in GLib 2.45.6
==================================
* Fix a test failure and a build failure
Overview of changes in GLib 2.45.5
==================================
* GNetworkMonitor now provides information about metered networks
* g_mem_set_vtable has been deprecated; it has not been working for
quite a while. The recommendation is to use valgrind, or replace
malloc itself.
* Bugs fixed:
656325 Make GDBusInterfaceVTable binding friendly
741779 Documentation tweaks addressing real-world API misuses
741822 Fails to build with VS 2015
742386 gdbusconnection: Don't g_printerr() when exiting
743018 gobject: Add more cross-links between documentation pages
750282 Add g_network_monitor_get_network_metered() to get if the connection...
751358 GFileMonitor doesn't react to "mv some-file watched-file"
751592 Stop using GMemVtable
751598 Stop 'handle-local-options' propagation when callback reports an err...
751610 g_str_hash produces collisions with strings of length 2
751751 Wrong docs of g_async_queue_remove
752210 gdbus command crashes with SIGSEGV
752656 gdbusconnection: Fix signal subscription documentation
752767 Fix typo in g_hash_table_replace() documentation
753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
753285 g_menu_item_set_icon fails if called with NULL icon
* Translation updates:
Catalan
Czech
French
Indonesian
Lithuanian
Norwegian bokmål
Slovak
Spanish
Thai
Turkish
Overview of changes in GLib 2.45.4
==================================
* Bugs fixed:
727829 win32: glibconfig.h.win32 updates
741901 Clang cannot know that g_error don't return
746339 GSocket kills process when fd is not a socket
747676 gio/tests/socket fails: test_fd_roundtrip
748610 Some tests fail with non-English locales
749911 g_inet_address_to_string broken on XP/2003
749912 g_inet_address_new_from_string broken on XP/2003
750625 Should dismiss Software Updates Available notification after...
750807 G_BREAKPOINT doesn't work as intended on Darwin
751160 gtask does unnecessary work
751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
751731 GFile/DirectoryMonitor emit move events with other_file=NULL
751737 gio/tests/appmonitor test fails in 2.45.3
751798 Wrong enum type used in some test-cases
752089 make gsocketservice::active a property
752293 small cleanup: use list_free_full
* Translation updates:
Greek
Hebrew
Portuguese
Overview of changes in GLib 2.45.3
==================================
* Improve performance of g_signal_handler_disconnect for signals
with many handlers
* GDBus has gained a new call flag to allow interactive authorization
* GSettings:
- New API: g_settings_schema_list_keys
- Deprecated: g_settings_list_keys
* OS X:
- Implement GNotification
- Bump the OS X requirement to 10.9
* Windows:
- Add registry reading API
- Reimplement GAppInfo using registry information
* Bugs fixed:
666831 Support URI opening on W32
728489 property action with inverted boolean state
730168 Incorrect annotation on g_action_group_get_action_state_type return...
733325 Several regex tests fail with pcre3 8.35
734888 GLib has no helper functions to work with W32 Registry
737009 signal handler lookup doesn't scale
738185 Misleading language about "file name encoding" in the docs on g_env...
738504 Optimize UTF-8 decoding by unrolling branches and expressions
739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
739424 gnome-shell crashes when files are added, deleted, or modified in $...
739616 DBus; Add new call flag to allow interactive authorization
740308 Add g_settings_schema_list_keys() method
740516 RFE: please provide an introspectible version of g_log_set_handler
741788 Document GSettings build system integration
745013 GBinding not thread safe
747146 Implement GNotification on OSX
747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
748727 Filechooser dialog shows no icons for directories on W32
749693 GActionGroupExporter: flush queue on requests
750203 GNetworkMonitorNetlink hangs in user namespace
750322 gapplication: Make sure --help output is translated
750344 GTlsInteractionClass is missing from doc
750369 Various GBinding cleanups
750386 Race condition in g_io_condition_get_type
750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
750573 GTlsDatabaseClass is not documented
750918 genmarshal: silence register storage class warnings
751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
479730 The "g_key_file_set_comment" interface prepends '#' character to...
* Translation updates:
Hungarian
Spanish
Overview of changes in GLib 2.45.2
==================================
* Improve error reporting in glib-compile-schemas.
* Add introspection annotations to GListStore.
* Bugs fixed:
696749 win32 : failed to compile because of careless mistake in the code
723394 const parameter to GtkPopover gtk_popover_set_pointing_to
724113 gdbus-connection-loss test can fail on slow machines
725981 tap-driver.sh: internal error getting exit status
733325 Several regex tests fail with pcre3 8.35
744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
747882 gtype: Bump allowed number of children
748534 gtest: if a subprocess assertion fails, print its stdout and stderr
748612 de_DE locale used in option-context test is not supported by FreeBSD
748614 Double unref in g_socket_listener_add_inet_port
748834 glocalfilemonitor: Emit notification on rate limit change
749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
749080 gdatetime test: fails if close to rollover between seconds
749180 gnetworkaddress: add return type annotation to parse methods
749352 g_binding_unbind() fails when source is also the target
749353 GBinding does not connect to the detailed notify signal
* Translation updates:
Catalan
French
Slovak
Thai
Overview of changes in GLib 2.45.1
==================================
* The GSettings schema compiler, glib-compile-schemas has been changed
to reject schema xml that has duplicate <summary> or <description>
elements. Such elements typically occur when translations are merged
into the schema, with xml:lang attributes. This is not the correct
way to translate schemas. Instead keep the translations in the .mo
file and set the gettext-domain attribute on the <schemalist> element.
* The file monitoring infrastructure has been rewritten, and all backends
have seen major improvements.
The inotify backend is reporting events with less delay (no event will
be delayed more than 10ms) and wakeups due to file monitoring have been
significantly reduced. A CHANGES_DONE event will also be sent when new
files appear.
The poll implementation is now using the thread default main context.
The fam implmentation is now running in the worker thread.
The fen implementation has been removed, since it was unmaintained.
* The GSettings schema compiler, glib-compile-schemas, is more strict
about rejecting schemas with xml:lang style merged translations.
Schema translations should be done by specifying the gettext domain
in the xml, and keeping the translations in gettext. To avoid breaking
already-installed schemas, this change is only taking effect when
you use the --strict option.
* The hardcoded 10-thread limit of GTask's thread pool has been removed,
since it was prone to causing deadlocks. The thread pool is now allowed
to grow dynamically and will shrink back over time.
* GSimpleAsyncResult has been deprecated in favor of GTask.
* The algorithm used by GAppInfo to find default handlers for mime types
has been tweaked to prefer apps that handle the specific subtype over
default handlers for a generic supertype.
* Bug fixes:
627285 inotify file monitor hardwired delay
631597 Segmentation fault in append_escaped_text
661767 merge/improve various bits of run-in-thread functionality
687223 cleverer GThreadPool management
711547 win32: silence some build warnings
719966 glib: Add missing (nullable) and (optional) annotations
726447 Possibly an error in text string
728663 W32: wrong stat struct is used when built with MinGW-w64
728669 W32: GLocalFile can't measure size of files larger than 2^32...
730188 gsocket: Document FD ownership with g_socket_new_from_fd()
733325 Several regex tests fail with pcre3 8.35
738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
739850 GClosure: add valgrind hints
741791 gmain: Save errno when handling unix signals
744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
745255 Add support for copying sessions between GTlsClientConnections
745745 gdbus: fix out-of-bound array access
745821 Don't use __alloc_size__ attribute with clang
746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
746753 Glib-compile-resources --generate-header not using ".h" as ...
747209 glib-compile-schemas ought to reject repeated <summary> and...
747349 Conversion of gdbus to use GTask causes deadlocks
747363 gatomic: Add missing new line in API doc comment
747472 Don't ignore already-installed schemas with multiple <summa...
747541 gdbus segfaults with invalid --dest
747772 Having hardcoded utf8 strings in the source code does not p...
748019 gsocketconnection: Fix copy-pasto in documentation
748177 not all test schemas are distributed, "make distcheck" fails
* Translation updates:
Basque
Czech
Danish
Finnish
German
Hebrew
Icelandic
Norwegian bokmål
Russian
Turkish
2016-04-07 20:33:05 +02:00
|
|
|
share/gtk-doc/html/gio/ch34s06.html
|
|
|
|
share/gtk-doc/html/gio/ch34s07.html
|
|
|
|
share/gtk-doc/html/gio/ch35.html
|
|
|
|
share/gtk-doc/html/gio/ch35s02.html
|
|
|
|
share/gtk-doc/html/gio/ch35s03.html
|
|
|
|
share/gtk-doc/html/gio/ch35s04.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/gio/conversion.html
|
2015-06-11 01:00:05 +02:00
|
|
|
share/gtk-doc/html/gio/data-models.html
|
Update glib2 to 2.18.0.
Based on patch provided by Juan RP in pkgsrc-users ml.
Overview of Changes from GLib 2.17.7 to GLib 2.18.0
===================================================
* Win32:
- rework the g_poll() implementation to match poll() semantics more closely
* Bugs fixed:
324234 Using g_io_add_watch_full() to wait for connect() to return...
548278 Async GETs connections are always terminated unexpectedly...
500246 Bug fixes for giowin32
523939 Example program for GValue
550096 GBookmarkFile parser is not forward compatible
550040 Move GString, rand and printf tests to the unit test framework
550104 trivial documentation fix for g_get_home_dir
548988 g_file_replace fails on Windows when the target file exists
550059 Wrong docs for g_emblemed_icon_add_emblem
548800 Missing a g_object_get_type function
550056 Missing documentation for g_emblemed_icon_get_emblems
* Updated translations:
Bulgarian (bg)
Czech (cs)
German (de)
Estonian (et)
Basque (eu)
French (fr)
Hebrew (he)
Hungarian (hu)
Italian (it)
Japanese (ja)
Lithuanian (lt)
Maithili (mai)
Dutch (nl)
Swedish (sv)
Thai (th)
Ukrainian (uk)
Vietnamese (vi)
Overview of Changes from GLib 2.17.6 to GLib 2.17.7
===================================================
* More fixes for 64-bit Windows
* GIO
- Add a vfs implementation for HTTP and HTTPS URIs on Windows
* Bugs fixed:
546329 API docs for g_utf8_normalize() are incorrect
546876 Modify GMarkup parser to accept  .. 
547200 g_utf8_find_next_char() issues
547637 unconditional #include of sys/statfs.h in configure
547337 G_DISABLE_DEPRECATED breaks tests build
547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
502498 Test framework assertion failures should follow gcc
546371 Improve docs re g_file_monitor
546483 GThemedIcon:use-default-fallbacks is not readable without...
546132 GFileIcon is bindings-unfriendly
542156 zfs mount in home directory shown on nautilus desktop
535124 umask 002 not being applied for new directories...
547080 g_file_copy leaks expected errors
546582 Callbacks from GFileMonitor present a GFile...
547262 Missing link in the docs
* Updated translations:
Arabic (ar)
Catalan (ca)
Spanish (es)
Basque (eu)
Finnish (fi)
Galician (gl)
Hebrew (he)
Marathi (mr)
Norwegian bokmål (nb)
Portugese (pt)
Brazilian Portugese (pt_BR)
Swedish (sv)
Thai (th)
Overview of Changes from GLib 2.17.4 to GLib 2.17.6
===================================================
* Fix problems on 64-bit Windows
* g_markup_context_get_user_data: New function to access
the user_data outside of callbacks
* GIO
- g_mount_guess_content_type_sync: synchronous version of
g_mount_guess_content_type
- GEmblem: A GIcon implementation that adds emblem-related
metadata to icons
- GEmblemedIcon: A GIcon implementation that can add emblems
to icons
* Bugs fixed:
544088 option_test_LDADD is left in tests/Makefile.am
544465 gmarkup makes it hard to use pre-rolled parsers
545485 Implicit declaration of utime()
545798 "Since: 2.18" mark is missing in g_set_error_literal...
544140 fam-helper 64-bit issue
529694 SELinux context setting support
545157 wrong/no list of "open with" applications for .cc...
545203 gfile.c: argument is different type
545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
544177 Fix trivial cut and paste error in documentation
545395 Language tweak for g_value_set_string* docs
541036 Gnumeric crashes when trying to open Desktop...
546079 leak in xdgmime
545395 Language tweak for g_value_set_string* docs
546017 Don't copy attributes when copying a symlink
* Updated translations:
Arabic (ar)
Estonian (et)
Galician (gl)
Italian (it)
Japanese (ja)
Korean (ko)
Norwegian bokmål (nb)
Pashto (ps)
Portugese (pt)
Overview of Changes from GLib 2.17.3 to GLib 2.17.4
===================================================
* GIO:
- New API to handle content types: g_mount_guess_content_type,
g_content_type_guess_for_tree.
- Export the eject-button signal on the volume monitor class
- New API to enable out-of-process volume monitors:
g_volume_get_activation_root
* GObject:
- New API to handle signals without slots in the class structure:
g_signal_new_class_handler, g_signal_override_class_handler
* Internationalization:
- Add an NC_ macro that is a no-op equivalent of C_
* GMarkup:
- Add two new functions g_markup_parse_context_push,
g_markup_parse_context_pop to support "subparsers"
* Bugs fixed:
541208 Functions to easily install and use signals without...
541507 Ambiguous description of assigned characters in the...
543040 async reading on dummy file will crash on GIO_USE_VFS=local
543560 enable gio-FEN back-end warnings on Solaris will crash...
528317 GRegex does not allow recursion limit
337518 GMarkup: Subparser support
541794 drive-eject-button signal
541793 activation root for volumes
467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
428048 2 of 51 tests fail on Solaris
542332 small fix for error message in GMarkup
482413 get_contents_stdio -- overflow and memory corruption
406120 g_ascii_strtod
334234 "printf" format error
536996 Missing noop i18n macro equivalent to C_
540616 mem leak in filechooser button
539229 gobject-query calls itself query
521589 [RFC] gobject documentation should mention Vala
543168 Description of G_SLICE=debug-blocks discourages its use
543220 Case collision on gio-extension-points.html
530759 update the gobject tutorial to the XXI century
535223 gbookmark file inefficiency ...
543504 crash in Epiphany Web Browser: Opening local file
* Updated translation:
German (de)
Estonian (et)
Pashto (ps)
Albanian (sq)
Thai (th)
Traditional Chinese (zh_HK)
Traditional Chinese (zh_TW)
Overview of Changes from GLib 2.17.1 to GLib 2.17.3
===================================================
* PCRE
- fix for CVE-2008-2371
* Bugs fixed:
538119 glib's mainloop leaks a pipe to sub-processes
537635 Corrections and improvements to g_time_val_{to,from}_iso8601
539067 The document g_io_channel_win32_new_fd() says...
535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
539123 annotate g_d[n]gettext with G_GNUC_FORMAT
539074 Cannot get exit status with g_spawn_command_line_sync
316221 G_LOCK warns about breaking strict-aliasing rules
539770 migrate gstrfunc unit tests to gtest
539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
538044 unconditional use of LC_MESSAGES
540545 Monotonic time and timer offset
535947 want g_set_error_literal
539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF
536252 GFileEnumerator should allow access to the containing GFile
538362 Get Win32 icons back in the file chooser
540802 g_list_prepend doesn't concat lists
540423 unrecoverable error after g_seekable_truncate
538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
539090 g_content_type_from_mime_type() should unalias
540331 g_file_append_to () documentation: can return NULL
534639 add g_desktop_app_info_new_from_keyfile
536733 gio build failure on Irix
536160 Add g_file_monitor()
538127 FileChooser broken on win32
531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
538564 gio should have gio-types.h
540047 glib-genmarshal.c: '#include <io.h>' is too before
Updated translations:
Korean (ko)
Occitan (oc)
Overview of Changes from GLib 2.17.0 to GLib 2.17.1
===================================================
* New function: g_utime(), a gstdio wrapper for utime()
* New functions: g_dgettext() and g_dngettext(), wrappers
for corresponding gettext functions with added functionaliy
* Support the latest version of the shared-mime spec, including
icons for mime types
* New function: g_themed_icon_prepend_name()
* Bugs fixed:
535418 Please document which glib version defines goffset
528715 Misprint in the description of the interface g_type_class_add_private
528714 Misprint in the description of the interface g_param_spec_flags
537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
530527 Misprint in the description of the interface
g_cclosure_marshal_VOID__FLAGS
530526 Misprint in the description of the fields 'class_init' and
'class_finalize' of the structure GTypeInfo
528719 Improvement to the documentation of the "g_object_connect" interface
528172 gtk_signal_handlers_unblock_* functions return value
amount of matched signals, not amount of actually unblocked
528717 Misprint in the description of the parameter 'type_id' for
the interface g_type_register_fundamental
528716 Misprint in the description of the parameter 'iface_data' for
the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc
537555 GObject instantiation not thread safe
537546 'desktop' shortcut in file chooser looks like a generic folder
537392 Additional colon in xattr name
536641 Filesystem querying in gio does not list AFS and autofs file systems
528600 g_dummy_file_get_parent("scheme://example.com/")
503071 Application direction changes to right to left even if theres no
translation
502511 g_assert_cmphex prints invalid message
338162 Use po/LINGUAS
314453 Nautilus crashes in Solaris when browsing the attached file
529321 make check fails in glib/pcre
455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD
fallback to $HOME/Desktop if xdg-user-dirs is not in use
498732 g_key_file_to_data cannot fail
511367 add g_file_make_directory_with_parents
531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with
gcc 4.0 or newer
536158 also bump GHashTable version when a node is removed via
g_hash_table_iter_remove()/g_hash_table_iter_steal()
531403 g_utf8_collate broken on Mac
535628 test/patterntest.c still includes gpattern.h directly
535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
* Translation updates:
Arabic (ar)
German (de)
Italian (it)
Norwegian bokmål (nb)
Thai (th)
Overview of Changes from GLib 2.16.x to GLib 2.17.0
===================================================
* Update to Unicode 5.1
* Update included libcharset to the one shipped with libiconv 0.12
* Update included PCRE to 7.7
* Enforce that only toplevel headers are directly included.
This is turned on by default for GObject and GIO. To turn
it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
* Fix library version of GIO. GLib 2.16 shipped with libgio-2.0.so.0.0.0
* On Solaris, use FEN for file monitoring in GIO
* Use the GIO_EXTRA_MODULES environment variable to find
additional GIO modules
* G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
function attribute
* g_checksum_reset: New function to reset the state of a GChecksum
* g_unix_mount_monitor_set_rate_limit: New function to limit the
rate at which events are reported
* g_file_query_file_type: New utility function to query the type of
a file
* g_memory_output_stream_get_data_size: New function to obtain the
size of the written data.
* Bugs fixed:
522292 Gives warnings in glib/gutils.h with GCC in C99 mode
523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
518160 replace two g_strdup_printf calls in GBookmarkFile
523877 gbookmarkfile: avoid using g_string_append_printf() and
other optimizations
525192 100% CPU if run main loop with no IO sources
315437 extern inline -> static inline
524314 g_convert() on Win32 implicitly converts full width
alphanumerics into half width
525732 Error in documentation for g_list_first
525674 A typo in gmarkup.c
448943 g_timeout_add_seconds() problems
525972 UCS-4 not in the new win_iconv implementation
526619 make test-report crash
491554 Update to Unicode 5.1.0
519137 g_slice_dup macro needs cast for 64-bit platform
528752 Win32 build and SSL not working
530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
528667 Typos in testing module documentation
459905 Bug in wcwidth data
534085 g_unichar_iswide_cjk() has a totally wrong table
501651 Update glib/libcharset
519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
534319 GLib's .pc files could use Libs.private
534137 Typo in g_spawn_async_with_pipes doc
517419 gio win32 directory monitor
526796 Wrong order of arguments in g_file_copy's fallback
530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
532965 Should not return filesystem::free for certain file systems
525553 fix typo and nitpicking in GArray documentation
526572 Missing * in declaration of parent_class in Object
Destruction section of GObject Reference Manual
528648 Extra >s in Object Construction section
535021 g_param_spec_internal documentation should
describe purpose of nick and blurb
521513 Firefox crash when using file picker
528433 gdesktopappinfo snafu ...
533369 API g_file_info_get_attribute_string () unables to get "...
521045 glib f_fstypename miscellany
521672 compile error
521946 control rate limit on GUnixMountMonitor
522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
523015 Implement sliding window based upload operation
523019 Use new GCC 4 feature
523338 list nfs4 as a nfs mount type
524350 Make glib build without NLS again
524579 g_file_copy reports wrong total on progress callback for ...
524742 A typo in gtestutils.c.
524950 Minor documentation typos.
525866 the user directory should not be considered as a mount to...
526320 should not list mounts that the user doesn't have permiss...
527132 nautilus crash when making ftp connection
532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
534759 Build failure in gio
534764 Typo in error produced by g_file_make_directory
521851 Redudant tests in gunixmounts.c
524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
534177 Invalid description of the interface g_cclosure_marshal_S...
520715 Add GFile method g_file_query_file_type
523039 nautilus can't access to trash/computer/network if gvfs i...
* Updated translations:
Arabic (ar)
Bulgarian (bg)
Catalan (ca)
Czech (cs)
Greek (el)
Candian English (en_CA)
British English (en_GB)
Spanish (es)
Estonian (et)
Basque (eu)
Galician (gl)
Hebrew (he)
Hungarian (hu)
Japanese (ja)
Lithuanian (lt)
Norwegian bokmål (nb)
Dutch (nl)
Occitan (oc)
Portugese (pt)
Russian (ru)
Slovak (sk)
Albanian (sq)
Swedish (sv)
Turkish (tr)
Vietnamese (vi)
2008-09-06 13:07:20 +02:00
|
|
|
share/gtk-doc/html/gio/extending-gio.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/extending.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/failable_initialization.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/file_mon.html
|
|
|
|
share/gtk-doc/html/gio/file_ops.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/gio/gapplication-tool.html
|
2012-01-29 11:46:52 +01:00
|
|
|
share/gtk-doc/html/gio/gdbus-codegen.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/gdbus-convenience.html
|
Update glib2 to 2.48.0
- removed patch-gio_gtestdbus.c: applied upstream.
- removed patch-gio_gunixmounts.c: can no longer reproduce problem.
Overview of changes in GLib 2.48.0
==================================
* a minor build fix in the name of determinism
* a few coverity fixes
Bugs fixed:
763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
Translations updated:
Danish
Italian
Overview of changes in GLib 2.47.92
===================================
* gdbus-codegen now supports g_autoptr()
* g_get_user_runtime_dir() now reliably returns an existing directory
* g_array_remove_range() can now remove 0 items from the end of an array
* Many fixes for Windows
* build fixes
* file monitoring
* gsettings backend
* streams
* random numbers
* wide character support
* documentation improvements
* other small bugfixes
Bugs fixed:
724847 Segmentation fault on "gsettings list-recursively"
743933 gapplication: add --app-id command line option
756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
757506 gsettings: schema_list should use the passed schema's source
760694 W32: Apps linked with -mwindows make cursor busy sometimes
762202 g_win32_error_message improvements
762637 build: Unconditionally dist tapset files
762748 Undefined behavior
762937 Mention that g_clear_error can be used with an "empty" GError
763339 array: Support clearing an empty array with g_array_remove_range()
763344 g_get_user_runtime_dir(): ensure directory exists
763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
Translations updated:
Brazilian Portuguese
Czech
Finnish
French
Galician s
German
Greek
Hebrew
Hungarian
Italian
Kazakh
Korean
Latvian
Lithuanian
Occitan
Polish
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.6
==================================
* Windows usupport:
- Fixes and improvements to the GSettings registry backend
- Handle readability and writability of registry keys
- Use Unicode registry APIs
* Bugs fixed:
760852 744772 761126 747927 761337 744570 761504 761550 761843
744570 GString is missing (transfer none) annotations on many of its methods
744772 systemtap and gdb scripts install in wrong place
747927 Documentation: various small improvements
760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
761126 winiconv: update to upstream version
761337 Fix some annotations
761504 W32 registry GSettings backend does not use Unicode
761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
* Translation updates:
Brazilian Portuguese
Bulagarian
Chinese (Taiwan)
Hungarian
Polish
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.5
==================================
* the system copy of PCRE is now used by default to implement GRegex.
Configure with --with-pcre=internal if a system PCRE version
is unavailable or undesired.
* interfaces for DTLS support have been added. A new version of
glib-networking will also be required.
* GDBusMethodInvocation now drops replies if the sender set the
NO_REPLY_EXPECTED flag
* several GApplication fixes, including fixes for commandline arguments
in interpreted languages on Windows
Bugs fixed:
624186 Deprecate glib-gettext macros
734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
735754 Implement close on TLS GOutputStream
748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
752240 Add DTLS support to GIO
755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
756875 Include ntdef.h for NTSTATUS
759554 g_application_run() calls g_main_context_default() repeatidly
760199 gsettings: Install gettext ITS rules
760215 G_LIKELY/_UNLIKELY macros need more parentheses
760683 regex test: Check the expected PCRE exceptions at runtime
Translations updated:
Brazilian Portuguese
Czech
German
Lithuanian
Swedish
Overview of changes in GLib 2.47.4
==================================
* The GApplication documentation has been improved in several areas.
* Bugs fixed:
749092 gdb pretty-printers fail on Python 3 with a TypeError...
757374 macros: clean up "inline" mess
758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
759134 Add missing checks for gnulib vasnprintf()
759408 Do not use uninitialized var
756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
757372 GApplication: destroy the impl on shutdown
728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
757299 glib-compile-resources: do not leak c_name
758553 Fix gettext use
758823 file monitors: reorder some code to avoid segfault
756214 gsettings: Don't translate ""
710243 Add GParamSpec object ref management annotations
735696 xdgmime: Finer handling for cases where mmap() is not available
752983 gapplication: Acquire the main context before running
* Translation updates:
Swedish
Overview of changes in GLib 2.47.3
==================================
The inline cleanup in the last release accidentally removed three
symbols from libglib-2.0.so. It is unlikely that this will have caused
any problems because these symbols were only backup symbols for
definitions exported as inlines in the header files, but ABI is ABI.
This release corrects only this problem.
Overview of changes in GLib 2.47.2
==================================
* We have formalised the assumption that all compilers that are
interested in support 'static inline' and simplified the macros around
this considerably. Please watch for and report unintentional fallout.
* New API: hardware-assisted helpers for overflow-checked integer math.
* other fixes
Bugs fixed:
696324 gtester-report doesn't work with Python 3.x
719966 glib: Add missing (nullable) and (optional) annotations
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
755364 make gtkdoc-check happy again
756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
756988 GSequence should document each function's complexity
757294 Move G_POLLFD_FORMAT to glibconfig.h
757374 macros: clean up "inline" mess
757451 doc: fix g_task_attach_source() example
757628 gio tests fail to build when cross compiling 2.46.1
757693 Invalid free in g_local_file_trash()
757742 Fix up annotations in ghash.c
758181 GTask: fix wrong example code
Translations updated:
Greek
Hebrew
Hungarian
Norwegian bokmål
Portuguese
Scottish Gaelic
Simplified Chinese
Spanish
Overview of changes in GLib 2.47.1
==================================
* The Unicode support has been updated to version 8.0 of the Unicode standard
* GDesktopAppInfo no longer sets the DISPLAY environment variable when
launching apps. This is now done in the GAppLaunchContext implementations
when appropriate
* Bug fixes:
664740 Key-value file parser, space after integer
687223 cleverer GThreadPool management
692085 stderr and stdout are not always file descriptors 1 and 2
697907 Add interface for socket-like things (GSocket, DTLS, etc)
735754 Implement close on TLS GOutputStream
737116 Add functions to print GSocketConnectables and addresses as strings
743011 Minor additions to GError documentation
749161 undefined reference to `__imp__stat32i64'
749314 Cannot restore a just-trashed file
751924 Add recvmmsg()-like API on GSocket
752240 Add DTLS support to GIO
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
753310 Remove `#pragma GCC system_header` from gmessages.h
753935 Update example namespace and class names in GObject tutorial
754855 Object instantiation documentation refers to example that no longer ex...
754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
754994 g_date_time_get_second () sometimes returns an off-by-one result
755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
755351 Example still contains g_autoptr(gchar)
755355 Move GStrv to glib.h so it can be used with g_auto()
755374 g_variant_get_child(): flatten-first logic on '&'
755496 glib 2.46 fails GStreamer test suite
755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
755795 2.46 considers empty files as octet-stream rather than text (leads to...
755961 Fix up annotations in gbytes.c
756053 MSVC doesn't understand the symbol 'msghdr'
756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
756077 testutils: remove internal ABI comment
756099 g_main_context_query(): Annotate @n_fds as (in) parameter
756139 musl: ctors called in the wrong order
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
756316 GSequence should provide fast api to check if empty
756382 snprintf used on Windows with VS2015 doesn't support %n
756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
756550 gtypes.h: Make G_MININTn literals negative
756875 Include ntdef.h for NTSTATUS
756952 giomodule: return a copy of module name
* Translation updates:
Basque
Czech
Serbian
Serbian Latin
Vietnamese
Overview of changes in GLib 2.46.0
==================================
* Disable runtime-deprecation warnings
* Fix marshalling of flags on bigendian 64bit architectures
* Translation updates
Brazilian Portuguese
Danish
German
Latvian
Russian
Turkish
Overview of changes in GLib 2.45.8
==================================
* utf8 validation and utf8-to-ucs4 conversion are faster
* Small speedups to property change notification
* Various other small optimizations for GQuark, GData
* Bugs fixed:
696426 GParamSpecTypeInfo do not need to be static
735429 Cleanup MSVC Project Files Generation
738504 Optimize UTF-8 decoding by unrolling branches and expressions
742903 Add missing (transfer) annotation to GString
748633 g_set_object order of operations
754431 Fix build of glib/gstrfuncs.c on Windows
754560 gioerror: Add more mappings for WinSock error codes
754582 Glib cannot compile
754601 Make g_strerror work with non-glibc POSIX systems
754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
754788 more g_strerror stuff
754831 autocleanups: Add GString type
754924 Improve test coverage of g_utf8_validate() by added known-...
754986 Avoid unnecessary signal emission during draw
* Translation updates:
Italian
Kazakh
Korean
Lithuanian
Slovenian
Swedish
Overview of changes in GLib 2.45.7
==================================
* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
backends (e.g. cloud storage).
* GFileMonitor: Make the inotify backend work with atomic renames again
* GSettings: change notification is again working unconditionally
* GListStore has a sort function now
* Test infrastructure:
- Tests are now required to have unique names
- TAP support has been improved
- A macro for asserting that two memory regions have identical content
has been added
* Bugs fixed:
708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
742849 inotify: send paired events to both sides
744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
747364 Fix GError leak in g_file_query_writable_namespaces()
749492 Support file creation time on FreeBSD and NetBSD
752769 (g_socket_receive_message | g_socket_send_message) performance
753745 glib-genmarshal still needed for cross-compilation
754152 Add g_list_store_sort
754211 Memory leak in g_file_enumerator_iterate ()
754264 GLib 2.44 certificate chain construction fails if the PEM incl...
754283 gtestutils: add g_assert_cmpmem()
754284 gtestutils: print the TAP test plan first, not last
754286 misc gtestutils fixes
754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
* Translation updates:
Chinese (Taiwan)
French
Galician
Greek
Hebrew
Hungarian
Indonesian
Polish
Portuguese
Overview of changes in GLib 2.45.6
==================================
* Fix a test failure and a build failure
Overview of changes in GLib 2.45.5
==================================
* GNetworkMonitor now provides information about metered networks
* g_mem_set_vtable has been deprecated; it has not been working for
quite a while. The recommendation is to use valgrind, or replace
malloc itself.
* Bugs fixed:
656325 Make GDBusInterfaceVTable binding friendly
741779 Documentation tweaks addressing real-world API misuses
741822 Fails to build with VS 2015
742386 gdbusconnection: Don't g_printerr() when exiting
743018 gobject: Add more cross-links between documentation pages
750282 Add g_network_monitor_get_network_metered() to get if the connection...
751358 GFileMonitor doesn't react to "mv some-file watched-file"
751592 Stop using GMemVtable
751598 Stop 'handle-local-options' propagation when callback reports an err...
751610 g_str_hash produces collisions with strings of length 2
751751 Wrong docs of g_async_queue_remove
752210 gdbus command crashes with SIGSEGV
752656 gdbusconnection: Fix signal subscription documentation
752767 Fix typo in g_hash_table_replace() documentation
753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
753285 g_menu_item_set_icon fails if called with NULL icon
* Translation updates:
Catalan
Czech
French
Indonesian
Lithuanian
Norwegian bokmål
Slovak
Spanish
Thai
Turkish
Overview of changes in GLib 2.45.4
==================================
* Bugs fixed:
727829 win32: glibconfig.h.win32 updates
741901 Clang cannot know that g_error don't return
746339 GSocket kills process when fd is not a socket
747676 gio/tests/socket fails: test_fd_roundtrip
748610 Some tests fail with non-English locales
749911 g_inet_address_to_string broken on XP/2003
749912 g_inet_address_new_from_string broken on XP/2003
750625 Should dismiss Software Updates Available notification after...
750807 G_BREAKPOINT doesn't work as intended on Darwin
751160 gtask does unnecessary work
751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
751731 GFile/DirectoryMonitor emit move events with other_file=NULL
751737 gio/tests/appmonitor test fails in 2.45.3
751798 Wrong enum type used in some test-cases
752089 make gsocketservice::active a property
752293 small cleanup: use list_free_full
* Translation updates:
Greek
Hebrew
Portuguese
Overview of changes in GLib 2.45.3
==================================
* Improve performance of g_signal_handler_disconnect for signals
with many handlers
* GDBus has gained a new call flag to allow interactive authorization
* GSettings:
- New API: g_settings_schema_list_keys
- Deprecated: g_settings_list_keys
* OS X:
- Implement GNotification
- Bump the OS X requirement to 10.9
* Windows:
- Add registry reading API
- Reimplement GAppInfo using registry information
* Bugs fixed:
666831 Support URI opening on W32
728489 property action with inverted boolean state
730168 Incorrect annotation on g_action_group_get_action_state_type return...
733325 Several regex tests fail with pcre3 8.35
734888 GLib has no helper functions to work with W32 Registry
737009 signal handler lookup doesn't scale
738185 Misleading language about "file name encoding" in the docs on g_env...
738504 Optimize UTF-8 decoding by unrolling branches and expressions
739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
739424 gnome-shell crashes when files are added, deleted, or modified in $...
739616 DBus; Add new call flag to allow interactive authorization
740308 Add g_settings_schema_list_keys() method
740516 RFE: please provide an introspectible version of g_log_set_handler
741788 Document GSettings build system integration
745013 GBinding not thread safe
747146 Implement GNotification on OSX
747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
748727 Filechooser dialog shows no icons for directories on W32
749693 GActionGroupExporter: flush queue on requests
750203 GNetworkMonitorNetlink hangs in user namespace
750322 gapplication: Make sure --help output is translated
750344 GTlsInteractionClass is missing from doc
750369 Various GBinding cleanups
750386 Race condition in g_io_condition_get_type
750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
750573 GTlsDatabaseClass is not documented
750918 genmarshal: silence register storage class warnings
751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
479730 The "g_key_file_set_comment" interface prepends '#' character to...
* Translation updates:
Hungarian
Spanish
Overview of changes in GLib 2.45.2
==================================
* Improve error reporting in glib-compile-schemas.
* Add introspection annotations to GListStore.
* Bugs fixed:
696749 win32 : failed to compile because of careless mistake in the code
723394 const parameter to GtkPopover gtk_popover_set_pointing_to
724113 gdbus-connection-loss test can fail on slow machines
725981 tap-driver.sh: internal error getting exit status
733325 Several regex tests fail with pcre3 8.35
744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
747882 gtype: Bump allowed number of children
748534 gtest: if a subprocess assertion fails, print its stdout and stderr
748612 de_DE locale used in option-context test is not supported by FreeBSD
748614 Double unref in g_socket_listener_add_inet_port
748834 glocalfilemonitor: Emit notification on rate limit change
749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
749080 gdatetime test: fails if close to rollover between seconds
749180 gnetworkaddress: add return type annotation to parse methods
749352 g_binding_unbind() fails when source is also the target
749353 GBinding does not connect to the detailed notify signal
* Translation updates:
Catalan
French
Slovak
Thai
Overview of changes in GLib 2.45.1
==================================
* The GSettings schema compiler, glib-compile-schemas has been changed
to reject schema xml that has duplicate <summary> or <description>
elements. Such elements typically occur when translations are merged
into the schema, with xml:lang attributes. This is not the correct
way to translate schemas. Instead keep the translations in the .mo
file and set the gettext-domain attribute on the <schemalist> element.
* The file monitoring infrastructure has been rewritten, and all backends
have seen major improvements.
The inotify backend is reporting events with less delay (no event will
be delayed more than 10ms) and wakeups due to file monitoring have been
significantly reduced. A CHANGES_DONE event will also be sent when new
files appear.
The poll implementation is now using the thread default main context.
The fam implmentation is now running in the worker thread.
The fen implementation has been removed, since it was unmaintained.
* The GSettings schema compiler, glib-compile-schemas, is more strict
about rejecting schemas with xml:lang style merged translations.
Schema translations should be done by specifying the gettext domain
in the xml, and keeping the translations in gettext. To avoid breaking
already-installed schemas, this change is only taking effect when
you use the --strict option.
* The hardcoded 10-thread limit of GTask's thread pool has been removed,
since it was prone to causing deadlocks. The thread pool is now allowed
to grow dynamically and will shrink back over time.
* GSimpleAsyncResult has been deprecated in favor of GTask.
* The algorithm used by GAppInfo to find default handlers for mime types
has been tweaked to prefer apps that handle the specific subtype over
default handlers for a generic supertype.
* Bug fixes:
627285 inotify file monitor hardwired delay
631597 Segmentation fault in append_escaped_text
661767 merge/improve various bits of run-in-thread functionality
687223 cleverer GThreadPool management
711547 win32: silence some build warnings
719966 glib: Add missing (nullable) and (optional) annotations
726447 Possibly an error in text string
728663 W32: wrong stat struct is used when built with MinGW-w64
728669 W32: GLocalFile can't measure size of files larger than 2^32...
730188 gsocket: Document FD ownership with g_socket_new_from_fd()
733325 Several regex tests fail with pcre3 8.35
738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
739850 GClosure: add valgrind hints
741791 gmain: Save errno when handling unix signals
744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
745255 Add support for copying sessions between GTlsClientConnections
745745 gdbus: fix out-of-bound array access
745821 Don't use __alloc_size__ attribute with clang
746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
746753 Glib-compile-resources --generate-header not using ".h" as ...
747209 glib-compile-schemas ought to reject repeated <summary> and...
747349 Conversion of gdbus to use GTask causes deadlocks
747363 gatomic: Add missing new line in API doc comment
747472 Don't ignore already-installed schemas with multiple <summa...
747541 gdbus segfaults with invalid --dest
747772 Having hardcoded utf8 strings in the source code does not p...
748019 gsocketconnection: Fix copy-pasto in documentation
748177 not all test schemas are distributed, "make distcheck" fails
* Translation updates:
Basque
Czech
Danish
Finnish
German
Hebrew
Icelandic
Norwegian bokmål
Russian
Turkish
2016-04-07 20:33:05 +02:00
|
|
|
share/gtk-doc/html/gio/gdbus-example-gdbus-codegen.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/gdbus-lowlevel.html
|
|
|
|
share/gtk-doc/html/gio/gdbus.html
|
2016-11-25 13:42:21 +01:00
|
|
|
share/gtk-doc/html/gio/gio.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/gio-D-Bus-Addresses.html
|
|
|
|
share/gtk-doc/html/gio/gio-D-Bus-Introspection-Data.html
|
|
|
|
share/gtk-doc/html/gio/gio-D-Bus-Utilities.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html
|
|
|
|
share/gtk-doc/html/gio/gio-Extension-Points.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/gio/gio-GActionGroup-exporter.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/gio-GContentType.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/gio/gio-GConverterInputstream.html
|
|
|
|
share/gtk-doc/html/gio/gio-GConverterOutputstream.html
|
2012-01-29 11:46:52 +01:00
|
|
|
share/gtk-doc/html/gio/gio-GDBusError.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/gio-GFileAttribute.html
|
|
|
|
share/gtk-doc/html/gio/gio-GIOError.html
|
|
|
|
share/gtk-doc/html/gio/gio-GIOScheduler.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/gio/gio-GMenuModel-exporter.html
|
|
|
|
share/gtk-doc/html/gio/gio-GSettingsSchema-GSettingsSchemaSource.html
|
2012-03-21 13:18:33 +01:00
|
|
|
share/gtk-doc/html/gio/gio-GWin32InputStream.html
|
|
|
|
share/gtk-doc/html/gio/gio-GWin32OutputStream.html
|
Update glib2 to 2.48.0
- removed patch-gio_gtestdbus.c: applied upstream.
- removed patch-gio_gunixmounts.c: can no longer reproduce problem.
Overview of changes in GLib 2.48.0
==================================
* a minor build fix in the name of determinism
* a few coverity fixes
Bugs fixed:
763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
Translations updated:
Danish
Italian
Overview of changes in GLib 2.47.92
===================================
* gdbus-codegen now supports g_autoptr()
* g_get_user_runtime_dir() now reliably returns an existing directory
* g_array_remove_range() can now remove 0 items from the end of an array
* Many fixes for Windows
* build fixes
* file monitoring
* gsettings backend
* streams
* random numbers
* wide character support
* documentation improvements
* other small bugfixes
Bugs fixed:
724847 Segmentation fault on "gsettings list-recursively"
743933 gapplication: add --app-id command line option
756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
757506 gsettings: schema_list should use the passed schema's source
760694 W32: Apps linked with -mwindows make cursor busy sometimes
762202 g_win32_error_message improvements
762637 build: Unconditionally dist tapset files
762748 Undefined behavior
762937 Mention that g_clear_error can be used with an "empty" GError
763339 array: Support clearing an empty array with g_array_remove_range()
763344 g_get_user_runtime_dir(): ensure directory exists
763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
Translations updated:
Brazilian Portuguese
Czech
Finnish
French
Galician s
German
Greek
Hebrew
Hungarian
Italian
Kazakh
Korean
Latvian
Lithuanian
Occitan
Polish
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.6
==================================
* Windows usupport:
- Fixes and improvements to the GSettings registry backend
- Handle readability and writability of registry keys
- Use Unicode registry APIs
* Bugs fixed:
760852 744772 761126 747927 761337 744570 761504 761550 761843
744570 GString is missing (transfer none) annotations on many of its methods
744772 systemtap and gdb scripts install in wrong place
747927 Documentation: various small improvements
760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
761126 winiconv: update to upstream version
761337 Fix some annotations
761504 W32 registry GSettings backend does not use Unicode
761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
* Translation updates:
Brazilian Portuguese
Bulagarian
Chinese (Taiwan)
Hungarian
Polish
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.5
==================================
* the system copy of PCRE is now used by default to implement GRegex.
Configure with --with-pcre=internal if a system PCRE version
is unavailable or undesired.
* interfaces for DTLS support have been added. A new version of
glib-networking will also be required.
* GDBusMethodInvocation now drops replies if the sender set the
NO_REPLY_EXPECTED flag
* several GApplication fixes, including fixes for commandline arguments
in interpreted languages on Windows
Bugs fixed:
624186 Deprecate glib-gettext macros
734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
735754 Implement close on TLS GOutputStream
748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
752240 Add DTLS support to GIO
755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
756875 Include ntdef.h for NTSTATUS
759554 g_application_run() calls g_main_context_default() repeatidly
760199 gsettings: Install gettext ITS rules
760215 G_LIKELY/_UNLIKELY macros need more parentheses
760683 regex test: Check the expected PCRE exceptions at runtime
Translations updated:
Brazilian Portuguese
Czech
German
Lithuanian
Swedish
Overview of changes in GLib 2.47.4
==================================
* The GApplication documentation has been improved in several areas.
* Bugs fixed:
749092 gdb pretty-printers fail on Python 3 with a TypeError...
757374 macros: clean up "inline" mess
758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
759134 Add missing checks for gnulib vasnprintf()
759408 Do not use uninitialized var
756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
757372 GApplication: destroy the impl on shutdown
728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
757299 glib-compile-resources: do not leak c_name
758553 Fix gettext use
758823 file monitors: reorder some code to avoid segfault
756214 gsettings: Don't translate ""
710243 Add GParamSpec object ref management annotations
735696 xdgmime: Finer handling for cases where mmap() is not available
752983 gapplication: Acquire the main context before running
* Translation updates:
Swedish
Overview of changes in GLib 2.47.3
==================================
The inline cleanup in the last release accidentally removed three
symbols from libglib-2.0.so. It is unlikely that this will have caused
any problems because these symbols were only backup symbols for
definitions exported as inlines in the header files, but ABI is ABI.
This release corrects only this problem.
Overview of changes in GLib 2.47.2
==================================
* We have formalised the assumption that all compilers that are
interested in support 'static inline' and simplified the macros around
this considerably. Please watch for and report unintentional fallout.
* New API: hardware-assisted helpers for overflow-checked integer math.
* other fixes
Bugs fixed:
696324 gtester-report doesn't work with Python 3.x
719966 glib: Add missing (nullable) and (optional) annotations
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
755364 make gtkdoc-check happy again
756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
756988 GSequence should document each function's complexity
757294 Move G_POLLFD_FORMAT to glibconfig.h
757374 macros: clean up "inline" mess
757451 doc: fix g_task_attach_source() example
757628 gio tests fail to build when cross compiling 2.46.1
757693 Invalid free in g_local_file_trash()
757742 Fix up annotations in ghash.c
758181 GTask: fix wrong example code
Translations updated:
Greek
Hebrew
Hungarian
Norwegian bokmål
Portuguese
Scottish Gaelic
Simplified Chinese
Spanish
Overview of changes in GLib 2.47.1
==================================
* The Unicode support has been updated to version 8.0 of the Unicode standard
* GDesktopAppInfo no longer sets the DISPLAY environment variable when
launching apps. This is now done in the GAppLaunchContext implementations
when appropriate
* Bug fixes:
664740 Key-value file parser, space after integer
687223 cleverer GThreadPool management
692085 stderr and stdout are not always file descriptors 1 and 2
697907 Add interface for socket-like things (GSocket, DTLS, etc)
735754 Implement close on TLS GOutputStream
737116 Add functions to print GSocketConnectables and addresses as strings
743011 Minor additions to GError documentation
749161 undefined reference to `__imp__stat32i64'
749314 Cannot restore a just-trashed file
751924 Add recvmmsg()-like API on GSocket
752240 Add DTLS support to GIO
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
753310 Remove `#pragma GCC system_header` from gmessages.h
753935 Update example namespace and class names in GObject tutorial
754855 Object instantiation documentation refers to example that no longer ex...
754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
754994 g_date_time_get_second () sometimes returns an off-by-one result
755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
755351 Example still contains g_autoptr(gchar)
755355 Move GStrv to glib.h so it can be used with g_auto()
755374 g_variant_get_child(): flatten-first logic on '&'
755496 glib 2.46 fails GStreamer test suite
755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
755795 2.46 considers empty files as octet-stream rather than text (leads to...
755961 Fix up annotations in gbytes.c
756053 MSVC doesn't understand the symbol 'msghdr'
756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
756077 testutils: remove internal ABI comment
756099 g_main_context_query(): Annotate @n_fds as (in) parameter
756139 musl: ctors called in the wrong order
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
756316 GSequence should provide fast api to check if empty
756382 snprintf used on Windows with VS2015 doesn't support %n
756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
756550 gtypes.h: Make G_MININTn literals negative
756875 Include ntdef.h for NTSTATUS
756952 giomodule: return a copy of module name
* Translation updates:
Basque
Czech
Serbian
Serbian Latin
Vietnamese
Overview of changes in GLib 2.46.0
==================================
* Disable runtime-deprecation warnings
* Fix marshalling of flags on bigendian 64bit architectures
* Translation updates
Brazilian Portuguese
Danish
German
Latvian
Russian
Turkish
Overview of changes in GLib 2.45.8
==================================
* utf8 validation and utf8-to-ucs4 conversion are faster
* Small speedups to property change notification
* Various other small optimizations for GQuark, GData
* Bugs fixed:
696426 GParamSpecTypeInfo do not need to be static
735429 Cleanup MSVC Project Files Generation
738504 Optimize UTF-8 decoding by unrolling branches and expressions
742903 Add missing (transfer) annotation to GString
748633 g_set_object order of operations
754431 Fix build of glib/gstrfuncs.c on Windows
754560 gioerror: Add more mappings for WinSock error codes
754582 Glib cannot compile
754601 Make g_strerror work with non-glibc POSIX systems
754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
754788 more g_strerror stuff
754831 autocleanups: Add GString type
754924 Improve test coverage of g_utf8_validate() by added known-...
754986 Avoid unnecessary signal emission during draw
* Translation updates:
Italian
Kazakh
Korean
Lithuanian
Slovenian
Swedish
Overview of changes in GLib 2.45.7
==================================
* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
backends (e.g. cloud storage).
* GFileMonitor: Make the inotify backend work with atomic renames again
* GSettings: change notification is again working unconditionally
* GListStore has a sort function now
* Test infrastructure:
- Tests are now required to have unique names
- TAP support has been improved
- A macro for asserting that two memory regions have identical content
has been added
* Bugs fixed:
708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
742849 inotify: send paired events to both sides
744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
747364 Fix GError leak in g_file_query_writable_namespaces()
749492 Support file creation time on FreeBSD and NetBSD
752769 (g_socket_receive_message | g_socket_send_message) performance
753745 glib-genmarshal still needed for cross-compilation
754152 Add g_list_store_sort
754211 Memory leak in g_file_enumerator_iterate ()
754264 GLib 2.44 certificate chain construction fails if the PEM incl...
754283 gtestutils: add g_assert_cmpmem()
754284 gtestutils: print the TAP test plan first, not last
754286 misc gtestutils fixes
754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
* Translation updates:
Chinese (Taiwan)
French
Galician
Greek
Hebrew
Hungarian
Indonesian
Polish
Portuguese
Overview of changes in GLib 2.45.6
==================================
* Fix a test failure and a build failure
Overview of changes in GLib 2.45.5
==================================
* GNetworkMonitor now provides information about metered networks
* g_mem_set_vtable has been deprecated; it has not been working for
quite a while. The recommendation is to use valgrind, or replace
malloc itself.
* Bugs fixed:
656325 Make GDBusInterfaceVTable binding friendly
741779 Documentation tweaks addressing real-world API misuses
741822 Fails to build with VS 2015
742386 gdbusconnection: Don't g_printerr() when exiting
743018 gobject: Add more cross-links between documentation pages
750282 Add g_network_monitor_get_network_metered() to get if the connection...
751358 GFileMonitor doesn't react to "mv some-file watched-file"
751592 Stop using GMemVtable
751598 Stop 'handle-local-options' propagation when callback reports an err...
751610 g_str_hash produces collisions with strings of length 2
751751 Wrong docs of g_async_queue_remove
752210 gdbus command crashes with SIGSEGV
752656 gdbusconnection: Fix signal subscription documentation
752767 Fix typo in g_hash_table_replace() documentation
753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
753285 g_menu_item_set_icon fails if called with NULL icon
* Translation updates:
Catalan
Czech
French
Indonesian
Lithuanian
Norwegian bokmål
Slovak
Spanish
Thai
Turkish
Overview of changes in GLib 2.45.4
==================================
* Bugs fixed:
727829 win32: glibconfig.h.win32 updates
741901 Clang cannot know that g_error don't return
746339 GSocket kills process when fd is not a socket
747676 gio/tests/socket fails: test_fd_roundtrip
748610 Some tests fail with non-English locales
749911 g_inet_address_to_string broken on XP/2003
749912 g_inet_address_new_from_string broken on XP/2003
750625 Should dismiss Software Updates Available notification after...
750807 G_BREAKPOINT doesn't work as intended on Darwin
751160 gtask does unnecessary work
751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
751731 GFile/DirectoryMonitor emit move events with other_file=NULL
751737 gio/tests/appmonitor test fails in 2.45.3
751798 Wrong enum type used in some test-cases
752089 make gsocketservice::active a property
752293 small cleanup: use list_free_full
* Translation updates:
Greek
Hebrew
Portuguese
Overview of changes in GLib 2.45.3
==================================
* Improve performance of g_signal_handler_disconnect for signals
with many handlers
* GDBus has gained a new call flag to allow interactive authorization
* GSettings:
- New API: g_settings_schema_list_keys
- Deprecated: g_settings_list_keys
* OS X:
- Implement GNotification
- Bump the OS X requirement to 10.9
* Windows:
- Add registry reading API
- Reimplement GAppInfo using registry information
* Bugs fixed:
666831 Support URI opening on W32
728489 property action with inverted boolean state
730168 Incorrect annotation on g_action_group_get_action_state_type return...
733325 Several regex tests fail with pcre3 8.35
734888 GLib has no helper functions to work with W32 Registry
737009 signal handler lookup doesn't scale
738185 Misleading language about "file name encoding" in the docs on g_env...
738504 Optimize UTF-8 decoding by unrolling branches and expressions
739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
739424 gnome-shell crashes when files are added, deleted, or modified in $...
739616 DBus; Add new call flag to allow interactive authorization
740308 Add g_settings_schema_list_keys() method
740516 RFE: please provide an introspectible version of g_log_set_handler
741788 Document GSettings build system integration
745013 GBinding not thread safe
747146 Implement GNotification on OSX
747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
748727 Filechooser dialog shows no icons for directories on W32
749693 GActionGroupExporter: flush queue on requests
750203 GNetworkMonitorNetlink hangs in user namespace
750322 gapplication: Make sure --help output is translated
750344 GTlsInteractionClass is missing from doc
750369 Various GBinding cleanups
750386 Race condition in g_io_condition_get_type
750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
750573 GTlsDatabaseClass is not documented
750918 genmarshal: silence register storage class warnings
751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
479730 The "g_key_file_set_comment" interface prepends '#' character to...
* Translation updates:
Hungarian
Spanish
Overview of changes in GLib 2.45.2
==================================
* Improve error reporting in glib-compile-schemas.
* Add introspection annotations to GListStore.
* Bugs fixed:
696749 win32 : failed to compile because of careless mistake in the code
723394 const parameter to GtkPopover gtk_popover_set_pointing_to
724113 gdbus-connection-loss test can fail on slow machines
725981 tap-driver.sh: internal error getting exit status
733325 Several regex tests fail with pcre3 8.35
744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
747882 gtype: Bump allowed number of children
748534 gtest: if a subprocess assertion fails, print its stdout and stderr
748612 de_DE locale used in option-context test is not supported by FreeBSD
748614 Double unref in g_socket_listener_add_inet_port
748834 glocalfilemonitor: Emit notification on rate limit change
749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
749080 gdatetime test: fails if close to rollover between seconds
749180 gnetworkaddress: add return type annotation to parse methods
749352 g_binding_unbind() fails when source is also the target
749353 GBinding does not connect to the detailed notify signal
* Translation updates:
Catalan
French
Slovak
Thai
Overview of changes in GLib 2.45.1
==================================
* The GSettings schema compiler, glib-compile-schemas has been changed
to reject schema xml that has duplicate <summary> or <description>
elements. Such elements typically occur when translations are merged
into the schema, with xml:lang attributes. This is not the correct
way to translate schemas. Instead keep the translations in the .mo
file and set the gettext-domain attribute on the <schemalist> element.
* The file monitoring infrastructure has been rewritten, and all backends
have seen major improvements.
The inotify backend is reporting events with less delay (no event will
be delayed more than 10ms) and wakeups due to file monitoring have been
significantly reduced. A CHANGES_DONE event will also be sent when new
files appear.
The poll implementation is now using the thread default main context.
The fam implmentation is now running in the worker thread.
The fen implementation has been removed, since it was unmaintained.
* The GSettings schema compiler, glib-compile-schemas, is more strict
about rejecting schemas with xml:lang style merged translations.
Schema translations should be done by specifying the gettext domain
in the xml, and keeping the translations in gettext. To avoid breaking
already-installed schemas, this change is only taking effect when
you use the --strict option.
* The hardcoded 10-thread limit of GTask's thread pool has been removed,
since it was prone to causing deadlocks. The thread pool is now allowed
to grow dynamically and will shrink back over time.
* GSimpleAsyncResult has been deprecated in favor of GTask.
* The algorithm used by GAppInfo to find default handlers for mime types
has been tweaked to prefer apps that handle the specific subtype over
default handlers for a generic supertype.
* Bug fixes:
627285 inotify file monitor hardwired delay
631597 Segmentation fault in append_escaped_text
661767 merge/improve various bits of run-in-thread functionality
687223 cleverer GThreadPool management
711547 win32: silence some build warnings
719966 glib: Add missing (nullable) and (optional) annotations
726447 Possibly an error in text string
728663 W32: wrong stat struct is used when built with MinGW-w64
728669 W32: GLocalFile can't measure size of files larger than 2^32...
730188 gsocket: Document FD ownership with g_socket_new_from_fd()
733325 Several regex tests fail with pcre3 8.35
738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
739850 GClosure: add valgrind hints
741791 gmain: Save errno when handling unix signals
744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
745255 Add support for copying sessions between GTlsClientConnections
745745 gdbus: fix out-of-bound array access
745821 Don't use __alloc_size__ attribute with clang
746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
746753 Glib-compile-resources --generate-header not using ".h" as ...
747209 glib-compile-schemas ought to reject repeated <summary> and...
747349 Conversion of gdbus to use GTask causes deadlocks
747363 gatomic: Add missing new line in API doc comment
747472 Don't ignore already-installed schemas with multiple <summa...
747541 gdbus segfaults with invalid --dest
747772 Having hardcoded utf8 strings in the source code does not p...
748019 gsocketconnection: Fix copy-pasto in documentation
748177 not all test schemas are distributed, "make distcheck" fails
* Translation updates:
Basque
Czech
Danish
Finnish
German
Hebrew
Icelandic
Norwegian bokmål
Russian
Turkish
2016-04-07 20:33:05 +02:00
|
|
|
share/gtk-doc/html/gio/gio-GWin32RegistryKey.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/gio-Owning-Bus-Names.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/gio/gio-TLS-Overview.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/gio-Unix-Mounts.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/gio-Watching-Bus-Names.html
|
2013-04-20 00:21:41 +02:00
|
|
|
share/gtk-doc/html/gio/gio-gnetworking.h.html
|
2012-10-06 22:44:04 +02:00
|
|
|
share/gtk-doc/html/gio/gio-gpollableutils.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/gio-hierarchy.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/gio-querymodules.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/gio.devhelp2
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/gio/glib-compile-resources.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/glib-compile-schemas.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/gio/gresource-tool.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/gio/gsettings-tool.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/gvfs-overview.png
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/highlevel-socket.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/home.png
|
|
|
|
share/gtk-doc/html/gio/icons.html
|
|
|
|
share/gtk-doc/html/gio/index.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/gio/left-insensitive.png
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/left.png
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/gio/menu-example.png
|
|
|
|
share/gtk-doc/html/gio/menu-model.png
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/migrating.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/networking.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/permissions.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/pt01.html
|
|
|
|
share/gtk-doc/html/gio/pt02.html
|
Update glib2 to 2.48.0
- removed patch-gio_gtestdbus.c: applied upstream.
- removed patch-gio_gunixmounts.c: can no longer reproduce problem.
Overview of changes in GLib 2.48.0
==================================
* a minor build fix in the name of determinism
* a few coverity fixes
Bugs fixed:
763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
Translations updated:
Danish
Italian
Overview of changes in GLib 2.47.92
===================================
* gdbus-codegen now supports g_autoptr()
* g_get_user_runtime_dir() now reliably returns an existing directory
* g_array_remove_range() can now remove 0 items from the end of an array
* Many fixes for Windows
* build fixes
* file monitoring
* gsettings backend
* streams
* random numbers
* wide character support
* documentation improvements
* other small bugfixes
Bugs fixed:
724847 Segmentation fault on "gsettings list-recursively"
743933 gapplication: add --app-id command line option
756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
757506 gsettings: schema_list should use the passed schema's source
760694 W32: Apps linked with -mwindows make cursor busy sometimes
762202 g_win32_error_message improvements
762637 build: Unconditionally dist tapset files
762748 Undefined behavior
762937 Mention that g_clear_error can be used with an "empty" GError
763339 array: Support clearing an empty array with g_array_remove_range()
763344 g_get_user_runtime_dir(): ensure directory exists
763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
Translations updated:
Brazilian Portuguese
Czech
Finnish
French
Galician s
German
Greek
Hebrew
Hungarian
Italian
Kazakh
Korean
Latvian
Lithuanian
Occitan
Polish
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.6
==================================
* Windows usupport:
- Fixes and improvements to the GSettings registry backend
- Handle readability and writability of registry keys
- Use Unicode registry APIs
* Bugs fixed:
760852 744772 761126 747927 761337 744570 761504 761550 761843
744570 GString is missing (transfer none) annotations on many of its methods
744772 systemtap and gdb scripts install in wrong place
747927 Documentation: various small improvements
760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
761126 winiconv: update to upstream version
761337 Fix some annotations
761504 W32 registry GSettings backend does not use Unicode
761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
* Translation updates:
Brazilian Portuguese
Bulagarian
Chinese (Taiwan)
Hungarian
Polish
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.5
==================================
* the system copy of PCRE is now used by default to implement GRegex.
Configure with --with-pcre=internal if a system PCRE version
is unavailable or undesired.
* interfaces for DTLS support have been added. A new version of
glib-networking will also be required.
* GDBusMethodInvocation now drops replies if the sender set the
NO_REPLY_EXPECTED flag
* several GApplication fixes, including fixes for commandline arguments
in interpreted languages on Windows
Bugs fixed:
624186 Deprecate glib-gettext macros
734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
735754 Implement close on TLS GOutputStream
748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
752240 Add DTLS support to GIO
755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
756875 Include ntdef.h for NTSTATUS
759554 g_application_run() calls g_main_context_default() repeatidly
760199 gsettings: Install gettext ITS rules
760215 G_LIKELY/_UNLIKELY macros need more parentheses
760683 regex test: Check the expected PCRE exceptions at runtime
Translations updated:
Brazilian Portuguese
Czech
German
Lithuanian
Swedish
Overview of changes in GLib 2.47.4
==================================
* The GApplication documentation has been improved in several areas.
* Bugs fixed:
749092 gdb pretty-printers fail on Python 3 with a TypeError...
757374 macros: clean up "inline" mess
758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
759134 Add missing checks for gnulib vasnprintf()
759408 Do not use uninitialized var
756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
757372 GApplication: destroy the impl on shutdown
728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
757299 glib-compile-resources: do not leak c_name
758553 Fix gettext use
758823 file monitors: reorder some code to avoid segfault
756214 gsettings: Don't translate ""
710243 Add GParamSpec object ref management annotations
735696 xdgmime: Finer handling for cases where mmap() is not available
752983 gapplication: Acquire the main context before running
* Translation updates:
Swedish
Overview of changes in GLib 2.47.3
==================================
The inline cleanup in the last release accidentally removed three
symbols from libglib-2.0.so. It is unlikely that this will have caused
any problems because these symbols were only backup symbols for
definitions exported as inlines in the header files, but ABI is ABI.
This release corrects only this problem.
Overview of changes in GLib 2.47.2
==================================
* We have formalised the assumption that all compilers that are
interested in support 'static inline' and simplified the macros around
this considerably. Please watch for and report unintentional fallout.
* New API: hardware-assisted helpers for overflow-checked integer math.
* other fixes
Bugs fixed:
696324 gtester-report doesn't work with Python 3.x
719966 glib: Add missing (nullable) and (optional) annotations
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
755364 make gtkdoc-check happy again
756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
756988 GSequence should document each function's complexity
757294 Move G_POLLFD_FORMAT to glibconfig.h
757374 macros: clean up "inline" mess
757451 doc: fix g_task_attach_source() example
757628 gio tests fail to build when cross compiling 2.46.1
757693 Invalid free in g_local_file_trash()
757742 Fix up annotations in ghash.c
758181 GTask: fix wrong example code
Translations updated:
Greek
Hebrew
Hungarian
Norwegian bokmål
Portuguese
Scottish Gaelic
Simplified Chinese
Spanish
Overview of changes in GLib 2.47.1
==================================
* The Unicode support has been updated to version 8.0 of the Unicode standard
* GDesktopAppInfo no longer sets the DISPLAY environment variable when
launching apps. This is now done in the GAppLaunchContext implementations
when appropriate
* Bug fixes:
664740 Key-value file parser, space after integer
687223 cleverer GThreadPool management
692085 stderr and stdout are not always file descriptors 1 and 2
697907 Add interface for socket-like things (GSocket, DTLS, etc)
735754 Implement close on TLS GOutputStream
737116 Add functions to print GSocketConnectables and addresses as strings
743011 Minor additions to GError documentation
749161 undefined reference to `__imp__stat32i64'
749314 Cannot restore a just-trashed file
751924 Add recvmmsg()-like API on GSocket
752240 Add DTLS support to GIO
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
753310 Remove `#pragma GCC system_header` from gmessages.h
753935 Update example namespace and class names in GObject tutorial
754855 Object instantiation documentation refers to example that no longer ex...
754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
754994 g_date_time_get_second () sometimes returns an off-by-one result
755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
755351 Example still contains g_autoptr(gchar)
755355 Move GStrv to glib.h so it can be used with g_auto()
755374 g_variant_get_child(): flatten-first logic on '&'
755496 glib 2.46 fails GStreamer test suite
755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
755795 2.46 considers empty files as octet-stream rather than text (leads to...
755961 Fix up annotations in gbytes.c
756053 MSVC doesn't understand the symbol 'msghdr'
756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
756077 testutils: remove internal ABI comment
756099 g_main_context_query(): Annotate @n_fds as (in) parameter
756139 musl: ctors called in the wrong order
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
756316 GSequence should provide fast api to check if empty
756382 snprintf used on Windows with VS2015 doesn't support %n
756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
756550 gtypes.h: Make G_MININTn literals negative
756875 Include ntdef.h for NTSTATUS
756952 giomodule: return a copy of module name
* Translation updates:
Basque
Czech
Serbian
Serbian Latin
Vietnamese
Overview of changes in GLib 2.46.0
==================================
* Disable runtime-deprecation warnings
* Fix marshalling of flags on bigendian 64bit architectures
* Translation updates
Brazilian Portuguese
Danish
German
Latvian
Russian
Turkish
Overview of changes in GLib 2.45.8
==================================
* utf8 validation and utf8-to-ucs4 conversion are faster
* Small speedups to property change notification
* Various other small optimizations for GQuark, GData
* Bugs fixed:
696426 GParamSpecTypeInfo do not need to be static
735429 Cleanup MSVC Project Files Generation
738504 Optimize UTF-8 decoding by unrolling branches and expressions
742903 Add missing (transfer) annotation to GString
748633 g_set_object order of operations
754431 Fix build of glib/gstrfuncs.c on Windows
754560 gioerror: Add more mappings for WinSock error codes
754582 Glib cannot compile
754601 Make g_strerror work with non-glibc POSIX systems
754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
754788 more g_strerror stuff
754831 autocleanups: Add GString type
754924 Improve test coverage of g_utf8_validate() by added known-...
754986 Avoid unnecessary signal emission during draw
* Translation updates:
Italian
Kazakh
Korean
Lithuanian
Slovenian
Swedish
Overview of changes in GLib 2.45.7
==================================
* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
backends (e.g. cloud storage).
* GFileMonitor: Make the inotify backend work with atomic renames again
* GSettings: change notification is again working unconditionally
* GListStore has a sort function now
* Test infrastructure:
- Tests are now required to have unique names
- TAP support has been improved
- A macro for asserting that two memory regions have identical content
has been added
* Bugs fixed:
708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
742849 inotify: send paired events to both sides
744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
747364 Fix GError leak in g_file_query_writable_namespaces()
749492 Support file creation time on FreeBSD and NetBSD
752769 (g_socket_receive_message | g_socket_send_message) performance
753745 glib-genmarshal still needed for cross-compilation
754152 Add g_list_store_sort
754211 Memory leak in g_file_enumerator_iterate ()
754264 GLib 2.44 certificate chain construction fails if the PEM incl...
754283 gtestutils: add g_assert_cmpmem()
754284 gtestutils: print the TAP test plan first, not last
754286 misc gtestutils fixes
754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
* Translation updates:
Chinese (Taiwan)
French
Galician
Greek
Hebrew
Hungarian
Indonesian
Polish
Portuguese
Overview of changes in GLib 2.45.6
==================================
* Fix a test failure and a build failure
Overview of changes in GLib 2.45.5
==================================
* GNetworkMonitor now provides information about metered networks
* g_mem_set_vtable has been deprecated; it has not been working for
quite a while. The recommendation is to use valgrind, or replace
malloc itself.
* Bugs fixed:
656325 Make GDBusInterfaceVTable binding friendly
741779 Documentation tweaks addressing real-world API misuses
741822 Fails to build with VS 2015
742386 gdbusconnection: Don't g_printerr() when exiting
743018 gobject: Add more cross-links between documentation pages
750282 Add g_network_monitor_get_network_metered() to get if the connection...
751358 GFileMonitor doesn't react to "mv some-file watched-file"
751592 Stop using GMemVtable
751598 Stop 'handle-local-options' propagation when callback reports an err...
751610 g_str_hash produces collisions with strings of length 2
751751 Wrong docs of g_async_queue_remove
752210 gdbus command crashes with SIGSEGV
752656 gdbusconnection: Fix signal subscription documentation
752767 Fix typo in g_hash_table_replace() documentation
753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
753285 g_menu_item_set_icon fails if called with NULL icon
* Translation updates:
Catalan
Czech
French
Indonesian
Lithuanian
Norwegian bokmål
Slovak
Spanish
Thai
Turkish
Overview of changes in GLib 2.45.4
==================================
* Bugs fixed:
727829 win32: glibconfig.h.win32 updates
741901 Clang cannot know that g_error don't return
746339 GSocket kills process when fd is not a socket
747676 gio/tests/socket fails: test_fd_roundtrip
748610 Some tests fail with non-English locales
749911 g_inet_address_to_string broken on XP/2003
749912 g_inet_address_new_from_string broken on XP/2003
750625 Should dismiss Software Updates Available notification after...
750807 G_BREAKPOINT doesn't work as intended on Darwin
751160 gtask does unnecessary work
751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
751731 GFile/DirectoryMonitor emit move events with other_file=NULL
751737 gio/tests/appmonitor test fails in 2.45.3
751798 Wrong enum type used in some test-cases
752089 make gsocketservice::active a property
752293 small cleanup: use list_free_full
* Translation updates:
Greek
Hebrew
Portuguese
Overview of changes in GLib 2.45.3
==================================
* Improve performance of g_signal_handler_disconnect for signals
with many handlers
* GDBus has gained a new call flag to allow interactive authorization
* GSettings:
- New API: g_settings_schema_list_keys
- Deprecated: g_settings_list_keys
* OS X:
- Implement GNotification
- Bump the OS X requirement to 10.9
* Windows:
- Add registry reading API
- Reimplement GAppInfo using registry information
* Bugs fixed:
666831 Support URI opening on W32
728489 property action with inverted boolean state
730168 Incorrect annotation on g_action_group_get_action_state_type return...
733325 Several regex tests fail with pcre3 8.35
734888 GLib has no helper functions to work with W32 Registry
737009 signal handler lookup doesn't scale
738185 Misleading language about "file name encoding" in the docs on g_env...
738504 Optimize UTF-8 decoding by unrolling branches and expressions
739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
739424 gnome-shell crashes when files are added, deleted, or modified in $...
739616 DBus; Add new call flag to allow interactive authorization
740308 Add g_settings_schema_list_keys() method
740516 RFE: please provide an introspectible version of g_log_set_handler
741788 Document GSettings build system integration
745013 GBinding not thread safe
747146 Implement GNotification on OSX
747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
748727 Filechooser dialog shows no icons for directories on W32
749693 GActionGroupExporter: flush queue on requests
750203 GNetworkMonitorNetlink hangs in user namespace
750322 gapplication: Make sure --help output is translated
750344 GTlsInteractionClass is missing from doc
750369 Various GBinding cleanups
750386 Race condition in g_io_condition_get_type
750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
750573 GTlsDatabaseClass is not documented
750918 genmarshal: silence register storage class warnings
751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
479730 The "g_key_file_set_comment" interface prepends '#' character to...
* Translation updates:
Hungarian
Spanish
Overview of changes in GLib 2.45.2
==================================
* Improve error reporting in glib-compile-schemas.
* Add introspection annotations to GListStore.
* Bugs fixed:
696749 win32 : failed to compile because of careless mistake in the code
723394 const parameter to GtkPopover gtk_popover_set_pointing_to
724113 gdbus-connection-loss test can fail on slow machines
725981 tap-driver.sh: internal error getting exit status
733325 Several regex tests fail with pcre3 8.35
744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
747882 gtype: Bump allowed number of children
748534 gtest: if a subprocess assertion fails, print its stdout and stderr
748612 de_DE locale used in option-context test is not supported by FreeBSD
748614 Double unref in g_socket_listener_add_inet_port
748834 glocalfilemonitor: Emit notification on rate limit change
749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
749080 gdatetime test: fails if close to rollover between seconds
749180 gnetworkaddress: add return type annotation to parse methods
749352 g_binding_unbind() fails when source is also the target
749353 GBinding does not connect to the detailed notify signal
* Translation updates:
Catalan
French
Slovak
Thai
Overview of changes in GLib 2.45.1
==================================
* The GSettings schema compiler, glib-compile-schemas has been changed
to reject schema xml that has duplicate <summary> or <description>
elements. Such elements typically occur when translations are merged
into the schema, with xml:lang attributes. This is not the correct
way to translate schemas. Instead keep the translations in the .mo
file and set the gettext-domain attribute on the <schemalist> element.
* The file monitoring infrastructure has been rewritten, and all backends
have seen major improvements.
The inotify backend is reporting events with less delay (no event will
be delayed more than 10ms) and wakeups due to file monitoring have been
significantly reduced. A CHANGES_DONE event will also be sent when new
files appear.
The poll implementation is now using the thread default main context.
The fam implmentation is now running in the worker thread.
The fen implementation has been removed, since it was unmaintained.
* The GSettings schema compiler, glib-compile-schemas, is more strict
about rejecting schemas with xml:lang style merged translations.
Schema translations should be done by specifying the gettext domain
in the xml, and keeping the translations in gettext. To avoid breaking
already-installed schemas, this change is only taking effect when
you use the --strict option.
* The hardcoded 10-thread limit of GTask's thread pool has been removed,
since it was prone to causing deadlocks. The thread pool is now allowed
to grow dynamically and will shrink back over time.
* GSimpleAsyncResult has been deprecated in favor of GTask.
* The algorithm used by GAppInfo to find default handlers for mime types
has been tweaked to prefer apps that handle the specific subtype over
default handlers for a generic supertype.
* Bug fixes:
627285 inotify file monitor hardwired delay
631597 Segmentation fault in append_escaped_text
661767 merge/improve various bits of run-in-thread functionality
687223 cleverer GThreadPool management
711547 win32: silence some build warnings
719966 glib: Add missing (nullable) and (optional) annotations
726447 Possibly an error in text string
728663 W32: wrong stat struct is used when built with MinGW-w64
728669 W32: GLocalFile can't measure size of files larger than 2^32...
730188 gsocket: Document FD ownership with g_socket_new_from_fd()
733325 Several regex tests fail with pcre3 8.35
738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
739850 GClosure: add valgrind hints
741791 gmain: Save errno when handling unix signals
744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
745255 Add support for copying sessions between GTlsClientConnections
745745 gdbus: fix out-of-bound array access
745821 Don't use __alloc_size__ attribute with clang
746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
746753 Glib-compile-resources --generate-header not using ".h" as ...
747209 glib-compile-schemas ought to reject repeated <summary> and...
747349 Conversion of gdbus to use GTask causes deadlocks
747363 gatomic: Add missing new line in API doc comment
747472 Don't ignore already-installed schemas with multiple <summa...
747541 gdbus segfaults with invalid --dest
747772 Having hardcoded utf8 strings in the source code does not p...
748019 gsocketconnection: Fix copy-pasto in documentation
748177 not all test schemas are distributed, "make distcheck" fails
* Translation updates:
Basque
Czech
Danish
Finnish
German
Hebrew
Icelandic
Norwegian bokmål
Russian
Turkish
2016-04-07 20:33:05 +02:00
|
|
|
share/gtk-doc/html/gio/registry.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/gio/resolver.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/gio/resources.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/gio/right-insensitive.png
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/right.png
|
2012-10-06 22:44:04 +02:00
|
|
|
share/gtk-doc/html/gio/running-gio-apps.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/settings.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/streaming.html
|
|
|
|
share/gtk-doc/html/gio/style.css
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/gio/subprocesses.html
|
2012-10-06 22:44:04 +02:00
|
|
|
share/gtk-doc/html/gio/testing.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/gio/tls.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gio/tools.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/types.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/gio/up-insensitive.png
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gio/up.png
|
|
|
|
share/gtk-doc/html/gio/utils.html
|
|
|
|
share/gtk-doc/html/gio/volume_mon.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/glib/Sorted_binary_tree_breadth-first_traversal.svg
|
|
|
|
share/gtk-doc/html/glib/Sorted_binary_tree_inorder.svg
|
|
|
|
share/gtk-doc/html/glib/Sorted_binary_tree_postorder.svg
|
|
|
|
share/gtk-doc/html/glib/Sorted_binary_tree_preorder.svg
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/glib/annotation-glossary.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/glib/api-index-2-10.html
|
|
|
|
share/gtk-doc/html/glib/api-index-2-12.html
|
|
|
|
share/gtk-doc/html/glib/api-index-2-14.html
|
|
|
|
share/gtk-doc/html/glib/api-index-2-16.html
|
|
|
|
share/gtk-doc/html/glib/api-index-2-18.html
|
|
|
|
share/gtk-doc/html/glib/api-index-2-2.html
|
|
|
|
share/gtk-doc/html/glib/api-index-2-20.html
|
|
|
|
share/gtk-doc/html/glib/api-index-2-22.html
|
|
|
|
share/gtk-doc/html/glib/api-index-2-24.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/glib/api-index-2-26.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/glib/api-index-2-28.html
|
2012-01-29 11:46:52 +01:00
|
|
|
share/gtk-doc/html/glib/api-index-2-30.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/glib/api-index-2-32.html
|
2012-10-06 22:44:04 +02:00
|
|
|
share/gtk-doc/html/glib/api-index-2-34.html
|
2013-04-20 00:21:41 +02:00
|
|
|
share/gtk-doc/html/glib/api-index-2-36.html
|
Update glib2 to 2.38.2
Patches removed:
- patch-ce: fixed in 690d6b97 (Bug 697386)
- patch-gio_gcontenttype.c: committed as ab5aa2aa
- patch-gio_glocalfile.c: fixed in 584358 (Bug 698348)
- patch-gio_gthreadedresolver.c: fixed in 8372f22b
- patch-glib_gfileutils.c: fixed in 8372f22b
- patch-glib_gmarkup.c: : fixed in 8372f22b
- patch-glib_gstrfuncs.c: fixed in 8372f22b
Patches changed:
- patch-aa: last 3 hunks removed as committed as 996edb0 (Bug 706958)
- patch-ah: last 2 hunks removed as something similar in 8372f2
- patch-ak: last 3 hunks removed as committed as 996edb0 (Bug 706958)
- patch-ba: hunk 9 removed as committed as d47430 (Bug 697365)
Overview of changes from GLib 2.38.1 to 2.38.2
===============================================
* GCancellableSource will now dispatch for each time a cancellable is
cancelled (ie: in the case that it was reset) but this is still
considered undefined behaviour
* fix g_source_add_child_source() thread safety issues
* add workaround for buggy D-Bus daemons when path-matching on '/'
* fallback to pathname queryinfo to help g_file_copy() work on gvfs
filesystems that don't implement query_info_on_read()
* don't crash if loading a DBusActivatable application from keyfile
* fix crash when replacing a symlink with another using GIO
* add a fallback for '-symbolic' icons to the non-symbolic form
Overview of changes from GLib 2.38.0 to 2.38.1
===============================================
* Fix error code checks when SOCK_CLOEXEC is defined but not supported
(fix support for GNU/Hurd)
* g_settings_list_children: only list viable schemas
(fix gsettings list-recursively crashes with invalid schemas installed)
* GDBusObjectManagerClient: Fix typo in the /org/freedesktop/DBus path
when adding match rules
* Various -Werror=format-nonliteral fixes
* gmessages: fix clang annotations to work with older versions
* gio: don't dist (generated file) gnetworking.h
* Restore gl_GLIBC21 to configure; needed for libcharset
Translations:
Catalan (Valencian)
Norwegian bokmål
Russian
Serbian
What's new in Glib 2.38
========================
* Application support
- GIO now provides an implementation of Desktop Actions from the
desktop entry specification
- GApplication now implements the org.freedesktop.Application
interface as per the desktop entry specification, allowing for
standards-based D-Bus launching of GLib-based applications
- GDesktopAppInfo now supports DBusActivatable as per the desktop
entry specification, allowing GLib-based applications to use D-Bus
to launch other applications
- GApplication now has a "busy" flag that can be set on an application
to allow the shell to show that it is busy
* GObject
- the private offset for a given class type is now always constant.
This was done by reorganising the memory layout of instances so that
the private data comes before the "official" pointer for the object
(ie: at a negative offset). Valgrind macros were added to mitigate
any problems that this may have caused.
- a new G_DEFINE_TYPE_WITH_PRIVATE has been added along with a
generated function *_get_instance_private() that can now serve as an
equally-performing alternative to ->priv pointers in instances
(allowing memory savings)
- new G_PRIVATE_FIELD, G_PRIVATE_FIELD_P and G_PRIVATE_OFFSET macros
provide a convenient method of converting between named variables in
private structures and their (now constant) offsets
- installing properties on a GObjectClass must now be done from
class_init. It is no longer valid to install them after class_init
has returned.
- it is now possible to manually break a GObject property binding
without destroying one of the objects involved
* Icons
- the requirements for implementing the GIcon interface have changed
in order to make it possible to consume all implementations of GIcon
with a finite number of cases
- a new GBytesIcon type was added for an icon represented by an
in-memory binary blob in a known image format (ideally png).
- new APIs g_icon_serialize() and g_icon_deserialize() replace the old
to/from_string APIs and will always work, irrespective of which
types have been initialised in the calling process, allowing for a
serialised GdkPixbuf to be deserialised in a process that doesn't
have GdkPixbuf
- support for icons has been added to GMenuModel using the new APIs
* Actions and menus
- GPropertyAction provides a convenient way of creating a stateful
property corresponding to a property on a GObject, such as the
"visible-child-name" property of a GtkStack
- new API g_menu_remove_all()
- we now have established rules about what is a "valid" action name
and an API to check them
- a new API for converting detailed action names to and from the
split-out name and parameter value (as GVariant)
- for backwards compatibility, invalid action names can still be used
with most functions, but this is not recommended
* Other GIO
- GDBus now supports services that wish to handle some of all
properties on an interface asynchronously, without requiring the
service to reimplement the entire org.freedesktop.DBus.Properties
interface
- GFile now has a new _measure_disk_usage() (and async) API for
recursively determining the amount of disk space used by a
particular directory (akin to 'du').
- asynchronous version of g_file_trash() and g_file_make_directory()
have been added
* Other new API
- GRegex has a new function to query the maximum lookbehind length to
allow for regexp matching on streams
- GVariant has two new APIs for constructing strings that allow
avoiding copies in some cases: g_variant_new_take_string() and
g_variant_new_printf()
* Testing
- we can now generate TAP output
- new support functions for simplifying the process of dealing with
data files for srcdir != builddir and installed test cases
- g_test_trap_subprocess() provides a portable alternative to
g_test_trap_fork()
* Other
- GLib now builds on Android against the bionic C library
Overview of changes from GLib 2.37.93 to 2.38.0
================================================
* fix the documentation for GSourceFuncs
* fix compilation on OS X/ppc64
Bugs fixed: 708445, 647145
Translations updated:
Danish
French
Portuguese
Punjabi
Overview of changes from GLib 2.37.92 to 2.37.93
================================================
* a couple of bugfixes in the new g_file_measure_disk_usage() API
* updated Traditional Chinese translation
Overview of changes from GLib 2.37.7 to 2.37.92
===============================================
* new API g_file_measure_disk_usage() similar to du(1)
* minor fixes
* Translation updates:
Assamese
Belarusian
Brazilian Portuguese
Catalan
Czech
Galician
German
Hungarian
Indonesian
Italian
Korean
Korean
Latvian
Lithuanian
Polish
Serbian
Slovenian
Spanish
Overview of changes from GLib 2.37.6 to 2.37.7
==============================================
* GDateTime now supports %:z formatting variations
for timezones. This is a GNU date extension.
* Bugs fixed:
685387 Segfault with GObject.signal_handler_is_connected()...
686786 g_socket_get_available_bytes() returns wrong value ...
705027 GSocket GSource not threadsafe on Windows
706469 Fix G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE documentation
706706 Fix Gir annotations on g_loadable_icon_load_finish
706888 gtype: fix a no-op assertion
706958 configure.ac: fix atomic opts detection
707092 "File Utilities" page for GLib documentation doesn'...
707151 gdatetime: Extend the '%z' timezone format
* Translation updates:
Catalan
Hungarian
Japanese
Polish
Slovak
Tamil
Overview of changes from GLib 2.37.5 to 2.37.6
==============================================
* Tests using the g_test facilities can now generate TAP output
* Bugs fixed:
680926 generic type fallback logic is broken for -symbolic
684327 setting null icon to icon list
689245 GSocket unable to reuse (address,port) on Mac OS X
692125 Support TAP as GTest output format
693335 build: fix dtrace-related warnings
696633 gdbus-codegen trips over unicode chars when using python 3.x
696970 Compiling 2.36.0 for win64 fails
697185 GSocket – Allow specifying the multicast interface from...
700268 Add support for using the clang analyzer
701318 Add G_SPAWN_DEFAULT to GSpawnFlags
701529 glib/tests/gdatetime: use UTC time in test_GDateTime_diff()
701800 a new approach to reporting critical errors
702674 g_date_time_new_utc crash
704165 GLib.IOChannel read_unichar() fails
705075 Simplify g_get_tmp_dir()
705152 Race in glib/task.test
705398 gtype: Fix typo in g_type_class_add_private() error message
705570 Check ref_count in g_object_notify_by_pspec
705600 Deprecate GSimpleActionGroup functions?
* Updated translations:
Assamese
Brazilian Portuguese
Czech
Dutch
Galician
Gujarati
Hebrew
Italian
Lithuanian
Marathi
Norwegian bokmål
Russian
Slovenian
Spanish
Thai
Traditional Chinese
Overview of changes from GLib 2.37.4 to 2.37.5
==============================================
* Implement the Desktop Action specification: In the case that the
application is a GApplication and DBusActivatable, actions from the
desktop file are translated into GActions that have been added to
the application with g_action_map_add_action().
* GPropertyAction is a new type of GAction that represents the value
of a property on an object, and allows to change the value when
activated.
* GNetworkMonitorNetlink can now handle default routes via a device.
* The gsettings tool now reports failure to write a key (e.g. because
the key was locked down)
* Miscellaneous new api:
- g_variant_new_printf
- g_action_print_detailed_name
- g_regex_get_max_lookbehind
* Bugs fixed:
664444 Support additional application actions in .desktop files
684123 glib build only tries -D_GNU_SOURCE if glibc is detected
689794 support incremental matching
699259 add org.freedesktop.Application support to GIO
700460 rewrite tests to not rely on precise timing of timeouts
701511 updates to various GSource types
701609 gnetworkmonitornetlink: handle default route via device
703270 add GPropertyAction
704157 GAction: add function for printing detailed names
704250 Doc: various fixes
704267 regression gsourceclosure: segfault in gedit file chooser
704322 glib-unix: fix handling of multiple signal source for the...
704424 No error when failing to override a locked key
704447 Fix build/use of g_child_watch_closure_callback on Windows
704523 g_thread_create_full() can dereference NULL pointer
704543 Add implementations for G_GNUC_*_IGNORE_DEPRECATIONS for ...
704567 gdbusnameowning: Don't spew an error if we're releasing a...
704585 libc printf can give mixed-case strings for NaN and Inf
704587 FTBFS: statfs_result is undeclared for statvfs()
704699 gmain: Reset signal handlers to default when source is
704704 AI_NUMERICSERV cannot be used with ai_socktype = 0
704873 inotify: don't assume mainloop is running
704999 glib/convert.test crashing due to lack of iconv cache
704931 GMenuModel: add annotations to virtual functions
* Translation updates:
Assamese
Czech
German
Gujarati
Spanish
Tamil
Overview of changes from GLib 2.37.3 to 2.37.4
==============================================
* Bugs fixed:
701283 g_source_add_child_source() segfault
702147 inconsistency of G_STRFUNC
703191 new private macros interact poorly with versioning macros
703254 Doc: various fixes
703407 g_spawn_async() keeps child_pid_report_pipe open in child process
703437 GDBusConnection: be more careful with async GetAll
703478 Missing G_BEGIN/END_DECLS in gsettingsschema.h
* Translation updates:
Catalan
Overview of changes from GLib 2.37.2 to 2.37.3
==============================================
* add a new API for instance private data: G_DEFINE_TYPE_WITH_PRIVATE
* fix timestamps in tarball to prevent automake from being required to
build the unmodified source
* add new D-Bus API for async property handling
* add back fsync() on ext4 for g_file_set_contents() after it was
discovered that despite statements in the ext4 documentation
suggesting that this is safe, it is not safe.
* Translations:
Italian
Norwegian bokmål
* Bugs fixed:
698375 - D-Bus async properties
700350 - timestamp issue
701560 - fsync issue (fixed again)
700035 - new API for instance private data
Overview of changes from GLib 2.37.1 to 2.37.2
==============================================
* The GLib test utilities have grown some file-related APIs
to support tests that can be used installed and uninstalled.
* Installing properties after class initialization is deprecated,
and will trigger a warning.
* GApplication:
- Support org.freedesktop.Application, including D-Bus activation
from desktop files
- Set prgname to appid for services
* Bugs fixed:
549783 gtester lacks framework for tests with data files
692848 Fix property example in gobject tutorial
698018 Add an explicit g_binding_release()
698614 GObject: prevent installing properties after init
699259 add org.freedesktop.Application support to GIO
699959 g_file_copy(): Ensure we create private files by default
700123 Test failure: g_inet_socket_address_get_scope_id
700725 GIcon: NULLify the `type' out param in the sync methods too
701401 gtest: add function for testing for WINE
701456 Error in gnome/glib/gio/tests/file.c
701474 Error building glibmm due to extra comma in glib/gtestutils.h
701560 various improvements for g_file_set_contents()
701680 GFileEnumerator: Add some documentation about ordering
701878 Check wakeup() before iteration(TRUE) doesn't block
* Translations:
Assamese
Czech
Galician
Gujarati
Kannada
Marathi
Odia
Polish
Slovenian
Spanish
Telugu
Overview of changes from GLib 2.37.0 to 2.37.1
==============================================
* add support for installed tests:
https://live.gnome.org/GnomeGoals/InstalledTests
* add a new g_test_trap_subprocess() that works on Windows as a
replacement for the (now deprecated) g_test_trap_fork()
* support for explicitly cancelling a gobject property binding
* performance improvements for signal argument handling
* stop using `quotes' in very many log messages generated by GLib, for
favour of 'this style'. This may cause testcases in other packages
to fail if they were matching on the previous text.
* improve manpages: add missing arguments and flags
Translations:
Aragonese
Assamese
Gujarati
Hindi
Kannada
Norwegian bokmål
Odia
Slovenian
Spanish
Tamil
Telugu
Bugs fixed:
679683 replace g_test_trap_fork()
694380 Improve signal argument collection performance
695233 Strings require plural forms
697849 spelling fixes in cross.xml and running.xml
698877 GProxyAddressEnumerator calls g_network_address_parse_uri without port
698981 [PATCH] test /gdbus/connection/large_message could hang forever
699079 Prototype support for installed tests
699485 [PATCH] tests/mappedfile: Also handle ENOMEM
699493 SOCKS5 proxy code crashes if it cannot authenticate
699500 gbitlock: fix this to not unconditionally use futex emulation
699779 [PATCH] G_GNUC_FORMAT: documentation error
700263 m4macros/glib-gettext.m4: Don't use AC_HEADER_STDC
700714 [PATCH] gtestutils: Ensure test subprocesses don't dump core
700746 Use 'dumb quotes' rather than `really dumb quotes'
2013-12-08 14:08:59 +01:00
|
|
|
share/gtk-doc/html/glib/api-index-2-38.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/glib/api-index-2-4.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/glib/api-index-2-40.html
|
2014-10-08 01:18:36 +02:00
|
|
|
share/gtk-doc/html/glib/api-index-2-42.html
|
2015-06-11 01:00:05 +02:00
|
|
|
share/gtk-doc/html/glib/api-index-2-44.html
|
Update glib2 to 2.48.0
- removed patch-gio_gtestdbus.c: applied upstream.
- removed patch-gio_gunixmounts.c: can no longer reproduce problem.
Overview of changes in GLib 2.48.0
==================================
* a minor build fix in the name of determinism
* a few coverity fixes
Bugs fixed:
763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
Translations updated:
Danish
Italian
Overview of changes in GLib 2.47.92
===================================
* gdbus-codegen now supports g_autoptr()
* g_get_user_runtime_dir() now reliably returns an existing directory
* g_array_remove_range() can now remove 0 items from the end of an array
* Many fixes for Windows
* build fixes
* file monitoring
* gsettings backend
* streams
* random numbers
* wide character support
* documentation improvements
* other small bugfixes
Bugs fixed:
724847 Segmentation fault on "gsettings list-recursively"
743933 gapplication: add --app-id command line option
756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
757506 gsettings: schema_list should use the passed schema's source
760694 W32: Apps linked with -mwindows make cursor busy sometimes
762202 g_win32_error_message improvements
762637 build: Unconditionally dist tapset files
762748 Undefined behavior
762937 Mention that g_clear_error can be used with an "empty" GError
763339 array: Support clearing an empty array with g_array_remove_range()
763344 g_get_user_runtime_dir(): ensure directory exists
763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
Translations updated:
Brazilian Portuguese
Czech
Finnish
French
Galician s
German
Greek
Hebrew
Hungarian
Italian
Kazakh
Korean
Latvian
Lithuanian
Occitan
Polish
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.6
==================================
* Windows usupport:
- Fixes and improvements to the GSettings registry backend
- Handle readability and writability of registry keys
- Use Unicode registry APIs
* Bugs fixed:
760852 744772 761126 747927 761337 744570 761504 761550 761843
744570 GString is missing (transfer none) annotations on many of its methods
744772 systemtap and gdb scripts install in wrong place
747927 Documentation: various small improvements
760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
761126 winiconv: update to upstream version
761337 Fix some annotations
761504 W32 registry GSettings backend does not use Unicode
761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
* Translation updates:
Brazilian Portuguese
Bulagarian
Chinese (Taiwan)
Hungarian
Polish
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.5
==================================
* the system copy of PCRE is now used by default to implement GRegex.
Configure with --with-pcre=internal if a system PCRE version
is unavailable or undesired.
* interfaces for DTLS support have been added. A new version of
glib-networking will also be required.
* GDBusMethodInvocation now drops replies if the sender set the
NO_REPLY_EXPECTED flag
* several GApplication fixes, including fixes for commandline arguments
in interpreted languages on Windows
Bugs fixed:
624186 Deprecate glib-gettext macros
734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
735754 Implement close on TLS GOutputStream
748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
752240 Add DTLS support to GIO
755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
756875 Include ntdef.h for NTSTATUS
759554 g_application_run() calls g_main_context_default() repeatidly
760199 gsettings: Install gettext ITS rules
760215 G_LIKELY/_UNLIKELY macros need more parentheses
760683 regex test: Check the expected PCRE exceptions at runtime
Translations updated:
Brazilian Portuguese
Czech
German
Lithuanian
Swedish
Overview of changes in GLib 2.47.4
==================================
* The GApplication documentation has been improved in several areas.
* Bugs fixed:
749092 gdb pretty-printers fail on Python 3 with a TypeError...
757374 macros: clean up "inline" mess
758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
759134 Add missing checks for gnulib vasnprintf()
759408 Do not use uninitialized var
756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
757372 GApplication: destroy the impl on shutdown
728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
757299 glib-compile-resources: do not leak c_name
758553 Fix gettext use
758823 file monitors: reorder some code to avoid segfault
756214 gsettings: Don't translate ""
710243 Add GParamSpec object ref management annotations
735696 xdgmime: Finer handling for cases where mmap() is not available
752983 gapplication: Acquire the main context before running
* Translation updates:
Swedish
Overview of changes in GLib 2.47.3
==================================
The inline cleanup in the last release accidentally removed three
symbols from libglib-2.0.so. It is unlikely that this will have caused
any problems because these symbols were only backup symbols for
definitions exported as inlines in the header files, but ABI is ABI.
This release corrects only this problem.
Overview of changes in GLib 2.47.2
==================================
* We have formalised the assumption that all compilers that are
interested in support 'static inline' and simplified the macros around
this considerably. Please watch for and report unintentional fallout.
* New API: hardware-assisted helpers for overflow-checked integer math.
* other fixes
Bugs fixed:
696324 gtester-report doesn't work with Python 3.x
719966 glib: Add missing (nullable) and (optional) annotations
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
755364 make gtkdoc-check happy again
756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
756988 GSequence should document each function's complexity
757294 Move G_POLLFD_FORMAT to glibconfig.h
757374 macros: clean up "inline" mess
757451 doc: fix g_task_attach_source() example
757628 gio tests fail to build when cross compiling 2.46.1
757693 Invalid free in g_local_file_trash()
757742 Fix up annotations in ghash.c
758181 GTask: fix wrong example code
Translations updated:
Greek
Hebrew
Hungarian
Norwegian bokmål
Portuguese
Scottish Gaelic
Simplified Chinese
Spanish
Overview of changes in GLib 2.47.1
==================================
* The Unicode support has been updated to version 8.0 of the Unicode standard
* GDesktopAppInfo no longer sets the DISPLAY environment variable when
launching apps. This is now done in the GAppLaunchContext implementations
when appropriate
* Bug fixes:
664740 Key-value file parser, space after integer
687223 cleverer GThreadPool management
692085 stderr and stdout are not always file descriptors 1 and 2
697907 Add interface for socket-like things (GSocket, DTLS, etc)
735754 Implement close on TLS GOutputStream
737116 Add functions to print GSocketConnectables and addresses as strings
743011 Minor additions to GError documentation
749161 undefined reference to `__imp__stat32i64'
749314 Cannot restore a just-trashed file
751924 Add recvmmsg()-like API on GSocket
752240 Add DTLS support to GIO
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
753310 Remove `#pragma GCC system_header` from gmessages.h
753935 Update example namespace and class names in GObject tutorial
754855 Object instantiation documentation refers to example that no longer ex...
754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
754994 g_date_time_get_second () sometimes returns an off-by-one result
755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
755351 Example still contains g_autoptr(gchar)
755355 Move GStrv to glib.h so it can be used with g_auto()
755374 g_variant_get_child(): flatten-first logic on '&'
755496 glib 2.46 fails GStreamer test suite
755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
755795 2.46 considers empty files as octet-stream rather than text (leads to...
755961 Fix up annotations in gbytes.c
756053 MSVC doesn't understand the symbol 'msghdr'
756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
756077 testutils: remove internal ABI comment
756099 g_main_context_query(): Annotate @n_fds as (in) parameter
756139 musl: ctors called in the wrong order
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
756316 GSequence should provide fast api to check if empty
756382 snprintf used on Windows with VS2015 doesn't support %n
756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
756550 gtypes.h: Make G_MININTn literals negative
756875 Include ntdef.h for NTSTATUS
756952 giomodule: return a copy of module name
* Translation updates:
Basque
Czech
Serbian
Serbian Latin
Vietnamese
Overview of changes in GLib 2.46.0
==================================
* Disable runtime-deprecation warnings
* Fix marshalling of flags on bigendian 64bit architectures
* Translation updates
Brazilian Portuguese
Danish
German
Latvian
Russian
Turkish
Overview of changes in GLib 2.45.8
==================================
* utf8 validation and utf8-to-ucs4 conversion are faster
* Small speedups to property change notification
* Various other small optimizations for GQuark, GData
* Bugs fixed:
696426 GParamSpecTypeInfo do not need to be static
735429 Cleanup MSVC Project Files Generation
738504 Optimize UTF-8 decoding by unrolling branches and expressions
742903 Add missing (transfer) annotation to GString
748633 g_set_object order of operations
754431 Fix build of glib/gstrfuncs.c on Windows
754560 gioerror: Add more mappings for WinSock error codes
754582 Glib cannot compile
754601 Make g_strerror work with non-glibc POSIX systems
754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
754788 more g_strerror stuff
754831 autocleanups: Add GString type
754924 Improve test coverage of g_utf8_validate() by added known-...
754986 Avoid unnecessary signal emission during draw
* Translation updates:
Italian
Kazakh
Korean
Lithuanian
Slovenian
Swedish
Overview of changes in GLib 2.45.7
==================================
* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
backends (e.g. cloud storage).
* GFileMonitor: Make the inotify backend work with atomic renames again
* GSettings: change notification is again working unconditionally
* GListStore has a sort function now
* Test infrastructure:
- Tests are now required to have unique names
- TAP support has been improved
- A macro for asserting that two memory regions have identical content
has been added
* Bugs fixed:
708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
742849 inotify: send paired events to both sides
744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
747364 Fix GError leak in g_file_query_writable_namespaces()
749492 Support file creation time on FreeBSD and NetBSD
752769 (g_socket_receive_message | g_socket_send_message) performance
753745 glib-genmarshal still needed for cross-compilation
754152 Add g_list_store_sort
754211 Memory leak in g_file_enumerator_iterate ()
754264 GLib 2.44 certificate chain construction fails if the PEM incl...
754283 gtestutils: add g_assert_cmpmem()
754284 gtestutils: print the TAP test plan first, not last
754286 misc gtestutils fixes
754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
* Translation updates:
Chinese (Taiwan)
French
Galician
Greek
Hebrew
Hungarian
Indonesian
Polish
Portuguese
Overview of changes in GLib 2.45.6
==================================
* Fix a test failure and a build failure
Overview of changes in GLib 2.45.5
==================================
* GNetworkMonitor now provides information about metered networks
* g_mem_set_vtable has been deprecated; it has not been working for
quite a while. The recommendation is to use valgrind, or replace
malloc itself.
* Bugs fixed:
656325 Make GDBusInterfaceVTable binding friendly
741779 Documentation tweaks addressing real-world API misuses
741822 Fails to build with VS 2015
742386 gdbusconnection: Don't g_printerr() when exiting
743018 gobject: Add more cross-links between documentation pages
750282 Add g_network_monitor_get_network_metered() to get if the connection...
751358 GFileMonitor doesn't react to "mv some-file watched-file"
751592 Stop using GMemVtable
751598 Stop 'handle-local-options' propagation when callback reports an err...
751610 g_str_hash produces collisions with strings of length 2
751751 Wrong docs of g_async_queue_remove
752210 gdbus command crashes with SIGSEGV
752656 gdbusconnection: Fix signal subscription documentation
752767 Fix typo in g_hash_table_replace() documentation
753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
753285 g_menu_item_set_icon fails if called with NULL icon
* Translation updates:
Catalan
Czech
French
Indonesian
Lithuanian
Norwegian bokmål
Slovak
Spanish
Thai
Turkish
Overview of changes in GLib 2.45.4
==================================
* Bugs fixed:
727829 win32: glibconfig.h.win32 updates
741901 Clang cannot know that g_error don't return
746339 GSocket kills process when fd is not a socket
747676 gio/tests/socket fails: test_fd_roundtrip
748610 Some tests fail with non-English locales
749911 g_inet_address_to_string broken on XP/2003
749912 g_inet_address_new_from_string broken on XP/2003
750625 Should dismiss Software Updates Available notification after...
750807 G_BREAKPOINT doesn't work as intended on Darwin
751160 gtask does unnecessary work
751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
751731 GFile/DirectoryMonitor emit move events with other_file=NULL
751737 gio/tests/appmonitor test fails in 2.45.3
751798 Wrong enum type used in some test-cases
752089 make gsocketservice::active a property
752293 small cleanup: use list_free_full
* Translation updates:
Greek
Hebrew
Portuguese
Overview of changes in GLib 2.45.3
==================================
* Improve performance of g_signal_handler_disconnect for signals
with many handlers
* GDBus has gained a new call flag to allow interactive authorization
* GSettings:
- New API: g_settings_schema_list_keys
- Deprecated: g_settings_list_keys
* OS X:
- Implement GNotification
- Bump the OS X requirement to 10.9
* Windows:
- Add registry reading API
- Reimplement GAppInfo using registry information
* Bugs fixed:
666831 Support URI opening on W32
728489 property action with inverted boolean state
730168 Incorrect annotation on g_action_group_get_action_state_type return...
733325 Several regex tests fail with pcre3 8.35
734888 GLib has no helper functions to work with W32 Registry
737009 signal handler lookup doesn't scale
738185 Misleading language about "file name encoding" in the docs on g_env...
738504 Optimize UTF-8 decoding by unrolling branches and expressions
739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
739424 gnome-shell crashes when files are added, deleted, or modified in $...
739616 DBus; Add new call flag to allow interactive authorization
740308 Add g_settings_schema_list_keys() method
740516 RFE: please provide an introspectible version of g_log_set_handler
741788 Document GSettings build system integration
745013 GBinding not thread safe
747146 Implement GNotification on OSX
747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
748727 Filechooser dialog shows no icons for directories on W32
749693 GActionGroupExporter: flush queue on requests
750203 GNetworkMonitorNetlink hangs in user namespace
750322 gapplication: Make sure --help output is translated
750344 GTlsInteractionClass is missing from doc
750369 Various GBinding cleanups
750386 Race condition in g_io_condition_get_type
750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
750573 GTlsDatabaseClass is not documented
750918 genmarshal: silence register storage class warnings
751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
479730 The "g_key_file_set_comment" interface prepends '#' character to...
* Translation updates:
Hungarian
Spanish
Overview of changes in GLib 2.45.2
==================================
* Improve error reporting in glib-compile-schemas.
* Add introspection annotations to GListStore.
* Bugs fixed:
696749 win32 : failed to compile because of careless mistake in the code
723394 const parameter to GtkPopover gtk_popover_set_pointing_to
724113 gdbus-connection-loss test can fail on slow machines
725981 tap-driver.sh: internal error getting exit status
733325 Several regex tests fail with pcre3 8.35
744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
747882 gtype: Bump allowed number of children
748534 gtest: if a subprocess assertion fails, print its stdout and stderr
748612 de_DE locale used in option-context test is not supported by FreeBSD
748614 Double unref in g_socket_listener_add_inet_port
748834 glocalfilemonitor: Emit notification on rate limit change
749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
749080 gdatetime test: fails if close to rollover between seconds
749180 gnetworkaddress: add return type annotation to parse methods
749352 g_binding_unbind() fails when source is also the target
749353 GBinding does not connect to the detailed notify signal
* Translation updates:
Catalan
French
Slovak
Thai
Overview of changes in GLib 2.45.1
==================================
* The GSettings schema compiler, glib-compile-schemas has been changed
to reject schema xml that has duplicate <summary> or <description>
elements. Such elements typically occur when translations are merged
into the schema, with xml:lang attributes. This is not the correct
way to translate schemas. Instead keep the translations in the .mo
file and set the gettext-domain attribute on the <schemalist> element.
* The file monitoring infrastructure has been rewritten, and all backends
have seen major improvements.
The inotify backend is reporting events with less delay (no event will
be delayed more than 10ms) and wakeups due to file monitoring have been
significantly reduced. A CHANGES_DONE event will also be sent when new
files appear.
The poll implementation is now using the thread default main context.
The fam implmentation is now running in the worker thread.
The fen implementation has been removed, since it was unmaintained.
* The GSettings schema compiler, glib-compile-schemas, is more strict
about rejecting schemas with xml:lang style merged translations.
Schema translations should be done by specifying the gettext domain
in the xml, and keeping the translations in gettext. To avoid breaking
already-installed schemas, this change is only taking effect when
you use the --strict option.
* The hardcoded 10-thread limit of GTask's thread pool has been removed,
since it was prone to causing deadlocks. The thread pool is now allowed
to grow dynamically and will shrink back over time.
* GSimpleAsyncResult has been deprecated in favor of GTask.
* The algorithm used by GAppInfo to find default handlers for mime types
has been tweaked to prefer apps that handle the specific subtype over
default handlers for a generic supertype.
* Bug fixes:
627285 inotify file monitor hardwired delay
631597 Segmentation fault in append_escaped_text
661767 merge/improve various bits of run-in-thread functionality
687223 cleverer GThreadPool management
711547 win32: silence some build warnings
719966 glib: Add missing (nullable) and (optional) annotations
726447 Possibly an error in text string
728663 W32: wrong stat struct is used when built with MinGW-w64
728669 W32: GLocalFile can't measure size of files larger than 2^32...
730188 gsocket: Document FD ownership with g_socket_new_from_fd()
733325 Several regex tests fail with pcre3 8.35
738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
739850 GClosure: add valgrind hints
741791 gmain: Save errno when handling unix signals
744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
745255 Add support for copying sessions between GTlsClientConnections
745745 gdbus: fix out-of-bound array access
745821 Don't use __alloc_size__ attribute with clang
746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
746753 Glib-compile-resources --generate-header not using ".h" as ...
747209 glib-compile-schemas ought to reject repeated <summary> and...
747349 Conversion of gdbus to use GTask causes deadlocks
747363 gatomic: Add missing new line in API doc comment
747472 Don't ignore already-installed schemas with multiple <summa...
747541 gdbus segfaults with invalid --dest
747772 Having hardcoded utf8 strings in the source code does not p...
748019 gsocketconnection: Fix copy-pasto in documentation
748177 not all test schemas are distributed, "make distcheck" fails
* Translation updates:
Basque
Czech
Danish
Finnish
German
Hebrew
Icelandic
Norwegian bokmål
Russian
Turkish
2016-04-07 20:33:05 +02:00
|
|
|
share/gtk-doc/html/glib/api-index-2-46.html
|
|
|
|
share/gtk-doc/html/glib/api-index-2-48.html
|
2016-11-25 13:42:21 +01:00
|
|
|
share/gtk-doc/html/glib/api-index-2-50.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/glib/api-index-2-6.html
|
|
|
|
share/gtk-doc/html/glib/api-index-2-8.html
|
|
|
|
share/gtk-doc/html/glib/api-index-deprecated.html
|
|
|
|
share/gtk-doc/html/glib/api-index-full.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/glib/deprecated.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/file-name-encodings.png
|
|
|
|
share/gtk-doc/html/glib/glib-Arrays.html
|
|
|
|
share/gtk-doc/html/glib/glib-Asynchronous-Queues.html
|
|
|
|
share/gtk-doc/html/glib/glib-Atomic-Operations.html
|
|
|
|
share/gtk-doc/html/glib/glib-Automatic-String-Completion.html
|
|
|
|
share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html
|
|
|
|
share/gtk-doc/html/glib/glib-Base64-Encoding.html
|
|
|
|
share/gtk-doc/html/glib/glib-Basic-Types.html
|
|
|
|
share/gtk-doc/html/glib/glib-Bookmark-file-parser.html
|
Update glib2 to 2.48.0
- removed patch-gio_gtestdbus.c: applied upstream.
- removed patch-gio_gunixmounts.c: can no longer reproduce problem.
Overview of changes in GLib 2.48.0
==================================
* a minor build fix in the name of determinism
* a few coverity fixes
Bugs fixed:
763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
Translations updated:
Danish
Italian
Overview of changes in GLib 2.47.92
===================================
* gdbus-codegen now supports g_autoptr()
* g_get_user_runtime_dir() now reliably returns an existing directory
* g_array_remove_range() can now remove 0 items from the end of an array
* Many fixes for Windows
* build fixes
* file monitoring
* gsettings backend
* streams
* random numbers
* wide character support
* documentation improvements
* other small bugfixes
Bugs fixed:
724847 Segmentation fault on "gsettings list-recursively"
743933 gapplication: add --app-id command line option
756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
757506 gsettings: schema_list should use the passed schema's source
760694 W32: Apps linked with -mwindows make cursor busy sometimes
762202 g_win32_error_message improvements
762637 build: Unconditionally dist tapset files
762748 Undefined behavior
762937 Mention that g_clear_error can be used with an "empty" GError
763339 array: Support clearing an empty array with g_array_remove_range()
763344 g_get_user_runtime_dir(): ensure directory exists
763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
Translations updated:
Brazilian Portuguese
Czech
Finnish
French
Galician s
German
Greek
Hebrew
Hungarian
Italian
Kazakh
Korean
Latvian
Lithuanian
Occitan
Polish
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.6
==================================
* Windows usupport:
- Fixes and improvements to the GSettings registry backend
- Handle readability and writability of registry keys
- Use Unicode registry APIs
* Bugs fixed:
760852 744772 761126 747927 761337 744570 761504 761550 761843
744570 GString is missing (transfer none) annotations on many of its methods
744772 systemtap and gdb scripts install in wrong place
747927 Documentation: various small improvements
760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
761126 winiconv: update to upstream version
761337 Fix some annotations
761504 W32 registry GSettings backend does not use Unicode
761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
* Translation updates:
Brazilian Portuguese
Bulagarian
Chinese (Taiwan)
Hungarian
Polish
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.5
==================================
* the system copy of PCRE is now used by default to implement GRegex.
Configure with --with-pcre=internal if a system PCRE version
is unavailable or undesired.
* interfaces for DTLS support have been added. A new version of
glib-networking will also be required.
* GDBusMethodInvocation now drops replies if the sender set the
NO_REPLY_EXPECTED flag
* several GApplication fixes, including fixes for commandline arguments
in interpreted languages on Windows
Bugs fixed:
624186 Deprecate glib-gettext macros
734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
735754 Implement close on TLS GOutputStream
748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
752240 Add DTLS support to GIO
755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
756875 Include ntdef.h for NTSTATUS
759554 g_application_run() calls g_main_context_default() repeatidly
760199 gsettings: Install gettext ITS rules
760215 G_LIKELY/_UNLIKELY macros need more parentheses
760683 regex test: Check the expected PCRE exceptions at runtime
Translations updated:
Brazilian Portuguese
Czech
German
Lithuanian
Swedish
Overview of changes in GLib 2.47.4
==================================
* The GApplication documentation has been improved in several areas.
* Bugs fixed:
749092 gdb pretty-printers fail on Python 3 with a TypeError...
757374 macros: clean up "inline" mess
758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
759134 Add missing checks for gnulib vasnprintf()
759408 Do not use uninitialized var
756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
757372 GApplication: destroy the impl on shutdown
728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
757299 glib-compile-resources: do not leak c_name
758553 Fix gettext use
758823 file monitors: reorder some code to avoid segfault
756214 gsettings: Don't translate ""
710243 Add GParamSpec object ref management annotations
735696 xdgmime: Finer handling for cases where mmap() is not available
752983 gapplication: Acquire the main context before running
* Translation updates:
Swedish
Overview of changes in GLib 2.47.3
==================================
The inline cleanup in the last release accidentally removed three
symbols from libglib-2.0.so. It is unlikely that this will have caused
any problems because these symbols were only backup symbols for
definitions exported as inlines in the header files, but ABI is ABI.
This release corrects only this problem.
Overview of changes in GLib 2.47.2
==================================
* We have formalised the assumption that all compilers that are
interested in support 'static inline' and simplified the macros around
this considerably. Please watch for and report unintentional fallout.
* New API: hardware-assisted helpers for overflow-checked integer math.
* other fixes
Bugs fixed:
696324 gtester-report doesn't work with Python 3.x
719966 glib: Add missing (nullable) and (optional) annotations
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
755364 make gtkdoc-check happy again
756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
756988 GSequence should document each function's complexity
757294 Move G_POLLFD_FORMAT to glibconfig.h
757374 macros: clean up "inline" mess
757451 doc: fix g_task_attach_source() example
757628 gio tests fail to build when cross compiling 2.46.1
757693 Invalid free in g_local_file_trash()
757742 Fix up annotations in ghash.c
758181 GTask: fix wrong example code
Translations updated:
Greek
Hebrew
Hungarian
Norwegian bokmål
Portuguese
Scottish Gaelic
Simplified Chinese
Spanish
Overview of changes in GLib 2.47.1
==================================
* The Unicode support has been updated to version 8.0 of the Unicode standard
* GDesktopAppInfo no longer sets the DISPLAY environment variable when
launching apps. This is now done in the GAppLaunchContext implementations
when appropriate
* Bug fixes:
664740 Key-value file parser, space after integer
687223 cleverer GThreadPool management
692085 stderr and stdout are not always file descriptors 1 and 2
697907 Add interface for socket-like things (GSocket, DTLS, etc)
735754 Implement close on TLS GOutputStream
737116 Add functions to print GSocketConnectables and addresses as strings
743011 Minor additions to GError documentation
749161 undefined reference to `__imp__stat32i64'
749314 Cannot restore a just-trashed file
751924 Add recvmmsg()-like API on GSocket
752240 Add DTLS support to GIO
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
753310 Remove `#pragma GCC system_header` from gmessages.h
753935 Update example namespace and class names in GObject tutorial
754855 Object instantiation documentation refers to example that no longer ex...
754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
754994 g_date_time_get_second () sometimes returns an off-by-one result
755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
755351 Example still contains g_autoptr(gchar)
755355 Move GStrv to glib.h so it can be used with g_auto()
755374 g_variant_get_child(): flatten-first logic on '&'
755496 glib 2.46 fails GStreamer test suite
755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
755795 2.46 considers empty files as octet-stream rather than text (leads to...
755961 Fix up annotations in gbytes.c
756053 MSVC doesn't understand the symbol 'msghdr'
756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
756077 testutils: remove internal ABI comment
756099 g_main_context_query(): Annotate @n_fds as (in) parameter
756139 musl: ctors called in the wrong order
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
756316 GSequence should provide fast api to check if empty
756382 snprintf used on Windows with VS2015 doesn't support %n
756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
756550 gtypes.h: Make G_MININTn literals negative
756875 Include ntdef.h for NTSTATUS
756952 giomodule: return a copy of module name
* Translation updates:
Basque
Czech
Serbian
Serbian Latin
Vietnamese
Overview of changes in GLib 2.46.0
==================================
* Disable runtime-deprecation warnings
* Fix marshalling of flags on bigendian 64bit architectures
* Translation updates
Brazilian Portuguese
Danish
German
Latvian
Russian
Turkish
Overview of changes in GLib 2.45.8
==================================
* utf8 validation and utf8-to-ucs4 conversion are faster
* Small speedups to property change notification
* Various other small optimizations for GQuark, GData
* Bugs fixed:
696426 GParamSpecTypeInfo do not need to be static
735429 Cleanup MSVC Project Files Generation
738504 Optimize UTF-8 decoding by unrolling branches and expressions
742903 Add missing (transfer) annotation to GString
748633 g_set_object order of operations
754431 Fix build of glib/gstrfuncs.c on Windows
754560 gioerror: Add more mappings for WinSock error codes
754582 Glib cannot compile
754601 Make g_strerror work with non-glibc POSIX systems
754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
754788 more g_strerror stuff
754831 autocleanups: Add GString type
754924 Improve test coverage of g_utf8_validate() by added known-...
754986 Avoid unnecessary signal emission during draw
* Translation updates:
Italian
Kazakh
Korean
Lithuanian
Slovenian
Swedish
Overview of changes in GLib 2.45.7
==================================
* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
backends (e.g. cloud storage).
* GFileMonitor: Make the inotify backend work with atomic renames again
* GSettings: change notification is again working unconditionally
* GListStore has a sort function now
* Test infrastructure:
- Tests are now required to have unique names
- TAP support has been improved
- A macro for asserting that two memory regions have identical content
has been added
* Bugs fixed:
708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
742849 inotify: send paired events to both sides
744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
747364 Fix GError leak in g_file_query_writable_namespaces()
749492 Support file creation time on FreeBSD and NetBSD
752769 (g_socket_receive_message | g_socket_send_message) performance
753745 glib-genmarshal still needed for cross-compilation
754152 Add g_list_store_sort
754211 Memory leak in g_file_enumerator_iterate ()
754264 GLib 2.44 certificate chain construction fails if the PEM incl...
754283 gtestutils: add g_assert_cmpmem()
754284 gtestutils: print the TAP test plan first, not last
754286 misc gtestutils fixes
754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
* Translation updates:
Chinese (Taiwan)
French
Galician
Greek
Hebrew
Hungarian
Indonesian
Polish
Portuguese
Overview of changes in GLib 2.45.6
==================================
* Fix a test failure and a build failure
Overview of changes in GLib 2.45.5
==================================
* GNetworkMonitor now provides information about metered networks
* g_mem_set_vtable has been deprecated; it has not been working for
quite a while. The recommendation is to use valgrind, or replace
malloc itself.
* Bugs fixed:
656325 Make GDBusInterfaceVTable binding friendly
741779 Documentation tweaks addressing real-world API misuses
741822 Fails to build with VS 2015
742386 gdbusconnection: Don't g_printerr() when exiting
743018 gobject: Add more cross-links between documentation pages
750282 Add g_network_monitor_get_network_metered() to get if the connection...
751358 GFileMonitor doesn't react to "mv some-file watched-file"
751592 Stop using GMemVtable
751598 Stop 'handle-local-options' propagation when callback reports an err...
751610 g_str_hash produces collisions with strings of length 2
751751 Wrong docs of g_async_queue_remove
752210 gdbus command crashes with SIGSEGV
752656 gdbusconnection: Fix signal subscription documentation
752767 Fix typo in g_hash_table_replace() documentation
753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
753285 g_menu_item_set_icon fails if called with NULL icon
* Translation updates:
Catalan
Czech
French
Indonesian
Lithuanian
Norwegian bokmål
Slovak
Spanish
Thai
Turkish
Overview of changes in GLib 2.45.4
==================================
* Bugs fixed:
727829 win32: glibconfig.h.win32 updates
741901 Clang cannot know that g_error don't return
746339 GSocket kills process when fd is not a socket
747676 gio/tests/socket fails: test_fd_roundtrip
748610 Some tests fail with non-English locales
749911 g_inet_address_to_string broken on XP/2003
749912 g_inet_address_new_from_string broken on XP/2003
750625 Should dismiss Software Updates Available notification after...
750807 G_BREAKPOINT doesn't work as intended on Darwin
751160 gtask does unnecessary work
751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
751731 GFile/DirectoryMonitor emit move events with other_file=NULL
751737 gio/tests/appmonitor test fails in 2.45.3
751798 Wrong enum type used in some test-cases
752089 make gsocketservice::active a property
752293 small cleanup: use list_free_full
* Translation updates:
Greek
Hebrew
Portuguese
Overview of changes in GLib 2.45.3
==================================
* Improve performance of g_signal_handler_disconnect for signals
with many handlers
* GDBus has gained a new call flag to allow interactive authorization
* GSettings:
- New API: g_settings_schema_list_keys
- Deprecated: g_settings_list_keys
* OS X:
- Implement GNotification
- Bump the OS X requirement to 10.9
* Windows:
- Add registry reading API
- Reimplement GAppInfo using registry information
* Bugs fixed:
666831 Support URI opening on W32
728489 property action with inverted boolean state
730168 Incorrect annotation on g_action_group_get_action_state_type return...
733325 Several regex tests fail with pcre3 8.35
734888 GLib has no helper functions to work with W32 Registry
737009 signal handler lookup doesn't scale
738185 Misleading language about "file name encoding" in the docs on g_env...
738504 Optimize UTF-8 decoding by unrolling branches and expressions
739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
739424 gnome-shell crashes when files are added, deleted, or modified in $...
739616 DBus; Add new call flag to allow interactive authorization
740308 Add g_settings_schema_list_keys() method
740516 RFE: please provide an introspectible version of g_log_set_handler
741788 Document GSettings build system integration
745013 GBinding not thread safe
747146 Implement GNotification on OSX
747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
748727 Filechooser dialog shows no icons for directories on W32
749693 GActionGroupExporter: flush queue on requests
750203 GNetworkMonitorNetlink hangs in user namespace
750322 gapplication: Make sure --help output is translated
750344 GTlsInteractionClass is missing from doc
750369 Various GBinding cleanups
750386 Race condition in g_io_condition_get_type
750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
750573 GTlsDatabaseClass is not documented
750918 genmarshal: silence register storage class warnings
751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
479730 The "g_key_file_set_comment" interface prepends '#' character to...
* Translation updates:
Hungarian
Spanish
Overview of changes in GLib 2.45.2
==================================
* Improve error reporting in glib-compile-schemas.
* Add introspection annotations to GListStore.
* Bugs fixed:
696749 win32 : failed to compile because of careless mistake in the code
723394 const parameter to GtkPopover gtk_popover_set_pointing_to
724113 gdbus-connection-loss test can fail on slow machines
725981 tap-driver.sh: internal error getting exit status
733325 Several regex tests fail with pcre3 8.35
744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
747882 gtype: Bump allowed number of children
748534 gtest: if a subprocess assertion fails, print its stdout and stderr
748612 de_DE locale used in option-context test is not supported by FreeBSD
748614 Double unref in g_socket_listener_add_inet_port
748834 glocalfilemonitor: Emit notification on rate limit change
749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
749080 gdatetime test: fails if close to rollover between seconds
749180 gnetworkaddress: add return type annotation to parse methods
749352 g_binding_unbind() fails when source is also the target
749353 GBinding does not connect to the detailed notify signal
* Translation updates:
Catalan
French
Slovak
Thai
Overview of changes in GLib 2.45.1
==================================
* The GSettings schema compiler, glib-compile-schemas has been changed
to reject schema xml that has duplicate <summary> or <description>
elements. Such elements typically occur when translations are merged
into the schema, with xml:lang attributes. This is not the correct
way to translate schemas. Instead keep the translations in the .mo
file and set the gettext-domain attribute on the <schemalist> element.
* The file monitoring infrastructure has been rewritten, and all backends
have seen major improvements.
The inotify backend is reporting events with less delay (no event will
be delayed more than 10ms) and wakeups due to file monitoring have been
significantly reduced. A CHANGES_DONE event will also be sent when new
files appear.
The poll implementation is now using the thread default main context.
The fam implmentation is now running in the worker thread.
The fen implementation has been removed, since it was unmaintained.
* The GSettings schema compiler, glib-compile-schemas, is more strict
about rejecting schemas with xml:lang style merged translations.
Schema translations should be done by specifying the gettext domain
in the xml, and keeping the translations in gettext. To avoid breaking
already-installed schemas, this change is only taking effect when
you use the --strict option.
* The hardcoded 10-thread limit of GTask's thread pool has been removed,
since it was prone to causing deadlocks. The thread pool is now allowed
to grow dynamically and will shrink back over time.
* GSimpleAsyncResult has been deprecated in favor of GTask.
* The algorithm used by GAppInfo to find default handlers for mime types
has been tweaked to prefer apps that handle the specific subtype over
default handlers for a generic supertype.
* Bug fixes:
627285 inotify file monitor hardwired delay
631597 Segmentation fault in append_escaped_text
661767 merge/improve various bits of run-in-thread functionality
687223 cleverer GThreadPool management
711547 win32: silence some build warnings
719966 glib: Add missing (nullable) and (optional) annotations
726447 Possibly an error in text string
728663 W32: wrong stat struct is used when built with MinGW-w64
728669 W32: GLocalFile can't measure size of files larger than 2^32...
730188 gsocket: Document FD ownership with g_socket_new_from_fd()
733325 Several regex tests fail with pcre3 8.35
738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
739850 GClosure: add valgrind hints
741791 gmain: Save errno when handling unix signals
744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
745255 Add support for copying sessions between GTlsClientConnections
745745 gdbus: fix out-of-bound array access
745821 Don't use __alloc_size__ attribute with clang
746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
746753 Glib-compile-resources --generate-header not using ".h" as ...
747209 glib-compile-schemas ought to reject repeated <summary> and...
747349 Conversion of gdbus to use GTask causes deadlocks
747363 gatomic: Add missing new line in API doc comment
747472 Don't ignore already-installed schemas with multiple <summa...
747541 gdbus segfaults with invalid --dest
747772 Having hardcoded utf8 strings in the source code does not p...
748019 gsocketconnection: Fix copy-pasto in documentation
748177 not all test schemas are distributed, "make distcheck" fails
* Translation updates:
Basque
Czech
Danish
Finnish
German
Hebrew
Icelandic
Norwegian bokmål
Russian
Turkish
2016-04-07 20:33:05 +02:00
|
|
|
share/gtk-doc/html/glib/glib-Bounds-checked-integer-arithmetic.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/glib-Byte-Arrays.html
|
|
|
|
share/gtk-doc/html/glib/glib-Byte-Order-Macros.html
|
|
|
|
share/gtk-doc/html/glib/glib-Caches.html
|
|
|
|
share/gtk-doc/html/glib/glib-Character-Set-Conversion.html
|
|
|
|
share/gtk-doc/html/glib/glib-Commandline-option-parser.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/glib/glib-Data-Checksums.html
|
2012-01-29 11:46:52 +01:00
|
|
|
share/gtk-doc/html/glib/glib-Data-HMACs.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/glib-Datasets.html
|
|
|
|
share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/glib/glib-Deprecated-Thread-APIs.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/glib-Double-ended-Queues.html
|
|
|
|
share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html
|
|
|
|
share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html
|
|
|
|
share/gtk-doc/html/glib/glib-Error-Reporting.html
|
|
|
|
share/gtk-doc/html/glib/glib-File-Utilities.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/glib/glib-GDateTime.html
|
|
|
|
share/gtk-doc/html/glib/glib-GTimeZone.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/glib/glib-GVariant.html
|
|
|
|
share/gtk-doc/html/glib/glib-GVariantType.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html
|
|
|
|
share/gtk-doc/html/glib/glib-Hash-Tables.html
|
|
|
|
share/gtk-doc/html/glib/glib-Hook-Functions.html
|
Update to 2.22.2. Changes are too numerous, but major new features
in 2.22.x include:
* GArray, GPtrArray, GByteArray, GTree and GMappedFile can be reference
counted.
* GLib can be forced to reload the XDG user directory mapping.
* The GLib mainloop supports per-thread default contexts.
* GIO now provides types and methods for IP addresses and UNIX domain
socket addresses.
* GResolver provides asynchronous and cancellable APIs for resolving
hostnames, reverse lookup of IP addresses and resolving SRV records.
* Support for network IO has been added to GIO, including low-level
socket API and high-level API for network connections and services.
* GIOStream and its subclasses have gained support for read-write
access.
* GIO supports starting and stopping of drives, which can be used
in connection with external hard disk enclosures, disk arrays, iSCSI
devices, etc.
* GIO supports user interaction during unmount and eject operations.
* GIO can store and retrieve per-file metadata.
2009-10-15 13:46:25 +02:00
|
|
|
share/gtk-doc/html/glib/glib-Hostname-Utilities.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/glib-I18N.html
|
|
|
|
share/gtk-doc/html/glib/glib-IO-Channels.html
|
|
|
|
share/gtk-doc/html/glib/glib-Key-value-file-parser.html
|
|
|
|
share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html
|
|
|
|
share/gtk-doc/html/glib/glib-Lexical-Scanner.html
|
|
|
|
share/gtk-doc/html/glib/glib-Memory-Allocation.html
|
|
|
|
share/gtk-doc/html/glib/glib-Memory-Slices.html
|
|
|
|
share/gtk-doc/html/glib/glib-Message-Logging.html
|
|
|
|
share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html
|
|
|
|
share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html
|
|
|
|
share/gtk-doc/html/glib/glib-N-ary-Trees.html
|
|
|
|
share/gtk-doc/html/glib/glib-Numerical-Definitions.html
|
2007-08-16 00:09:13 +02:00
|
|
|
share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/glib-Pointer-Arrays.html
|
|
|
|
share/gtk-doc/html/glib/glib-Quarks.html
|
|
|
|
share/gtk-doc/html/glib/glib-Random-Numbers.html
|
|
|
|
share/gtk-doc/html/glib/glib-Relations-and-Tuples.html
|
2007-08-16 00:09:13 +02:00
|
|
|
share/gtk-doc/html/glib/glib-Sequences.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/glib-Shell-related-Utilities.html
|
|
|
|
share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html
|
|
|
|
share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html
|
|
|
|
share/gtk-doc/html/glib/glib-Spawning-Processes.html
|
|
|
|
share/gtk-doc/html/glib/glib-Standard-Macros.html
|
|
|
|
share/gtk-doc/html/glib/glib-String-Chunks.html
|
|
|
|
share/gtk-doc/html/glib/glib-String-Utility-Functions.html
|
|
|
|
share/gtk-doc/html/glib/glib-Strings.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/glib/glib-Testing.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html
|
|
|
|
share/gtk-doc/html/glib/glib-Thread-Pools.html
|
|
|
|
share/gtk-doc/html/glib/glib-Threads.html
|
|
|
|
share/gtk-doc/html/glib/glib-Timers.html
|
|
|
|
share/gtk-doc/html/glib/glib-Trash-Stacks.html
|
|
|
|
share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html
|
2012-01-29 11:46:52 +01:00
|
|
|
share/gtk-doc/html/glib/glib-UNIX-specific-utilities-and-integration.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/glib/glib-URI-Functions.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/glib-Unicode-Manipulation.html
|
|
|
|
share/gtk-doc/html/glib/glib-Version-Information.html
|
|
|
|
share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html
|
|
|
|
share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html
|
|
|
|
share/gtk-doc/html/glib/glib-building.html
|
|
|
|
share/gtk-doc/html/glib/glib-changes.html
|
|
|
|
share/gtk-doc/html/glib/glib-compiling.html
|
|
|
|
share/gtk-doc/html/glib/glib-core.html
|
|
|
|
share/gtk-doc/html/glib/glib-cross-compiling.html
|
|
|
|
share/gtk-doc/html/glib/glib-data-types.html
|
|
|
|
share/gtk-doc/html/glib/glib-fundamentals.html
|
|
|
|
share/gtk-doc/html/glib/glib-gettextize.html
|
2012-10-06 22:44:04 +02:00
|
|
|
share/gtk-doc/html/glib/glib-programming.html
|
2007-08-16 00:09:13 +02:00
|
|
|
share/gtk-doc/html/glib/glib-regex-syntax.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/glib/glib-resources.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/glib-running.html
|
|
|
|
share/gtk-doc/html/glib/glib-utilities.html
|
|
|
|
share/gtk-doc/html/glib/glib.devhelp2
|
|
|
|
share/gtk-doc/html/glib/glib.html
|
Update glib2 to 2.18.0.
Based on patch provided by Juan RP in pkgsrc-users ml.
Overview of Changes from GLib 2.17.7 to GLib 2.18.0
===================================================
* Win32:
- rework the g_poll() implementation to match poll() semantics more closely
* Bugs fixed:
324234 Using g_io_add_watch_full() to wait for connect() to return...
548278 Async GETs connections are always terminated unexpectedly...
500246 Bug fixes for giowin32
523939 Example program for GValue
550096 GBookmarkFile parser is not forward compatible
550040 Move GString, rand and printf tests to the unit test framework
550104 trivial documentation fix for g_get_home_dir
548988 g_file_replace fails on Windows when the target file exists
550059 Wrong docs for g_emblemed_icon_add_emblem
548800 Missing a g_object_get_type function
550056 Missing documentation for g_emblemed_icon_get_emblems
* Updated translations:
Bulgarian (bg)
Czech (cs)
German (de)
Estonian (et)
Basque (eu)
French (fr)
Hebrew (he)
Hungarian (hu)
Italian (it)
Japanese (ja)
Lithuanian (lt)
Maithili (mai)
Dutch (nl)
Swedish (sv)
Thai (th)
Ukrainian (uk)
Vietnamese (vi)
Overview of Changes from GLib 2.17.6 to GLib 2.17.7
===================================================
* More fixes for 64-bit Windows
* GIO
- Add a vfs implementation for HTTP and HTTPS URIs on Windows
* Bugs fixed:
546329 API docs for g_utf8_normalize() are incorrect
546876 Modify GMarkup parser to accept  .. 
547200 g_utf8_find_next_char() issues
547637 unconditional #include of sys/statfs.h in configure
547337 G_DISABLE_DEPRECATED breaks tests build
547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
502498 Test framework assertion failures should follow gcc
546371 Improve docs re g_file_monitor
546483 GThemedIcon:use-default-fallbacks is not readable without...
546132 GFileIcon is bindings-unfriendly
542156 zfs mount in home directory shown on nautilus desktop
535124 umask 002 not being applied for new directories...
547080 g_file_copy leaks expected errors
546582 Callbacks from GFileMonitor present a GFile...
547262 Missing link in the docs
* Updated translations:
Arabic (ar)
Catalan (ca)
Spanish (es)
Basque (eu)
Finnish (fi)
Galician (gl)
Hebrew (he)
Marathi (mr)
Norwegian bokmål (nb)
Portugese (pt)
Brazilian Portugese (pt_BR)
Swedish (sv)
Thai (th)
Overview of Changes from GLib 2.17.4 to GLib 2.17.6
===================================================
* Fix problems on 64-bit Windows
* g_markup_context_get_user_data: New function to access
the user_data outside of callbacks
* GIO
- g_mount_guess_content_type_sync: synchronous version of
g_mount_guess_content_type
- GEmblem: A GIcon implementation that adds emblem-related
metadata to icons
- GEmblemedIcon: A GIcon implementation that can add emblems
to icons
* Bugs fixed:
544088 option_test_LDADD is left in tests/Makefile.am
544465 gmarkup makes it hard to use pre-rolled parsers
545485 Implicit declaration of utime()
545798 "Since: 2.18" mark is missing in g_set_error_literal...
544140 fam-helper 64-bit issue
529694 SELinux context setting support
545157 wrong/no list of "open with" applications for .cc...
545203 gfile.c: argument is different type
545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
544177 Fix trivial cut and paste error in documentation
545395 Language tweak for g_value_set_string* docs
541036 Gnumeric crashes when trying to open Desktop...
546079 leak in xdgmime
545395 Language tweak for g_value_set_string* docs
546017 Don't copy attributes when copying a symlink
* Updated translations:
Arabic (ar)
Estonian (et)
Galician (gl)
Italian (it)
Japanese (ja)
Korean (ko)
Norwegian bokmål (nb)
Pashto (ps)
Portugese (pt)
Overview of Changes from GLib 2.17.3 to GLib 2.17.4
===================================================
* GIO:
- New API to handle content types: g_mount_guess_content_type,
g_content_type_guess_for_tree.
- Export the eject-button signal on the volume monitor class
- New API to enable out-of-process volume monitors:
g_volume_get_activation_root
* GObject:
- New API to handle signals without slots in the class structure:
g_signal_new_class_handler, g_signal_override_class_handler
* Internationalization:
- Add an NC_ macro that is a no-op equivalent of C_
* GMarkup:
- Add two new functions g_markup_parse_context_push,
g_markup_parse_context_pop to support "subparsers"
* Bugs fixed:
541208 Functions to easily install and use signals without...
541507 Ambiguous description of assigned characters in the...
543040 async reading on dummy file will crash on GIO_USE_VFS=local
543560 enable gio-FEN back-end warnings on Solaris will crash...
528317 GRegex does not allow recursion limit
337518 GMarkup: Subparser support
541794 drive-eject-button signal
541793 activation root for volumes
467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
428048 2 of 51 tests fail on Solaris
542332 small fix for error message in GMarkup
482413 get_contents_stdio -- overflow and memory corruption
406120 g_ascii_strtod
334234 "printf" format error
536996 Missing noop i18n macro equivalent to C_
540616 mem leak in filechooser button
539229 gobject-query calls itself query
521589 [RFC] gobject documentation should mention Vala
543168 Description of G_SLICE=debug-blocks discourages its use
543220 Case collision on gio-extension-points.html
530759 update the gobject tutorial to the XXI century
535223 gbookmark file inefficiency ...
543504 crash in Epiphany Web Browser: Opening local file
* Updated translation:
German (de)
Estonian (et)
Pashto (ps)
Albanian (sq)
Thai (th)
Traditional Chinese (zh_HK)
Traditional Chinese (zh_TW)
Overview of Changes from GLib 2.17.1 to GLib 2.17.3
===================================================
* PCRE
- fix for CVE-2008-2371
* Bugs fixed:
538119 glib's mainloop leaks a pipe to sub-processes
537635 Corrections and improvements to g_time_val_{to,from}_iso8601
539067 The document g_io_channel_win32_new_fd() says...
535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
539123 annotate g_d[n]gettext with G_GNUC_FORMAT
539074 Cannot get exit status with g_spawn_command_line_sync
316221 G_LOCK warns about breaking strict-aliasing rules
539770 migrate gstrfunc unit tests to gtest
539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
538044 unconditional use of LC_MESSAGES
540545 Monotonic time and timer offset
535947 want g_set_error_literal
539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF
536252 GFileEnumerator should allow access to the containing GFile
538362 Get Win32 icons back in the file chooser
540802 g_list_prepend doesn't concat lists
540423 unrecoverable error after g_seekable_truncate
538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
539090 g_content_type_from_mime_type() should unalias
540331 g_file_append_to () documentation: can return NULL
534639 add g_desktop_app_info_new_from_keyfile
536733 gio build failure on Irix
536160 Add g_file_monitor()
538127 FileChooser broken on win32
531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
538564 gio should have gio-types.h
540047 glib-genmarshal.c: '#include <io.h>' is too before
Updated translations:
Korean (ko)
Occitan (oc)
Overview of Changes from GLib 2.17.0 to GLib 2.17.1
===================================================
* New function: g_utime(), a gstdio wrapper for utime()
* New functions: g_dgettext() and g_dngettext(), wrappers
for corresponding gettext functions with added functionaliy
* Support the latest version of the shared-mime spec, including
icons for mime types
* New function: g_themed_icon_prepend_name()
* Bugs fixed:
535418 Please document which glib version defines goffset
528715 Misprint in the description of the interface g_type_class_add_private
528714 Misprint in the description of the interface g_param_spec_flags
537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
530527 Misprint in the description of the interface
g_cclosure_marshal_VOID__FLAGS
530526 Misprint in the description of the fields 'class_init' and
'class_finalize' of the structure GTypeInfo
528719 Improvement to the documentation of the "g_object_connect" interface
528172 gtk_signal_handlers_unblock_* functions return value
amount of matched signals, not amount of actually unblocked
528717 Misprint in the description of the parameter 'type_id' for
the interface g_type_register_fundamental
528716 Misprint in the description of the parameter 'iface_data' for
the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc
537555 GObject instantiation not thread safe
537546 'desktop' shortcut in file chooser looks like a generic folder
537392 Additional colon in xattr name
536641 Filesystem querying in gio does not list AFS and autofs file systems
528600 g_dummy_file_get_parent("scheme://example.com/")
503071 Application direction changes to right to left even if theres no
translation
502511 g_assert_cmphex prints invalid message
338162 Use po/LINGUAS
314453 Nautilus crashes in Solaris when browsing the attached file
529321 make check fails in glib/pcre
455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD
fallback to $HOME/Desktop if xdg-user-dirs is not in use
498732 g_key_file_to_data cannot fail
511367 add g_file_make_directory_with_parents
531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with
gcc 4.0 or newer
536158 also bump GHashTable version when a node is removed via
g_hash_table_iter_remove()/g_hash_table_iter_steal()
531403 g_utf8_collate broken on Mac
535628 test/patterntest.c still includes gpattern.h directly
535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
* Translation updates:
Arabic (ar)
German (de)
Italian (it)
Norwegian bokmål (nb)
Thai (th)
Overview of Changes from GLib 2.16.x to GLib 2.17.0
===================================================
* Update to Unicode 5.1
* Update included libcharset to the one shipped with libiconv 0.12
* Update included PCRE to 7.7
* Enforce that only toplevel headers are directly included.
This is turned on by default for GObject and GIO. To turn
it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
* Fix library version of GIO. GLib 2.16 shipped with libgio-2.0.so.0.0.0
* On Solaris, use FEN for file monitoring in GIO
* Use the GIO_EXTRA_MODULES environment variable to find
additional GIO modules
* G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
function attribute
* g_checksum_reset: New function to reset the state of a GChecksum
* g_unix_mount_monitor_set_rate_limit: New function to limit the
rate at which events are reported
* g_file_query_file_type: New utility function to query the type of
a file
* g_memory_output_stream_get_data_size: New function to obtain the
size of the written data.
* Bugs fixed:
522292 Gives warnings in glib/gutils.h with GCC in C99 mode
523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
518160 replace two g_strdup_printf calls in GBookmarkFile
523877 gbookmarkfile: avoid using g_string_append_printf() and
other optimizations
525192 100% CPU if run main loop with no IO sources
315437 extern inline -> static inline
524314 g_convert() on Win32 implicitly converts full width
alphanumerics into half width
525732 Error in documentation for g_list_first
525674 A typo in gmarkup.c
448943 g_timeout_add_seconds() problems
525972 UCS-4 not in the new win_iconv implementation
526619 make test-report crash
491554 Update to Unicode 5.1.0
519137 g_slice_dup macro needs cast for 64-bit platform
528752 Win32 build and SSL not working
530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
528667 Typos in testing module documentation
459905 Bug in wcwidth data
534085 g_unichar_iswide_cjk() has a totally wrong table
501651 Update glib/libcharset
519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
534319 GLib's .pc files could use Libs.private
534137 Typo in g_spawn_async_with_pipes doc
517419 gio win32 directory monitor
526796 Wrong order of arguments in g_file_copy's fallback
530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
532965 Should not return filesystem::free for certain file systems
525553 fix typo and nitpicking in GArray documentation
526572 Missing * in declaration of parent_class in Object
Destruction section of GObject Reference Manual
528648 Extra >s in Object Construction section
535021 g_param_spec_internal documentation should
describe purpose of nick and blurb
521513 Firefox crash when using file picker
528433 gdesktopappinfo snafu ...
533369 API g_file_info_get_attribute_string () unables to get "...
521045 glib f_fstypename miscellany
521672 compile error
521946 control rate limit on GUnixMountMonitor
522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
523015 Implement sliding window based upload operation
523019 Use new GCC 4 feature
523338 list nfs4 as a nfs mount type
524350 Make glib build without NLS again
524579 g_file_copy reports wrong total on progress callback for ...
524742 A typo in gtestutils.c.
524950 Minor documentation typos.
525866 the user directory should not be considered as a mount to...
526320 should not list mounts that the user doesn't have permiss...
527132 nautilus crash when making ftp connection
532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
534759 Build failure in gio
534764 Typo in error produced by g_file_make_directory
521851 Redudant tests in gunixmounts.c
524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
534177 Invalid description of the interface g_cclosure_marshal_S...
520715 Add GFile method g_file_query_file_type
523039 nautilus can't access to trash/computer/network if gvfs i...
* Updated translations:
Arabic (ar)
Bulgarian (bg)
Catalan (ca)
Czech (cs)
Greek (el)
Candian English (en_CA)
British English (en_GB)
Spanish (es)
Estonian (et)
Basque (eu)
Galician (gl)
Hebrew (he)
Hungarian (hu)
Japanese (ja)
Lithuanian (lt)
Norwegian bokmål (nb)
Dutch (nl)
Occitan (oc)
Portugese (pt)
Russian (ru)
Slovak (sk)
Albanian (sq)
Swedish (sv)
Turkish (tr)
Vietnamese (vi)
2008-09-06 13:07:20 +02:00
|
|
|
share/gtk-doc/html/glib/gtester-report.html
|
|
|
|
share/gtk-doc/html/glib/gtester.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/glib/gvariant-format-strings.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/glib/gvariant-text.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/home.png
|
|
|
|
share/gtk-doc/html/glib/index.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/glib/left-insensitive.png
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/left.png
|
|
|
|
share/gtk-doc/html/glib/mainloop-states.gif
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/glib/right-insensitive.png
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/right.png
|
|
|
|
share/gtk-doc/html/glib/style.css
|
|
|
|
share/gtk-doc/html/glib/tools.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/glib/up-insensitive.png
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/glib/up.png
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gobject/GBinding.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/gobject/GTypeModule.html
|
|
|
|
share/gtk-doc/html/gobject/GTypePlugin.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gobject/annotation-glossary.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/gobject/api-index-2-10.html
|
|
|
|
share/gtk-doc/html/gobject/api-index-2-12.html
|
|
|
|
share/gtk-doc/html/gobject/api-index-2-14.html
|
|
|
|
share/gtk-doc/html/gobject/api-index-2-18.html
|
|
|
|
share/gtk-doc/html/gobject/api-index-2-2.html
|
|
|
|
share/gtk-doc/html/gobject/api-index-2-22.html
|
|
|
|
share/gtk-doc/html/gobject/api-index-2-24.html
|
2010-11-02 15:52:24 +01:00
|
|
|
share/gtk-doc/html/gobject/api-index-2-26.html
|
2011-03-09 12:22:04 +01:00
|
|
|
share/gtk-doc/html/gobject/api-index-2-28.html
|
2012-01-29 11:46:52 +01:00
|
|
|
share/gtk-doc/html/gobject/api-index-2-30.html
|
2012-04-30 15:53:48 +02:00
|
|
|
share/gtk-doc/html/gobject/api-index-2-32.html
|
2012-10-06 22:44:04 +02:00
|
|
|
share/gtk-doc/html/gobject/api-index-2-34.html
|
2013-04-20 00:21:41 +02:00
|
|
|
share/gtk-doc/html/gobject/api-index-2-36.html
|
Update glib2 to 2.38.2
Patches removed:
- patch-ce: fixed in 690d6b97 (Bug 697386)
- patch-gio_gcontenttype.c: committed as ab5aa2aa
- patch-gio_glocalfile.c: fixed in 584358 (Bug 698348)
- patch-gio_gthreadedresolver.c: fixed in 8372f22b
- patch-glib_gfileutils.c: fixed in 8372f22b
- patch-glib_gmarkup.c: : fixed in 8372f22b
- patch-glib_gstrfuncs.c: fixed in 8372f22b
Patches changed:
- patch-aa: last 3 hunks removed as committed as 996edb0 (Bug 706958)
- patch-ah: last 2 hunks removed as something similar in 8372f2
- patch-ak: last 3 hunks removed as committed as 996edb0 (Bug 706958)
- patch-ba: hunk 9 removed as committed as d47430 (Bug 697365)
Overview of changes from GLib 2.38.1 to 2.38.2
===============================================
* GCancellableSource will now dispatch for each time a cancellable is
cancelled (ie: in the case that it was reset) but this is still
considered undefined behaviour
* fix g_source_add_child_source() thread safety issues
* add workaround for buggy D-Bus daemons when path-matching on '/'
* fallback to pathname queryinfo to help g_file_copy() work on gvfs
filesystems that don't implement query_info_on_read()
* don't crash if loading a DBusActivatable application from keyfile
* fix crash when replacing a symlink with another using GIO
* add a fallback for '-symbolic' icons to the non-symbolic form
Overview of changes from GLib 2.38.0 to 2.38.1
===============================================
* Fix error code checks when SOCK_CLOEXEC is defined but not supported
(fix support for GNU/Hurd)
* g_settings_list_children: only list viable schemas
(fix gsettings list-recursively crashes with invalid schemas installed)
* GDBusObjectManagerClient: Fix typo in the /org/freedesktop/DBus path
when adding match rules
* Various -Werror=format-nonliteral fixes
* gmessages: fix clang annotations to work with older versions
* gio: don't dist (generated file) gnetworking.h
* Restore gl_GLIBC21 to configure; needed for libcharset
Translations:
Catalan (Valencian)
Norwegian bokmål
Russian
Serbian
What's new in Glib 2.38
========================
* Application support
- GIO now provides an implementation of Desktop Actions from the
desktop entry specification
- GApplication now implements the org.freedesktop.Application
interface as per the desktop entry specification, allowing for
standards-based D-Bus launching of GLib-based applications
- GDesktopAppInfo now supports DBusActivatable as per the desktop
entry specification, allowing GLib-based applications to use D-Bus
to launch other applications
- GApplication now has a "busy" flag that can be set on an application
to allow the shell to show that it is busy
* GObject
- the private offset for a given class type is now always constant.
This was done by reorganising the memory layout of instances so that
the private data comes before the "official" pointer for the object
(ie: at a negative offset). Valgrind macros were added to mitigate
any problems that this may have caused.
- a new G_DEFINE_TYPE_WITH_PRIVATE has been added along with a
generated function *_get_instance_private() that can now serve as an
equally-performing alternative to ->priv pointers in instances
(allowing memory savings)
- new G_PRIVATE_FIELD, G_PRIVATE_FIELD_P and G_PRIVATE_OFFSET macros
provide a convenient method of converting between named variables in
private structures and their (now constant) offsets
- installing properties on a GObjectClass must now be done from
class_init. It is no longer valid to install them after class_init
has returned.
- it is now possible to manually break a GObject property binding
without destroying one of the objects involved
* Icons
- the requirements for implementing the GIcon interface have changed
in order to make it possible to consume all implementations of GIcon
with a finite number of cases
- a new GBytesIcon type was added for an icon represented by an
in-memory binary blob in a known image format (ideally png).
- new APIs g_icon_serialize() and g_icon_deserialize() replace the old
to/from_string APIs and will always work, irrespective of which
types have been initialised in the calling process, allowing for a
serialised GdkPixbuf to be deserialised in a process that doesn't
have GdkPixbuf
- support for icons has been added to GMenuModel using the new APIs
* Actions and menus
- GPropertyAction provides a convenient way of creating a stateful
property corresponding to a property on a GObject, such as the
"visible-child-name" property of a GtkStack
- new API g_menu_remove_all()
- we now have established rules about what is a "valid" action name
and an API to check them
- a new API for converting detailed action names to and from the
split-out name and parameter value (as GVariant)
- for backwards compatibility, invalid action names can still be used
with most functions, but this is not recommended
* Other GIO
- GDBus now supports services that wish to handle some of all
properties on an interface asynchronously, without requiring the
service to reimplement the entire org.freedesktop.DBus.Properties
interface
- GFile now has a new _measure_disk_usage() (and async) API for
recursively determining the amount of disk space used by a
particular directory (akin to 'du').
- asynchronous version of g_file_trash() and g_file_make_directory()
have been added
* Other new API
- GRegex has a new function to query the maximum lookbehind length to
allow for regexp matching on streams
- GVariant has two new APIs for constructing strings that allow
avoiding copies in some cases: g_variant_new_take_string() and
g_variant_new_printf()
* Testing
- we can now generate TAP output
- new support functions for simplifying the process of dealing with
data files for srcdir != builddir and installed test cases
- g_test_trap_subprocess() provides a portable alternative to
g_test_trap_fork()
* Other
- GLib now builds on Android against the bionic C library
Overview of changes from GLib 2.37.93 to 2.38.0
================================================
* fix the documentation for GSourceFuncs
* fix compilation on OS X/ppc64
Bugs fixed: 708445, 647145
Translations updated:
Danish
French
Portuguese
Punjabi
Overview of changes from GLib 2.37.92 to 2.37.93
================================================
* a couple of bugfixes in the new g_file_measure_disk_usage() API
* updated Traditional Chinese translation
Overview of changes from GLib 2.37.7 to 2.37.92
===============================================
* new API g_file_measure_disk_usage() similar to du(1)
* minor fixes
* Translation updates:
Assamese
Belarusian
Brazilian Portuguese
Catalan
Czech
Galician
German
Hungarian
Indonesian
Italian
Korean
Korean
Latvian
Lithuanian
Polish
Serbian
Slovenian
Spanish
Overview of changes from GLib 2.37.6 to 2.37.7
==============================================
* GDateTime now supports %:z formatting variations
for timezones. This is a GNU date extension.
* Bugs fixed:
685387 Segfault with GObject.signal_handler_is_connected()...
686786 g_socket_get_available_bytes() returns wrong value ...
705027 GSocket GSource not threadsafe on Windows
706469 Fix G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE documentation
706706 Fix Gir annotations on g_loadable_icon_load_finish
706888 gtype: fix a no-op assertion
706958 configure.ac: fix atomic opts detection
707092 "File Utilities" page for GLib documentation doesn'...
707151 gdatetime: Extend the '%z' timezone format
* Translation updates:
Catalan
Hungarian
Japanese
Polish
Slovak
Tamil
Overview of changes from GLib 2.37.5 to 2.37.6
==============================================
* Tests using the g_test facilities can now generate TAP output
* Bugs fixed:
680926 generic type fallback logic is broken for -symbolic
684327 setting null icon to icon list
689245 GSocket unable to reuse (address,port) on Mac OS X
692125 Support TAP as GTest output format
693335 build: fix dtrace-related warnings
696633 gdbus-codegen trips over unicode chars when using python 3.x
696970 Compiling 2.36.0 for win64 fails
697185 GSocket – Allow specifying the multicast interface from...
700268 Add support for using the clang analyzer
701318 Add G_SPAWN_DEFAULT to GSpawnFlags
701529 glib/tests/gdatetime: use UTC time in test_GDateTime_diff()
701800 a new approach to reporting critical errors
702674 g_date_time_new_utc crash
704165 GLib.IOChannel read_unichar() fails
705075 Simplify g_get_tmp_dir()
705152 Race in glib/task.test
705398 gtype: Fix typo in g_type_class_add_private() error message
705570 Check ref_count in g_object_notify_by_pspec
705600 Deprecate GSimpleActionGroup functions?
* Updated translations:
Assamese
Brazilian Portuguese
Czech
Dutch
Galician
Gujarati
Hebrew
Italian
Lithuanian
Marathi
Norwegian bokmål
Russian
Slovenian
Spanish
Thai
Traditional Chinese
Overview of changes from GLib 2.37.4 to 2.37.5
==============================================
* Implement the Desktop Action specification: In the case that the
application is a GApplication and DBusActivatable, actions from the
desktop file are translated into GActions that have been added to
the application with g_action_map_add_action().
* GPropertyAction is a new type of GAction that represents the value
of a property on an object, and allows to change the value when
activated.
* GNetworkMonitorNetlink can now handle default routes via a device.
* The gsettings tool now reports failure to write a key (e.g. because
the key was locked down)
* Miscellaneous new api:
- g_variant_new_printf
- g_action_print_detailed_name
- g_regex_get_max_lookbehind
* Bugs fixed:
664444 Support additional application actions in .desktop files
684123 glib build only tries -D_GNU_SOURCE if glibc is detected
689794 support incremental matching
699259 add org.freedesktop.Application support to GIO
700460 rewrite tests to not rely on precise timing of timeouts
701511 updates to various GSource types
701609 gnetworkmonitornetlink: handle default route via device
703270 add GPropertyAction
704157 GAction: add function for printing detailed names
704250 Doc: various fixes
704267 regression gsourceclosure: segfault in gedit file chooser
704322 glib-unix: fix handling of multiple signal source for the...
704424 No error when failing to override a locked key
704447 Fix build/use of g_child_watch_closure_callback on Windows
704523 g_thread_create_full() can dereference NULL pointer
704543 Add implementations for G_GNUC_*_IGNORE_DEPRECATIONS for ...
704567 gdbusnameowning: Don't spew an error if we're releasing a...
704585 libc printf can give mixed-case strings for NaN and Inf
704587 FTBFS: statfs_result is undeclared for statvfs()
704699 gmain: Reset signal handlers to default when source is
704704 AI_NUMERICSERV cannot be used with ai_socktype = 0
704873 inotify: don't assume mainloop is running
704999 glib/convert.test crashing due to lack of iconv cache
704931 GMenuModel: add annotations to virtual functions
* Translation updates:
Assamese
Czech
German
Gujarati
Spanish
Tamil
Overview of changes from GLib 2.37.3 to 2.37.4
==============================================
* Bugs fixed:
701283 g_source_add_child_source() segfault
702147 inconsistency of G_STRFUNC
703191 new private macros interact poorly with versioning macros
703254 Doc: various fixes
703407 g_spawn_async() keeps child_pid_report_pipe open in child process
703437 GDBusConnection: be more careful with async GetAll
703478 Missing G_BEGIN/END_DECLS in gsettingsschema.h
* Translation updates:
Catalan
Overview of changes from GLib 2.37.2 to 2.37.3
==============================================
* add a new API for instance private data: G_DEFINE_TYPE_WITH_PRIVATE
* fix timestamps in tarball to prevent automake from being required to
build the unmodified source
* add new D-Bus API for async property handling
* add back fsync() on ext4 for g_file_set_contents() after it was
discovered that despite statements in the ext4 documentation
suggesting that this is safe, it is not safe.
* Translations:
Italian
Norwegian bokmål
* Bugs fixed:
698375 - D-Bus async properties
700350 - timestamp issue
701560 - fsync issue (fixed again)
700035 - new API for instance private data
Overview of changes from GLib 2.37.1 to 2.37.2
==============================================
* The GLib test utilities have grown some file-related APIs
to support tests that can be used installed and uninstalled.
* Installing properties after class initialization is deprecated,
and will trigger a warning.
* GApplication:
- Support org.freedesktop.Application, including D-Bus activation
from desktop files
- Set prgname to appid for services
* Bugs fixed:
549783 gtester lacks framework for tests with data files
692848 Fix property example in gobject tutorial
698018 Add an explicit g_binding_release()
698614 GObject: prevent installing properties after init
699259 add org.freedesktop.Application support to GIO
699959 g_file_copy(): Ensure we create private files by default
700123 Test failure: g_inet_socket_address_get_scope_id
700725 GIcon: NULLify the `type' out param in the sync methods too
701401 gtest: add function for testing for WINE
701456 Error in gnome/glib/gio/tests/file.c
701474 Error building glibmm due to extra comma in glib/gtestutils.h
701560 various improvements for g_file_set_contents()
701680 GFileEnumerator: Add some documentation about ordering
701878 Check wakeup() before iteration(TRUE) doesn't block
* Translations:
Assamese
Czech
Galician
Gujarati
Kannada
Marathi
Odia
Polish
Slovenian
Spanish
Telugu
Overview of changes from GLib 2.37.0 to 2.37.1
==============================================
* add support for installed tests:
https://live.gnome.org/GnomeGoals/InstalledTests
* add a new g_test_trap_subprocess() that works on Windows as a
replacement for the (now deprecated) g_test_trap_fork()
* support for explicitly cancelling a gobject property binding
* performance improvements for signal argument handling
* stop using `quotes' in very many log messages generated by GLib, for
favour of 'this style'. This may cause testcases in other packages
to fail if they were matching on the previous text.
* improve manpages: add missing arguments and flags
Translations:
Aragonese
Assamese
Gujarati
Hindi
Kannada
Norwegian bokmål
Odia
Slovenian
Spanish
Tamil
Telugu
Bugs fixed:
679683 replace g_test_trap_fork()
694380 Improve signal argument collection performance
695233 Strings require plural forms
697849 spelling fixes in cross.xml and running.xml
698877 GProxyAddressEnumerator calls g_network_address_parse_uri without port
698981 [PATCH] test /gdbus/connection/large_message could hang forever
699079 Prototype support for installed tests
699485 [PATCH] tests/mappedfile: Also handle ENOMEM
699493 SOCKS5 proxy code crashes if it cannot authenticate
699500 gbitlock: fix this to not unconditionally use futex emulation
699779 [PATCH] G_GNUC_FORMAT: documentation error
700263 m4macros/glib-gettext.m4: Don't use AC_HEADER_STDC
700714 [PATCH] gtestutils: Ensure test subprocesses don't dump core
700746 Use 'dumb quotes' rather than `really dumb quotes'
2013-12-08 14:08:59 +01:00
|
|
|
share/gtk-doc/html/gobject/api-index-2-38.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/gobject/api-index-2-4.html
|
2014-10-08 01:18:36 +02:00
|
|
|
share/gtk-doc/html/gobject/api-index-2-40.html
|
|
|
|
share/gtk-doc/html/gobject/api-index-2-42.html
|
2015-06-11 01:00:05 +02:00
|
|
|
share/gtk-doc/html/gobject/api-index-2-44.html
|
Update glib2 to 2.48.0
- removed patch-gio_gtestdbus.c: applied upstream.
- removed patch-gio_gunixmounts.c: can no longer reproduce problem.
Overview of changes in GLib 2.48.0
==================================
* a minor build fix in the name of determinism
* a few coverity fixes
Bugs fixed:
763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
Translations updated:
Danish
Italian
Overview of changes in GLib 2.47.92
===================================
* gdbus-codegen now supports g_autoptr()
* g_get_user_runtime_dir() now reliably returns an existing directory
* g_array_remove_range() can now remove 0 items from the end of an array
* Many fixes for Windows
* build fixes
* file monitoring
* gsettings backend
* streams
* random numbers
* wide character support
* documentation improvements
* other small bugfixes
Bugs fixed:
724847 Segmentation fault on "gsettings list-recursively"
743933 gapplication: add --app-id command line option
756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
757506 gsettings: schema_list should use the passed schema's source
760694 W32: Apps linked with -mwindows make cursor busy sometimes
762202 g_win32_error_message improvements
762637 build: Unconditionally dist tapset files
762748 Undefined behavior
762937 Mention that g_clear_error can be used with an "empty" GError
763339 array: Support clearing an empty array with g_array_remove_range()
763344 g_get_user_runtime_dir(): ensure directory exists
763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
Translations updated:
Brazilian Portuguese
Czech
Finnish
French
Galician s
German
Greek
Hebrew
Hungarian
Italian
Kazakh
Korean
Latvian
Lithuanian
Occitan
Polish
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.6
==================================
* Windows usupport:
- Fixes and improvements to the GSettings registry backend
- Handle readability and writability of registry keys
- Use Unicode registry APIs
* Bugs fixed:
760852 744772 761126 747927 761337 744570 761504 761550 761843
744570 GString is missing (transfer none) annotations on many of its methods
744772 systemtap and gdb scripts install in wrong place
747927 Documentation: various small improvements
760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
761126 winiconv: update to upstream version
761337 Fix some annotations
761504 W32 registry GSettings backend does not use Unicode
761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
* Translation updates:
Brazilian Portuguese
Bulagarian
Chinese (Taiwan)
Hungarian
Polish
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.5
==================================
* the system copy of PCRE is now used by default to implement GRegex.
Configure with --with-pcre=internal if a system PCRE version
is unavailable or undesired.
* interfaces for DTLS support have been added. A new version of
glib-networking will also be required.
* GDBusMethodInvocation now drops replies if the sender set the
NO_REPLY_EXPECTED flag
* several GApplication fixes, including fixes for commandline arguments
in interpreted languages on Windows
Bugs fixed:
624186 Deprecate glib-gettext macros
734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
735754 Implement close on TLS GOutputStream
748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
752240 Add DTLS support to GIO
755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
756875 Include ntdef.h for NTSTATUS
759554 g_application_run() calls g_main_context_default() repeatidly
760199 gsettings: Install gettext ITS rules
760215 G_LIKELY/_UNLIKELY macros need more parentheses
760683 regex test: Check the expected PCRE exceptions at runtime
Translations updated:
Brazilian Portuguese
Czech
German
Lithuanian
Swedish
Overview of changes in GLib 2.47.4
==================================
* The GApplication documentation has been improved in several areas.
* Bugs fixed:
749092 gdb pretty-printers fail on Python 3 with a TypeError...
757374 macros: clean up "inline" mess
758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
759134 Add missing checks for gnulib vasnprintf()
759408 Do not use uninitialized var
756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
757372 GApplication: destroy the impl on shutdown
728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
757299 glib-compile-resources: do not leak c_name
758553 Fix gettext use
758823 file monitors: reorder some code to avoid segfault
756214 gsettings: Don't translate ""
710243 Add GParamSpec object ref management annotations
735696 xdgmime: Finer handling for cases where mmap() is not available
752983 gapplication: Acquire the main context before running
* Translation updates:
Swedish
Overview of changes in GLib 2.47.3
==================================
The inline cleanup in the last release accidentally removed three
symbols from libglib-2.0.so. It is unlikely that this will have caused
any problems because these symbols were only backup symbols for
definitions exported as inlines in the header files, but ABI is ABI.
This release corrects only this problem.
Overview of changes in GLib 2.47.2
==================================
* We have formalised the assumption that all compilers that are
interested in support 'static inline' and simplified the macros around
this considerably. Please watch for and report unintentional fallout.
* New API: hardware-assisted helpers for overflow-checked integer math.
* other fixes
Bugs fixed:
696324 gtester-report doesn't work with Python 3.x
719966 glib: Add missing (nullable) and (optional) annotations
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
755364 make gtkdoc-check happy again
756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
756988 GSequence should document each function's complexity
757294 Move G_POLLFD_FORMAT to glibconfig.h
757374 macros: clean up "inline" mess
757451 doc: fix g_task_attach_source() example
757628 gio tests fail to build when cross compiling 2.46.1
757693 Invalid free in g_local_file_trash()
757742 Fix up annotations in ghash.c
758181 GTask: fix wrong example code
Translations updated:
Greek
Hebrew
Hungarian
Norwegian bokmål
Portuguese
Scottish Gaelic
Simplified Chinese
Spanish
Overview of changes in GLib 2.47.1
==================================
* The Unicode support has been updated to version 8.0 of the Unicode standard
* GDesktopAppInfo no longer sets the DISPLAY environment variable when
launching apps. This is now done in the GAppLaunchContext implementations
when appropriate
* Bug fixes:
664740 Key-value file parser, space after integer
687223 cleverer GThreadPool management
692085 stderr and stdout are not always file descriptors 1 and 2
697907 Add interface for socket-like things (GSocket, DTLS, etc)
735754 Implement close on TLS GOutputStream
737116 Add functions to print GSocketConnectables and addresses as strings
743011 Minor additions to GError documentation
749161 undefined reference to `__imp__stat32i64'
749314 Cannot restore a just-trashed file
751924 Add recvmmsg()-like API on GSocket
752240 Add DTLS support to GIO
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
753310 Remove `#pragma GCC system_header` from gmessages.h
753935 Update example namespace and class names in GObject tutorial
754855 Object instantiation documentation refers to example that no longer ex...
754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
754994 g_date_time_get_second () sometimes returns an off-by-one result
755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
755351 Example still contains g_autoptr(gchar)
755355 Move GStrv to glib.h so it can be used with g_auto()
755374 g_variant_get_child(): flatten-first logic on '&'
755496 glib 2.46 fails GStreamer test suite
755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
755795 2.46 considers empty files as octet-stream rather than text (leads to...
755961 Fix up annotations in gbytes.c
756053 MSVC doesn't understand the symbol 'msghdr'
756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
756077 testutils: remove internal ABI comment
756099 g_main_context_query(): Annotate @n_fds as (in) parameter
756139 musl: ctors called in the wrong order
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
756316 GSequence should provide fast api to check if empty
756382 snprintf used on Windows with VS2015 doesn't support %n
756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
756550 gtypes.h: Make G_MININTn literals negative
756875 Include ntdef.h for NTSTATUS
756952 giomodule: return a copy of module name
* Translation updates:
Basque
Czech
Serbian
Serbian Latin
Vietnamese
Overview of changes in GLib 2.46.0
==================================
* Disable runtime-deprecation warnings
* Fix marshalling of flags on bigendian 64bit architectures
* Translation updates
Brazilian Portuguese
Danish
German
Latvian
Russian
Turkish
Overview of changes in GLib 2.45.8
==================================
* utf8 validation and utf8-to-ucs4 conversion are faster
* Small speedups to property change notification
* Various other small optimizations for GQuark, GData
* Bugs fixed:
696426 GParamSpecTypeInfo do not need to be static
735429 Cleanup MSVC Project Files Generation
738504 Optimize UTF-8 decoding by unrolling branches and expressions
742903 Add missing (transfer) annotation to GString
748633 g_set_object order of operations
754431 Fix build of glib/gstrfuncs.c on Windows
754560 gioerror: Add more mappings for WinSock error codes
754582 Glib cannot compile
754601 Make g_strerror work with non-glibc POSIX systems
754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
754788 more g_strerror stuff
754831 autocleanups: Add GString type
754924 Improve test coverage of g_utf8_validate() by added known-...
754986 Avoid unnecessary signal emission during draw
* Translation updates:
Italian
Kazakh
Korean
Lithuanian
Slovenian
Swedish
Overview of changes in GLib 2.45.7
==================================
* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
backends (e.g. cloud storage).
* GFileMonitor: Make the inotify backend work with atomic renames again
* GSettings: change notification is again working unconditionally
* GListStore has a sort function now
* Test infrastructure:
- Tests are now required to have unique names
- TAP support has been improved
- A macro for asserting that two memory regions have identical content
has been added
* Bugs fixed:
708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
742849 inotify: send paired events to both sides
744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
747364 Fix GError leak in g_file_query_writable_namespaces()
749492 Support file creation time on FreeBSD and NetBSD
752769 (g_socket_receive_message | g_socket_send_message) performance
753745 glib-genmarshal still needed for cross-compilation
754152 Add g_list_store_sort
754211 Memory leak in g_file_enumerator_iterate ()
754264 GLib 2.44 certificate chain construction fails if the PEM incl...
754283 gtestutils: add g_assert_cmpmem()
754284 gtestutils: print the TAP test plan first, not last
754286 misc gtestutils fixes
754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
* Translation updates:
Chinese (Taiwan)
French
Galician
Greek
Hebrew
Hungarian
Indonesian
Polish
Portuguese
Overview of changes in GLib 2.45.6
==================================
* Fix a test failure and a build failure
Overview of changes in GLib 2.45.5
==================================
* GNetworkMonitor now provides information about metered networks
* g_mem_set_vtable has been deprecated; it has not been working for
quite a while. The recommendation is to use valgrind, or replace
malloc itself.
* Bugs fixed:
656325 Make GDBusInterfaceVTable binding friendly
741779 Documentation tweaks addressing real-world API misuses
741822 Fails to build with VS 2015
742386 gdbusconnection: Don't g_printerr() when exiting
743018 gobject: Add more cross-links between documentation pages
750282 Add g_network_monitor_get_network_metered() to get if the connection...
751358 GFileMonitor doesn't react to "mv some-file watched-file"
751592 Stop using GMemVtable
751598 Stop 'handle-local-options' propagation when callback reports an err...
751610 g_str_hash produces collisions with strings of length 2
751751 Wrong docs of g_async_queue_remove
752210 gdbus command crashes with SIGSEGV
752656 gdbusconnection: Fix signal subscription documentation
752767 Fix typo in g_hash_table_replace() documentation
753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
753285 g_menu_item_set_icon fails if called with NULL icon
* Translation updates:
Catalan
Czech
French
Indonesian
Lithuanian
Norwegian bokmål
Slovak
Spanish
Thai
Turkish
Overview of changes in GLib 2.45.4
==================================
* Bugs fixed:
727829 win32: glibconfig.h.win32 updates
741901 Clang cannot know that g_error don't return
746339 GSocket kills process when fd is not a socket
747676 gio/tests/socket fails: test_fd_roundtrip
748610 Some tests fail with non-English locales
749911 g_inet_address_to_string broken on XP/2003
749912 g_inet_address_new_from_string broken on XP/2003
750625 Should dismiss Software Updates Available notification after...
750807 G_BREAKPOINT doesn't work as intended on Darwin
751160 gtask does unnecessary work
751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
751731 GFile/DirectoryMonitor emit move events with other_file=NULL
751737 gio/tests/appmonitor test fails in 2.45.3
751798 Wrong enum type used in some test-cases
752089 make gsocketservice::active a property
752293 small cleanup: use list_free_full
* Translation updates:
Greek
Hebrew
Portuguese
Overview of changes in GLib 2.45.3
==================================
* Improve performance of g_signal_handler_disconnect for signals
with many handlers
* GDBus has gained a new call flag to allow interactive authorization
* GSettings:
- New API: g_settings_schema_list_keys
- Deprecated: g_settings_list_keys
* OS X:
- Implement GNotification
- Bump the OS X requirement to 10.9
* Windows:
- Add registry reading API
- Reimplement GAppInfo using registry information
* Bugs fixed:
666831 Support URI opening on W32
728489 property action with inverted boolean state
730168 Incorrect annotation on g_action_group_get_action_state_type return...
733325 Several regex tests fail with pcre3 8.35
734888 GLib has no helper functions to work with W32 Registry
737009 signal handler lookup doesn't scale
738185 Misleading language about "file name encoding" in the docs on g_env...
738504 Optimize UTF-8 decoding by unrolling branches and expressions
739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
739424 gnome-shell crashes when files are added, deleted, or modified in $...
739616 DBus; Add new call flag to allow interactive authorization
740308 Add g_settings_schema_list_keys() method
740516 RFE: please provide an introspectible version of g_log_set_handler
741788 Document GSettings build system integration
745013 GBinding not thread safe
747146 Implement GNotification on OSX
747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
748727 Filechooser dialog shows no icons for directories on W32
749693 GActionGroupExporter: flush queue on requests
750203 GNetworkMonitorNetlink hangs in user namespace
750322 gapplication: Make sure --help output is translated
750344 GTlsInteractionClass is missing from doc
750369 Various GBinding cleanups
750386 Race condition in g_io_condition_get_type
750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
750573 GTlsDatabaseClass is not documented
750918 genmarshal: silence register storage class warnings
751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
479730 The "g_key_file_set_comment" interface prepends '#' character to...
* Translation updates:
Hungarian
Spanish
Overview of changes in GLib 2.45.2
==================================
* Improve error reporting in glib-compile-schemas.
* Add introspection annotations to GListStore.
* Bugs fixed:
696749 win32 : failed to compile because of careless mistake in the code
723394 const parameter to GtkPopover gtk_popover_set_pointing_to
724113 gdbus-connection-loss test can fail on slow machines
725981 tap-driver.sh: internal error getting exit status
733325 Several regex tests fail with pcre3 8.35
744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
747882 gtype: Bump allowed number of children
748534 gtest: if a subprocess assertion fails, print its stdout and stderr
748612 de_DE locale used in option-context test is not supported by FreeBSD
748614 Double unref in g_socket_listener_add_inet_port
748834 glocalfilemonitor: Emit notification on rate limit change
749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
749080 gdatetime test: fails if close to rollover between seconds
749180 gnetworkaddress: add return type annotation to parse methods
749352 g_binding_unbind() fails when source is also the target
749353 GBinding does not connect to the detailed notify signal
* Translation updates:
Catalan
French
Slovak
Thai
Overview of changes in GLib 2.45.1
==================================
* The GSettings schema compiler, glib-compile-schemas has been changed
to reject schema xml that has duplicate <summary> or <description>
elements. Such elements typically occur when translations are merged
into the schema, with xml:lang attributes. This is not the correct
way to translate schemas. Instead keep the translations in the .mo
file and set the gettext-domain attribute on the <schemalist> element.
* The file monitoring infrastructure has been rewritten, and all backends
have seen major improvements.
The inotify backend is reporting events with less delay (no event will
be delayed more than 10ms) and wakeups due to file monitoring have been
significantly reduced. A CHANGES_DONE event will also be sent when new
files appear.
The poll implementation is now using the thread default main context.
The fam implmentation is now running in the worker thread.
The fen implementation has been removed, since it was unmaintained.
* The GSettings schema compiler, glib-compile-schemas, is more strict
about rejecting schemas with xml:lang style merged translations.
Schema translations should be done by specifying the gettext domain
in the xml, and keeping the translations in gettext. To avoid breaking
already-installed schemas, this change is only taking effect when
you use the --strict option.
* The hardcoded 10-thread limit of GTask's thread pool has been removed,
since it was prone to causing deadlocks. The thread pool is now allowed
to grow dynamically and will shrink back over time.
* GSimpleAsyncResult has been deprecated in favor of GTask.
* The algorithm used by GAppInfo to find default handlers for mime types
has been tweaked to prefer apps that handle the specific subtype over
default handlers for a generic supertype.
* Bug fixes:
627285 inotify file monitor hardwired delay
631597 Segmentation fault in append_escaped_text
661767 merge/improve various bits of run-in-thread functionality
687223 cleverer GThreadPool management
711547 win32: silence some build warnings
719966 glib: Add missing (nullable) and (optional) annotations
726447 Possibly an error in text string
728663 W32: wrong stat struct is used when built with MinGW-w64
728669 W32: GLocalFile can't measure size of files larger than 2^32...
730188 gsocket: Document FD ownership with g_socket_new_from_fd()
733325 Several regex tests fail with pcre3 8.35
738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
739850 GClosure: add valgrind hints
741791 gmain: Save errno when handling unix signals
744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
745255 Add support for copying sessions between GTlsClientConnections
745745 gdbus: fix out-of-bound array access
745821 Don't use __alloc_size__ attribute with clang
746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
746753 Glib-compile-resources --generate-header not using ".h" as ...
747209 glib-compile-schemas ought to reject repeated <summary> and...
747349 Conversion of gdbus to use GTask causes deadlocks
747363 gatomic: Add missing new line in API doc comment
747472 Don't ignore already-installed schemas with multiple <summa...
747541 gdbus segfaults with invalid --dest
747772 Having hardcoded utf8 strings in the source code does not p...
748019 gsocketconnection: Fix copy-pasto in documentation
748177 not all test schemas are distributed, "make distcheck" fails
* Translation updates:
Basque
Czech
Danish
Finnish
German
Hebrew
Icelandic
Norwegian bokmål
Russian
Turkish
2016-04-07 20:33:05 +02:00
|
|
|
share/gtk-doc/html/gobject/api-index-2-46.html
|
2010-05-31 19:30:36 +02:00
|
|
|
share/gtk-doc/html/gobject/api-index-2-6.html
|
|
|
|
share/gtk-doc/html/gobject/api-index-2-8.html
|
|
|
|
share/gtk-doc/html/gobject/api-index-deprecated.html
|
|
|
|
share/gtk-doc/html/gobject/api-index-full.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/gobject/ch01s02.html
|
|
|
|
share/gtk-doc/html/gobject/chapter-gobject.html
|
2007-08-16 00:09:13 +02:00
|
|
|
share/gtk-doc/html/gobject/chapter-gtype.html
|
2008-04-10 14:13:49 +02:00
|
|
|
share/gtk-doc/html/gobject/chapter-intro.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/gobject/chapter-signal.html
|
|
|
|
share/gtk-doc/html/gobject/glib-genmarshal.html
|
|
|
|
share/gtk-doc/html/gobject/glib-mkenums.html
|
|
|
|
share/gtk-doc/html/gobject/glue.png
|
|
|
|
share/gtk-doc/html/gobject/gobject-Boxed-Types.html
|
|
|
|
share/gtk-doc/html/gobject/gobject-Closures.html
|
|
|
|
share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html
|
|
|
|
share/gtk-doc/html/gobject/gobject-GParamSpec.html
|
|
|
|
share/gtk-doc/html/gobject/gobject-Generic-values.html
|
|
|
|
share/gtk-doc/html/gobject/gobject-Signals.html
|
|
|
|
share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html
|
|
|
|
share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html
|
|
|
|
share/gtk-doc/html/gobject/gobject-Type-Information.html
|
|
|
|
share/gtk-doc/html/gobject/gobject-Value-arrays.html
|
|
|
|
share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html
|
|
|
|
share/gtk-doc/html/gobject/gobject-memory.html
|
|
|
|
share/gtk-doc/html/gobject/gobject-properties.html
|
|
|
|
share/gtk-doc/html/gobject/gobject-query.html
|
|
|
|
share/gtk-doc/html/gobject/gobject.devhelp2
|
|
|
|
share/gtk-doc/html/gobject/gtype-conventions.html
|
|
|
|
share/gtk-doc/html/gobject/gtype-instantiable-classed.html
|
|
|
|
share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html
|
|
|
|
share/gtk-doc/html/gobject/gtype-non-instantiable.html
|
|
|
|
share/gtk-doc/html/gobject/home.png
|
|
|
|
share/gtk-doc/html/gobject/howto-gobject-chainup.html
|
|
|
|
share/gtk-doc/html/gobject/howto-gobject-code.html
|
|
|
|
share/gtk-doc/html/gobject/howto-gobject-construction.html
|
|
|
|
share/gtk-doc/html/gobject/howto-gobject-destruction.html
|
|
|
|
share/gtk-doc/html/gobject/howto-gobject-methods.html
|
|
|
|
share/gtk-doc/html/gobject/howto-gobject.html
|
|
|
|
share/gtk-doc/html/gobject/howto-interface-implement.html
|
2012-10-06 22:44:04 +02:00
|
|
|
share/gtk-doc/html/gobject/howto-interface-override.html
|
|
|
|
share/gtk-doc/html/gobject/howto-interface-prerequisite.html
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/gobject/howto-interface-properties.html
|
|
|
|
share/gtk-doc/html/gobject/howto-interface.html
|
|
|
|
share/gtk-doc/html/gobject/howto-signals.html
|
|
|
|
share/gtk-doc/html/gobject/index.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/gobject/left-insensitive.png
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/gobject/left.png
|
|
|
|
share/gtk-doc/html/gobject/pr01.html
|
|
|
|
share/gtk-doc/html/gobject/pt01.html
|
|
|
|
share/gtk-doc/html/gobject/pt02.html
|
|
|
|
share/gtk-doc/html/gobject/pt03.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/gobject/right-insensitive.png
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/gobject/right.png
|
|
|
|
share/gtk-doc/html/gobject/rn01.html
|
|
|
|
share/gtk-doc/html/gobject/rn02.html
|
|
|
|
share/gtk-doc/html/gobject/signal.html
|
|
|
|
share/gtk-doc/html/gobject/style.css
|
|
|
|
share/gtk-doc/html/gobject/tools-ginspector.html
|
|
|
|
share/gtk-doc/html/gobject/tools-gob.html
|
|
|
|
share/gtk-doc/html/gobject/tools-gtkdoc.html
|
|
|
|
share/gtk-doc/html/gobject/tools-refdb.html
|
Update glib2 to 2.18.0.
Based on patch provided by Juan RP in pkgsrc-users ml.
Overview of Changes from GLib 2.17.7 to GLib 2.18.0
===================================================
* Win32:
- rework the g_poll() implementation to match poll() semantics more closely
* Bugs fixed:
324234 Using g_io_add_watch_full() to wait for connect() to return...
548278 Async GETs connections are always terminated unexpectedly...
500246 Bug fixes for giowin32
523939 Example program for GValue
550096 GBookmarkFile parser is not forward compatible
550040 Move GString, rand and printf tests to the unit test framework
550104 trivial documentation fix for g_get_home_dir
548988 g_file_replace fails on Windows when the target file exists
550059 Wrong docs for g_emblemed_icon_add_emblem
548800 Missing a g_object_get_type function
550056 Missing documentation for g_emblemed_icon_get_emblems
* Updated translations:
Bulgarian (bg)
Czech (cs)
German (de)
Estonian (et)
Basque (eu)
French (fr)
Hebrew (he)
Hungarian (hu)
Italian (it)
Japanese (ja)
Lithuanian (lt)
Maithili (mai)
Dutch (nl)
Swedish (sv)
Thai (th)
Ukrainian (uk)
Vietnamese (vi)
Overview of Changes from GLib 2.17.6 to GLib 2.17.7
===================================================
* More fixes for 64-bit Windows
* GIO
- Add a vfs implementation for HTTP and HTTPS URIs on Windows
* Bugs fixed:
546329 API docs for g_utf8_normalize() are incorrect
546876 Modify GMarkup parser to accept  .. 
547200 g_utf8_find_next_char() issues
547637 unconditional #include of sys/statfs.h in configure
547337 G_DISABLE_DEPRECATED breaks tests build
547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
502498 Test framework assertion failures should follow gcc
546371 Improve docs re g_file_monitor
546483 GThemedIcon:use-default-fallbacks is not readable without...
546132 GFileIcon is bindings-unfriendly
542156 zfs mount in home directory shown on nautilus desktop
535124 umask 002 not being applied for new directories...
547080 g_file_copy leaks expected errors
546582 Callbacks from GFileMonitor present a GFile...
547262 Missing link in the docs
* Updated translations:
Arabic (ar)
Catalan (ca)
Spanish (es)
Basque (eu)
Finnish (fi)
Galician (gl)
Hebrew (he)
Marathi (mr)
Norwegian bokmål (nb)
Portugese (pt)
Brazilian Portugese (pt_BR)
Swedish (sv)
Thai (th)
Overview of Changes from GLib 2.17.4 to GLib 2.17.6
===================================================
* Fix problems on 64-bit Windows
* g_markup_context_get_user_data: New function to access
the user_data outside of callbacks
* GIO
- g_mount_guess_content_type_sync: synchronous version of
g_mount_guess_content_type
- GEmblem: A GIcon implementation that adds emblem-related
metadata to icons
- GEmblemedIcon: A GIcon implementation that can add emblems
to icons
* Bugs fixed:
544088 option_test_LDADD is left in tests/Makefile.am
544465 gmarkup makes it hard to use pre-rolled parsers
545485 Implicit declaration of utime()
545798 "Since: 2.18" mark is missing in g_set_error_literal...
544140 fam-helper 64-bit issue
529694 SELinux context setting support
545157 wrong/no list of "open with" applications for .cc...
545203 gfile.c: argument is different type
545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
544177 Fix trivial cut and paste error in documentation
545395 Language tweak for g_value_set_string* docs
541036 Gnumeric crashes when trying to open Desktop...
546079 leak in xdgmime
545395 Language tweak for g_value_set_string* docs
546017 Don't copy attributes when copying a symlink
* Updated translations:
Arabic (ar)
Estonian (et)
Galician (gl)
Italian (it)
Japanese (ja)
Korean (ko)
Norwegian bokmål (nb)
Pashto (ps)
Portugese (pt)
Overview of Changes from GLib 2.17.3 to GLib 2.17.4
===================================================
* GIO:
- New API to handle content types: g_mount_guess_content_type,
g_content_type_guess_for_tree.
- Export the eject-button signal on the volume monitor class
- New API to enable out-of-process volume monitors:
g_volume_get_activation_root
* GObject:
- New API to handle signals without slots in the class structure:
g_signal_new_class_handler, g_signal_override_class_handler
* Internationalization:
- Add an NC_ macro that is a no-op equivalent of C_
* GMarkup:
- Add two new functions g_markup_parse_context_push,
g_markup_parse_context_pop to support "subparsers"
* Bugs fixed:
541208 Functions to easily install and use signals without...
541507 Ambiguous description of assigned characters in the...
543040 async reading on dummy file will crash on GIO_USE_VFS=local
543560 enable gio-FEN back-end warnings on Solaris will crash...
528317 GRegex does not allow recursion limit
337518 GMarkup: Subparser support
541794 drive-eject-button signal
541793 activation root for volumes
467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
428048 2 of 51 tests fail on Solaris
542332 small fix for error message in GMarkup
482413 get_contents_stdio -- overflow and memory corruption
406120 g_ascii_strtod
334234 "printf" format error
536996 Missing noop i18n macro equivalent to C_
540616 mem leak in filechooser button
539229 gobject-query calls itself query
521589 [RFC] gobject documentation should mention Vala
543168 Description of G_SLICE=debug-blocks discourages its use
543220 Case collision on gio-extension-points.html
530759 update the gobject tutorial to the XXI century
535223 gbookmark file inefficiency ...
543504 crash in Epiphany Web Browser: Opening local file
* Updated translation:
German (de)
Estonian (et)
Pashto (ps)
Albanian (sq)
Thai (th)
Traditional Chinese (zh_HK)
Traditional Chinese (zh_TW)
Overview of Changes from GLib 2.17.1 to GLib 2.17.3
===================================================
* PCRE
- fix for CVE-2008-2371
* Bugs fixed:
538119 glib's mainloop leaks a pipe to sub-processes
537635 Corrections and improvements to g_time_val_{to,from}_iso8601
539067 The document g_io_channel_win32_new_fd() says...
535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
539123 annotate g_d[n]gettext with G_GNUC_FORMAT
539074 Cannot get exit status with g_spawn_command_line_sync
316221 G_LOCK warns about breaking strict-aliasing rules
539770 migrate gstrfunc unit tests to gtest
539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
538044 unconditional use of LC_MESSAGES
540545 Monotonic time and timer offset
535947 want g_set_error_literal
539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF
536252 GFileEnumerator should allow access to the containing GFile
538362 Get Win32 icons back in the file chooser
540802 g_list_prepend doesn't concat lists
540423 unrecoverable error after g_seekable_truncate
538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
539090 g_content_type_from_mime_type() should unalias
540331 g_file_append_to () documentation: can return NULL
534639 add g_desktop_app_info_new_from_keyfile
536733 gio build failure on Irix
536160 Add g_file_monitor()
538127 FileChooser broken on win32
531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
538564 gio should have gio-types.h
540047 glib-genmarshal.c: '#include <io.h>' is too before
Updated translations:
Korean (ko)
Occitan (oc)
Overview of Changes from GLib 2.17.0 to GLib 2.17.1
===================================================
* New function: g_utime(), a gstdio wrapper for utime()
* New functions: g_dgettext() and g_dngettext(), wrappers
for corresponding gettext functions with added functionaliy
* Support the latest version of the shared-mime spec, including
icons for mime types
* New function: g_themed_icon_prepend_name()
* Bugs fixed:
535418 Please document which glib version defines goffset
528715 Misprint in the description of the interface g_type_class_add_private
528714 Misprint in the description of the interface g_param_spec_flags
537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
530527 Misprint in the description of the interface
g_cclosure_marshal_VOID__FLAGS
530526 Misprint in the description of the fields 'class_init' and
'class_finalize' of the structure GTypeInfo
528719 Improvement to the documentation of the "g_object_connect" interface
528172 gtk_signal_handlers_unblock_* functions return value
amount of matched signals, not amount of actually unblocked
528717 Misprint in the description of the parameter 'type_id' for
the interface g_type_register_fundamental
528716 Misprint in the description of the parameter 'iface_data' for
the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc
537555 GObject instantiation not thread safe
537546 'desktop' shortcut in file chooser looks like a generic folder
537392 Additional colon in xattr name
536641 Filesystem querying in gio does not list AFS and autofs file systems
528600 g_dummy_file_get_parent("scheme://example.com/")
503071 Application direction changes to right to left even if theres no
translation
502511 g_assert_cmphex prints invalid message
338162 Use po/LINGUAS
314453 Nautilus crashes in Solaris when browsing the attached file
529321 make check fails in glib/pcre
455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD
fallback to $HOME/Desktop if xdg-user-dirs is not in use
498732 g_key_file_to_data cannot fail
511367 add g_file_make_directory_with_parents
531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with
gcc 4.0 or newer
536158 also bump GHashTable version when a node is removed via
g_hash_table_iter_remove()/g_hash_table_iter_steal()
531403 g_utf8_collate broken on Mac
535628 test/patterntest.c still includes gpattern.h directly
535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
* Translation updates:
Arabic (ar)
German (de)
Italian (it)
Norwegian bokmål (nb)
Thai (th)
Overview of Changes from GLib 2.16.x to GLib 2.17.0
===================================================
* Update to Unicode 5.1
* Update included libcharset to the one shipped with libiconv 0.12
* Update included PCRE to 7.7
* Enforce that only toplevel headers are directly included.
This is turned on by default for GObject and GIO. To turn
it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
* Fix library version of GIO. GLib 2.16 shipped with libgio-2.0.so.0.0.0
* On Solaris, use FEN for file monitoring in GIO
* Use the GIO_EXTRA_MODULES environment variable to find
additional GIO modules
* G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
function attribute
* g_checksum_reset: New function to reset the state of a GChecksum
* g_unix_mount_monitor_set_rate_limit: New function to limit the
rate at which events are reported
* g_file_query_file_type: New utility function to query the type of
a file
* g_memory_output_stream_get_data_size: New function to obtain the
size of the written data.
* Bugs fixed:
522292 Gives warnings in glib/gutils.h with GCC in C99 mode
523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
518160 replace two g_strdup_printf calls in GBookmarkFile
523877 gbookmarkfile: avoid using g_string_append_printf() and
other optimizations
525192 100% CPU if run main loop with no IO sources
315437 extern inline -> static inline
524314 g_convert() on Win32 implicitly converts full width
alphanumerics into half width
525732 Error in documentation for g_list_first
525674 A typo in gmarkup.c
448943 g_timeout_add_seconds() problems
525972 UCS-4 not in the new win_iconv implementation
526619 make test-report crash
491554 Update to Unicode 5.1.0
519137 g_slice_dup macro needs cast for 64-bit platform
528752 Win32 build and SSL not working
530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
528667 Typos in testing module documentation
459905 Bug in wcwidth data
534085 g_unichar_iswide_cjk() has a totally wrong table
501651 Update glib/libcharset
519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
534319 GLib's .pc files could use Libs.private
534137 Typo in g_spawn_async_with_pipes doc
517419 gio win32 directory monitor
526796 Wrong order of arguments in g_file_copy's fallback
530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
532965 Should not return filesystem::free for certain file systems
525553 fix typo and nitpicking in GArray documentation
526572 Missing * in declaration of parent_class in Object
Destruction section of GObject Reference Manual
528648 Extra >s in Object Construction section
535021 g_param_spec_internal documentation should
describe purpose of nick and blurb
521513 Firefox crash when using file picker
528433 gdesktopappinfo snafu ...
533369 API g_file_info_get_attribute_string () unables to get "...
521045 glib f_fstypename miscellany
521672 compile error
521946 control rate limit on GUnixMountMonitor
522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
523015 Implement sliding window based upload operation
523019 Use new GCC 4 feature
523338 list nfs4 as a nfs mount type
524350 Make glib build without NLS again
524579 g_file_copy reports wrong total on progress callback for ...
524742 A typo in gtestutils.c.
524950 Minor documentation typos.
525866 the user directory should not be considered as a mount to...
526320 should not list mounts that the user doesn't have permiss...
527132 nautilus crash when making ftp connection
532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
534759 Build failure in gio
534764 Typo in error produced by g_file_make_directory
521851 Redudant tests in gunixmounts.c
524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
534177 Invalid description of the interface g_cclosure_marshal_S...
520715 Add GFile method g_file_query_file_type
523039 nautilus can't access to trash/computer/network if gvfs i...
* Updated translations:
Arabic (ar)
Bulgarian (bg)
Catalan (ca)
Czech (cs)
Greek (el)
Candian English (en_CA)
British English (en_GB)
Spanish (es)
Estonian (et)
Basque (eu)
Galician (gl)
Hebrew (he)
Hungarian (hu)
Japanese (ja)
Lithuanian (lt)
Norwegian bokmål (nb)
Dutch (nl)
Occitan (oc)
Portugese (pt)
Russian (ru)
Slovak (sk)
Albanian (sq)
Swedish (sv)
Turkish (tr)
Vietnamese (vi)
2008-09-06 13:07:20 +02:00
|
|
|
share/gtk-doc/html/gobject/tools-vala.html
|
Update glib2 to 2.40.0
Patches removed:
- patch-ai
Fixed in e3fa9c9a (Bug 583321)
- patch-cj
Fixed in c58a7b8c (Bugs 641350 711047)
- patch-gio_gdbusmessage.c
Fixed in 0167c334
- patch-gio_gfile.c
Fixed in 091e4660 (Bug 721034)
- patch-gio_glocalfile.c
Fixed in 7eb1e5fc (Bug 708860)
- patch-ap and
- patch-aq
Credentials have changed, see below
Patches changed:
- patch-aa
Second chunk fixed in 838b49ea (Bug 711600)
- patch-ba
Third chunk fixed in 7cf221aa
Reworked Bug 583330
Patches added:
- patch-glib_gmessages.c
Closes PR pkg/48318, fixed in 7328089e (Bug 720708)
- patch-gio_gcredentials.c
- patch-gio_gcredentialsprivate.h
- patch-gio_gioenums.h
- patch-gio_gsocket.c
- patch-gio_gunixcredentialsmessage.c
- patch-gio_tests_credentials.c
Attempt at gcredential support for NetBSD (Bug 728256)
Highlights from changes:
* Disable IPv6 testcases on machines without IPv6
* Document that it is a bad idea to match on generic error codes
* This release introduces a hard dependency on present and functioning
clock_gettime() and CLOCK_MONOTONIC. It also introduces a
dependency on pthread_condattr_setclock() unless your system
happens to have pthread_cond_timedwait_relative_np() (as do Mac
OS and Android). This release is known to be broken with at
least GNU/Hurd, pending addition of working
pthread_condattr_setclock(CLOCK_MONOTONIC) there.
* New API: g_str_to_ascii()
* fix a crasher in code from gdbus-codegen
* improvements to gobject gdb helper script
* Portability:
- fix a deadlock issue with kqueue on FreeBSD
- work around a quirk in the sunstudio compiler
- rename a variable to avoid clashing with a macro definition of
'environ' on some platforms (like mingw)
- use POSIX-specified <poll.h> over <sys/poll.h>
- many improvements to Visual Studio projects and and some build
fixes for Windows
* tests
- a very large number of improvements in test coverage
- don't report skipped tests as failures
- return 77 if we skip all tests in an executable
- improve gtest documentation and fix some minor issues
- fix g_test_trap_reached_timeout() return value
- remove some dead code uncovered during test coverage expansion
- Use tap mode for installed tests too, when using tap
* fix races in unix signal handling
* make our GVariant-based commandline tools (glib-compile-schemas,
gdbus, gapplication) print out GVariant parse errors in context
* GApplication now has a --gapplication-service command line switch to
turn any GApplication into a service
* improve compatibility of GApplication and GOptionContext
* fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
* use a directory monitor in GKeyfileSettingsBackend
* improve robustness of some GIcon classes
* Portability
- Remove alleged support for OS/2
- Remove alleged support for BeOS
- Remove alleged support for last-millennium Unixes
- Require C90 compliance
- Require POSIX.1 (1990) compliance on Unix
- Require GNU make
* GSettings fixes/improvements
- GSettingsSchema API is now more powerful and consistent
- new GSettingsSchemaKey API allows accessing metadata for keys:
type, default value, range and the long-awaited support for summary
and description
- GSettingsSchemaSource gains support for listing schemas within a
source. Deprecate the global API that did this for the default
source.
- 'gsettings list-schemas' now works properly with --schemadir
- deprecate a bunch of now-redundant functionality on GSettings
- add API to GSettings for getting the default value of a key (as set
by the sysadmin)
- add API to GSettings for determining if the user has assigned a
particular value to a key (ie: we are not just reading the default)
- ignore qualified tags and attributes appearing in schema files
* Applications/Actions
- make GSimpleAction a bit more strict with respect to state changes
that would violate the interface (ie: by changing the state type
after construction)
- throw an error when attempting to 'Describe' a non-existent action
via D-Bus instead of returning a bogus description
- throw an error when attempting to invoke unsupported methods on an
Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
instead of emitting a g_critical() in context of the app (which is
not itself at fault for the errant call)
* Appinfo
- substantially rework GDesktopAppInfo to reduce the amount of disk
accesses that are performed in common situations
- add a new class: GAppInfoMonitor for discovering when applications
are installed/removed
- add a new g_desktop_app_info_search() API for searching for
installed applications by name, keywords, etc.
* GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
"qualified" tags and attributes (those with a colon in the name, such
as 'my:tag')
* GDBus
- ignore qualified tags, as above
- GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
that test programs don't pick them up
- add new session_bus_run() convenience in the tests and use it
* GRand: use real random data as a seed on win32 and use the
timestamp/pid/uid fallback only on UNIX machines where we can't open
'/dev/urandom'. This may cause issues with older mingw32 releases
due to a missing prototype for the rand_s() API.
* Many win32 (and particularly MSVC) portability fixes. Many
additional tests are now runnable when building with MSVC.
* Due to early testing of the (soon to land) GCleanup framework, a very
large number of memory errors have been found and fixed (mostly in
the testcases, but some in glib itself).
* GIO:
- some more seeking cleanups: particularly on GLocalFileInputStream
- don't leave a .trashinfo file around if trashing a file fails
- Add a request_certificate virtual method to GTlsInteraction
* GNotification
- new API for sending persistent notifications via the desktop shell
- notifications persist when the application has quit and clicking on
them can restart the application with an action (via
DBusActivatable)
* GSubprocess
- new API for launching subprocesses
- nice GIO integration like async functions, cancellability, etc.
- a convenient communicate() API inspired by the same API in Python
- related: the gspawn API now has a CLOEXEC flag for the created
pipes for stdin/stdout/stderr
* New gapplication(1) commandline tool
- intended to be used with DBusActivatable apps
- can be used for launching apps, opening files, invoking application
actions and listing apps and actions
- bash tab completion is supported
* GDesktopAppInfo changes:
- g_file_get_path() can implicitly cause a FUSE mount so don't call
it until we know we need it (for an app that doesn't support URIs)
- don't crash when trying to load from a keyfile with
DBusActivatable=true
- remove some dead code, refactor the search path handling a bit and
do a large-scale whitespace cleanup (prep work for the pending
desktop file index)
* File monitors
- fix broken handling of mount point monitoring
- remove some strange use of GObject::constructor() from the base
class and inotify backend
- fix GFileMonitor to work in the non-default main context even when
the main context is not running (or is blocked)
- add internal private API for easily creating a file monitor in the
GLib worker thread
* GSettings
- g_settings_list_children: only list viable schemas. This fixes a
longstanding issue where 'gsettings list-recursively' will crash
when there are invalid schemas installed
- don't accept invalid paths on g_settings_new_with_path, etc.
* GIO
- GFile now has a thumbnail::is-valid attribute to check if the
thumbnail in thumbnail::path needs to be regenerated
- GDBusProxy now has a flag to control autostarting of services at
construction time
- for GSeekable, properly introduce the concept of "resizable" vs.
"fixed-sized" streams in the docs, explaining the expected
semantics of the interface in each case
- fix some cases in GMemoryOutputStream that were violating the above
expectations (which may cause a slight API incompatibility)
- clean up GCredentials code and add support for Hurd and Solaris
- improve splicing by using different codepaths for the case where we
have real _read_async() and _write_async() implementations on the
stream vs. the case where they are internally emulated (via
dispatching the sync variant of the call in a thread)
* GKeyFile
- fix a leak in g_key_file_get_(u)int64 when we fail to parse the
value as an integer
- add long-requested API g_key_file_save_to_file()
* Portability improvements
- avoid using O_DIRECTORY on platforms that don't have it
- be careful about systems that define SOCK_CLOEXEC but don't
actually support it (like Hurd)
- only use SA_RESTART if it exists
* Other small API changes/additions
- a pair of functions to support matching strings for the type of
search functionality that you'd expect to have with things like
GtkSearchBar. This will also be used by the desktop file index.
- g_str_is_ascii() with obvious purpose
- g_test_expect_message() no longer appears to allow you to catch
G_LOG_ERROR messages
* GMainContext/GSource
- fix handling of overflowing the 'next source id' counter
- g_source_remove() will now throw a critical in the case that you
try to remove a non-existent source. We expect that there is some
code in the wild that will fall afoul of this new critical but
considering that we now reuse source IDs, this code is already
broken and should probably be fixed.
- simplify handling of the 'current dispatching source' to not
require use of a linked list
* GObject
- the long-broken (and leaky) pattern of destroying a just-allocated
object from inside of a custom GObject::constructor is now
officially completely illegal and will abort the program
* Unicode: update to 6.3.0
* Many bug fixes
* Many translation updates
For full details see:
https://git.gnome.org/browse/glib/tree/NEWS?id=2.40.0
2014-09-05 22:49:55 +02:00
|
|
|
share/gtk-doc/html/gobject/up-insensitive.png
|
2006-11-13 19:34:38 +01:00
|
|
|
share/gtk-doc/html/gobject/up.png
|
2010-05-31 19:30:36 +02:00
|
|
|
share/locale/af/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/am/LC_MESSAGES/glib20.mo
|
Update glib2 to 2.38.2
Patches removed:
- patch-ce: fixed in 690d6b97 (Bug 697386)
- patch-gio_gcontenttype.c: committed as ab5aa2aa
- patch-gio_glocalfile.c: fixed in 584358 (Bug 698348)
- patch-gio_gthreadedresolver.c: fixed in 8372f22b
- patch-glib_gfileutils.c: fixed in 8372f22b
- patch-glib_gmarkup.c: : fixed in 8372f22b
- patch-glib_gstrfuncs.c: fixed in 8372f22b
Patches changed:
- patch-aa: last 3 hunks removed as committed as 996edb0 (Bug 706958)
- patch-ah: last 2 hunks removed as something similar in 8372f2
- patch-ak: last 3 hunks removed as committed as 996edb0 (Bug 706958)
- patch-ba: hunk 9 removed as committed as d47430 (Bug 697365)
Overview of changes from GLib 2.38.1 to 2.38.2
===============================================
* GCancellableSource will now dispatch for each time a cancellable is
cancelled (ie: in the case that it was reset) but this is still
considered undefined behaviour
* fix g_source_add_child_source() thread safety issues
* add workaround for buggy D-Bus daemons when path-matching on '/'
* fallback to pathname queryinfo to help g_file_copy() work on gvfs
filesystems that don't implement query_info_on_read()
* don't crash if loading a DBusActivatable application from keyfile
* fix crash when replacing a symlink with another using GIO
* add a fallback for '-symbolic' icons to the non-symbolic form
Overview of changes from GLib 2.38.0 to 2.38.1
===============================================
* Fix error code checks when SOCK_CLOEXEC is defined but not supported
(fix support for GNU/Hurd)
* g_settings_list_children: only list viable schemas
(fix gsettings list-recursively crashes with invalid schemas installed)
* GDBusObjectManagerClient: Fix typo in the /org/freedesktop/DBus path
when adding match rules
* Various -Werror=format-nonliteral fixes
* gmessages: fix clang annotations to work with older versions
* gio: don't dist (generated file) gnetworking.h
* Restore gl_GLIBC21 to configure; needed for libcharset
Translations:
Catalan (Valencian)
Norwegian bokmål
Russian
Serbian
What's new in Glib 2.38
========================
* Application support
- GIO now provides an implementation of Desktop Actions from the
desktop entry specification
- GApplication now implements the org.freedesktop.Application
interface as per the desktop entry specification, allowing for
standards-based D-Bus launching of GLib-based applications
- GDesktopAppInfo now supports DBusActivatable as per the desktop
entry specification, allowing GLib-based applications to use D-Bus
to launch other applications
- GApplication now has a "busy" flag that can be set on an application
to allow the shell to show that it is busy
* GObject
- the private offset for a given class type is now always constant.
This was done by reorganising the memory layout of instances so that
the private data comes before the "official" pointer for the object
(ie: at a negative offset). Valgrind macros were added to mitigate
any problems that this may have caused.
- a new G_DEFINE_TYPE_WITH_PRIVATE has been added along with a
generated function *_get_instance_private() that can now serve as an
equally-performing alternative to ->priv pointers in instances
(allowing memory savings)
- new G_PRIVATE_FIELD, G_PRIVATE_FIELD_P and G_PRIVATE_OFFSET macros
provide a convenient method of converting between named variables in
private structures and their (now constant) offsets
- installing properties on a GObjectClass must now be done from
class_init. It is no longer valid to install them after class_init
has returned.
- it is now possible to manually break a GObject property binding
without destroying one of the objects involved
* Icons
- the requirements for implementing the GIcon interface have changed
in order to make it possible to consume all implementations of GIcon
with a finite number of cases
- a new GBytesIcon type was added for an icon represented by an
in-memory binary blob in a known image format (ideally png).
- new APIs g_icon_serialize() and g_icon_deserialize() replace the old
to/from_string APIs and will always work, irrespective of which
types have been initialised in the calling process, allowing for a
serialised GdkPixbuf to be deserialised in a process that doesn't
have GdkPixbuf
- support for icons has been added to GMenuModel using the new APIs
* Actions and menus
- GPropertyAction provides a convenient way of creating a stateful
property corresponding to a property on a GObject, such as the
"visible-child-name" property of a GtkStack
- new API g_menu_remove_all()
- we now have established rules about what is a "valid" action name
and an API to check them
- a new API for converting detailed action names to and from the
split-out name and parameter value (as GVariant)
- for backwards compatibility, invalid action names can still be used
with most functions, but this is not recommended
* Other GIO
- GDBus now supports services that wish to handle some of all
properties on an interface asynchronously, without requiring the
service to reimplement the entire org.freedesktop.DBus.Properties
interface
- GFile now has a new _measure_disk_usage() (and async) API for
recursively determining the amount of disk space used by a
particular directory (akin to 'du').
- asynchronous version of g_file_trash() and g_file_make_directory()
have been added
* Other new API
- GRegex has a new function to query the maximum lookbehind length to
allow for regexp matching on streams
- GVariant has two new APIs for constructing strings that allow
avoiding copies in some cases: g_variant_new_take_string() and
g_variant_new_printf()
* Testing
- we can now generate TAP output
- new support functions for simplifying the process of dealing with
data files for srcdir != builddir and installed test cases
- g_test_trap_subprocess() provides a portable alternative to
g_test_trap_fork()
* Other
- GLib now builds on Android against the bionic C library
Overview of changes from GLib 2.37.93 to 2.38.0
================================================
* fix the documentation for GSourceFuncs
* fix compilation on OS X/ppc64
Bugs fixed: 708445, 647145
Translations updated:
Danish
French
Portuguese
Punjabi
Overview of changes from GLib 2.37.92 to 2.37.93
================================================
* a couple of bugfixes in the new g_file_measure_disk_usage() API
* updated Traditional Chinese translation
Overview of changes from GLib 2.37.7 to 2.37.92
===============================================
* new API g_file_measure_disk_usage() similar to du(1)
* minor fixes
* Translation updates:
Assamese
Belarusian
Brazilian Portuguese
Catalan
Czech
Galician
German
Hungarian
Indonesian
Italian
Korean
Korean
Latvian
Lithuanian
Polish
Serbian
Slovenian
Spanish
Overview of changes from GLib 2.37.6 to 2.37.7
==============================================
* GDateTime now supports %:z formatting variations
for timezones. This is a GNU date extension.
* Bugs fixed:
685387 Segfault with GObject.signal_handler_is_connected()...
686786 g_socket_get_available_bytes() returns wrong value ...
705027 GSocket GSource not threadsafe on Windows
706469 Fix G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE documentation
706706 Fix Gir annotations on g_loadable_icon_load_finish
706888 gtype: fix a no-op assertion
706958 configure.ac: fix atomic opts detection
707092 "File Utilities" page for GLib documentation doesn'...
707151 gdatetime: Extend the '%z' timezone format
* Translation updates:
Catalan
Hungarian
Japanese
Polish
Slovak
Tamil
Overview of changes from GLib 2.37.5 to 2.37.6
==============================================
* Tests using the g_test facilities can now generate TAP output
* Bugs fixed:
680926 generic type fallback logic is broken for -symbolic
684327 setting null icon to icon list
689245 GSocket unable to reuse (address,port) on Mac OS X
692125 Support TAP as GTest output format
693335 build: fix dtrace-related warnings
696633 gdbus-codegen trips over unicode chars when using python 3.x
696970 Compiling 2.36.0 for win64 fails
697185 GSocket – Allow specifying the multicast interface from...
700268 Add support for using the clang analyzer
701318 Add G_SPAWN_DEFAULT to GSpawnFlags
701529 glib/tests/gdatetime: use UTC time in test_GDateTime_diff()
701800 a new approach to reporting critical errors
702674 g_date_time_new_utc crash
704165 GLib.IOChannel read_unichar() fails
705075 Simplify g_get_tmp_dir()
705152 Race in glib/task.test
705398 gtype: Fix typo in g_type_class_add_private() error message
705570 Check ref_count in g_object_notify_by_pspec
705600 Deprecate GSimpleActionGroup functions?
* Updated translations:
Assamese
Brazilian Portuguese
Czech
Dutch
Galician
Gujarati
Hebrew
Italian
Lithuanian
Marathi
Norwegian bokmål
Russian
Slovenian
Spanish
Thai
Traditional Chinese
Overview of changes from GLib 2.37.4 to 2.37.5
==============================================
* Implement the Desktop Action specification: In the case that the
application is a GApplication and DBusActivatable, actions from the
desktop file are translated into GActions that have been added to
the application with g_action_map_add_action().
* GPropertyAction is a new type of GAction that represents the value
of a property on an object, and allows to change the value when
activated.
* GNetworkMonitorNetlink can now handle default routes via a device.
* The gsettings tool now reports failure to write a key (e.g. because
the key was locked down)
* Miscellaneous new api:
- g_variant_new_printf
- g_action_print_detailed_name
- g_regex_get_max_lookbehind
* Bugs fixed:
664444 Support additional application actions in .desktop files
684123 glib build only tries -D_GNU_SOURCE if glibc is detected
689794 support incremental matching
699259 add org.freedesktop.Application support to GIO
700460 rewrite tests to not rely on precise timing of timeouts
701511 updates to various GSource types
701609 gnetworkmonitornetlink: handle default route via device
703270 add GPropertyAction
704157 GAction: add function for printing detailed names
704250 Doc: various fixes
704267 regression gsourceclosure: segfault in gedit file chooser
704322 glib-unix: fix handling of multiple signal source for the...
704424 No error when failing to override a locked key
704447 Fix build/use of g_child_watch_closure_callback on Windows
704523 g_thread_create_full() can dereference NULL pointer
704543 Add implementations for G_GNUC_*_IGNORE_DEPRECATIONS for ...
704567 gdbusnameowning: Don't spew an error if we're releasing a...
704585 libc printf can give mixed-case strings for NaN and Inf
704587 FTBFS: statfs_result is undeclared for statvfs()
704699 gmain: Reset signal handlers to default when source is
704704 AI_NUMERICSERV cannot be used with ai_socktype = 0
704873 inotify: don't assume mainloop is running
704999 glib/convert.test crashing due to lack of iconv cache
704931 GMenuModel: add annotations to virtual functions
* Translation updates:
Assamese
Czech
German
Gujarati
Spanish
Tamil
Overview of changes from GLib 2.37.3 to 2.37.4
==============================================
* Bugs fixed:
701283 g_source_add_child_source() segfault
702147 inconsistency of G_STRFUNC
703191 new private macros interact poorly with versioning macros
703254 Doc: various fixes
703407 g_spawn_async() keeps child_pid_report_pipe open in child process
703437 GDBusConnection: be more careful with async GetAll
703478 Missing G_BEGIN/END_DECLS in gsettingsschema.h
* Translation updates:
Catalan
Overview of changes from GLib 2.37.2 to 2.37.3
==============================================
* add a new API for instance private data: G_DEFINE_TYPE_WITH_PRIVATE
* fix timestamps in tarball to prevent automake from being required to
build the unmodified source
* add new D-Bus API for async property handling
* add back fsync() on ext4 for g_file_set_contents() after it was
discovered that despite statements in the ext4 documentation
suggesting that this is safe, it is not safe.
* Translations:
Italian
Norwegian bokmål
* Bugs fixed:
698375 - D-Bus async properties
700350 - timestamp issue
701560 - fsync issue (fixed again)
700035 - new API for instance private data
Overview of changes from GLib 2.37.1 to 2.37.2
==============================================
* The GLib test utilities have grown some file-related APIs
to support tests that can be used installed and uninstalled.
* Installing properties after class initialization is deprecated,
and will trigger a warning.
* GApplication:
- Support org.freedesktop.Application, including D-Bus activation
from desktop files
- Set prgname to appid for services
* Bugs fixed:
549783 gtester lacks framework for tests with data files
692848 Fix property example in gobject tutorial
698018 Add an explicit g_binding_release()
698614 GObject: prevent installing properties after init
699259 add org.freedesktop.Application support to GIO
699959 g_file_copy(): Ensure we create private files by default
700123 Test failure: g_inet_socket_address_get_scope_id
700725 GIcon: NULLify the `type' out param in the sync methods too
701401 gtest: add function for testing for WINE
701456 Error in gnome/glib/gio/tests/file.c
701474 Error building glibmm due to extra comma in glib/gtestutils.h
701560 various improvements for g_file_set_contents()
701680 GFileEnumerator: Add some documentation about ordering
701878 Check wakeup() before iteration(TRUE) doesn't block
* Translations:
Assamese
Czech
Galician
Gujarati
Kannada
Marathi
Odia
Polish
Slovenian
Spanish
Telugu
Overview of changes from GLib 2.37.0 to 2.37.1
==============================================
* add support for installed tests:
https://live.gnome.org/GnomeGoals/InstalledTests
* add a new g_test_trap_subprocess() that works on Windows as a
replacement for the (now deprecated) g_test_trap_fork()
* support for explicitly cancelling a gobject property binding
* performance improvements for signal argument handling
* stop using `quotes' in very many log messages generated by GLib, for
favour of 'this style'. This may cause testcases in other packages
to fail if they were matching on the previous text.
* improve manpages: add missing arguments and flags
Translations:
Aragonese
Assamese
Gujarati
Hindi
Kannada
Norwegian bokmål
Odia
Slovenian
Spanish
Tamil
Telugu
Bugs fixed:
679683 replace g_test_trap_fork()
694380 Improve signal argument collection performance
695233 Strings require plural forms
697849 spelling fixes in cross.xml and running.xml
698877 GProxyAddressEnumerator calls g_network_address_parse_uri without port
698981 [PATCH] test /gdbus/connection/large_message could hang forever
699079 Prototype support for installed tests
699485 [PATCH] tests/mappedfile: Also handle ENOMEM
699493 SOCKS5 proxy code crashes if it cannot authenticate
699500 gbitlock: fix this to not unconditionally use futex emulation
699779 [PATCH] G_GNUC_FORMAT: documentation error
700263 m4macros/glib-gettext.m4: Don't use AC_HEADER_STDC
700714 [PATCH] gtestutils: Ensure test subprocesses don't dump core
700746 Use 'dumb quotes' rather than `really dumb quotes'
2013-12-08 14:08:59 +01:00
|
|
|
share/locale/an/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/ar/LC_MESSAGES/glib20.mo
|
2007-08-16 00:09:13 +02:00
|
|
|
share/locale/as/LC_MESSAGES/glib20.mo
|
2010-05-31 19:30:36 +02:00
|
|
|
share/locale/ast/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/az/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/be/LC_MESSAGES/glib20.mo
|
2007-03-20 16:33:57 +01:00
|
|
|
share/locale/be@latin/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/bg/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/bn/LC_MESSAGES/glib20.mo
|
Update to 2.12.1:
Overview of Changes from GLib 2.12.0 to GLib 2.12.1
===================================================
* Update to final Unicode Character Database 5.0.0
* Bugs fixed:
346660 issues with base64 api documentation / g_base64_decode_cl...
348136 Coverity reports allocation of wrong size CID #2839
336281 Update to UCD 5.0
346197 g_date_strftime %F option doesnt work for win32
348011 Small optimization to real_toupper()
246494 prototype mismatch in glib/gconvert.c
* New and updated translations (bg,bn_IN,ca,dz,eu,fi,
fr,he,it,ja,mk,or,pt)
2006-07-23 16:15:02 +02:00
|
|
|
share/locale/bn_IN/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/bs/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/ca/LC_MESSAGES/glib20.mo
|
2009-06-05 18:08:25 +02:00
|
|
|
share/locale/ca@valencia/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/cs/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/cy/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/da/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/de/LC_MESSAGES/glib20.mo
|
Update to 2.12.4:
Overview of Changes from GLib 2.12.3 to GLib 2.12.4
===================================================
* Fix build problems related to Posix timers.
* Bugs fixed
321974 nanosleep on AIX / g_timer API using high
resolution timers
353584 va_end called on caller supplied va_list
353580 va_copy detection breaks if user sets
CFLAGS=-Werror-implicit-function-declaration
354522 Small problem with PLT hiding 6 symbols
358421 typos in gmain.c
* New and updated translations (bn,bn_IN,dz,el,en_GB,
et,fa,hi,hy,it,ka,nn,pt_BR,ro,sl,sr,sr@Latn,ta)
2006-10-06 20:05:21 +02:00
|
|
|
share/locale/dz/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/el/LC_MESSAGES/glib20.mo
|
2010-05-31 19:30:36 +02:00
|
|
|
share/locale/en@shaw/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/en_CA/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/en_GB/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/eo/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/es/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/et/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/eu/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/fa/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/fi/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/fr/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/ga/LC_MESSAGES/glib20.mo
|
Update glib2 to 2.48.0
- removed patch-gio_gtestdbus.c: applied upstream.
- removed patch-gio_gunixmounts.c: can no longer reproduce problem.
Overview of changes in GLib 2.48.0
==================================
* a minor build fix in the name of determinism
* a few coverity fixes
Bugs fixed:
763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
Translations updated:
Danish
Italian
Overview of changes in GLib 2.47.92
===================================
* gdbus-codegen now supports g_autoptr()
* g_get_user_runtime_dir() now reliably returns an existing directory
* g_array_remove_range() can now remove 0 items from the end of an array
* Many fixes for Windows
* build fixes
* file monitoring
* gsettings backend
* streams
* random numbers
* wide character support
* documentation improvements
* other small bugfixes
Bugs fixed:
724847 Segmentation fault on "gsettings list-recursively"
743933 gapplication: add --app-id command line option
756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
757506 gsettings: schema_list should use the passed schema's source
760694 W32: Apps linked with -mwindows make cursor busy sometimes
762202 g_win32_error_message improvements
762637 build: Unconditionally dist tapset files
762748 Undefined behavior
762937 Mention that g_clear_error can be used with an "empty" GError
763339 array: Support clearing an empty array with g_array_remove_range()
763344 g_get_user_runtime_dir(): ensure directory exists
763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
Translations updated:
Brazilian Portuguese
Czech
Finnish
French
Galician s
German
Greek
Hebrew
Hungarian
Italian
Kazakh
Korean
Latvian
Lithuanian
Occitan
Polish
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.6
==================================
* Windows usupport:
- Fixes and improvements to the GSettings registry backend
- Handle readability and writability of registry keys
- Use Unicode registry APIs
* Bugs fixed:
760852 744772 761126 747927 761337 744570 761504 761550 761843
744570 GString is missing (transfer none) annotations on many of its methods
744772 systemtap and gdb scripts install in wrong place
747927 Documentation: various small improvements
760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
761126 winiconv: update to upstream version
761337 Fix some annotations
761504 W32 registry GSettings backend does not use Unicode
761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
* Translation updates:
Brazilian Portuguese
Bulagarian
Chinese (Taiwan)
Hungarian
Polish
Slovak
Slovenian
Spanish
Swedish
Overview of changes in GLib 2.47.5
==================================
* the system copy of PCRE is now used by default to implement GRegex.
Configure with --with-pcre=internal if a system PCRE version
is unavailable or undesired.
* interfaces for DTLS support have been added. A new version of
glib-networking will also be required.
* GDBusMethodInvocation now drops replies if the sender set the
NO_REPLY_EXPECTED flag
* several GApplication fixes, including fixes for commandline arguments
in interpreted languages on Windows
Bugs fixed:
624186 Deprecate glib-gettext macros
734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
735754 Implement close on TLS GOutputStream
748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
752240 Add DTLS support to GIO
755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
756875 Include ntdef.h for NTSTATUS
759554 g_application_run() calls g_main_context_default() repeatidly
760199 gsettings: Install gettext ITS rules
760215 G_LIKELY/_UNLIKELY macros need more parentheses
760683 regex test: Check the expected PCRE exceptions at runtime
Translations updated:
Brazilian Portuguese
Czech
German
Lithuanian
Swedish
Overview of changes in GLib 2.47.4
==================================
* The GApplication documentation has been improved in several areas.
* Bugs fixed:
749092 gdb pretty-printers fail on Python 3 with a TypeError...
757374 macros: clean up "inline" mess
758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
759134 Add missing checks for gnulib vasnprintf()
759408 Do not use uninitialized var
756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
757372 GApplication: destroy the impl on shutdown
728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
757299 glib-compile-resources: do not leak c_name
758553 Fix gettext use
758823 file monitors: reorder some code to avoid segfault
756214 gsettings: Don't translate ""
710243 Add GParamSpec object ref management annotations
735696 xdgmime: Finer handling for cases where mmap() is not available
752983 gapplication: Acquire the main context before running
* Translation updates:
Swedish
Overview of changes in GLib 2.47.3
==================================
The inline cleanup in the last release accidentally removed three
symbols from libglib-2.0.so. It is unlikely that this will have caused
any problems because these symbols were only backup symbols for
definitions exported as inlines in the header files, but ABI is ABI.
This release corrects only this problem.
Overview of changes in GLib 2.47.2
==================================
* We have formalised the assumption that all compilers that are
interested in support 'static inline' and simplified the macros around
this considerably. Please watch for and report unintentional fallout.
* New API: hardware-assisted helpers for overflow-checked integer math.
* other fixes
Bugs fixed:
696324 gtester-report doesn't work with Python 3.x
719966 glib: Add missing (nullable) and (optional) annotations
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
755364 make gtkdoc-check happy again
756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
756988 GSequence should document each function's complexity
757294 Move G_POLLFD_FORMAT to glibconfig.h
757374 macros: clean up "inline" mess
757451 doc: fix g_task_attach_source() example
757628 gio tests fail to build when cross compiling 2.46.1
757693 Invalid free in g_local_file_trash()
757742 Fix up annotations in ghash.c
758181 GTask: fix wrong example code
Translations updated:
Greek
Hebrew
Hungarian
Norwegian bokmål
Portuguese
Scottish Gaelic
Simplified Chinese
Spanish
Overview of changes in GLib 2.47.1
==================================
* The Unicode support has been updated to version 8.0 of the Unicode standard
* GDesktopAppInfo no longer sets the DISPLAY environment variable when
launching apps. This is now done in the GAppLaunchContext implementations
when appropriate
* Bug fixes:
664740 Key-value file parser, space after integer
687223 cleverer GThreadPool management
692085 stderr and stdout are not always file descriptors 1 and 2
697907 Add interface for socket-like things (GSocket, DTLS, etc)
735754 Implement close on TLS GOutputStream
737116 Add functions to print GSocketConnectables and addresses as strings
743011 Minor additions to GError documentation
749161 undefined reference to `__imp__stat32i64'
749314 Cannot restore a just-trashed file
751924 Add recvmmsg()-like API on GSocket
752240 Add DTLS support to GIO
752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
753310 Remove `#pragma GCC system_header` from gmessages.h
753935 Update example namespace and class names in GObject tutorial
754855 Object instantiation documentation refers to example that no longer ex...
754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
754994 g_date_time_get_second () sometimes returns an off-by-one result
755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
755351 Example still contains g_autoptr(gchar)
755355 Move GStrv to glib.h so it can be used with g_auto()
755374 g_variant_get_child(): flatten-first logic on '&'
755496 glib 2.46 fails GStreamer test suite
755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
755795 2.46 considers empty files as octet-stream rather than text (leads to...
755961 Fix up annotations in gbytes.c
756053 MSVC doesn't understand the symbol 'msghdr'
756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
756077 testutils: remove internal ABI comment
756099 g_main_context_query(): Annotate @n_fds as (in) parameter
756139 musl: ctors called in the wrong order
756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
756316 GSequence should provide fast api to check if empty
756382 snprintf used on Windows with VS2015 doesn't support %n
756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
756550 gtypes.h: Make G_MININTn literals negative
756875 Include ntdef.h for NTSTATUS
756952 giomodule: return a copy of module name
* Translation updates:
Basque
Czech
Serbian
Serbian Latin
Vietnamese
Overview of changes in GLib 2.46.0
==================================
* Disable runtime-deprecation warnings
* Fix marshalling of flags on bigendian 64bit architectures
* Translation updates
Brazilian Portuguese
Danish
German
Latvian
Russian
Turkish
Overview of changes in GLib 2.45.8
==================================
* utf8 validation and utf8-to-ucs4 conversion are faster
* Small speedups to property change notification
* Various other small optimizations for GQuark, GData
* Bugs fixed:
696426 GParamSpecTypeInfo do not need to be static
735429 Cleanup MSVC Project Files Generation
738504 Optimize UTF-8 decoding by unrolling branches and expressions
742903 Add missing (transfer) annotation to GString
748633 g_set_object order of operations
754431 Fix build of glib/gstrfuncs.c on Windows
754560 gioerror: Add more mappings for WinSock error codes
754582 Glib cannot compile
754601 Make g_strerror work with non-glibc POSIX systems
754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
754788 more g_strerror stuff
754831 autocleanups: Add GString type
754924 Improve test coverage of g_utf8_validate() by added known-...
754986 Avoid unnecessary signal emission during draw
* Translation updates:
Italian
Kazakh
Korean
Lithuanian
Slovenian
Swedish
Overview of changes in GLib 2.45.7
==================================
* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
backends (e.g. cloud storage).
* GFileMonitor: Make the inotify backend work with atomic renames again
* GSettings: change notification is again working unconditionally
* GListStore has a sort function now
* Test infrastructure:
- Tests are now required to have unique names
- TAP support has been improved
- A macro for asserting that two memory regions have identical content
has been added
* Bugs fixed:
708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
742849 inotify: send paired events to both sides
744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
747364 Fix GError leak in g_file_query_writable_namespaces()
749492 Support file creation time on FreeBSD and NetBSD
752769 (g_socket_receive_message | g_socket_send_message) performance
753745 glib-genmarshal still needed for cross-compilation
754152 Add g_list_store_sort
754211 Memory leak in g_file_enumerator_iterate ()
754264 GLib 2.44 certificate chain construction fails if the PEM incl...
754283 gtestutils: add g_assert_cmpmem()
754284 gtestutils: print the TAP test plan first, not last
754286 misc gtestutils fixes
754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
* Translation updates:
Chinese (Taiwan)
French
Galician
Greek
Hebrew
Hungarian
Indonesian
Polish
Portuguese
Overview of changes in GLib 2.45.6
==================================
* Fix a test failure and a build failure
Overview of changes in GLib 2.45.5
==================================
* GNetworkMonitor now provides information about metered networks
* g_mem_set_vtable has been deprecated; it has not been working for
quite a while. The recommendation is to use valgrind, or replace
malloc itself.
* Bugs fixed:
656325 Make GDBusInterfaceVTable binding friendly
741779 Documentation tweaks addressing real-world API misuses
741822 Fails to build with VS 2015
742386 gdbusconnection: Don't g_printerr() when exiting
743018 gobject: Add more cross-links between documentation pages
750282 Add g_network_monitor_get_network_metered() to get if the connection...
751358 GFileMonitor doesn't react to "mv some-file watched-file"
751592 Stop using GMemVtable
751598 Stop 'handle-local-options' propagation when callback reports an err...
751610 g_str_hash produces collisions with strings of length 2
751751 Wrong docs of g_async_queue_remove
752210 gdbus command crashes with SIGSEGV
752656 gdbusconnection: Fix signal subscription documentation
752767 Fix typo in g_hash_table_replace() documentation
753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
753285 g_menu_item_set_icon fails if called with NULL icon
* Translation updates:
Catalan
Czech
French
Indonesian
Lithuanian
Norwegian bokmål
Slovak
Spanish
Thai
Turkish
Overview of changes in GLib 2.45.4
==================================
* Bugs fixed:
727829 win32: glibconfig.h.win32 updates
741901 Clang cannot know that g_error don't return
746339 GSocket kills process when fd is not a socket
747676 gio/tests/socket fails: test_fd_roundtrip
748610 Some tests fail with non-English locales
749911 g_inet_address_to_string broken on XP/2003
749912 g_inet_address_new_from_string broken on XP/2003
750625 Should dismiss Software Updates Available notification after...
750807 G_BREAKPOINT doesn't work as intended on Darwin
751160 gtask does unnecessary work
751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
751731 GFile/DirectoryMonitor emit move events with other_file=NULL
751737 gio/tests/appmonitor test fails in 2.45.3
751798 Wrong enum type used in some test-cases
752089 make gsocketservice::active a property
752293 small cleanup: use list_free_full
* Translation updates:
Greek
Hebrew
Portuguese
Overview of changes in GLib 2.45.3
==================================
* Improve performance of g_signal_handler_disconnect for signals
with many handlers
* GDBus has gained a new call flag to allow interactive authorization
* GSettings:
- New API: g_settings_schema_list_keys
- Deprecated: g_settings_list_keys
* OS X:
- Implement GNotification
- Bump the OS X requirement to 10.9
* Windows:
- Add registry reading API
- Reimplement GAppInfo using registry information
* Bugs fixed:
666831 Support URI opening on W32
728489 property action with inverted boolean state
730168 Incorrect annotation on g_action_group_get_action_state_type return...
733325 Several regex tests fail with pcre3 8.35
734888 GLib has no helper functions to work with W32 Registry
737009 signal handler lookup doesn't scale
738185 Misleading language about "file name encoding" in the docs on g_env...
738504 Optimize UTF-8 decoding by unrolling branches and expressions
739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
739424 gnome-shell crashes when files are added, deleted, or modified in $...
739616 DBus; Add new call flag to allow interactive authorization
740308 Add g_settings_schema_list_keys() method
740516 RFE: please provide an introspectible version of g_log_set_handler
741788 Document GSettings build system integration
745013 GBinding not thread safe
747146 Implement GNotification on OSX
747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
748727 Filechooser dialog shows no icons for directories on W32
749693 GActionGroupExporter: flush queue on requests
750203 GNetworkMonitorNetlink hangs in user namespace
750322 gapplication: Make sure --help output is translated
750344 GTlsInteractionClass is missing from doc
750369 Various GBinding cleanups
750386 Race condition in g_io_condition_get_type
750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
750573 GTlsDatabaseClass is not documented
750918 genmarshal: silence register storage class warnings
751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
479730 The "g_key_file_set_comment" interface prepends '#' character to...
* Translation updates:
Hungarian
Spanish
Overview of changes in GLib 2.45.2
==================================
* Improve error reporting in glib-compile-schemas.
* Add introspection annotations to GListStore.
* Bugs fixed:
696749 win32 : failed to compile because of careless mistake in the code
723394 const parameter to GtkPopover gtk_popover_set_pointing_to
724113 gdbus-connection-loss test can fail on slow machines
725981 tap-driver.sh: internal error getting exit status
733325 Several regex tests fail with pcre3 8.35
744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
747882 gtype: Bump allowed number of children
748534 gtest: if a subprocess assertion fails, print its stdout and stderr
748612 de_DE locale used in option-context test is not supported by FreeBSD
748614 Double unref in g_socket_listener_add_inet_port
748834 glocalfilemonitor: Emit notification on rate limit change
749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
749080 gdatetime test: fails if close to rollover between seconds
749180 gnetworkaddress: add return type annotation to parse methods
749352 g_binding_unbind() fails when source is also the target
749353 GBinding does not connect to the detailed notify signal
* Translation updates:
Catalan
French
Slovak
Thai
Overview of changes in GLib 2.45.1
==================================
* The GSettings schema compiler, glib-compile-schemas has been changed
to reject schema xml that has duplicate <summary> or <description>
elements. Such elements typically occur when translations are merged
into the schema, with xml:lang attributes. This is not the correct
way to translate schemas. Instead keep the translations in the .mo
file and set the gettext-domain attribute on the <schemalist> element.
* The file monitoring infrastructure has been rewritten, and all backends
have seen major improvements.
The inotify backend is reporting events with less delay (no event will
be delayed more than 10ms) and wakeups due to file monitoring have been
significantly reduced. A CHANGES_DONE event will also be sent when new
files appear.
The poll implementation is now using the thread default main context.
The fam implmentation is now running in the worker thread.
The fen implementation has been removed, since it was unmaintained.
* The GSettings schema compiler, glib-compile-schemas, is more strict
about rejecting schemas with xml:lang style merged translations.
Schema translations should be done by specifying the gettext domain
in the xml, and keeping the translations in gettext. To avoid breaking
already-installed schemas, this change is only taking effect when
you use the --strict option.
* The hardcoded 10-thread limit of GTask's thread pool has been removed,
since it was prone to causing deadlocks. The thread pool is now allowed
to grow dynamically and will shrink back over time.
* GSimpleAsyncResult has been deprecated in favor of GTask.
* The algorithm used by GAppInfo to find default handlers for mime types
has been tweaked to prefer apps that handle the specific subtype over
default handlers for a generic supertype.
* Bug fixes:
627285 inotify file monitor hardwired delay
631597 Segmentation fault in append_escaped_text
661767 merge/improve various bits of run-in-thread functionality
687223 cleverer GThreadPool management
711547 win32: silence some build warnings
719966 glib: Add missing (nullable) and (optional) annotations
726447 Possibly an error in text string
728663 W32: wrong stat struct is used when built with MinGW-w64
728669 W32: GLocalFile can't measure size of files larger than 2^32...
730188 gsocket: Document FD ownership with g_socket_new_from_fd()
733325 Several regex tests fail with pcre3 8.35
738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
739850 GClosure: add valgrind hints
741791 gmain: Save errno when handling unix signals
744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
745255 Add support for copying sessions between GTlsClientConnections
745745 gdbus: fix out-of-bound array access
745821 Don't use __alloc_size__ attribute with clang
746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
746753 Glib-compile-resources --generate-header not using ".h" as ...
747209 glib-compile-schemas ought to reject repeated <summary> and...
747349 Conversion of gdbus to use GTask causes deadlocks
747363 gatomic: Add missing new line in API doc comment
747472 Don't ignore already-installed schemas with multiple <summa...
747541 gdbus segfaults with invalid --dest
747772 Having hardcoded utf8 strings in the source code does not p...
748019 gsocketconnection: Fix copy-pasto in documentation
748177 not all test schemas are distributed, "make distcheck" fails
* Translation updates:
Basque
Czech
Danish
Finnish
German
Hebrew
Icelandic
Norwegian bokmål
Russian
Turkish
2016-04-07 20:33:05 +02:00
|
|
|
share/locale/gd/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/gl/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/gu/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/he/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/hi/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/hr/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/hu/LC_MESSAGES/glib20.mo
|
Update to 2.12.4:
Overview of Changes from GLib 2.12.3 to GLib 2.12.4
===================================================
* Fix build problems related to Posix timers.
* Bugs fixed
321974 nanosleep on AIX / g_timer API using high
resolution timers
353584 va_end called on caller supplied va_list
353580 va_copy detection breaks if user sets
CFLAGS=-Werror-implicit-function-declaration
354522 Small problem with PLT hiding 6 symbols
358421 typos in gmain.c
* New and updated translations (bn,bn_IN,dz,el,en_GB,
et,fa,hi,hy,it,ka,nn,pt_BR,ro,sl,sr,sr@Latn,ta)
2006-10-06 20:05:21 +02:00
|
|
|
share/locale/hy/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/id/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/is/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/it/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/ja/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/ka/LC_MESSAGES/glib20.mo
|
2010-11-02 15:52:24 +01:00
|
|
|
share/locale/kk/LC_MESSAGES/glib20.mo
|
2007-08-16 00:09:13 +02:00
|
|
|
share/locale/kn/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/ko/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/ku/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/lt/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/lv/LC_MESSAGES/glib20.mo
|
Update glib2 to 2.18.0.
Based on patch provided by Juan RP in pkgsrc-users ml.
Overview of Changes from GLib 2.17.7 to GLib 2.18.0
===================================================
* Win32:
- rework the g_poll() implementation to match poll() semantics more closely
* Bugs fixed:
324234 Using g_io_add_watch_full() to wait for connect() to return...
548278 Async GETs connections are always terminated unexpectedly...
500246 Bug fixes for giowin32
523939 Example program for GValue
550096 GBookmarkFile parser is not forward compatible
550040 Move GString, rand and printf tests to the unit test framework
550104 trivial documentation fix for g_get_home_dir
548988 g_file_replace fails on Windows when the target file exists
550059 Wrong docs for g_emblemed_icon_add_emblem
548800 Missing a g_object_get_type function
550056 Missing documentation for g_emblemed_icon_get_emblems
* Updated translations:
Bulgarian (bg)
Czech (cs)
German (de)
Estonian (et)
Basque (eu)
French (fr)
Hebrew (he)
Hungarian (hu)
Italian (it)
Japanese (ja)
Lithuanian (lt)
Maithili (mai)
Dutch (nl)
Swedish (sv)
Thai (th)
Ukrainian (uk)
Vietnamese (vi)
Overview of Changes from GLib 2.17.6 to GLib 2.17.7
===================================================
* More fixes for 64-bit Windows
* GIO
- Add a vfs implementation for HTTP and HTTPS URIs on Windows
* Bugs fixed:
546329 API docs for g_utf8_normalize() are incorrect
546876 Modify GMarkup parser to accept  .. 
547200 g_utf8_find_next_char() issues
547637 unconditional #include of sys/statfs.h in configure
547337 G_DISABLE_DEPRECATED breaks tests build
547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
502498 Test framework assertion failures should follow gcc
546371 Improve docs re g_file_monitor
546483 GThemedIcon:use-default-fallbacks is not readable without...
546132 GFileIcon is bindings-unfriendly
542156 zfs mount in home directory shown on nautilus desktop
535124 umask 002 not being applied for new directories...
547080 g_file_copy leaks expected errors
546582 Callbacks from GFileMonitor present a GFile...
547262 Missing link in the docs
* Updated translations:
Arabic (ar)
Catalan (ca)
Spanish (es)
Basque (eu)
Finnish (fi)
Galician (gl)
Hebrew (he)
Marathi (mr)
Norwegian bokmål (nb)
Portugese (pt)
Brazilian Portugese (pt_BR)
Swedish (sv)
Thai (th)
Overview of Changes from GLib 2.17.4 to GLib 2.17.6
===================================================
* Fix problems on 64-bit Windows
* g_markup_context_get_user_data: New function to access
the user_data outside of callbacks
* GIO
- g_mount_guess_content_type_sync: synchronous version of
g_mount_guess_content_type
- GEmblem: A GIcon implementation that adds emblem-related
metadata to icons
- GEmblemedIcon: A GIcon implementation that can add emblems
to icons
* Bugs fixed:
544088 option_test_LDADD is left in tests/Makefile.am
544465 gmarkup makes it hard to use pre-rolled parsers
545485 Implicit declaration of utime()
545798 "Since: 2.18" mark is missing in g_set_error_literal...
544140 fam-helper 64-bit issue
529694 SELinux context setting support
545157 wrong/no list of "open with" applications for .cc...
545203 gfile.c: argument is different type
545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
544177 Fix trivial cut and paste error in documentation
545395 Language tweak for g_value_set_string* docs
541036 Gnumeric crashes when trying to open Desktop...
546079 leak in xdgmime
545395 Language tweak for g_value_set_string* docs
546017 Don't copy attributes when copying a symlink
* Updated translations:
Arabic (ar)
Estonian (et)
Galician (gl)
Italian (it)
Japanese (ja)
Korean (ko)
Norwegian bokmål (nb)
Pashto (ps)
Portugese (pt)
Overview of Changes from GLib 2.17.3 to GLib 2.17.4
===================================================
* GIO:
- New API to handle content types: g_mount_guess_content_type,
g_content_type_guess_for_tree.
- Export the eject-button signal on the volume monitor class
- New API to enable out-of-process volume monitors:
g_volume_get_activation_root
* GObject:
- New API to handle signals without slots in the class structure:
g_signal_new_class_handler, g_signal_override_class_handler
* Internationalization:
- Add an NC_ macro that is a no-op equivalent of C_
* GMarkup:
- Add two new functions g_markup_parse_context_push,
g_markup_parse_context_pop to support "subparsers"
* Bugs fixed:
541208 Functions to easily install and use signals without...
541507 Ambiguous description of assigned characters in the...
543040 async reading on dummy file will crash on GIO_USE_VFS=local
543560 enable gio-FEN back-end warnings on Solaris will crash...
528317 GRegex does not allow recursion limit
337518 GMarkup: Subparser support
541794 drive-eject-button signal
541793 activation root for volumes
467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
428048 2 of 51 tests fail on Solaris
542332 small fix for error message in GMarkup
482413 get_contents_stdio -- overflow and memory corruption
406120 g_ascii_strtod
334234 "printf" format error
536996 Missing noop i18n macro equivalent to C_
540616 mem leak in filechooser button
539229 gobject-query calls itself query
521589 [RFC] gobject documentation should mention Vala
543168 Description of G_SLICE=debug-blocks discourages its use
543220 Case collision on gio-extension-points.html
530759 update the gobject tutorial to the XXI century
535223 gbookmark file inefficiency ...
543504 crash in Epiphany Web Browser: Opening local file
* Updated translation:
German (de)
Estonian (et)
Pashto (ps)
Albanian (sq)
Thai (th)
Traditional Chinese (zh_HK)
Traditional Chinese (zh_TW)
Overview of Changes from GLib 2.17.1 to GLib 2.17.3
===================================================
* PCRE
- fix for CVE-2008-2371
* Bugs fixed:
538119 glib's mainloop leaks a pipe to sub-processes
537635 Corrections and improvements to g_time_val_{to,from}_iso8601
539067 The document g_io_channel_win32_new_fd() says...
535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
539123 annotate g_d[n]gettext with G_GNUC_FORMAT
539074 Cannot get exit status with g_spawn_command_line_sync
316221 G_LOCK warns about breaking strict-aliasing rules
539770 migrate gstrfunc unit tests to gtest
539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
538044 unconditional use of LC_MESSAGES
540545 Monotonic time and timer offset
535947 want g_set_error_literal
539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF
536252 GFileEnumerator should allow access to the containing GFile
538362 Get Win32 icons back in the file chooser
540802 g_list_prepend doesn't concat lists
540423 unrecoverable error after g_seekable_truncate
538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
539090 g_content_type_from_mime_type() should unalias
540331 g_file_append_to () documentation: can return NULL
534639 add g_desktop_app_info_new_from_keyfile
536733 gio build failure on Irix
536160 Add g_file_monitor()
538127 FileChooser broken on win32
531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
538564 gio should have gio-types.h
540047 glib-genmarshal.c: '#include <io.h>' is too before
Updated translations:
Korean (ko)
Occitan (oc)
Overview of Changes from GLib 2.17.0 to GLib 2.17.1
===================================================
* New function: g_utime(), a gstdio wrapper for utime()
* New functions: g_dgettext() and g_dngettext(), wrappers
for corresponding gettext functions with added functionaliy
* Support the latest version of the shared-mime spec, including
icons for mime types
* New function: g_themed_icon_prepend_name()
* Bugs fixed:
535418 Please document which glib version defines goffset
528715 Misprint in the description of the interface g_type_class_add_private
528714 Misprint in the description of the interface g_param_spec_flags
537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
530527 Misprint in the description of the interface
g_cclosure_marshal_VOID__FLAGS
530526 Misprint in the description of the fields 'class_init' and
'class_finalize' of the structure GTypeInfo
528719 Improvement to the documentation of the "g_object_connect" interface
528172 gtk_signal_handlers_unblock_* functions return value
amount of matched signals, not amount of actually unblocked
528717 Misprint in the description of the parameter 'type_id' for
the interface g_type_register_fundamental
528716 Misprint in the description of the parameter 'iface_data' for
the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc
537555 GObject instantiation not thread safe
537546 'desktop' shortcut in file chooser looks like a generic folder
537392 Additional colon in xattr name
536641 Filesystem querying in gio does not list AFS and autofs file systems
528600 g_dummy_file_get_parent("scheme://example.com/")
503071 Application direction changes to right to left even if theres no
translation
502511 g_assert_cmphex prints invalid message
338162 Use po/LINGUAS
314453 Nautilus crashes in Solaris when browsing the attached file
529321 make check fails in glib/pcre
455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD
fallback to $HOME/Desktop if xdg-user-dirs is not in use
498732 g_key_file_to_data cannot fail
511367 add g_file_make_directory_with_parents
531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with
gcc 4.0 or newer
536158 also bump GHashTable version when a node is removed via
g_hash_table_iter_remove()/g_hash_table_iter_steal()
531403 g_utf8_collate broken on Mac
535628 test/patterntest.c still includes gpattern.h directly
535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
* Translation updates:
Arabic (ar)
German (de)
Italian (it)
Norwegian bokmål (nb)
Thai (th)
Overview of Changes from GLib 2.16.x to GLib 2.17.0
===================================================
* Update to Unicode 5.1
* Update included libcharset to the one shipped with libiconv 0.12
* Update included PCRE to 7.7
* Enforce that only toplevel headers are directly included.
This is turned on by default for GObject and GIO. To turn
it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
* Fix library version of GIO. GLib 2.16 shipped with libgio-2.0.so.0.0.0
* On Solaris, use FEN for file monitoring in GIO
* Use the GIO_EXTRA_MODULES environment variable to find
additional GIO modules
* G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
function attribute
* g_checksum_reset: New function to reset the state of a GChecksum
* g_unix_mount_monitor_set_rate_limit: New function to limit the
rate at which events are reported
* g_file_query_file_type: New utility function to query the type of
a file
* g_memory_output_stream_get_data_size: New function to obtain the
size of the written data.
* Bugs fixed:
522292 Gives warnings in glib/gutils.h with GCC in C99 mode
523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
518160 replace two g_strdup_printf calls in GBookmarkFile
523877 gbookmarkfile: avoid using g_string_append_printf() and
other optimizations
525192 100% CPU if run main loop with no IO sources
315437 extern inline -> static inline
524314 g_convert() on Win32 implicitly converts full width
alphanumerics into half width
525732 Error in documentation for g_list_first
525674 A typo in gmarkup.c
448943 g_timeout_add_seconds() problems
525972 UCS-4 not in the new win_iconv implementation
526619 make test-report crash
491554 Update to Unicode 5.1.0
519137 g_slice_dup macro needs cast for 64-bit platform
528752 Win32 build and SSL not working
530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
528667 Typos in testing module documentation
459905 Bug in wcwidth data
534085 g_unichar_iswide_cjk() has a totally wrong table
501651 Update glib/libcharset
519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
534319 GLib's .pc files could use Libs.private
534137 Typo in g_spawn_async_with_pipes doc
517419 gio win32 directory monitor
526796 Wrong order of arguments in g_file_copy's fallback
530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
532965 Should not return filesystem::free for certain file systems
525553 fix typo and nitpicking in GArray documentation
526572 Missing * in declaration of parent_class in Object
Destruction section of GObject Reference Manual
528648 Extra >s in Object Construction section
535021 g_param_spec_internal documentation should
describe purpose of nick and blurb
521513 Firefox crash when using file picker
528433 gdesktopappinfo snafu ...
533369 API g_file_info_get_attribute_string () unables to get "...
521045 glib f_fstypename miscellany
521672 compile error
521946 control rate limit on GUnixMountMonitor
522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
523015 Implement sliding window based upload operation
523019 Use new GCC 4 feature
523338 list nfs4 as a nfs mount type
524350 Make glib build without NLS again
524579 g_file_copy reports wrong total on progress callback for ...
524742 A typo in gtestutils.c.
524950 Minor documentation typos.
525866 the user directory should not be considered as a mount to...
526320 should not list mounts that the user doesn't have permiss...
527132 nautilus crash when making ftp connection
532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
534759 Build failure in gio
534764 Typo in error produced by g_file_make_directory
521851 Redudant tests in gunixmounts.c
524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
534177 Invalid description of the interface g_cclosure_marshal_S...
520715 Add GFile method g_file_query_file_type
523039 nautilus can't access to trash/computer/network if gvfs i...
* Updated translations:
Arabic (ar)
Bulgarian (bg)
Catalan (ca)
Czech (cs)
Greek (el)
Candian English (en_CA)
British English (en_GB)
Spanish (es)
Estonian (et)
Basque (eu)
Galician (gl)
Hebrew (he)
Hungarian (hu)
Japanese (ja)
Lithuanian (lt)
Norwegian bokmål (nb)
Dutch (nl)
Occitan (oc)
Portugese (pt)
Russian (ru)
Slovak (sk)
Albanian (sq)
Swedish (sv)
Turkish (tr)
Vietnamese (vi)
2008-09-06 13:07:20 +02:00
|
|
|
share/locale/mai/LC_MESSAGES/glib20.mo
|
2007-08-16 00:09:13 +02:00
|
|
|
share/locale/mg/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/mk/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/ml/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/mn/LC_MESSAGES/glib20.mo
|
2008-04-10 14:13:49 +02:00
|
|
|
share/locale/mr/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/ms/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/nb/LC_MESSAGES/glib20.mo
|
2010-05-31 19:30:36 +02:00
|
|
|
share/locale/nds/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/ne/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/nl/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/nn/LC_MESSAGES/glib20.mo
|
2007-09-18 19:37:02 +02:00
|
|
|
share/locale/oc/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/or/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/pa/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/pl/LC_MESSAGES/glib20.mo
|
Update glib2 to 2.18.0.
Based on patch provided by Juan RP in pkgsrc-users ml.
Overview of Changes from GLib 2.17.7 to GLib 2.18.0
===================================================
* Win32:
- rework the g_poll() implementation to match poll() semantics more closely
* Bugs fixed:
324234 Using g_io_add_watch_full() to wait for connect() to return...
548278 Async GETs connections are always terminated unexpectedly...
500246 Bug fixes for giowin32
523939 Example program for GValue
550096 GBookmarkFile parser is not forward compatible
550040 Move GString, rand and printf tests to the unit test framework
550104 trivial documentation fix for g_get_home_dir
548988 g_file_replace fails on Windows when the target file exists
550059 Wrong docs for g_emblemed_icon_add_emblem
548800 Missing a g_object_get_type function
550056 Missing documentation for g_emblemed_icon_get_emblems
* Updated translations:
Bulgarian (bg)
Czech (cs)
German (de)
Estonian (et)
Basque (eu)
French (fr)
Hebrew (he)
Hungarian (hu)
Italian (it)
Japanese (ja)
Lithuanian (lt)
Maithili (mai)
Dutch (nl)
Swedish (sv)
Thai (th)
Ukrainian (uk)
Vietnamese (vi)
Overview of Changes from GLib 2.17.6 to GLib 2.17.7
===================================================
* More fixes for 64-bit Windows
* GIO
- Add a vfs implementation for HTTP and HTTPS URIs on Windows
* Bugs fixed:
546329 API docs for g_utf8_normalize() are incorrect
546876 Modify GMarkup parser to accept  .. 
547200 g_utf8_find_next_char() issues
547637 unconditional #include of sys/statfs.h in configure
547337 G_DISABLE_DEPRECATED breaks tests build
547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
502498 Test framework assertion failures should follow gcc
546371 Improve docs re g_file_monitor
546483 GThemedIcon:use-default-fallbacks is not readable without...
546132 GFileIcon is bindings-unfriendly
542156 zfs mount in home directory shown on nautilus desktop
535124 umask 002 not being applied for new directories...
547080 g_file_copy leaks expected errors
546582 Callbacks from GFileMonitor present a GFile...
547262 Missing link in the docs
* Updated translations:
Arabic (ar)
Catalan (ca)
Spanish (es)
Basque (eu)
Finnish (fi)
Galician (gl)
Hebrew (he)
Marathi (mr)
Norwegian bokmål (nb)
Portugese (pt)
Brazilian Portugese (pt_BR)
Swedish (sv)
Thai (th)
Overview of Changes from GLib 2.17.4 to GLib 2.17.6
===================================================
* Fix problems on 64-bit Windows
* g_markup_context_get_user_data: New function to access
the user_data outside of callbacks
* GIO
- g_mount_guess_content_type_sync: synchronous version of
g_mount_guess_content_type
- GEmblem: A GIcon implementation that adds emblem-related
metadata to icons
- GEmblemedIcon: A GIcon implementation that can add emblems
to icons
* Bugs fixed:
544088 option_test_LDADD is left in tests/Makefile.am
544465 gmarkup makes it hard to use pre-rolled parsers
545485 Implicit declaration of utime()
545798 "Since: 2.18" mark is missing in g_set_error_literal...
544140 fam-helper 64-bit issue
529694 SELinux context setting support
545157 wrong/no list of "open with" applications for .cc...
545203 gfile.c: argument is different type
545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
544177 Fix trivial cut and paste error in documentation
545395 Language tweak for g_value_set_string* docs
541036 Gnumeric crashes when trying to open Desktop...
546079 leak in xdgmime
545395 Language tweak for g_value_set_string* docs
546017 Don't copy attributes when copying a symlink
* Updated translations:
Arabic (ar)
Estonian (et)
Galician (gl)
Italian (it)
Japanese (ja)
Korean (ko)
Norwegian bokmål (nb)
Pashto (ps)
Portugese (pt)
Overview of Changes from GLib 2.17.3 to GLib 2.17.4
===================================================
* GIO:
- New API to handle content types: g_mount_guess_content_type,
g_content_type_guess_for_tree.
- Export the eject-button signal on the volume monitor class
- New API to enable out-of-process volume monitors:
g_volume_get_activation_root
* GObject:
- New API to handle signals without slots in the class structure:
g_signal_new_class_handler, g_signal_override_class_handler
* Internationalization:
- Add an NC_ macro that is a no-op equivalent of C_
* GMarkup:
- Add two new functions g_markup_parse_context_push,
g_markup_parse_context_pop to support "subparsers"
* Bugs fixed:
541208 Functions to easily install and use signals without...
541507 Ambiguous description of assigned characters in the...
543040 async reading on dummy file will crash on GIO_USE_VFS=local
543560 enable gio-FEN back-end warnings on Solaris will crash...
528317 GRegex does not allow recursion limit
337518 GMarkup: Subparser support
541794 drive-eject-button signal
541793 activation root for volumes
467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
428048 2 of 51 tests fail on Solaris
542332 small fix for error message in GMarkup
482413 get_contents_stdio -- overflow and memory corruption
406120 g_ascii_strtod
334234 "printf" format error
536996 Missing noop i18n macro equivalent to C_
540616 mem leak in filechooser button
539229 gobject-query calls itself query
521589 [RFC] gobject documentation should mention Vala
543168 Description of G_SLICE=debug-blocks discourages its use
543220 Case collision on gio-extension-points.html
530759 update the gobject tutorial to the XXI century
535223 gbookmark file inefficiency ...
543504 crash in Epiphany Web Browser: Opening local file
* Updated translation:
German (de)
Estonian (et)
Pashto (ps)
Albanian (sq)
Thai (th)
Traditional Chinese (zh_HK)
Traditional Chinese (zh_TW)
Overview of Changes from GLib 2.17.1 to GLib 2.17.3
===================================================
* PCRE
- fix for CVE-2008-2371
* Bugs fixed:
538119 glib's mainloop leaks a pipe to sub-processes
537635 Corrections and improvements to g_time_val_{to,from}_iso8601
539067 The document g_io_channel_win32_new_fd() says...
535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
539123 annotate g_d[n]gettext with G_GNUC_FORMAT
539074 Cannot get exit status with g_spawn_command_line_sync
316221 G_LOCK warns about breaking strict-aliasing rules
539770 migrate gstrfunc unit tests to gtest
539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
538044 unconditional use of LC_MESSAGES
540545 Monotonic time and timer offset
535947 want g_set_error_literal
539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF
536252 GFileEnumerator should allow access to the containing GFile
538362 Get Win32 icons back in the file chooser
540802 g_list_prepend doesn't concat lists
540423 unrecoverable error after g_seekable_truncate
538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
539090 g_content_type_from_mime_type() should unalias
540331 g_file_append_to () documentation: can return NULL
534639 add g_desktop_app_info_new_from_keyfile
536733 gio build failure on Irix
536160 Add g_file_monitor()
538127 FileChooser broken on win32
531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
538564 gio should have gio-types.h
540047 glib-genmarshal.c: '#include <io.h>' is too before
Updated translations:
Korean (ko)
Occitan (oc)
Overview of Changes from GLib 2.17.0 to GLib 2.17.1
===================================================
* New function: g_utime(), a gstdio wrapper for utime()
* New functions: g_dgettext() and g_dngettext(), wrappers
for corresponding gettext functions with added functionaliy
* Support the latest version of the shared-mime spec, including
icons for mime types
* New function: g_themed_icon_prepend_name()
* Bugs fixed:
535418 Please document which glib version defines goffset
528715 Misprint in the description of the interface g_type_class_add_private
528714 Misprint in the description of the interface g_param_spec_flags
537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
530527 Misprint in the description of the interface
g_cclosure_marshal_VOID__FLAGS
530526 Misprint in the description of the fields 'class_init' and
'class_finalize' of the structure GTypeInfo
528719 Improvement to the documentation of the "g_object_connect" interface
528172 gtk_signal_handlers_unblock_* functions return value
amount of matched signals, not amount of actually unblocked
528717 Misprint in the description of the parameter 'type_id' for
the interface g_type_register_fundamental
528716 Misprint in the description of the parameter 'iface_data' for
the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc
537555 GObject instantiation not thread safe
537546 'desktop' shortcut in file chooser looks like a generic folder
537392 Additional colon in xattr name
536641 Filesystem querying in gio does not list AFS and autofs file systems
528600 g_dummy_file_get_parent("scheme://example.com/")
503071 Application direction changes to right to left even if theres no
translation
502511 g_assert_cmphex prints invalid message
338162 Use po/LINGUAS
314453 Nautilus crashes in Solaris when browsing the attached file
529321 make check fails in glib/pcre
455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD
fallback to $HOME/Desktop if xdg-user-dirs is not in use
498732 g_key_file_to_data cannot fail
511367 add g_file_make_directory_with_parents
531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with
gcc 4.0 or newer
536158 also bump GHashTable version when a node is removed via
g_hash_table_iter_remove()/g_hash_table_iter_steal()
531403 g_utf8_collate broken on Mac
535628 test/patterntest.c still includes gpattern.h directly
535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
* Translation updates:
Arabic (ar)
German (de)
Italian (it)
Norwegian bokmål (nb)
Thai (th)
Overview of Changes from GLib 2.16.x to GLib 2.17.0
===================================================
* Update to Unicode 5.1
* Update included libcharset to the one shipped with libiconv 0.12
* Update included PCRE to 7.7
* Enforce that only toplevel headers are directly included.
This is turned on by default for GObject and GIO. To turn
it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
* Fix library version of GIO. GLib 2.16 shipped with libgio-2.0.so.0.0.0
* On Solaris, use FEN for file monitoring in GIO
* Use the GIO_EXTRA_MODULES environment variable to find
additional GIO modules
* G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
function attribute
* g_checksum_reset: New function to reset the state of a GChecksum
* g_unix_mount_monitor_set_rate_limit: New function to limit the
rate at which events are reported
* g_file_query_file_type: New utility function to query the type of
a file
* g_memory_output_stream_get_data_size: New function to obtain the
size of the written data.
* Bugs fixed:
522292 Gives warnings in glib/gutils.h with GCC in C99 mode
523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
518160 replace two g_strdup_printf calls in GBookmarkFile
523877 gbookmarkfile: avoid using g_string_append_printf() and
other optimizations
525192 100% CPU if run main loop with no IO sources
315437 extern inline -> static inline
524314 g_convert() on Win32 implicitly converts full width
alphanumerics into half width
525732 Error in documentation for g_list_first
525674 A typo in gmarkup.c
448943 g_timeout_add_seconds() problems
525972 UCS-4 not in the new win_iconv implementation
526619 make test-report crash
491554 Update to Unicode 5.1.0
519137 g_slice_dup macro needs cast for 64-bit platform
528752 Win32 build and SSL not working
530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
528667 Typos in testing module documentation
459905 Bug in wcwidth data
534085 g_unichar_iswide_cjk() has a totally wrong table
501651 Update glib/libcharset
519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
534319 GLib's .pc files could use Libs.private
534137 Typo in g_spawn_async_with_pipes doc
517419 gio win32 directory monitor
526796 Wrong order of arguments in g_file_copy's fallback
530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
532965 Should not return filesystem::free for certain file systems
525553 fix typo and nitpicking in GArray documentation
526572 Missing * in declaration of parent_class in Object
Destruction section of GObject Reference Manual
528648 Extra >s in Object Construction section
535021 g_param_spec_internal documentation should
describe purpose of nick and blurb
521513 Firefox crash when using file picker
528433 gdesktopappinfo snafu ...
533369 API g_file_info_get_attribute_string () unables to get "...
521045 glib f_fstypename miscellany
521672 compile error
521946 control rate limit on GUnixMountMonitor
522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
523015 Implement sliding window based upload operation
523019 Use new GCC 4 feature
523338 list nfs4 as a nfs mount type
524350 Make glib build without NLS again
524579 g_file_copy reports wrong total on progress callback for ...
524742 A typo in gtestutils.c.
524950 Minor documentation typos.
525866 the user directory should not be considered as a mount to...
526320 should not list mounts that the user doesn't have permiss...
527132 nautilus crash when making ftp connection
532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
534759 Build failure in gio
534764 Typo in error produced by g_file_make_directory
521851 Redudant tests in gunixmounts.c
524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
534177 Invalid description of the interface g_cclosure_marshal_S...
520715 Add GFile method g_file_query_file_type
523039 nautilus can't access to trash/computer/network if gvfs i...
* Updated translations:
Arabic (ar)
Bulgarian (bg)
Catalan (ca)
Czech (cs)
Greek (el)
Candian English (en_CA)
British English (en_GB)
Spanish (es)
Estonian (et)
Basque (eu)
Galician (gl)
Hebrew (he)
Hungarian (hu)
Japanese (ja)
Lithuanian (lt)
Norwegian bokmål (nb)
Dutch (nl)
Occitan (oc)
Portugese (pt)
Russian (ru)
Slovak (sk)
Albanian (sq)
Swedish (sv)
Turkish (tr)
Vietnamese (vi)
2008-09-06 13:07:20 +02:00
|
|
|
share/locale/ps/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/pt/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/pt_BR/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/ro/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/ru/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/rw/LC_MESSAGES/glib20.mo
|
2008-04-10 14:13:49 +02:00
|
|
|
share/locale/si/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/sk/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/sl/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/sq/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/sr/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/sr@ije/LC_MESSAGES/glib20.mo
|
Update glib2 to 2.18.0.
Based on patch provided by Juan RP in pkgsrc-users ml.
Overview of Changes from GLib 2.17.7 to GLib 2.18.0
===================================================
* Win32:
- rework the g_poll() implementation to match poll() semantics more closely
* Bugs fixed:
324234 Using g_io_add_watch_full() to wait for connect() to return...
548278 Async GETs connections are always terminated unexpectedly...
500246 Bug fixes for giowin32
523939 Example program for GValue
550096 GBookmarkFile parser is not forward compatible
550040 Move GString, rand and printf tests to the unit test framework
550104 trivial documentation fix for g_get_home_dir
548988 g_file_replace fails on Windows when the target file exists
550059 Wrong docs for g_emblemed_icon_add_emblem
548800 Missing a g_object_get_type function
550056 Missing documentation for g_emblemed_icon_get_emblems
* Updated translations:
Bulgarian (bg)
Czech (cs)
German (de)
Estonian (et)
Basque (eu)
French (fr)
Hebrew (he)
Hungarian (hu)
Italian (it)
Japanese (ja)
Lithuanian (lt)
Maithili (mai)
Dutch (nl)
Swedish (sv)
Thai (th)
Ukrainian (uk)
Vietnamese (vi)
Overview of Changes from GLib 2.17.6 to GLib 2.17.7
===================================================
* More fixes for 64-bit Windows
* GIO
- Add a vfs implementation for HTTP and HTTPS URIs on Windows
* Bugs fixed:
546329 API docs for g_utf8_normalize() are incorrect
546876 Modify GMarkup parser to accept  .. 
547200 g_utf8_find_next_char() issues
547637 unconditional #include of sys/statfs.h in configure
547337 G_DISABLE_DEPRECATED breaks tests build
547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
502498 Test framework assertion failures should follow gcc
546371 Improve docs re g_file_monitor
546483 GThemedIcon:use-default-fallbacks is not readable without...
546132 GFileIcon is bindings-unfriendly
542156 zfs mount in home directory shown on nautilus desktop
535124 umask 002 not being applied for new directories...
547080 g_file_copy leaks expected errors
546582 Callbacks from GFileMonitor present a GFile...
547262 Missing link in the docs
* Updated translations:
Arabic (ar)
Catalan (ca)
Spanish (es)
Basque (eu)
Finnish (fi)
Galician (gl)
Hebrew (he)
Marathi (mr)
Norwegian bokmål (nb)
Portugese (pt)
Brazilian Portugese (pt_BR)
Swedish (sv)
Thai (th)
Overview of Changes from GLib 2.17.4 to GLib 2.17.6
===================================================
* Fix problems on 64-bit Windows
* g_markup_context_get_user_data: New function to access
the user_data outside of callbacks
* GIO
- g_mount_guess_content_type_sync: synchronous version of
g_mount_guess_content_type
- GEmblem: A GIcon implementation that adds emblem-related
metadata to icons
- GEmblemedIcon: A GIcon implementation that can add emblems
to icons
* Bugs fixed:
544088 option_test_LDADD is left in tests/Makefile.am
544465 gmarkup makes it hard to use pre-rolled parsers
545485 Implicit declaration of utime()
545798 "Since: 2.18" mark is missing in g_set_error_literal...
544140 fam-helper 64-bit issue
529694 SELinux context setting support
545157 wrong/no list of "open with" applications for .cc...
545203 gfile.c: argument is different type
545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
544177 Fix trivial cut and paste error in documentation
545395 Language tweak for g_value_set_string* docs
541036 Gnumeric crashes when trying to open Desktop...
546079 leak in xdgmime
545395 Language tweak for g_value_set_string* docs
546017 Don't copy attributes when copying a symlink
* Updated translations:
Arabic (ar)
Estonian (et)
Galician (gl)
Italian (it)
Japanese (ja)
Korean (ko)
Norwegian bokmål (nb)
Pashto (ps)
Portugese (pt)
Overview of Changes from GLib 2.17.3 to GLib 2.17.4
===================================================
* GIO:
- New API to handle content types: g_mount_guess_content_type,
g_content_type_guess_for_tree.
- Export the eject-button signal on the volume monitor class
- New API to enable out-of-process volume monitors:
g_volume_get_activation_root
* GObject:
- New API to handle signals without slots in the class structure:
g_signal_new_class_handler, g_signal_override_class_handler
* Internationalization:
- Add an NC_ macro that is a no-op equivalent of C_
* GMarkup:
- Add two new functions g_markup_parse_context_push,
g_markup_parse_context_pop to support "subparsers"
* Bugs fixed:
541208 Functions to easily install and use signals without...
541507 Ambiguous description of assigned characters in the...
543040 async reading on dummy file will crash on GIO_USE_VFS=local
543560 enable gio-FEN back-end warnings on Solaris will crash...
528317 GRegex does not allow recursion limit
337518 GMarkup: Subparser support
541794 drive-eject-button signal
541793 activation root for volumes
467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
428048 2 of 51 tests fail on Solaris
542332 small fix for error message in GMarkup
482413 get_contents_stdio -- overflow and memory corruption
406120 g_ascii_strtod
334234 "printf" format error
536996 Missing noop i18n macro equivalent to C_
540616 mem leak in filechooser button
539229 gobject-query calls itself query
521589 [RFC] gobject documentation should mention Vala
543168 Description of G_SLICE=debug-blocks discourages its use
543220 Case collision on gio-extension-points.html
530759 update the gobject tutorial to the XXI century
535223 gbookmark file inefficiency ...
543504 crash in Epiphany Web Browser: Opening local file
* Updated translation:
German (de)
Estonian (et)
Pashto (ps)
Albanian (sq)
Thai (th)
Traditional Chinese (zh_HK)
Traditional Chinese (zh_TW)
Overview of Changes from GLib 2.17.1 to GLib 2.17.3
===================================================
* PCRE
- fix for CVE-2008-2371
* Bugs fixed:
538119 glib's mainloop leaks a pipe to sub-processes
537635 Corrections and improvements to g_time_val_{to,from}_iso8601
539067 The document g_io_channel_win32_new_fd() says...
535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
539123 annotate g_d[n]gettext with G_GNUC_FORMAT
539074 Cannot get exit status with g_spawn_command_line_sync
316221 G_LOCK warns about breaking strict-aliasing rules
539770 migrate gstrfunc unit tests to gtest
539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
538044 unconditional use of LC_MESSAGES
540545 Monotonic time and timer offset
535947 want g_set_error_literal
539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF
536252 GFileEnumerator should allow access to the containing GFile
538362 Get Win32 icons back in the file chooser
540802 g_list_prepend doesn't concat lists
540423 unrecoverable error after g_seekable_truncate
538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
539090 g_content_type_from_mime_type() should unalias
540331 g_file_append_to () documentation: can return NULL
534639 add g_desktop_app_info_new_from_keyfile
536733 gio build failure on Irix
536160 Add g_file_monitor()
538127 FileChooser broken on win32
531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
538564 gio should have gio-types.h
540047 glib-genmarshal.c: '#include <io.h>' is too before
Updated translations:
Korean (ko)
Occitan (oc)
Overview of Changes from GLib 2.17.0 to GLib 2.17.1
===================================================
* New function: g_utime(), a gstdio wrapper for utime()
* New functions: g_dgettext() and g_dngettext(), wrappers
for corresponding gettext functions with added functionaliy
* Support the latest version of the shared-mime spec, including
icons for mime types
* New function: g_themed_icon_prepend_name()
* Bugs fixed:
535418 Please document which glib version defines goffset
528715 Misprint in the description of the interface g_type_class_add_private
528714 Misprint in the description of the interface g_param_spec_flags
537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
530527 Misprint in the description of the interface
g_cclosure_marshal_VOID__FLAGS
530526 Misprint in the description of the fields 'class_init' and
'class_finalize' of the structure GTypeInfo
528719 Improvement to the documentation of the "g_object_connect" interface
528172 gtk_signal_handlers_unblock_* functions return value
amount of matched signals, not amount of actually unblocked
528717 Misprint in the description of the parameter 'type_id' for
the interface g_type_register_fundamental
528716 Misprint in the description of the parameter 'iface_data' for
the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc
537555 GObject instantiation not thread safe
537546 'desktop' shortcut in file chooser looks like a generic folder
537392 Additional colon in xattr name
536641 Filesystem querying in gio does not list AFS and autofs file systems
528600 g_dummy_file_get_parent("scheme://example.com/")
503071 Application direction changes to right to left even if theres no
translation
502511 g_assert_cmphex prints invalid message
338162 Use po/LINGUAS
314453 Nautilus crashes in Solaris when browsing the attached file
529321 make check fails in glib/pcre
455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD
fallback to $HOME/Desktop if xdg-user-dirs is not in use
498732 g_key_file_to_data cannot fail
511367 add g_file_make_directory_with_parents
531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with
gcc 4.0 or newer
536158 also bump GHashTable version when a node is removed via
g_hash_table_iter_remove()/g_hash_table_iter_steal()
531403 g_utf8_collate broken on Mac
535628 test/patterntest.c still includes gpattern.h directly
535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
* Translation updates:
Arabic (ar)
German (de)
Italian (it)
Norwegian bokmål (nb)
Thai (th)
Overview of Changes from GLib 2.16.x to GLib 2.17.0
===================================================
* Update to Unicode 5.1
* Update included libcharset to the one shipped with libiconv 0.12
* Update included PCRE to 7.7
* Enforce that only toplevel headers are directly included.
This is turned on by default for GObject and GIO. To turn
it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
* Fix library version of GIO. GLib 2.16 shipped with libgio-2.0.so.0.0.0
* On Solaris, use FEN for file monitoring in GIO
* Use the GIO_EXTRA_MODULES environment variable to find
additional GIO modules
* G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
function attribute
* g_checksum_reset: New function to reset the state of a GChecksum
* g_unix_mount_monitor_set_rate_limit: New function to limit the
rate at which events are reported
* g_file_query_file_type: New utility function to query the type of
a file
* g_memory_output_stream_get_data_size: New function to obtain the
size of the written data.
* Bugs fixed:
522292 Gives warnings in glib/gutils.h with GCC in C99 mode
523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
518160 replace two g_strdup_printf calls in GBookmarkFile
523877 gbookmarkfile: avoid using g_string_append_printf() and
other optimizations
525192 100% CPU if run main loop with no IO sources
315437 extern inline -> static inline
524314 g_convert() on Win32 implicitly converts full width
alphanumerics into half width
525732 Error in documentation for g_list_first
525674 A typo in gmarkup.c
448943 g_timeout_add_seconds() problems
525972 UCS-4 not in the new win_iconv implementation
526619 make test-report crash
491554 Update to Unicode 5.1.0
519137 g_slice_dup macro needs cast for 64-bit platform
528752 Win32 build and SSL not working
530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
528667 Typos in testing module documentation
459905 Bug in wcwidth data
534085 g_unichar_iswide_cjk() has a totally wrong table
501651 Update glib/libcharset
519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
534319 GLib's .pc files could use Libs.private
534137 Typo in g_spawn_async_with_pipes doc
517419 gio win32 directory monitor
526796 Wrong order of arguments in g_file_copy's fallback
530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
532965 Should not return filesystem::free for certain file systems
525553 fix typo and nitpicking in GArray documentation
526572 Missing * in declaration of parent_class in Object
Destruction section of GObject Reference Manual
528648 Extra >s in Object Construction section
535021 g_param_spec_internal documentation should
describe purpose of nick and blurb
521513 Firefox crash when using file picker
528433 gdesktopappinfo snafu ...
533369 API g_file_info_get_attribute_string () unables to get "...
521045 glib f_fstypename miscellany
521672 compile error
521946 control rate limit on GUnixMountMonitor
522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
523015 Implement sliding window based upload operation
523019 Use new GCC 4 feature
523338 list nfs4 as a nfs mount type
524350 Make glib build without NLS again
524579 g_file_copy reports wrong total on progress callback for ...
524742 A typo in gtestutils.c.
524950 Minor documentation typos.
525866 the user directory should not be considered as a mount to...
526320 should not list mounts that the user doesn't have permiss...
527132 nautilus crash when making ftp connection
532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
534759 Build failure in gio
534764 Typo in error produced by g_file_make_directory
521851 Redudant tests in gunixmounts.c
524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
534177 Invalid description of the interface g_cclosure_marshal_S...
520715 Add GFile method g_file_query_file_type
523039 nautilus can't access to trash/computer/network if gvfs i...
* Updated translations:
Arabic (ar)
Bulgarian (bg)
Catalan (ca)
Czech (cs)
Greek (el)
Candian English (en_CA)
British English (en_GB)
Spanish (es)
Estonian (et)
Basque (eu)
Galician (gl)
Hebrew (he)
Hungarian (hu)
Japanese (ja)
Lithuanian (lt)
Norwegian bokmål (nb)
Dutch (nl)
Occitan (oc)
Portugese (pt)
Russian (ru)
Slovak (sk)
Albanian (sq)
Swedish (sv)
Turkish (tr)
Vietnamese (vi)
2008-09-06 13:07:20 +02:00
|
|
|
share/locale/sr@latin/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/sv/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/ta/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/te/LC_MESSAGES/glib20.mo
|
2013-04-20 00:21:41 +02:00
|
|
|
share/locale/tg/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/th/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/tl/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/tr/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/tt/LC_MESSAGES/glib20.mo
|
2011-03-09 12:22:04 +01:00
|
|
|
share/locale/ug/LC_MESSAGES/glib20.mo
|
2006-04-17 09:07:11 +02:00
|
|
|
share/locale/uk/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/vi/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/wa/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/xh/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/yi/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/zh_CN/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/zh_HK/LC_MESSAGES/glib20.mo
|
|
|
|
share/locale/zh_TW/LC_MESSAGES/glib20.mo
|
2009-06-14 20:48:07 +02:00
|
|
|
@pkgdir lib/gio/modules
|