diff options
author | Murray Cumming <murrayc@murrayc.com> | 2010-12-15 10:14:07 +0100 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2010-12-15 10:14:07 +0100 |
commit | ea653b1b62df00eab906b1475938457cf6d5f317 (patch) | |
tree | dddeba80c151daa7156baa9c7675e7361d1d0751 | |
parent | 460d21d10350e2154f0f81f52a8df09bd9f581e0 (diff) | |
download | glibmm-ea653b1b62df00eab906b1475938457cf6d5f317.tar.gz |
2.27.4.12.27.4.1
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | NEWS | 29 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | examples/dbus/well-known-address-client.cc | 2 |
4 files changed, 34 insertions, 3 deletions
@@ -1,3 +1,5 @@ +2.27.4.1: + 2010-12-14 José Alburquerque <jaalburqu@svn.gnome.org> DBus Client Example: create a DBusProxy in preparation for method call. @@ -1,3 +1,32 @@ +2.27.4.1: (unstable): + +Gio: +* DBus[Connection|Proxy]: Don't take extra reference on async creation. +* DBusConnection: + - Add non-observable create method overloads. + - Make the create methods.async get methods, static. + - Added get_sync() methods. + - Added send_message_with_reply_sync() methods. + - Added signal_subscribe() and add_filter(). +* DBusIntrospection: new_for_xml(): Rename to create_for_xml(). +* DBusProxy: + - Reorder the parameters so that "name" is second in methods. + - Add a non-cancellable call_sync() method. +* Documentation: Add a DBus Doxygen group. + (José Alburquerque) + +Glib: +* Regex: Add a MatchInfo class and use it. + (José Alburquerque) Bug #636911 (Alexander Shaduri) +* gmmproc: Remove m4 conversion files for gdk, gtk, atk, and pango. + They are now in the derived projects, which should now include + convert_glibmm instead of, for instance, convert_gtkmm. + Some modules will now need to add a line in their configure.ac so they + can use the extra conversions from gtkmm. For instance, with + gtksourceviewmm: + MM_PKG_CONFIG_SUBST([GMMPROC_EXTRA_M4_DIR], [--variable=gmmprocm4dir gtkmm-3.0]) + (Murray Cumming) + 2.27.4: (unstable): Gio: diff --git a/configure.ac b/configure.ac index 0d054110..0cdb57c7 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ ## You should have received a copy of the GNU Lesser General Public License ## along with this library. If not, see <http://www.gnu.org/licenses/>. -AC_INIT([glibmm], [2.27.4], +AC_INIT([glibmm], [2.27.4.1], [http://bugzilla.gnome.org/enter_bug.cgi?product=glibmm], [glibmm], [http://www.gtkmm.org/]) AC_PREREQ([2.59]) @@ -57,7 +57,7 @@ AS_IF([test "x$enable_static" = xyes], AC_DEFINE([GIOMM_STATIC_LIB], [1], [Define if giomm is built as a static library]) ]) -glibreq='2.0 >= 2.27.3' +glibreq='2.0 >= 2.27.4' GLIBMM_MODULES="sigc++-2.0 >= 2.0 glib-$glibreq gobject-$glibreq gmodule-$glibreq" GIOMM_MODULES="$GLIBMM_MODULES gio-$glibreq" test "x$glibmm_host_windows" = xyes || GIOMM_MODULES="$GIOMM_MODULES gio-unix-$glibreq" diff --git a/examples/dbus/well-known-address-client.cc b/examples/dbus/well-known-address-client.cc index 43977b79..47a2944e 100644 --- a/examples/dbus/well-known-address-client.cc +++ b/examples/dbus/well-known-address-client.cc @@ -63,7 +63,7 @@ int main(int, char**) Gio::DBusConnection::get_sync(Gio::BUS_TYPE_SESSION); // Check for an unavailable connection. - if (!connection) + if(!connection) { std::cerr << "The user's session bus is not available." << std::endl; return 1; |