anjuta r3713 - in trunk: . plugins/build-basic-autotools plugins/editor



Author: naba
Date: Mon Feb 25 21:58:22 2008
New Revision: 3713
URL: http://svn.gnome.org/viewvc/anjuta?rev=3713&view=rev

Log:
	* NEWS: Updated for release 2.3.5
	* configure.in: Bumped version to 2.3.5

	* plugins/build-basic-autotools/build-basic-autotools.c:
	(on_editor_changed): Avoid accessing text which is greater than
	valid range.

	* plugins/editor/text_editor_cbs.[c,h]: Removed dead code.



Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/configure.in
   trunk/plugins/build-basic-autotools/build-basic-autotools.c
   trunk/plugins/editor/text_editor_cbs.c
   trunk/plugins/editor/text_editor_cbs.h

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Mon Feb 25 21:58:22 2008
@@ -1,3 +1,50 @@
+Anjuta 2.3.5 (25 Feb 2008) -- Naba Kumar
+-----------------------------------------
+
+Updates:
+========
+Translation updates: si, es, oc, ne, kn, de, en_GB, fi, be and pt_BR
+
+Bugfixes:
+=========
+* Fixed #515867 - Anjuta dies on startup
+* Fixed #515868 - File browser only shows icons when activated
+* Fix anjuta_launcher_set_encoding() and cleaned-up. Mostly backported
+  from symbol-db branch
+* Fixed #515954 - create_global_tags.sh: wrong anjuta-tags path
+* Move anjuta-shell to noinst_PROGRAMS as it is just a test
+* Indent lines after comments correctly
+* Set indentation size correctly in sourceview plugin, when tab size is
+  set by language support plugin
+* Indent /* */ comments correctly for multilines.
+* Fixed #504905 - Ctrl-I (Auto Indent) doesn't indent properly after
+  C++ public: and private:
+* Fixed #516014 - Output in UTF-8 format to avoid hangs with the editor.
+* Fixed #516377 - Status bar does not change its status of 'Search for
+  .. continued at top'
+* Fixed some memory leaks 
+* Fixed #516128 - crash in Anjuta IDE: selected profiler as the...
+* Fixed #516737: Import project doesn't load project with space in name
+* Fixed #516743: Import project keeps an old date on project file
+* Fixed #515207: Add a new project window screenshoot
+* Fixed #515993: "Add package" button is "Add Package" in code
+* Fixed #516727: "Build All" is "Build Project" in code
+* Fixed #516728: "Clean All" is "Clean Project" in code
+* Fixed #516728: "Autogenerate" is "Run Autogenerate..." in code
+* Fixed #516730: Fix note title 
+* Fixed #516630 - Selection custom binary in profiler is not user-friendly.
+* Fixed #516641 - Valgrind: Load Log does not clear list
+* Fixed implementation of get_character and return value of iiter_first()
+  and iiter_last();
+* Cleaned implementation of char-added signal by using "insert-text" signal
+  instead of filtering "key-press-event"
+* Some bugfixes and clean-ups in comment indentation code
+* Load executable in gdb with space in path name 
+* Fixed "char-added" signal to pass the correct iterator
+* Set breakpoint in file with uncommon characters in path name
+* Avoid a glib warning if no project is loaded
+* Fixed #518329: Crash when adding breakpoint and other similar bugs
+
 Anjuta 2.3.4 (11 Feb 2008) -- Naba Kumar
 -----------------------------------------
 

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Mon Feb 25 21:58:22 2008
@@ -4,7 +4,7 @@
 
 m4_define(anjuta_major_version,  2)
 m4_define(anjuta_minor_version, 3)
-m4_define(anjuta_micro_version,  4)
+m4_define(anjuta_micro_version,  5)
 m4_define(anjuta_version, anjuta_major_version.anjuta_minor_version.anjuta_micro_version)
 
 AC_INIT(anjuta, anjuta_version, http://bugzilla.gnome.org/enter_bug.cgi?product=anjuta)

Modified: trunk/plugins/build-basic-autotools/build-basic-autotools.c
==============================================================================
--- trunk/plugins/build-basic-autotools/build-basic-autotools.c	(original)
+++ trunk/plugins/build-basic-autotools/build-basic-autotools.c	Mon Feb 25 21:58:22 2008
@@ -1934,9 +1934,9 @@
 		ianjuta_indicable_set (IANJUTA_INDICABLE (editor), begin_pos,
 							   end_pos, IANJUTA_INDICABLE_NONE, NULL);
 	}
-	DEBUG_PRINT ("Editor changed: line = %d, added = %d,"
-				 " length = %d, lines = %d, text = \'%s\'",
-				 line, added, length, lines, text);
+	DEBUG_PRINT ("Editor changed: line number = %d, added = %d,"
+				 " text length = %d, number of lines = %d",
+				 line, added, length, lines);
 	g_object_unref (begin_pos);
 	g_object_unref (end_pos);
 }

Modified: trunk/plugins/editor/text_editor_cbs.c
==============================================================================
--- trunk/plugins/editor/text_editor_cbs.c	(original)
+++ trunk/plugins/editor/text_editor_cbs.c	Mon Feb 25 21:58:22 2008
@@ -86,27 +86,6 @@
 	return TRUE;
 }
 
-void
-on_text_editor_text_changed (GtkEditable * editable, gpointer user_data)
-{
-	TextEditor *te = TEXT_EDITOR (user_data);
-	if (text_editor_is_saved (te))
-	{
-		//FIXME:
-		// anjuta_update_title ();
-		// update_main_menubar ();
-		text_editor_update_controls (te);
-	}
-}
-
-void
-on_text_editor_insert_text (GtkEditable * text,
-			    const gchar * insertion_text,
-			    gint length, gint * pos, TextEditor * te)
-{
-}
-
-
 static void 
 scintilla_uri_dropped (TextEditor *te, const char *uri)
 {

Modified: trunk/plugins/editor/text_editor_cbs.h
==============================================================================
--- trunk/plugins/editor/text_editor_cbs.h	(original)
+++ trunk/plugins/editor/text_editor_cbs.h	Mon Feb 25 21:58:22 2008
@@ -25,20 +25,11 @@
 gboolean
 on_text_editor_scintilla_focus_in (GtkWidget* scintilla, GdkEvent *event,
 								   TextEditor *te);
-void
-on_text_editor_text_changed            (GtkEditable     *editable,
-                                        gpointer         user_data);
-
 gboolean
 on_text_editor_text_event              (GtkWidget       *widget,
                                         GdkEvent        *event,
                                         gpointer         user_data);
 
-void
-on_text_editor_insert_text (GtkEditable * text,
-							const gchar * insertion_text,
-							gint length, gint * pos, TextEditor * te);
-
 gboolean
 on_text_editor_text_buttonpress_event  (GtkWidget       *widget,
                                         GdkEventButton  *event,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]