diff options
author | Murray Cumming <murrayc@murrayc.com> | 2014-02-17 09:48:34 +0100 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2014-02-17 09:48:34 +0100 |
commit | 95c5bc22b2fee61762ac15523eb8b09a7388e847 (patch) | |
tree | 2a258d3c6db717089704572aca93ee7c34e3ed83 | |
parent | 1cc1f7301cc903375549477ce2f97598255ebb18 (diff) | |
download | glibmm-95c5bc22b2fee61762ac15523eb8b09a7388e847.tar.gz |
2.39.42.39.4
-rw-r--r-- | NEWS | 28 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 30 insertions, 2 deletions
@@ -1,10 +1,38 @@ 2.39.3 (unstable): +Gio +* Action: + - Add parse_detailed_name() and parse_detailed_name_variant(). + (Kjell Ahlstedt) + - Fix activate(const Glib::Variant<T_Value>& value). + (Kjell Ahlstedt) Bug #722896 +* MenuModel: Add signal_items_changed() + (Kjell Ahlstedt) +* MemoryInputStream: Add add_data() taking a sigc::slot, + with a test. + (Kjell Ahlstedt) Bug #609946 (Daniel Elstner) +* MenuModel: Add signal_items_changed() + (Kjell Ahlstedt) +* Add Notification. + (Kjell Ahlstedt) Bug #722896. + +Documentation: +* Fix some doxygen warnings. + (Kjell Ahlstedt) +* Don't change NULL to 0 in docs, when it's part of a longer name. + (Kjell Ahlstedt) +* OptionContext: Add API documentation based on the C docs. + (Murray Cumming) + + +2.39.3 (unstable): + * Documentation improvements. (Kjell Ahlstedt) * Fix a test on IPv6 systems. (Adam Sampson) + 2.38.1 (stable): Build: diff --git a/configure.ac b/configure.ac index 312003ce..baee4ca2 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.39.3], +AC_INIT([glibmm], [2.39.4], [http://bugzilla.gnome.org/enter_bug.cgi?product=glibmm], [glibmm], [http://www.gtkmm.org/]) AC_PREREQ([2.59]) @@ -60,7 +60,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.38.0' +glibreq='2.0 >= 2.39.4' GLIBMM_MODULES="sigc++-2.0 >= 2.2.10 glib-$glibreq gobject-$glibreq gmodule-$glibreq" GIOMM_MODULES="$GLIBMM_MODULES gio-$glibreq" |