summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tvb@src.gnome.org>2007-07-23 21:03:33 +0000
committerTristan Van Berkom <tvb@src.gnome.org>2007-07-23 21:03:33 +0000
commitcfa8ddb4cf1f787c692f07307237e75d3d7a1198 (patch)
tree7f0e59fd3725ff5defc913562d6f6fadaf8d8bff
parent4d4131334fec993fc993c66f9e45d44a56455464 (diff)
downloadglade-GLADE_3_3_2.tar.gz
Rolling 3.3.2GLADE_3_3_2
* NEWS, configure.ac: Rolling 3.3.2 svn path=/trunk/; revision=1505
-rw-r--r--ChangeLog14
-rw-r--r--NEWS28
-rw-r--r--configure.ac4
-rw-r--r--gladeui/glade-command.c2
4 files changed, 39 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 6e2aaf56..60b4324c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-06-23 Tristan Van Berkom <tvb@gnome.org>
+
+ * NEWS, configure.ac: Rolling 3.3.2
+
2006-07-23 Tristan Van Berkom <tvb@gnome.org>
* gladeui/glade-widget.[ch]:
@@ -267,10 +271,10 @@
gladeui/Makefile.am: Cygwin build fixes. Only apply "-mwindows" ld flag
if we are in unstable development.
- * configure.ac, plugins/gtk+/Makefile.am, plugins/gtk+/glade-gtk.h,
- plugins/gnome/glade-gnome.h, plugins/gnome/Makefile.am: Substitute PLUGINS_WARN_CFLAGS
- as the warning flags for compiling plugins. Don't use the warning flags
- defined by GNOME_COMPILE_WARNINGS. Delete plugins/gnome/glade-gnome.h.
+ * configure.ac, plugins/gtk+/Makefile.am, plugins/gtk+/glade-gtk.h,
+ plugins/gnome/glade-gnome.h, plugins/gnome/Makefile.am: Substitute PLUGINS_WARN_CFLAGS
+ as the warning flags for compiling plugins. Don't use the warning flags
+ defined by GNOME_COMPILE_WARNINGS. Delete plugins/gnome/glade-gnome.h.
2007-06-24 Vincent Geddes <vgeddes@gnome.org>
@@ -332,7 +336,7 @@
* src/glade-project-window.c: Refresh active GladeDesignView upon
update_ui calls (fixes occasional outline glitch in the design-view).
- * doc/gladeui.types: Removed glade_project_view_get_type added
+ * doc/gladeui.types: Removed glade_project_view_get_type added
glade_inspector_get_type
2006-06-20 Vincent Geddes <vincent.geddes@gmail.com>
diff --git a/NEWS b/NEWS
index 82872714..7f5bfd57 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,32 @@
===========
+Glade 3.3.2
+===========
+ - Bindings work has been moved out into a branch
+ - Added toolbar item for "Drag/Resize" mode - Tristan Van Berkom
+ - Added history lists to undo/redo buttons - Tristan Van Berkom
+ - Current notebook page is more consistant (bug 394382) - Tristan Van Berkom
+ - Use gnome-common macros in configure.ac/Makefiles (bug 399134) - Christian Persch
+ - Fixed lots of compiler warnings from new macros - Vincent Geddes
+ - Added a bunch of translatable/displayable values for new enumerations/values - Juan Pablo Ugarte
+ - Display some specially marked backend actions in the toolbar - Juan Pablo Ugarte
+ - Attempt to reload an open project if the user tries to open it again (bug 450483) - Vincent Geddes
+ - Monitor and update project saved state wrt undo (bug 392324) - Vincent Geddes
+ - Properly handle dgettext() operations (bug 453105) - Christian Persch)
+ - Fixed some hangups (bug 453253) - Juan Pablo Ugarte
+ - Remove user name and host from comment in glade file (bug 453174) - Vincent Geddes
+ - Now the palette/inspector and property editor are "dockable" (just
+ dock/undock via view menu, nothing fancy) - Tristan Van Berkom
+ - Warn about missing displayable values for enums/flags - Juan Pablo Ugarte
+ - Fixed glitch with changing notebook pages (bug 456013) - Tristan Van Berkom
+ - Implemented "Add/Remove Parent" context menu items for all widgets (bug 343786) - Tristan Van Berkom
+ - Added "Remove Slot" action for placeholders inside GtkBoxes (closes bug 387963) - Tristan Van Berkom
+ - Markup & mnemonics in labels load properly now (bug 396446) - Tristan Van Berkom
+ - Context menu for placeholders now have actions that apply to the widget they are in,
+ while "paste" remains contextual to the placeholder in question - Tristan Van Berkom
+ - Misc bug fixes 453105 453107 453111 453110 406039 457224 457222...
+
+
+===========
Glade 3.3.1
===========
- Insert before/after & Remove page context menu actions for GtkNotebook (bug 438881) - Juan Pablo Ugarte
diff --git a/configure.ac b/configure.ac
index f471854d..8051b272 100644
--- a/configure.ac
+++ b/configure.ac
@@ -47,8 +47,8 @@ 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=1
-GLADE_CURRENT=6
+GLADE_REVISION=0
+GLADE_CURRENT=7
GLADE_AGE=0
GLADE_CURRENT_MINUS_AGE=`expr $GLADE_CURRENT - $GLADE_AGE`
AC_SUBST(GLADE_REVISION)
diff --git a/gladeui/glade-command.c b/gladeui/glade-command.c
index 0dc257ff..2a134e1d 100644
--- a/gladeui/glade-command.c
+++ b/gladeui/glade-command.c
@@ -1580,7 +1580,6 @@ void
glade_command_delete(GList *widgets)
{
GladeWidget *widget;
- GList *placehodlers;
g_return_if_fail (widgets != NULL);
@@ -1689,7 +1688,6 @@ void
glade_command_dnd(GList *widgets, GladeWidget *parent, GladePlaceholder *placeholder)
{
GladeWidget *widget;
- GList *placeholders;
g_return_if_fail (widgets != NULL);