summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Pablo Ugarte <juanpablougarte@gmail.com>2013-11-26 21:33:04 -0300
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2013-11-26 21:33:04 -0300
commit83243f0fa5cce467b01168e128421abaa33d1402 (patch)
tree7d61abbd82affc2b64dbce1e294cd0712681fae0
parentd2c8e008e1b81d501b30c070d492959da6922992 (diff)
downloadglade-GLADE_3_14_3.tar.gz
Rolling 3.14.3GLADE_3_14_3
-rw-r--r--NEWS11
-rw-r--r--configure.ac17
2 files changed, 18 insertions, 10 deletions
diff --git a/NEWS b/NEWS
index ffc396f9..ed80580f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,15 @@
============
+Glade 3.14.3
+============
+
+ - GladeWidget: Reorder properties, avoid crash when setting the object before the adaptor.
+ - Limit the size of the spin button in GladeEPropNumeric when the max value is over 16 digits.
+ Otherwise a property with a max value of G_MAXDOUBLE gets a minimum size over 2800 pixels.
+ - Removed shift modifier from File actions Fixes bug #695866 "Incorrect keybinding for Quit"
+ - Fixed bug #688326 "pointer tracking is off" by using every coordinate relative to GladeDesignLayout.
+ - Set a background to the offscreen window, so that widgets without a window added as toplevels look right.
+
+============
Glade 3.14.2
============
diff --git a/configure.ac b/configure.ac
index f6eacefe..a850894d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ AC_PREREQ(2.52)
m4_define(glade_major_version, 3)
m4_define(glade_minor_version, 14)
-m4_define(glade_micro_version, 2)
+m4_define(glade_micro_version, 3)
m4_define(glade_version, glade_major_version.glade_minor_version.glade_micro_version)
AC_INIT([glade], [glade_version],
@@ -52,7 +52,7 @@ AC_PATH_PROG(DLLTOOL, dlltool)
# If any interfaces have been removed since the last public release, then set GLADE_AGE to 0.
# Reference: http://www.gnu.org/software/libtool/manual/libtool.html#Versioning
-GLADE_REVISION=2
+GLADE_REVISION=3
GLADE_CURRENT=4
GLADE_AGE=0
GLADE_CURRENT_MINUS_AGE=`expr $GLADE_CURRENT - $GLADE_AGE`
@@ -94,9 +94,6 @@ dnl Gettext stuff.
dnl ================================================================
IT_PROG_INTLTOOL([0.41.0])
-AM_GNU_GETTEXT_VERSION([0.17])
-AM_GNU_GETTEXT([external])
-
GETTEXT_PACKAGE=AC_PACKAGE_NAME
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Name of the gettext package.])
@@ -150,10 +147,10 @@ AM_CONDITIONAL(HAVE_GTK_UNIX_PRINT, test x"$have_unix_print" = "xyes")
dnl ================================================================
dnl Python for optional python dev libs
dnl ================================================================
-PYGOBJECT_REQS=2.90.4
-PYGOBJECT_REQUIRED_MAJOR=2
-PYGOBJECT_REQUIRED_MINOR=90
-PYGOBJECT_REQUIRED_MICRO=4
+PYGOBJECT_REQUIRED_MAJOR=3
+PYGOBJECT_REQUIRED_MINOR=8
+PYGOBJECT_REQUIRED_MICRO=0
+PYGOBJECT_REQS=$PYGOBJECT_REQUIRED_MAJOR.$PYGOBJECT_REQUIRED_MINOR.$PYGOBJECT_REQUIRED_MICRO
AC_ARG_ENABLE(python,
AS_HELP_STRING([--disable-python], [disable python catalog]),
@@ -162,7 +159,7 @@ AC_ARG_ENABLE(python,
if test x"$check_python" = x"yes"; then
have_python=yes
- PKG_CHECK_MODULES([PYGOBJECT],[pygobject-3.0 >= ${PYGOBJECT_REQUIRED_MAJOR}.${PYGOBJECT_REQUIRED_MINOR}.${PYGOBJECT_REQUIRED_MICRO}],[have_pygobject=yes],[have_pygobject=no])
+ PKG_CHECK_MODULES([PYGOBJECT],[pygobject-3.0 >= $PYGOBJECT_REQS],[have_pygobject=yes],[have_pygobject=no])
AM_CHECK_PYTHON_HEADERS(, [have_python_headers=no])
AM_CHECK_PYTHON_LIBS(, [have_python_lib=no])