summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Pablo Ugarte <juanpablougarte@gmail.com>2012-03-26 17:26:37 -0300
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2012-03-26 17:26:37 -0300
commitc55f9ac4e4d6b3217fe0180cd6cedaecdf876bf9 (patch)
tree31e4912ba1bc13238d8e21904cd8908e2afb2fcb
parentf332f6800913caf7e6de3c9aeba33730c41811f1 (diff)
downloadglade-c55f9ac4e4d6b3217fe0180cd6cedaecdf876bf9.tar.gz
Rolling version 3.8.2GLADE_3_8_2
-rw-r--r--ChangeLog9
-rw-r--r--NEWS12
-rw-r--r--configure.ac4
3 files changed, 23 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index a69b7213..831bf464 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
diff --git a/NEWS b/NEWS
index e76ba99d..976cf31d 100644
--- a/NEWS
+++ b/NEWS
@@ -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`