summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--NEWS14
-rw-r--r--configure.ac2
-rw-r--r--plugins/gtk+/glade-gtk.c2
-rw-r--r--plugins/gtk+/gtk+.xml.in2
5 files changed, 21 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index fd406c35..2ab5f334 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,8 @@
2009-04-22 Tristan Van Berkom <tvb@gnome.org>
+
+ * NEWS, configure.ac: Rolling 3.6.3
+
+ * plugins/gtk+/gtk+.xml.in: Removed buggy query dialog from notebook (closing bug 578727).
* plugins/gtk+/glade-gtk.c: Made Atk proxy objects always have unique names (at
least as unique as the widget they are created for) (bug 579565).
diff --git a/NEWS b/NEWS
index 8604e4e1..222b01c8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,17 @@
+
+===========
+Glade 3.6.3
+===========
+ - Maintain current widget selection during commits of related-action
+ (was causing crashes when the selection changed as a result of a commit, bug 578869)
+ - GtkButton only accepts real stock *items* and not icons (to use an icon, use a GtkImage
+ with an unrestricted stock icon)
+ - Added documentation on integrating Python widgets (Juan Pablo Ugarte)
+ - Fixed output format for GtkLabel attributes (bug 579793, patch by Davyd Madeley).
+ - Removed hard coded size request to palette (Bug 579624).
+ - Made Atk proxy objects always have unique names (bug 579565).
+ - Removed buggy query dialog from notebook creation (bug 578727).
+
===========
Glade 3.6.2
===========
diff --git a/configure.ac b/configure.ac
index 9a30cc2a..1886df54 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, 6)
-m4_define(glade_micro_version, 2)
+m4_define(glade_micro_version, 3)
m4_define(glade_version, glade_major_version.glade_minor_version.glade_micro_version)
AC_INIT([glade3], [glade_version],
diff --git a/plugins/gtk+/glade-gtk.c b/plugins/gtk+/glade-gtk.c
index cf9ee07a..b7ca6c63 100644
--- a/plugins/gtk+/glade-gtk.c
+++ b/plugins/gtk+/glade-gtk.c
@@ -4334,8 +4334,8 @@ glade_gtk_box_notebook_child_insert_remove_action (GladeWidgetAdaptor *adaptor,
parent = glade_widget_get_from_gobject (container);
glade_command_push_group (group_format, glade_widget_get_name (parent));
- children = glade_widget_adaptor_get_children (adaptor, container);
/* Make sure widgets does not get destroyed */
+ children = glade_widget_adaptor_get_children (adaptor, container);
g_list_foreach (children, (GFunc) g_object_ref, NULL);
glade_widget_property_get (parent, size_prop, &size);
diff --git a/plugins/gtk+/gtk+.xml.in b/plugins/gtk+/gtk+.xml.in
index ef26d473..c1b33cff 100644
--- a/plugins/gtk+/gtk+.xml.in
+++ b/plugins/gtk+/gtk+.xml.in
@@ -1412,7 +1412,7 @@ embedded in another object</_tooltip>
<_tooltip>Set the current page (strictly for editing purposes)</_tooltip>
</property>
- <property id="pages" _name="Number of pages" visible="False" save="False" default="3" query="True">
+ <property id="pages" _name="Number of pages" visible="False" save="False" default="3">
<parameter-spec>
<type>GParamInt</type>
<min>1</min>