summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog12
-rw-r--r--NEWS33
-rw-r--r--configure.ac2
-rw-r--r--data/glade.desktop.in.in2
-rw-r--r--gladeui/glade-debug.c5
5 files changed, 51 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a4496522..fc12757c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2011-02-01 Tristan Van Berkom <tristanvb@openismus.com>
+
+ * configure.ac, NEWS:
+
+ * gladuei/glade-design-private.h, gladeui/glade-design-layout.[ch],
+ gladeui/glade-design-view.[ch]: Relicensed LGPL, Juan Pablo Ugarte, Vincent Geddes and I
+ are the only Copyright holders for these files and I have thier consent to relicense
+ these files LGPL.
+
+ * gladeui/glade-debug.c: Avoid showing an unavoidable warning regarding
+ gdk_window_set_composited().
+
2011-01-31 Juan Pablo Ugarte <juanpablougarte@gmail.com>
* gladeui/glade-design-layout.[ch]:
diff --git a/NEWS b/NEWS
index 3d9d9f8e..def067ad 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,37 @@
===========
+Glade 3.9.2
+===========
+ - Added signal for IDEs to track created signal editors, Johannes Schmid.
+ - Stop installing catalog .xml.in files, Emilio Pozuelo Monfort.
+ - Fixed various memory leaks.
+ - Removed GtkTreeSelection from the palette, it's only available as the internal
+ child of a GtkTreeView
+ - Fixed Drag'n'Drop image drawing with cairo for signal editor, Johannes Schmid with
+ help from Benjamin Otte.
+ - Fixed crashes and memory leaks in the GladeBaseEditor (the editor used for menu editing
+ and treeview editing and the like).
+ - Edit->Preferences is now File->Properties
+ - Removed option for project naming policies, object ids in GtkBuilder are always unique
+ across the whole file.
+ - Render project widgets in the workspace offscreen, this gives us more power over the
+ widgets (combo boxes can now be selected, seletion drawing is now enhanced),
+ Juan Pablo Ugarte.
+ - Added support for GtkComboBoxText with a customized editor to edit the combo box items.
+ - Added GtkRecentFilter and GtkRecentManager to the palette, GtkRecentFilter can specify
+ patterns, mime-types and applications for the filtering.
+ - Added support to edit patterns and mime-types for GtkFileFilter
+ - Added <add-child-verify-function> to the plugin backend, we now use this to better police
+ user activities in Glade (notably, you cannot paste a widget that is not a GtkToolItem
+ to a GtkToolBar or the like).
+ - Renamed various things from glade-3/glade3 to 'glade' (the Glade icon, the bugzilla database,
+ the git repository etc, help from Javier Jardón).
+ - Glade now uses GtkApplication and is a single instance application.
+ - Added support for editing a GtkOffscreenWindow
+ - Changed the workspace to now include all toplevel project objects, selecting an
+ object from the inspector causes the workspace to scroll to the selected widget,
+ Juan Pablo Ugarte.
+
+===========
Glade 3.9.1
===========
- Added accelerator and tooltip-text properties to menu items and toolitems
diff --git a/configure.ac b/configure.ac
index 0122c5f6..57b0815e 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, 9)
-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([glade], [glade_version],
diff --git a/data/glade.desktop.in.in b/data/glade.desktop.in.in
index fe4d8d98..68c892f1 100644
--- a/data/glade.desktop.in.in
+++ b/data/glade.desktop.in.in
@@ -12,6 +12,6 @@ Categories=GNOME;GTK;Development;GUIDesigner;
MimeType=application/x-glade;
X-GNOME-DocPath=glade/glade.xml
X-GNOME-Bugzilla-Bugzilla=GNOME
-X-GNOME-Bugzilla-Product=glade3
+X-GNOME-Bugzilla-Product=glade
X-GNOME-Bugzilla-Version=@VERSION@
X-GNOME-Bugzilla-Component=general
diff --git a/gladeui/glade-debug.c b/gladeui/glade-debug.c
index 38ba3b50..4fa85a1a 100644
--- a/gladeui/glade-debug.c
+++ b/gladeui/glade-debug.c
@@ -39,7 +39,10 @@ glade_log_handler (const char *domain,
{
static volatile int want_breakpoint = 0;
- g_log_default_handler (domain, level, message, data);
+ /* Ignore this message */
+ if (g_strcmp0 ("gdk_window_set_composited called but compositing is not supported", message) != 0)
+ g_log_default_handler (domain, level, message, data);
+
if (want_breakpoint &&
((level & (G_LOG_LEVEL_CRITICAL /* | G_LOG_LEVEL_WARNING */ )) != 0))
G_BREAKPOINT ();