summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS47
-rw-r--r--configure.ac10
2 files changed, 52 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index a69f8d12..ec20b39e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,51 @@
============
+Glade 3.19.0
+============
+
+ - Bug 732328 "New: add python3 support" (Bohuslav "Slavek" Kabrda)
+ - Added new symbolic variant of the app icon (747024 - Jakub Steiner)
+ - Bug #741165 "Previewer crashes when taking PNG screenshot"
+ - Added GtkSidebarWidget support (Matthias Clasen)
+ - Added GtkStack and GtkStackSwitcher support (738480 - Matthias Clasen)
+ - Added GtkHeaderBar support (bug 700914 - Matthias Clasen)
+ - Improved undo/redo command list handling.
+ - Added GtkBox center-widget support (bug 738473 - Matthias Clasen)
+ - Added GtkSearchBar support (bug 738493 - Matthias Clasen)
+ - Support CSD windows (Bug 700914 - Matthias Clasen)
+ - Use current gtk-mac-integration API (bug 738339 - Philip Chimento)
+ - Fixed bug 732575 "Changed the type hint on the "Edit Separately" window to 'utility'" (Tristan)
+ - Fixed bug "Missing plural form for UI string: emited %d time(s)"
+ - Avoid reading freed data in glade_project_read_requires (David Shea)
+ - Added class chooser popover to workspace. (Bug 708146 "Catalog search entry")
+ - Added GThemedIcon support.
+ - GladePreviewer: show handler information in infobar when a signal is emited.
+ - Migrated UI from stock icons to icon names.
+ - Seal needed deprecated API and replaced deprecared API.
+ - GladeWindow: only show found recent files.
+ - Added GtkLockButton support.
+
+============
+Glade 3.18.3
+============
+
+ - Fixed property editor focus lost bug with construct-only properties
+ - GladePreviewer: Fixed bug previewing templates.
+ - Fixed Bug 727914 "Logo is not shown in About-dialog"
+ - Fixed Bug 353002 "wrong cursor over widgets"
+ - Fixed bug 728377 "sensitivity of mnemonic-widget entry is not correct when loading file" (David Shea)
+ - Fixed bug 728348 "impossible to set non-integer values for scale in text attribute dialog" (David Shea)
+ - Fixed bug 726410 "Save palette appearance between sessions" (TingPing)
+
+============
+Glade 3.18.2
+============
+
+ - Added dialog at start up to advertise user survey.
+ Fixes bug 726800 "New: UI break: add dialog to advertise user survey"
+ - Fixes bug 727992 "Editing UI and saving does not remove deleted Combo with Entry"
+ - Fixed bug 364064 "Property Editor / Common tab: width & height request checkboxes have no effect"
+
+============
Glade 3.18.1
============
diff --git a/configure.ac b/configure.ac
index 7e2e7671..902f8d6d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,8 +3,8 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.52)
m4_define(glade_major_version, 3)
-m4_define(glade_minor_version, 18)
-m4_define(glade_micro_version, 1)
+m4_define(glade_minor_version, 19)
+m4_define(glade_micro_version, 0)
m4_define(glade_version, glade_major_version.glade_minor_version.glade_micro_version)
AC_INIT([glade], [glade_version],
@@ -53,9 +53,9 @@ 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=1
-GLADE_CURRENT=7
-GLADE_AGE=1
+GLADE_REVISION=0
+GLADE_CURRENT=8
+GLADE_AGE=2
GLADE_CURRENT_MINUS_AGE=`expr $GLADE_CURRENT - $GLADE_AGE`
AC_SUBST(GLADE_REVISION)
AC_SUBST(GLADE_CURRENT)