summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog17
-rw-r--r--NEWS15
-rw-r--r--configure.ac4
-rw-r--r--plugins/gtk+/glade-gtk.c2
4 files changed, 30 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 404df587..fc0d20aa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,13 @@
+2006-06-18 Tristan Van Berkom <tvb@gnome.org>
+
+ * NEWS, configure.ac: Rolling 3.3.1
+
+ * gladeui/plugins/gtk+/glade-gtk.c: Corrected undo item for
+ "remove page" action to say "Removed page from notebook1".
+
2006-06-17 Vincent Geddes <vincent.geddes@gmail.com>
- * gladeui/glade-editor-propertyc: Ensure parameter list passed to
+ * gladeui/glade-editor-property.c: Ensure parameter list passed to
gtk_dialog_set_alternative_button_order() is terminated (#424509).
* gladeui/glade-command.c: Make strings more translatable (#419979).
@@ -21,11 +28,11 @@
2006-06-14 Vincent Geddes <vincent.geddes@gmail.com>
- * gladeui/glade-app.c: Change GtkMessageType of _warning_ dialogs from
- GTK_MESSAGE_INFO to GTK_MESSAGE_WARNING.
+ * gladeui/glade-app.c: Change GtkMessageType of _warning_ dialogs from
+ GTK_MESSAGE_INFO to GTK_MESSAGE_WARNING.
- * gladeui/glade-utils.c, src/glade-project-window.c: Fix and improve URL
- launching on win32.
+ * gladeui/glade-utils.c, src/glade-project-window.c: Fix and improve URL
+ launching on win32.
2007-06-13 Juan Pablo Ugarte <juanpablougarte@gmail.com>
diff --git a/NEWS b/NEWS
index 67ec5f40..82872714 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,19 @@
===========
+Glade 3.3.1
+===========
+ - Insert before/after & Remove page context menu actions for GtkNotebook (bug 438881) - Juan Pablo Ugarte
+ - Remove row/column context menu actions for GtkTable - Juan Pablo Ugarte
+ - Fix C89 compilation (bug 444045) - Jens Granseuer
+ - Fixed win32 build (bug 444605) - Juan Pablo Ugarte
+ - Allow child contextual actions to work on placeholders - Juan Pablo Ugarte
+ - Remove 'm4' from EXTRA_DIST (bug 445028) - Vincent Geddes
+ - Some misc. win32 build fixes - Vincent Geddes
+ - Fixed cut/paste glitches inside notebooks - Tristan Van Berkom
+ - Fixed incorrectly loaded stock icons (bug 444959) - Juan Pablo Ugarte
+ - Spelling/Translation fixes (bug 419979, 429736) - Vincent Geddes
+ - Fixed console warnings (bug 424509) - Vincent Geddes
+
+===========
Glade 3.3.0
===========
- Allow plugin authors to add context menu items for thier widgets
diff --git a/configure.ac b/configure.ac
index bb02bf3b..f8023e90 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, 3)
-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([glade3], [glade_version],
@@ -47,7 +47,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=6
GLADE_AGE=0
GLADE_CURRENT_MINUS_AGE=`expr $GLADE_CURRENT - $GLADE_AGE`
diff --git a/plugins/gtk+/glade-gtk.c b/plugins/gtk+/glade-gtk.c
index 26489bac..a4627e49 100644
--- a/plugins/gtk+/glade-gtk.c
+++ b/plugins/gtk+/glade-gtk.c
@@ -2915,7 +2915,7 @@ glade_gtk_notebook_child_action_activate (GladeWidgetAdaptor *adaptor,
{
glade_gtk_box_notebook_child_insert_remove_action (adaptor, container,
object, "pages",
- _("Insert page on %s"),
+ _("Remove page from %s"),
TRUE, TRUE);
}
else