[glibmm] 2.27.4.1



commit ea653b1b62df00eab906b1475938457cf6d5f317
Author: Murray Cumming <murrayc murrayc com>
Date:   Wed Dec 15 10:14:07 2010 +0100

    2.27.4.1

 ChangeLog                                  |    2 +
 NEWS                                       |   29 ++++++++++++++++++++++++++++
 configure.ac                               |    4 +-
 examples/dbus/well-known-address-client.cc |    2 +-
 4 files changed, 34 insertions(+), 3 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 6474195..65e6c79 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/NEWS b/NEWS
index 1749f27..bbbae50 100644
--- a/NEWS
+++ b/NEWS
@@ -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 0d05411..0cdb57c 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 43977b7..47a2944 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;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]