diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 23 insertions, 2 deletions
@@ -1,3 +1,12 @@ +2012-03-26 Juan Pablo Ugarte <juanpablougarte@gmail.com> + + * configure.ac, NEWS: Rolling Glade 3.8.2 + +2012-02-15 Juan Pablo Ugarte <juanpablougarte@gmail.com> + + * configure.ac: Backported Bug 665784 fix (added gmodule-2.0 pkgconfig package) + Vincent Untz + 2011-11-23 Dieter Verfaillie <dieterv@optionexplicit.be> * build/mswindows/README, build/mswindows/build_glade.sh: @@ -1,4 +1,16 @@ =========== +Glade 3.8.2 +=========== + + - Backported Bug 665784 fix (added gmodule-2.0 pkgconfig package) Vincent Untz + - Added custom build scripts for building on MS windows. Dieter Verfaillie + - Improved performance of modifying GtkTable contents, shows + specifically when loading files containing large tables. + Fixed bug 663516, Fredy Paquet. + - Fixed bug 647984 "Make size groups widget selection work" Benjamin Otte + - Make help dir use 'glade3' name instead of 'glade' (for bug 646997). + +=========== Glade 3.8.1 =========== - Correctly detect the required devhelp version (Javier Jardón) diff --git a/configure.ac b/configure.ac index 0024b386..5a9d24da 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, 8) -m4_define(glade_micro_version, 1) +m4_define(glade_micro_version, 2) m4_define(glade_version, glade_major_version.glade_minor_version.glade_micro_version) AC_INIT([glade3], [glade_version], @@ -52,7 +52,7 @@ AM_PROG_LIBTOOL # If any interfaces have been added since the last public release, then increment GLADE_AGE. # 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.html#Versioning -GLADE_REVISION=0 +GLADE_REVISION=1 GLADE_CURRENT=12 GLADE_AGE=1 GLADE_CURRENT_MINUS_AGE=`expr $GLADE_CURRENT - $GLADE_AGE` |