summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Pablo Ugarte <juanpablougarte@gmail.com>2013-12-18 17:52:16 -0300
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2013-12-18 17:52:16 -0300
commit3d17b3446ea2a23de3eaa007d0da4099eb8ab423 (patch)
tree0626b620adb81624a3825ae652c1446721d8d166
parent647fd9b1c17016d2b723a2587b8e8a9ed91e1509 (diff)
downloadglade-3d17b3446ea2a23de3eaa007d0da4099eb8ab423.tar.gz
Rolling 3.16.1
-rw-r--r--NEWS21
-rw-r--r--configure.ac4
2 files changed, 23 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 5e97453f..03d620ce 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,25 @@
============
+Glade 3.16.1
+============
+
+ - Fixed Bug 702314 "Cancelling an Add Parent action is destructive"
+ - pango attribute editor: don't write on cancel for color/font (Timm Bäder)
+ - Fixed _glade_dnd_dest_set() crash. thanks to Lubomir Rintel (bug 711568)
+ - Report parsing error when loading a project. (Bug 712289 "Glade silently fails to open malformed ui file")
+ - Sort object dependancy before saving using a topological sorting algorithm
+ Fixes bug 709609 and 711858
+ - Fixed bug in GtkScrolledWindow editor, vertical adjustmet was refering to the wrong property.
+ - Fixed bug 711863 'Remove "Generated with glade" XML comment'
+ - Fixed <requires> tag output
+ - Fixed regresion infering GtkBox virtual size property at load.
+ - Fixed cellrenderer model column combobox chooser.
+ - Fix input issues with numeric property editors.
+ - Fixed Glade shortcuts like Delete by disabling keybindings used by shortcuts in every widget in the workspace.
+ Now it is possible to delete a selected GtkEntry
+ - Fixed bugs in the inspector exposed by D&D by implementing GladeProject GtkTreeModelIface with a GtkTreeStore proxy object.
+ - Bug 720585 - Fix order of customized property output. (Tristan)
+
+============
Glade 3.16.0
============
diff --git a/configure.ac b/configure.ac
index cbfd0775..3be3ee5d 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, 16)
-m4_define(glade_micro_version, 0)
+m4_define(glade_micro_version, 1)
m4_define(glade_version, glade_major_version.glade_minor_version.glade_micro_version)
AC_INIT([glade], [glade_version],
@@ -53,7 +53,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=6
GLADE_AGE=0
GLADE_CURRENT_MINUS_AGE=`expr $GLADE_CURRENT - $GLADE_AGE`