diff options
author | David King <amigadave@amigadave.com> | 2015-02-16 21:45:22 +0000 |
---|---|---|
committer | David King <amigadave@amigadave.com> | 2015-02-16 21:45:22 +0000 |
commit | c8b4d0d38184aa0337ae08f87471a762fac6550b (patch) | |
tree | 1f2452ade77da31e42b6b6b1077c29f5daa30577 | |
parent | 5c98c8d5ba6f59a6e51b45839efdaf227eb890d7 (diff) |
Update NEWS for 3.15.90 release
-rw-r--r-- | NEWS | 23 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 26 insertions, 3 deletions
@@ -1,6 +1,29 @@ ChangeLog for Cheese -------------------- +version 3.15.90 + - Avoid warnings from -Wswitch-enum + Check switch statements where several cases are intentionally not + handled by using an if instead. + - Avoid a preprocessor warning + - Fix const cast warnings + - Fix signedness comparison error + - Fix shadowed variable + - Remove old-style function definitions + - Fix signed comparison warning in camera service + - Update gtkdoc_jh_path_xml_catalog.m4 from gtk-doc + - Remove use of GSEAL_ENABLE + It is no longer useful with GTK+ 3, where every widget has been sealed. + - Remove use of GNOME_MAINTAINER_MODE_DEFINES + https://wiki.gnome.org/Projects/GnomeCommon/Migration + - Drop use of gnome-autogen.sh + https://wiki.gnome.org/Projects/GnomeCommon/Migration + - preferences: resolve ambiguous 'ListStore' usage + There is now a GLib.ListStore as well, so make sure we use the full name + Gtk.ListStore to avoid an ambiguous reference. + - Added/Updated Translations + - an, courtesy of Daniel Martinez + version 3.15.4 - Ignore intermediate file with Automake 1.15 - Removed obsolete variables in autogen.sh diff --git a/configure.ac b/configure.ac index 8f702f04..79ebc13c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.64]) AC_INIT([Cheese], - [3.15.4], + [3.15.90], [https://bugzilla.gnome.org/enter_bug.cgi?product=cheese], [cheese], [https://wiki.gnome.org/Apps/Cheese]) @@ -44,8 +44,8 @@ GNOME_COMPILE_WARNINGS([maximum]) # - If binary compatibility has been broken (eg removed or changed interfaces) # change to C+1:0:0 # - If the interface is the same as the previous version, change to C:R+1:A -AC_SUBST([LIBCHEESE_LT_VERSION], [7:35:0]) -AC_SUBST([LIBCHEESE_GTK_LT_VERSION], [24:19:1]) +AC_SUBST([LIBCHEESE_LT_VERSION], [7:36:0]) +AC_SUBST([LIBCHEESE_GTK_LT_VERSION], [24:20:1]) #******************************************************************************* # Internationalization |