anjuta r4914 - in branches/gnome-2-26: . plugins/git src
- From: jhs svn gnome org
- To: svn-commits-list gnome org
- Subject: anjuta r4914 - in branches/gnome-2-26: . plugins/git src
- Date: Mon, 30 Mar 2009 22:09:49 +0000 (UTC)
Author: jhs
Date: Mon Mar 30 22:09:49 2009
New Revision: 4914
URL: http://svn.gnome.org/viewvc/anjuta?rev=4914&view=rev
Log:
2009-03-30 Maxim Ermilov <zaspire rambler ru>
reviewed by: Johannes Schmid <jhs gnome org>
* src/anjuta-app.c (anjuta_app_instance_init):
#574711 â Menu Toolbar unchecked at the first time while toolbar shown
2009-03-28 James Liggett <jim jim-desktop>
* plugins/git/git-vcs-interface.c (on_status_command_data_arrived):
Fix an object leak.
(Backported from trunk)
Modified:
branches/gnome-2-26/ChangeLog
branches/gnome-2-26/NEWS
branches/gnome-2-26/plugins/git/git-vcs-interface.c
branches/gnome-2-26/src/anjuta-app.c
Modified: branches/gnome-2-26/NEWS
==============================================================================
--- branches/gnome-2-26/NEWS (original)
+++ branches/gnome-2-26/NEWS Mon Mar 30 22:09:49 2009
@@ -1,3 +1,22 @@
+Anjuta 2.26.0.1 (1 April 2009) -- Johannes Schmid
+
+Updates:
+- Huge improvements in the tooltip area
+- Do not hang when pressing backspace in editor
+
+Bugs fixed:
+#574607 â Replace function selects text uncorrectly
+#576959 - Search does not point to correct line number on first match
+ when file is not opened in editor.
+#574711 â Menu Toolbar unchecked at the first time while toolbar shown
+#574802 â show calltips makes the editing lag
+#576057 â doesn't build with graphviz 2.22.2
+#575893 â plugins schema files are not installed
+#575617 â Update FSF address
+
+Translations:
+- German translation of the manual started (Mario BlÃttermann)
+
Anjuta 2.26.0 (16 March 2009) -- Johannes Schmid
Bugs fixed:
Modified: branches/gnome-2-26/plugins/git/git-vcs-interface.c
==============================================================================
--- branches/gnome-2-26/plugins/git/git-vcs-interface.c (original)
+++ branches/gnome-2-26/plugins/git/git-vcs-interface.c Mon Mar 30 22:09:49 2009
@@ -179,10 +179,9 @@
callback (file,
git_status_get_vcs_status (status),
g_object_get_data (G_OBJECT (command), "user-data"));
-
- g_object_unref (file);
}
+ g_object_unref (file);
g_object_unref (status);
g_free (status_relative_path);
g_free (path);
Modified: branches/gnome-2-26/src/anjuta-app.c
==============================================================================
--- branches/gnome-2-26/src/anjuta-app.c (original)
+++ branches/gnome-2-26/src/anjuta-app.c Mon Mar 30 22:09:49 2009
@@ -457,6 +457,8 @@
/* create toolbar */
app->toolbar = gtk_ui_manager_get_widget (GTK_UI_MANAGER (app->ui),
"/ToolbarMain");
+ if (!anjuta_preferences_get_int (app->preferences, "anjuta.toolbar.visible"))
+ gtk_widget_hide (app->toolbar);
gtk_box_pack_start (GTK_BOX (main_box), app->toolbar, FALSE, FALSE, 0);
action = gtk_ui_manager_get_action (GTK_UI_MANAGER (app->ui),
"/MenuMain/MenuView/Toolbar");
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]