Updated Spanish translation
[anjuta-git-plugin.git] / ChangeLog
bloba0ebea508f2b00eb5d1614d4c33d9bc55ded6293
1 2007-12-29  Johannes Schmid <jhs@gnome.org>
3         * plugins/editor/Makefile.am:
4         Fixed #506266 – Attempting to build the scintilla plugin, even when explicitly disabled
6 2007-12-29  Johannes Schmid <jhs@gnome.org>
8         * plugins/devhelp/plugin.c: (devhelp_activate):
9         Fixed #498986 - Anjuta-2.3.0 fails to build
11 2007-12-29  Johannes Schmid <jhs@gnome.org>
13         * plugins/debug-manager/breakpoints.c: (on_added_current_editor):
14         * plugins/debug-manager/plugin.c:
15         (on_run_to_cursor_action_activate):
16         * plugins/document-manager/anjuta-docman.c:
17         (anjuta_docman_goto_file_line_mark):
18         * plugins/symbol-db/plugin.c: (value_added_current_editor),
19         (value_removed_current_editor):
20         
21         Fixed IAnjutaEditor vs. IAnjutaDocument GTK+-Criticals. We should really rename
22         all those to value_added_current_document...
24         * plugins/editor/anjuta-editor-scintilla.glade:
25         Fixed #505315 – anjuta hangs when going from editing a glade file to editing a c source file
26         Remember to ALWAYS use for loops when iterating of a GList* as this is much more convinient!
28 2007-12-28  Massimo Cora'  <maxcvs@email.it>
30   * plugins/symbol-db/plugin.c: (on_importing_project_end),
31   (symbol_db_activate), (symbol_db_deactivate),
32   (symbol_db_instance_init), (isymbol_manager_get_parents):
33   * plugins/symbol-db/plugin.h:
34   * plugins/symbol-db/symbol-db-engine-iterator-node.c:
35   * plugins/symbol-db/symbol-db-engine.c:
36   (symbol_db_engine_get_global_members_filtered):
37   * plugins/symbol-db/symbol-db-view.c: (prepare_for_adding),
38   (on_symbol_inserted):
39   Filtered out static functions on global-tab. E.g. when flag
40   is_file_scope = 1 we won't add entries there.
41   Fixed a little bug on 'Global'->'Vars/Others' node too.
43 2007-12-28  Johannes Schmid <jhs@gnome.org>
45   * libanjuta/anjuta-launcher.c:
46   Fixed a silly (and completely useless) memory corruption that probably 
47   only occured at a few race conditions though I wonder why it did not 
48         happen more often
50 2007-12-28  Johannes Schmid <jhs@gnome.org>
51         * plugins/cvs-plugin/cvs-execute.c: (on_cvs_mesg_parse):
52         * plugins/debug-manager/plugin.c: (set_program_counter):
53         * plugins/debug-manager/stack_trace.c: (on_stack_trace_updated):
54         * plugins/debug-manager/start.c: (get_source_directories):
55         * plugins/debug-manager/threads.c: (on_info_thread),
56         (on_list_thread):
57         * plugins/file-manager/file-model.c: (file_model_set_property):
58         * plugins/file-manager/plugin.c: (file_manager_set_default_uri):
59         * plugins/tools/editor.c: (on_editor_response):
60         
61         Use gnome_vfs_get_uri_from_local_path instead of g_strconcat where appropriate.
62         
63         * plugins/document-manager/plugin.c: (update_title),
64         (value_added_project_root_uri):
65         * plugins/document-manager/plugin.h:
66         Shorten down the title bar if the current path is inside the opened project
68 2007-12-28  Massimo Cora'  <maxcvs@email.it>
70         reviewed by: Johannes Schmid <jhs@gnome.org>
72         * plugins/project-wizard/templates/java/project.anjuta:
73         * plugins/project-wizard/templates/mkfile/project.anjuta:
74         * plugins/project-wizard/templates/python/project.anjuta:
75         Added attribute="Interfaces" and value="IAnjutaSymbolManager" to 
76         let new projects use new SymbolDB plugin.
77         
78         * plugins/symbol-browser/images/Makefile.am:
79         added some images taken from MonoDevelop project.
80         
81         * plugins/symbol-db/plugin.c: (value_added_current_editor),
82         (goto_file_line), (on_importing_project_end), (project_root_added),
83         (on_session_load), (symbol_db_deactivate), (symbol_db_finalize),
84         (isymbol_manager_search):
85         Added project-updating feature when opening a project with some files
86   modified externally [e.g. a svn up].
87         
88         * plugins/symbol-db/symbol-db-engine-iterator-node.c:
89         (sdb_engine_iterator_node_instance_init),
90         (sdb_engine_iterator_node_finalize),
91         (symbol_db_engine_iterator_node_set_conversion_hash):
92         * plugins/symbol-db/symbol-db-engine-iterator-node.h:
93         * plugins/symbol-db/symbol-db-engine-iterator.c:
94         (symbol_db_engine_iterator_new):
95         * plugins/symbol-db/symbol-db-engine-iterator.h:
96          Moved Hash table initialization into the engine. This proxies and
97   speeds up the process of creation and iteration of a GdaDataModel.
98         
99         * plugins/symbol-db/symbol-db-engine.c:
100         (sdb_engine_ctags_output_thread),
101         (sdb_engine_timeout_trigger_signals), (sdb_engine_thread_monitor),
102         (sdb_engine_scan_files_1), (sdb_engine_init),
103         (sdb_engine_unlink_shared_files), (sdb_engine_finalize),
104         (symbol_db_engine_add_new_workspace),
105         (symbol_db_engine_add_new_project), (sdb_engine_add_new_file),
106         (sdb_engine_update_file), (on_scan_update_files_symbols_end),
107         (symbol_db_engine_get_sym_type_conversion_hash),
108         (symbol_db_engine_update_files_symbols),
109         (symbol_db_engine_update_project_symbols),
110         (symbol_db_engine_update_buffer_symbols),
111         (symbol_db_engine_get_class_parents),
112         (symbol_db_engine_get_global_members_filtered),
113         (symbol_db_engine_get_scope_members_by_symbol_id_filtered),
114         (symbol_db_engine_get_scope_members_by_symbol_id),
115         (symbol_db_engine_get_scope_members),
116         (symbol_db_engine_get_current_scope),
117         (symbol_db_engine_get_file_symbols),
118         (symbol_db_engine_get_symbol_info_by_id),
119         (symbol_db_engine_find_symbol_by_name_pattern),
120         (symbol_db_engine_get_parent_scope_id_by_symbol_id):
121         * plugins/symbol-db/symbol-db-engine.h:
122         * plugins/symbol-db/symbol-db-view-locals.c:
123         (sdb_view_locals_get_iter_from_row_ref),
124         (symbol_db_view_locals_clear_cache), (do_add_child_symbol_to_view),
125         (traverse_on_scan_end), (on_scan_end), (on_symbol_removed),
126         (on_symbol_inserted), (symbol_db_view_locals_update_list):
127         Changes on some queries fuctions and some fixes. Added *_filtered
128   functions.
129         
130         * plugins/symbol-db/symbol-db-view.c:
131         (do_add_child_symbol_to_view), (add_new_waiting_for),
132         (prepare_for_adding), (on_symbol_inserted),
133         (do_recurse_subtree_and_remove), (on_symbol_removed),
134         (sdb_view_do_add_hidden_dummy_child),
135         (sdb_view_namespace_row_expanded), (sdb_view_global_row_expanded),
136         (sdb_view_vars_row_expanded), (symbol_db_view_row_expanded),
137         (sdb_view_locals_create_new_store), (sdb_view_init),
138         (sdb_view_finalize), (sdb_view_class_init),
139         (symbol_db_view_get_type), (sdb_view_load_symbol_pixbufs),
140         (symbol_db_view_get_pixbuf),
141         (sdb_view_build_and_display_base_tree), (symbol_db_view_open):
142         New display for global tags. This is the definitive version, bugs apart.
143         
144         * plugins/symbol-db/tables.sql:
145         fixed typo.
147 2007-12-27  Naba Kumar  <naba@gnome.org>
149         * libanjuta/interfaces/libanjuta.idl:
150         * plugins/editor/aneditor-priv.h:
151         * plugins/editor/aneditor.cxx:
152         * plugins/editor/text_editor.c: (text_editor_instance_init),
153         (text_editor_show_hover_tip), (text_editor_hide_hover_tip),
154         (ihover_display), (ihover_set_timeout), (ihover_iface_init):
155         * plugins/editor/text_editor.h:
156         * plugins/editor/text_editor_cbs.c:
157         (on_text_editor_scintilla_notify):
159         Implemented IAnjutaEditorHover interface in scintilla editor. Disabled
160         related code in AnEditor. Fixed some compilation warnings.
162 2007-12-26  Naba Kumar  <naba@gnome.org>
164         * Changelog: Fixed indentation.
166 2007-12-25  Naba Kumar  <naba@gnome.org>
168         * plugins/editor/Makefile.am:
169         * plugins/editor/editor.glade:
170         * plugins/editor/plugin.c:
171         * plugins/editor/style-editor.c:
172         * plugins/sourceview/Makefile.am:
173         * plugins/sourceview/plugin.c:
174         * plugins/sourceview/sourceview.glade:
175         * plugins/valgrind/Makefile.am:
177         Renamed glade files to anjuta-editor-* to give name space for the
178         schema files (because they are installed in system directory).
180         * scripts/build-schemas.mk: Install the schemas files also (need for
181         binary package installation/uninstallation).
183 2007-12-25  Johannes Schmid <jhs@gnome.org>
185         * plugins/language-support-cpp-java/plugin.c:
186         (set_indentation_param_vim):
187         
188         Support some more vim modeline commands and shortcuts (#504331)
190 2007-12-25  Johannes Schmid <jhs@gnome.org>
192         Patches from James Liggett:
193         * libanjuta/anjuta-vcs-status-tree-view.c: (path_sort),
194         (anjuta_vcs_status_tree_view_init):
195         * plugins/subversion/subversion-commit-dialog.c:
196         (subversion_commit_dialog):
197         * plugins/subversion/subversion-diff-dialog.c:
198         (on_subversion_diff_response):
199         * plugins/subversion/subversion-log-dialog.c:
200         (on_log_view_selected_button_clicked),
201         (on_log_diff_selected_button_clicked),
202         (on_log_diff_previous_button_clicked):
203         * plugins/subversion/subversion-resolve-dialog.c:
204         (subversion_resolve_dialog):
205         * plugins/subversion/subversion-revert-dialog.c:
206         (subversion_revert_dialog):
207         * plugins/subversion/subversion-ui-utils.c: (stop_pulse_timer),
208         (pulse_progress_bar), (hide_pulse_progress_bar),
209         (disconnect_data_arrived_signals),
210         (cancel_data_arrived_signal_disconnect):
211         * plugins/subversion/subversion-ui-utils.h:
212         
213         #504818 – Some signals/timeouts should be disconnected when dialogs are closed
214         #505237 – Sort list of modified files
216 2007-12-24  Sébastien Granjoux  <seb.sfo@free.fr>
218         * plugins/gdb/debugger.c:
219         Fix bug #491301: Inspecting a variable opens a bad focus dialog
221 2007-12-23  Johannes Schmid <jhs@gnome.org>
223         * plugins/language-support-cpp-java/plugin.c:
224         (set_indentation_param_emacs), (set_indentation_param_vim),
225         (parse_mode_line_emacs), (parse_mode_line_vim),
226         (extract_mode_line), (initialize_indentation_params):
228         Added (basic) support for vim modelines (#504331)
230         * plugins/message-view/message-view.c: (message_view_next),
231         (message_view_previous):
232         
233         Fixed next/previous message
235 2007-12-23  Johannes Schmid <jhs@gnome.org>
237         * libanjuta/anjuta-ui.h:
238         Check for != NULL before unref'ing pixbuf (related to #497878)
239         
240         * plugins/devhelp/plugin.c: (register_stock_icons):
241         * plugins/document-manager/anjuta-docman.c:
242         (anjuta_docman_add_document):
243         * plugins/glade/plugin.c: (on_close_activated),
244         (register_stock_icons), (on_session_save),
245         (glade_plugin_add_project):
246         
247         Fixed bugs #497878 crash when double clicking on project->/->src->glade/gtk-foobar.glade
248         and #503719 Opening and closing .glade files plays badly with docman (Patch from Tom)
249         
250         * plugins/language-support-cpp-java/plugin.c:
251         (register_stock_icons):
252         Fixed stock icon registration macros
254 2007-12-23  Johannes Schmid <jhs@gnome.org>
256         * global-tags/Makefile.am:
257         * launcher/Makefile.am:
258         * libanjuta/Makefile.am:
259         * libegg/Makefile.am:
260         * manuals/anjuta-faqs/Makefile.am:
261         * manuals/anjuta-manual/Makefile.am:
262         * manuals/reference/libanjuta/Makefile.am:
263         * plugins/build-basic-autotools/Makefile.am:
264         * plugins/class-gen/Makefile.am:
265         * plugins/class-inheritance/Makefile.am:
266         * plugins/cvs-plugin/Makefile.am:
267         * plugins/debug-manager/Makefile.am:
268         * plugins/devhelp/Makefile.am:
269         * plugins/document-manager/Makefile.am:
270         * plugins/editor/Makefile.am:
271         * plugins/editor/scintilla/Makefile.am:
272         * plugins/editor/scintilla/include/Makefile.am:
273         * plugins/file-loader/Makefile.am:
274         * plugins/file-manager/Makefile.am:
275         * plugins/file-wizard/Makefile.am:
276         * plugins/gdb/Makefile.am:
277         * plugins/glade/Makefile.am:
278         * plugins/gtodo/Makefile.am:
279         * plugins/gvim/Makefile.am:
280         * plugins/indent/Makefile.am:
281         * plugins/language-manager/Makefile.am:
282         * plugins/language-support-cpp-java/Makefile.am:
283         * plugins/macro/Makefile.am:
284         * plugins/message-view/Makefile.am:
285         * plugins/patch/Makefile.am:
286         * plugins/profiler/Makefile.am:
287         * plugins/project-import/Makefile.am:
288         * plugins/project-manager/Makefile.am:
289         * plugins/project-wizard/Makefile.am:
290         * plugins/project-wizard/templates/anjuta-plugin/src/Makefile.am.tpl:
291         * plugins/project-wizard/templates/cpp/src/Makefile.am.tpl:
292         * plugins/project-wizard/templates/gnome/src/Makefile.am.tpl:
293         * plugins/project-wizard/templates/gtk/src/Makefile.am.tpl:
294         * plugins/project-wizard/templates/gtkmm/src/Makefile.am.tpl:
295         * plugins/project-wizard/templates/minimal/Makefile.am.tpl:
296         * plugins/project-wizard/templates/sdl/src/Makefile.am.tpl:
297         * plugins/project-wizard/templates/wxwin/src/Makefile.am.tpl:
298         * plugins/project-wizard/templates/xlib-dock/src/Makefile.am.tpl:
299         * plugins/project-wizard/templates/xlib/src/Makefile.am.tpl:
300         * plugins/sample1/Makefile.am:
301         * plugins/search/Makefile.am:
302         * plugins/sourceview/Makefile.am:
303         * plugins/subversion/Makefile.am:
304         * plugins/symbol-browser/Makefile.am:
305         * plugins/symbol-db/Makefile.am:
306         * plugins/symbol-db/test/Makefile.am:
307         * plugins/terminal/Makefile.am:
308         * plugins/tools/Makefile.am:
309         * plugins/valgrind/Makefile.am:
310         * src/Makefile.am:
311         * tagmanager/Makefile.am:
312         
313         Replaces the deprecated "INCLUDES" in all Makefile.am's with
314         the correct "AM_CPPFLAGS" preprocessor flags keyword. Also fixes some
315         warnings from illigel C++ compiler flags.
317 2007-12-23  Johannes Schmid <jhs@gnome.org>
319         Patch from Tom <tpgww@onepost.net>:
320   
321         * plugins/document-manager/anjuta-docman.c:
322         (on_notebook_tab_btnpress), (on_notebook_tab_btnrelease),
323         (anjuta_docman_compare_pages), (anjuta_docman_sort_pagelist),
324         (anjuta_docman_instance_init), (on_notebook_switch_page),
325         (anjuta_docman_grab_text_focus):
326         * plugins/document-manager/plugin.c: (on_document_added),
327         (on_window_key_press_event), (on_window_key_release_event):
328         
329         Some more document-manager code cleanups and fixes.
331 2007-12-23  Massimo Cora'  <maxcvs@email.it>
333         * plugins/symbol-db/plugin.c: (register_stock_icons),
334         (value_added_current_editor), (value_removed_current_editor),
335         (on_importing_project_end), (project_root_removed):
336         added controls to clean/populate GtkTreeView(s) on projects unload/load.
338         * plugins/symbol-db/symbol-db-engine.c: (sdb_engine_finalize),
339         (symbol_db_engine_get_file_db_path):
340         fixed a useless warning.
342         * plugins/symbol-db/symbol-db-view-locals.c:
343         (traverse_free_waiting_for), (file_view_status_destroy),
344         (sdb_view_locals_create_new_store), (traverse_files_view_status),
345         (symbol_db_view_locals_clear_cache), (sdb_view_locals_init),
346         (sdb_view_locals_finalize), (on_symbol_inserted),
347         (symbol_db_view_locals_recv_signals_from_engine),
348         (symbol_db_view_locals_update_list):
349         more speed on editors switching. GtkTreeStore caching method implemented.
350         Fixed compiler warnings and a little memory leak.
352         * plugins/symbol-db/symbol-db-view-locals.h:
353         * plugins/symbol-db/symbol-db-view.c: (gtree_compare_func),
354         (traverse_free_waiting_for), (symbol_db_view_clear_cache),
355         (on_scan_end), (on_symbol_inserted),
356         (sdb_view_locals_create_new_store), (sdb_view_init),
357         (sdb_view_finalize), (symbol_db_view_new), (symbol_db_view_open):
358         * plugins/symbol-db/symbol-db-view.h:
359         fixed some crashers. Now project loading/populating should be quite quick.
361 2007-12-22  Sébastien Granjoux  <seb.sfo@free.fr>
363         * plugins/debug-manager/command.c,
364         plugins/debug-manager/queue.c:
365         Take care of command return value (FALSE is an error)
367 2007-12-22  Sébastien Granjoux  <seb.sfo@free.fr>
369         * plugins/debug-manager/anjuta-debug-manager.glade,
370         plugins/debug-manager/breakpoints.c:
371         Remove address, condition and pass breakpoint column if not supported
372         Fix clear all remove_all to avoid an endless loop if a breakpoint
373         cannot be removed
375 2007-12-17  Johannes Schmid <jhs@gnome.org>
377         Patch from Tom <tpgww@onepost.net> (with some changes):
379         * plugins/document-manager/action-callbacks.c: (on_open_activate),
380         (on_save_as_activate), (on_save_all_activate),
381         (on_close_file_activate), (on_close_all_file_activate),
382         (on_reload_file_activate), (on_editor_command_clear_activate),
383         (on_transform_eolchars1_activate), (on_comment_block),
384         (on_comment_box), (on_comment_stream), (on_goto_line_no1_activate),
385         (on_goto_block_start1_activate), (on_goto_block_end1_activate),
386         (on_editor_linenos1_activate), (on_editor_markers1_activate),
387         (on_editor_codefold1_activate), (on_editor_indentguides1_activate),
388         (on_editor_whitespaces1_activate), (on_editor_eolchars1_activate),
389         (on_editor_linewrap1_activate), (on_zoom_in_text_activate),
390         (on_zoom_out_text_activate):
391         * plugins/document-manager/action-callbacks.h:
392         * plugins/document-manager/anjuta-docman.c:
393         (on_notebook_page_close_button_click),
394         (on_notebook_page_close_button_enter),
395         (on_notebook_page_close_button_leave),
396         (on_notebook_tab_btnrelease), (on_notebook_page_reordered),
397         (anjuta_docman_page_init), (anjuta_docman_page_new),
398         (on_open_filesel_response), (create_file_open_dialog_gui),
399         (anjuta_docman_save_document_as), (anjuta_docman_dispose),
400         (anjuta_docman_instance_init), (on_notebook_switch_page),
401         (on_document_destroy), (anjuta_docman_add_editor),
402         (anjuta_docman_add_document), (anjuta_docman_remove_document),
403         (anjuta_docman_set_current_document),
404         (anjuta_docman_goto_file_line_mark), (get_real_path),
405         (anjuta_docman_get_full_filename),
406         (anjuta_docman_delete_all_markers),
407         (anjuta_docman_delete_all_indicators),
408         (anjuta_docman_save_file_if_modified), (anjuta_docman_reload_file),
409         (anjuta_docman_order_tabs):
410         * plugins/document-manager/anjuta-docman.h:
411         * plugins/document-manager/file_history.c: (an_hist_file_new),
412         (an_file_history_push), (an_file_history_dump):
413         * plugins/document-manager/file_history.h:
414         * plugins/document-manager/plugin.c: (update_title),
415         (value_removed_project_root_uri),
416         (update_document_ui_interface_items), (menu_name_compare),
417         (on_document_added), (on_document_changed),
418         (on_window_key_press_event), (on_window_key_release_event),
419         (on_session_save):
420         * plugins/document-manager/search-box.c: (on_document_changed),
421         (on_goto_activated), (search_box_init), (search_box_new):
422         * plugins/document-manager/search-box.h:
424         Yet more code cleanups
425         Save glade files correctly in session
426         Use new tooltip API if available
427         Sort notebook pages when session is restored (needs work)
429 2007-12-16  Johannes Schmid <jhs@gnome.org>
431         * plugins/document-manager/anjuta-docman.c:
432         (anjuta_docman_add_document):
433         
434         Present correct widget with anjuta_shell_present_widget(). This got wrong when
435         the new search bar was introduced.
437 2007-12-12  Johannes Schmid <jhs@gnome.org>
438   
439         Patch from  Tom <tpgww@onepost.net>:
440         (#485233 – another bunch of docman cleanups)
441   
442         * libanjuta/interfaces/libanjuta.idl:
443         * plugins/document-manager/action-callbacks.c:
444         (get_current_document), (get_current_focus_widget),
445         (on_save_activate), (on_save_as_activate), (on_save_all_activate),
446         (on_close_file_activate), (on_close_all_file_activate),
447         (on_reload_file_activate), (on_print_activate),
448         (on_print_preview_activate),
449         (on_editor_command_upper_case_activate),
450         (on_editor_command_lower_case_activate),
451         (on_editor_command_eol_crlf_activate),
452         (on_editor_command_eol_lf_activate),
453         (on_editor_command_eol_cr_activate),
454         (on_editor_command_select_all_activate),
455         (on_editor_command_select_to_brace_activate),
456         (on_editor_command_select_block_activate),
457         (on_editor_command_match_brace_activate),
458         (on_editor_command_undo_activate),
459         (on_editor_command_redo_activate),
460         (on_editor_command_cut_activate),
461         (on_editor_command_paste_activate),
462         (on_editor_command_copy_activate),
463         (on_editor_command_clear_activate),
464         (on_editor_command_close_folds_all_activate),
465         (on_editor_command_open_folds_all_activate),
466         (on_editor_command_toggle_fold_activate),
467         (on_editor_command_bookmark_toggle_activate),
468         (on_editor_command_bookmark_first_activate),
469         (on_editor_command_bookmark_next_activate),
470         (on_editor_command_bookmark_prev_activate),
471         (on_editor_command_bookmark_last_activate),
472         (on_editor_command_bookmark_clear_activate),
473         (on_transform_eolchars1_activate), (on_comment_block),
474         (on_comment_box), (on_comment_stream),
475         (on_goto_block_start1_activate), (on_goto_block_end1_activate),
476         (on_zoom_in_text_activate), (on_zoom_out_text_activate),
477         (on_force_hilite_activate), (on_swap_activate),
478         (on_editor_add_view_activate), (on_editor_remove_view_activate):
479         * plugins/document-manager/action-callbacks.h:
480         * plugins/document-manager/anjuta-docman.c:
481         (on_notebook_page_close_button_click),
482         (on_notebook_page_close_button_enter),
483         (on_notebook_page_close_button_leave), (on_notebook_tab_btnpress),
484         (on_notebook_tab_btnrelease), (anjuta_docman_page_setup),
485         (anjuta_docman_page_new), (anjuta_docman_page_destroy),
486         (on_open_filesel_response), (anjuta_docman_open_file),
487         (anjuta_docman_save_document_as), (anjuta_docman_save_document),
488         (anjuta_docman_dispose), (anjuta_docman_instance_init),
489         (anjuta_docman_class_init), (anjuta_docman_new),
490         (on_notebook_switch_page), (on_document_save_point),
491         (on_document_destroy), (anjuta_docman_add_editor),
492         (anjuta_docman_add_document), (anjuta_docman_remove_document),
493         (anjuta_docman_set_popup_menu),
494         (anjuta_docman_get_current_focus_widget),
495         (anjuta_docman_get_page_for_document),
496         (anjuta_docman_get_current_document),
497         (anjuta_docman_set_current_document),
498         (anjuta_docman_goto_file_line),
499         (anjuta_docman_goto_file_line_mark),
500         (anjuta_docman_get_full_filename),
501         (anjuta_docman_present_notebook_page),
502         (anjuta_docman_update_page_label),
503         (anjuta_docman_delete_all_markers),
504         (anjuta_docman_delete_all_indicators),
505         (anjuta_docman_save_file_if_modified), (anjuta_docman_reload_file),
506         (do_ordertab1), (anjuta_docman_order_tabs),
507         (anjuta_docman_set_editor_properties),
508         (anjuta_docman_get_document_for_path),
509         (anjuta_docman_get_all_doc_widgets):
510         * plugins/document-manager/anjuta-docman.h:
511         * plugins/document-manager/editor-tooltips.c:
512         * plugins/document-manager/plugin.c: (update_title),
513         (update_document_ui_enable_all), (update_document_ui_disable_all),
514         (update_document_ui_save_items),
515         (update_document_ui_interface_items), (update_document_ui),
516         (on_document_update_save_ui), (update_status),
517         (on_document_update_ui), (on_document_added),
518         (on_document_changed), (on_session_save), (on_save_prompt),
519         (on_docman_auto_save), (on_gconf_notify_timer):
520         * plugins/document-manager/search-box.c: (on_document_changed),
521         (search_box_new), (search_box_grab_line_focus):
522         * plugins/glade/plugin.c: (ifile_open):
523         * plugins/project-manager/plugin.c: (project_manager_unload_gbf):
524         * plugins/search/search-replace_backend.c: (create_search_entries):
525         * plugins/sourceview/anjuta-document.c: (set_uri),
526         (anjuta_document_save):
527         * plugins/sourceview/sourceview.c: (ifile_savable_save):
528         * plugins/tools/editor.c: (on_editor_response):
530         The patch renames most stuff from "editor" or "te" to "doc where appropriate.
531         It fixes some issues with session handling and several memory lacks.
532         Gtk 2.12 Tooltip API is used if available.
534 2007-12-10  Sébastien Granjoux  <seb.sfo@free.fr>
536         * plugins/debug-manager/disassemble.c,
537         plugins/debug-manager/disassemble.h,
538         plugins/debug-manager/command.c,
539         plugins/debug-manager/command.h,
540         plugins/debug-manager/plugin.c
541         plugins/debug-manager/sparse_view.c,
542         plugins/debug-manager/sparse_view.h,
543         plugins/gdb/plugin.c,
544         plugins/gdb/debugger.c,
545         plugins/gdb/debugger.h,
546         libanjuta/interfaces/libanjuta.idl:
547         Fix bug #502533: Implement assembler step
549         * plugins/debug-manager/breakpoints.c:
550         Do not save temporary breakpoints
552         * plugins/debug-manager/stack_trace.c:
553         Fix a crash when a stack command is cancelled
555 2007-12-09  Sébastien Granjoux  <seb.sfo@free.fr>
557         * plugins/debug-manager/plugin.c,
558         plugins/debug-manager/breakpoints.c,
559         plugins/debug-manager/breakpoints.h:
560         Fix bug #488732: Breakpoint on delete lines
561         Breakpoints are now linked to their position in editor
563         * plugins/gdb/debugger.c:
564         Fix removing condition on breakpoint 
566 2007-12-07  Sébastien Granjoux  <seb.sfo@free.fr>
568         * plugins/debug-manager/anjuta-debug-manager.glade,
569         plugins/debug-manager/start.c,
570         plugins/gdb/plugin.c,
571         plugins/gdb/debugger.c,
572         plugins/gdb/debugger.h,
573         libanjuta/interfaces/libanjuta.idl:
574         Fix bug #481366: Do not stop at the beginning of the program
576         * plugins/debug-manager/command.c,
577         plugins/debug-manager/command.h,
578         plugins/debug-manager/breakpoints.c,
579         plugins/debug-manager/queue.c,
580         plugins/debug-manager/queue.h:
581         Fix a bug remove all breakpoints was not working due to latest changes
582         Setting breakpoints is disabled when program is running
584 2007-12-04  Sébastien Granjoux  <seb.sfo@free.fr>
586         * plugins/debug-manager/queue.c,
587         plugins/gdb/plugin.c:
588         Fix bug #501469: Crash if mime_type is unknown
590 2007-12-01  Massimo Cora'  <maxcvs@email.it>
592         * plugins/symbol-db/plugin.c: (on_editor_destroy),
593         (on_editor_update_ui), (on_single_file_scan_end),
594         (on_importing_project_end), (project_root_added),
595         (on_session_load), (symbol_db_activate), (symbol_db_instance_init):
596         * plugins/symbol-db/plugin.h:
597         show on status bar files being scanned.
599         * plugins/symbol-db/symbol-db-engine.c:
600         (sdb_engine_get_query_by_id), (sdb_engine_populate_db_by_tags),
601         (sdb_engine_ctags_output_thread),
602         (sdb_engine_timeout_trigger_signals), (sdb_engine_thread_monitor),
603         (sdb_engine_ctags_output_callback_1), (sdb_engine_scan_files_1),
604         (sdb_engine_init), (sdb_engine_finalize), (sdb_engine_class_init),
605         (sdb_engine_connect_to_db), (symbol_db_engine_db_exists),
606         (sdb_engine_get_table_id_by_unique_name2),
607         (symbol_db_engine_open_project),
608         (sdb_engine_prepare_executing_commands),
609         (symbol_db_engine_add_new_files), (sdb_engine_add_new_sym_type),
610         (sdb_engine_add_new_scope_definition), (sdb_engine_add_new_symbol),
611         (sdb_engine_detects_removed_ids),
612         (symbol_db_engine_get_class_parents),
613         (symbol_db_engine_get_global_members),
614         (symbol_db_engine_get_scope_members_by_symbol_id),
615         (symbol_db_engine_get_scope_members),
616         (symbol_db_engine_get_current_scope),
617         (symbol_db_engine_get_file_symbols),
618         (symbol_db_engine_get_symbol_info_by_id),
619         (symbol_db_engine_get_full_local_path),
620         (symbol_db_engine_find_symbol_by_name_pattern),
621         (symbol_db_engine_get_parent_scope_id_by_symbol_id):
622         * plugins/symbol-db/symbol-db-engine.h:
623         * plugins/symbol-db/symbol-db-view-locals.c:
624         (sdb_view_locals_init), (traverse_free_waiting_for), (on_scan_end),
625         (symbol_db_view_locals_recv_signals_from_engine),
626         (symbol_db_view_locals_update_list):
627         * plugins/symbol-db/symbol-db-view-locals.h:
628         * plugins/symbol-db/symbol-db-view.c: (traverse_free_waiting_for),
629         (on_scan_end), (trigger_on_symbol_inserted), (add_new_waiting_for),
630         (prepare_for_adding), (on_symbol_inserted), (sdb_view_init),
631         (symbol_db_view_recv_signals_from_engine), (symbol_db_view_open):
632         * plugins/symbol-db/symbol-db-view.h:
633         Added g_thread architecture to scan in background. With this you
634         can use Anjuta's GUI without freezing.
635         Improved insertion speed by using a paradigm like 'insert' and 'check'
636         replacing a 'check' and 'insert' one. This has been done for tables 
637         like symbol, scope, sym_type.
638         Fixed two crashers. 
640         * plugins/symbol-db/tables.sql:
641         * plugins/symbol-db/test/main.c: (get_global_members), (main),
642         (thread), (print_message), (bastard_thread), (idle_signals):
643         fixed a typo on tables that broke sql triggers.
645 === anjuta 2.3.1 ===
647 2007-12-02  Naba Kumar  <naba.kumar@gnome.org>
649         * NEWS, AUTHORS: Updated.
650         * src/Makefile.am: Fixed make distcheck
652         Patch from Yang Hong:
653         * plugins/file-manager/file-manager.glade: Fixed file chooser
654         size in file-manager preferences.
656 2007-12-02  Naba Kumar  <naba.kumar@gnome.org>
658         * NEWS: Updated for 2.3.1 development release
659         * configure.in: Bumped version to 2.3.1
661 2007-12-01  Sébastien Granjoux  <seb.sfo@free.fr>
663         * plugins/debug-manager/threads.c,
664         plugins/debug-manager/disassemble.c,
665         plugins/debug-manager/watch.c,
666         plugins/debug-manager/registers.c,
667         plugins/debug-manager/locals.c,
668         plugins/debug-manager/breakpoints.c,
669         plugins/debug-manager/stack_trace.c,
670         plugins/debug-manager/command.c,
671         plugins/debug-manager/command.h,
672         plugins/debug-manager/queue.c,
673         libanjuta/interfaces/libanjuta.idl:
674         Use different signals in IAnjutaDebugManager and IAnjutaDebugger
675         Document IAnjutaDebugManager signals
676         Generate new signals in queue.c
677         Use new signals in other files
679 2007-11-30  <genbell@tiscali.it>
681         reviewed by: Sébastien Granjoux  <seb.sfo@free.fr>
683         * plugins/gdb/Makefile.am:
684         Fix bug #500376
686 2007-11-29  Sébastien Granjoux  <seb.sfo@free.fr>
688         * plugins/tools/variable.c:
689         Fix a bug added in the previous patch (it is not a leak)
691 2007-11-29  Sébastien Granjoux  <seb.sfo@free.fr>
693         * plugins/project-wizard/druid.c,
694         plugins/project-wizard/templates/terminal.wiz,
695         plugins/project-wizard/templates/xlib-dock.wiz,
696         plugins/project-wizard/templates/wxwin.wiz,
697         plugins/project-wizard/templates/java.wiz,
698         plugins/project-wizard/templates/gnome.wiz,
699         plugins/project-wizard/templates/anjuta-plugin.wiz,
700         plugins/project-wizard/templates/gtkmm.wiz,
701         plugins/project-wizard/templates/python.wiz,
702         plugins/project-wizard/templates/cpp.wiz,
703         plugins/project-wizard/templates/sdl.wiz,
704         plugins/project-wizard/templates/gtk.wiz,
705         plugins/project-wizard/templates/minimal.wiz,
706         plugins/project-wizard/templates/xlib.wiz,
707         plugins/project-wizard/templates/gcj.wiz,
708         plugins/project-wizard/templates/translatable-strings.h,
709         plugins/project-import/project-import.c:
710         Partial Fix translation bugs #496833 comment 4,7,8,9,10,11 
712 2007-11-27  Sébastien Granjoux  <seb.sfo@free.fr>
714         * plugins/debug-manager/threads.c,
715         plugins/debug-manager/disassemble.c,
716         plugins/debug-manager/watch.c,
717         plugins/debug-manager/registers.c,
718         plugins/debug-manager/memory.c,
719         plugins/debug-manager/locals.c,
720         plugins/debug-manager/stack_trace.c,
721         plugins/debug-manager/queue.c,
722         plugins/debug-manager/queue.h:
723         Connect debugger signal only when program is loaded
724         Rename get_feature in is_supported
726         * plugins/debug-manager/plugin.c:
727         Remove editor watch when plugin is deactivated
729         * plugins/debug-manager/anjuta-debug-manager.glade,
730         plugins/debug-manager/breakpoints.c,
731         plugins/debug-manager/breakpoints.h:
732         Rewrite almost completely the breakpoint code
733         Improve breakpoint dialog
734         Reorganize function
735         Implement condition, hit count, ignore and temporary attribute
737         * plugins/debug-manager/command.c,
738         plugins/debug-manager/command.h:
739         Add a breakpoint list command
741         * plugins/gdb/debugger.c,
742         plugins/gdb/debugger.h:
743         Add new breakpoint list command
744         Fix parsing of breakpoint data
746         * libanjuta/interfaces/libanjuta.idl,
747         plugins/gdb/plugin.c:
748         Rename IAnjutaBreakpointDebugger into IAnjutaDebuggerBreakpoint
750 2007-11-23  Jaap Haitsma  <jaap@haitsma.org>
752         * plugins/document-manager/plugin.c:
753         Use Ctrl+Shift+s as shortcut for Save As
755 2007-11-22  Naba Kumar  <naba.kumar@gnome.org>
757         * plugins/subversion/plugin.c: (activate_plugin):
758         * plugins/symbol-db/plugin.c: (symbol_db_activate):
759         * src/layout.xml: Fixed dockitem positions.
761 2007-11-21  Naba Kumar  <naba.kumar@gnome.org>
763         Icons from tpgww@onepost.net:
764         * plugins/project-wizard/applogo.png:
765         Icons from patch in bug #480093 comment #23. Also renamed icons.
767         * plugins/message-view/Makefile.am:
768         * plugins/message-view/plugin.c: (register_stock_icons),
769         (ipreferences_merge): Removed redundant icon.
771         * plugins/document-manager/plugin.c:
772         (update_editor_ui_disable_all), (update_editor_ui_interface_items):
773         Do not insensitize New action when there is no document.
774         Indentation fixes.
776 2007-11-21  Naba Kumar  <naba.kumar@gnome.org>
778         Icons from tpgww@onepost.net:
779         * plugins/symbol-browser/an_symbol_prefs.c:
780         * pixmaps/Makefile.am:
781         * pixmaps/anjuta.png, pixmaps/anjuta_logo.png, pixmaps/anjuta.svg:
783         Icons from patch in bug #480093 comment #23. Also renamed icons.
784         To be continued..
786 2007-11-21  Naba Kumar  <naba.kumar@gnome.org>
788         Patch from James Liggett:
789         * plugins/subversion/anjuta-subversion.glade: Make commit, resolve,
790         revert and dialogs resizable.
792 2007-11-20  Naba Kumar  <naba.kumar@gnome.org>
794         Patch from James Liggett:
795         * plugins/subversion/anjuta-subversion.glade:
796         * plugins/subversion/subversion-diff-dialog.c:
797         (on_subversion_diff_response), (subversion_diff_dialog):
798         * plugins/subversion/subversion-diff-dialog.h:
800         The diff dialog should have a checkbox, enabled by default, that
801         allows the user to make sure that all open files are saved before
802         diffing.
804 2007-11-20  Naba Kumar  <naba.kumar@gnome.org>
806         * plugins/Makefile.am: Remove duplicate 'profiler' in SUBDIRS.
808         Icons from tpgww@onepost.net:
809         * pixmaps/Makefile.am:
810         * src/Makefile.am:
811         * src/anjuta-app.c:
812         * src/anjuta-preferences-general.svg:
814         Icons from patch in bug #480093 comment #23. Also renamed icons.
815         To be continued..
817 2007-11-19  Naba Kumar  <naba.kumar@gnome.org>
819         Icons from tpgww@onepost.net:
820         * plugins/debug-manager/images/Makefile.am:
821         * plugins/debug-manager/images/anjuta-watch.svg:
822         * plugins/debug-manager/plugin.c: (register_stock_icons):
823         * plugins/gdb/images/Makefile.am:
824         * plugins/gtodo/Makefile.am:
825         * plugins/gtodo/anjuta-gtodo-plugin.svg:
826         * plugins/gtodo/anjuta-gtodo.plugin.in:
827         * plugins/gtodo/interface.c: (stock_icons):
828         * plugins/gtodo/main.h:
829         * plugins/gtodo/plugin.c: (ipreferences_merge):
830         * plugins/terminal/Makefile.am:
831         * plugins/terminal/anjuta-terminal-plugin.svg:
832         * plugins/terminal/anjuta-terminal.plugin.in:
833         * plugins/terminal/terminal.c:
834         * plugins/tools/Makefile.am:
835         * plugins/tools/anjuta-tools-plugin.svg:
836         * plugins/tools/anjuta-tools.plugin.in:
837         * plugins/tools/plugin.c:
838         * plugins/valgrind/Makefile.am:
839         * plugins/valgrind/anjuta-valgrind-plugin.svg:
840         * plugins/valgrind/anjuta-valgrind.plugin.in:
841         * plugins/valgrind/plugin.c: (register_stock_icons),
842         (ipreferences_merge):
844         Icons from patch in bug #480093 comment #23. Also renamed icons.
845         To be continued..
847 2007-11-18  Massimo Cora'   <maxcvs@email.it>
849         reviewed by: Johannes Schmid <jhs@gnome.org>
851         * configure.in:
852         required gda version to 3.1.3. [svn trunk]. Without this Anjuta can crash
853         due to bug #493360. Still present anyway bug #495843
855         * plugins/symbol-db/plugin.c: (goto_local_tree_iter),
856         (goto_global_tree_iter), (on_treesearch_symbol_selected_event),
857         (on_local_treeview_row_activated),
858         (on_global_treeview_row_activated),
859         (on_global_treeview_row_expanded), (on_project_element_added),
860         (on_project_element_removed), (project_root_added),
861         (symbol_db_activate), (isymbol_manager_search),
862         (isymbol_manager_get_members),
863         (isymbol_manager_get_completions_at_position):
864         * plugins/symbol-db/symbol-db-engine-iterator-node.c:
865         (symbol_db_engine_iterator_node_get_symbol_extra_string):
866         * plugins/symbol-db/symbol-db-engine.c:
867         (sdb_engine_execute_non_select_sql),
868         (sdb_engine_execute_select_sql), (sdb_engine_get_query_by_id),
869         (sdb_engine_free_cached_queries), (sdb_engine_disconnect_from_db),
870         (sdb_engine_populate_db_by_tags), (sdb_engine_scan_files_1),
871         (sdb_engine_create_db_tables), (symbol_db_engine_open_db),
872         (symbol_db_engine_add_new_workspace),
873         (symbol_db_engine_add_new_project),
874         (symbol_db_engine_add_new_files), (sdb_engine_add_new_symbol),
875         (sdb_engine_detects_removed_ids),
876         (sdb_engine_walk_down_scope_path),
877         (symbol_db_engine_get_class_parents),
878         (symbol_db_engine_get_global_members),
879         (symbol_db_engine_get_scope_members_by_symbol_id),
880         (symbol_db_engine_get_scope_members),
881         (symbol_db_engine_get_current_scope),
882         (symbol_db_engine_get_file_symbols),
883         (symbol_db_engine_get_symbol_info_by_id),
884         (symbol_db_engine_find_symbol_by_name_pattern):
885         * plugins/symbol-db/symbol-db-engine.h:
886         * plugins/symbol-db/symbol-db-view-locals.c: (on_symbol_removed),
887         (on_symbol_inserted), (symbol_db_view_locals_update_list):
888         * plugins/symbol-db/symbol-db-view.c: (waiting_for_symbol_destroy),
889         (sdb_view_get_iter_from_row_ref), (traverse_free_waiting_for),
890         (on_scan_end), (do_add_root_symbol_to_view),
891         (do_add_child_symbol_to_view), (add_waiting_for_symbol_to_view),
892         (trigger_on_symbol_inserted), (add_new_waiting_for),
893         (do_recurse_subtree_and_invalidate), (prepare_for_adding),
894         (on_symbol_inserted), (do_recurse_subtree_and_remove),
895         (on_symbol_removed), (sdb_view_do_add_hidden_dummy_child),
896         (symbol_db_view_row_expanded), (sdb_view_init),
897         (gtree_compare_func), (sdb_view_finalize),
898         (sdb_view_load_symbol_pixbufs), (symbol_db_view_get_file_and_line),
899         (sdb_view_populate_base_root),
900         (sdb_view_build_and_display_base_tree), (symbol_db_view_open):
901         * plugins/symbol-db/symbol-db-view.h:
902         * plugins/symbol-db/tables.sql:
903         * plugins/symbol-db/test/Makefile.am:
904         * plugins/symbol-db/test/main.c: (dump_iterator), (get_parents),
905         (get_scope_members), (get_current_scope), (get_global_members),
906         (get_file_symbols), (get_info_by_id), (main):
908         Rewrote symbol-db-view global tab. Now every expandable node is a query.
909         Started using LIMIT keyword to speed up things.
910         Deprecated GdaCommand in favour of GdaQuery into engine. This should
911         make providers use prepared statements.
913 2007-11-19  Naba Kumar  <naba.kumar@gnome.org>
915         Patch from James Liggett:
916         * plugins/subversion/plugin.c: (subversion_instance_init):
917         * plugins/subversion/plugin.h:
918         * plugins/subversion/subversion-diff-dialog.c:
919         (on_subversion_diff_response), (subversion_diff_dialog),
920         (on_menu_subversion_diff):
921         * plugins/subversion/subversion-log-dialog.c:
922         (on_log_view_selected_button_clicked),
923         (on_log_diff_selected_button_clicked),
924         (on_log_diff_previous_button_clicked),
925         (subversion_log_window_create):
926         * plugins/subversion/subversion-ui-utils.c:
927         (get_filename_from_full_path), (init_whole_project),
928         (on_whole_project_toggled):
929         * plugins/subversion/subversion-ui-utils.h:
930         * plugins/subversion/subversion-update-dialog.c:
931         (subversion_update_dialog), (on_menu_subversion_update):
933         Whole Project checkbox enabled by default in diff and update dialogs.
934         changes the editor names for diff editors to something much more
935         descriptive. For example, working copy/head diffs would have an editor
936         with a name like "[Working Copy/Head] some-file.diff," where some-file
937         is the name of the file/directory that was diffed. For diffs against
938         arbitrary diffs the name would look like "[Revisions 2832/3200]
939         some-file.diff" for a diff of some-file between revisions 2832 and
940         3200.
942 2007-11-19  Naba Kumar  <naba.kumar@gnome.org>
944         Icons from tpgww@onepost.net:
945         * plugins/subversion/Makefile.am:
946         * plugins/subversion/anjuta-subversion-plugin.svg:
947         * plugins/subversion/anjuta-subversion.plugin.in:
948         * plugins/subversion/plugin.h:
949         * plugins/symbol-browser/Makefile.am:
950         * plugins/symbol-browser/anjuta-symbol-browser-plugin.svg:
951         * plugins/symbol-browser/anjuta-symbol-browser.plugin.in:
952         * plugins/symbol-browser/plugin.c:
953         * plugins/symbol-db/Makefile.am:
954         * plugins/symbol-db/plugin.c:
955         * plugins/symbol-db/symbol-db.plugin.in:
957         Icons from patch in bug #480093 comment #23. Also renamed icons.
958         To be continued..
960 2007-11-18  Naba Kumar  <naba.kumar@gnome.org>
962         Icons from tpgww@onepost.net:
963         * plugins/project-manager/Makefile.am:
964         * plugins/project-manager/anjuta-project-manager-plugin.svg:
965         * plugins/project-manager/anjuta-project-manager.plugin.in:
966         * plugins/project-manager/plugin.c:
967         * plugins/project-wizard/Makefile.am:
968         * plugins/project-wizard/anjuta-project-wizard-plugin.svg:
969         * plugins/project-wizard/anjuta-project-wizard.plugin.in:
970         * plugins/project-wizard/druid.h:
971         * plugins/search/Makefile.am:
972         * plugins/search/anjuta-search-plugin.svg:
973         * plugins/search/anjuta-search.plugin.in:
974         * plugins/search/plugin.c:
976         Icons from patch in bug #480093 comment #23. Also renamed icons.
977         To be continued..
979 2007-11-18  Naba Kumar  <naba.kumar@gnome.org>
981         * TODO.tasks: updated.
983         Icons from tpgww@onepost.net:
984         * plugins/file-loader/Makefile.am:
985         * plugins/file-loader/anjuta-loader-plugin.svg:
986         * plugins/file-loader/anjuta-loader.plugin.in:
987         * plugins/file-manager/Makefile.am:
988         * plugins/file-manager/anjuta-file-manager-plugin.svg:
989         * plugins/file-manager/file-manager.plugin.in:
990         * plugins/file-manager/plugin.c:
991         * plugins/glade/Makefile.am:
992         * plugins/glade/anjuta-glade-plugin.svg:
993         * plugins/glade/anjuta-glade.plugin.in:
994         * plugins/glade/plugin.c: (register_stock_icons):
995         * plugins/language-manager/Makefile.am:
996         * plugins/language-manager/anjuta-language-manager-plugin.svg:
997         * plugins/language-manager/language-manager.plugin.in:
998         * plugins/message-view/Makefile.am:
999         * plugins/message-view/anjuta-message-manager.plugin.in:
1000         * plugins/message-view/anjuta-messages-plugin.svg:
1001         * plugins/message-view/plugin.c:
1002         * plugins/patch/Makefile.am:
1003         * plugins/patch/anjuta-patch-plugin.svg:
1004         * plugins/patch/anjuta-patch.plugin.in:
1005         * plugins/patch/plugin.c:
1006         * plugins/profiler/Makefile.am:
1007         * plugins/profiler/anjuta-profiler-plugin.svg:
1008         * plugins/profiler/plugin.c: (register_stock_icons):
1009         * plugins/profiler/profiler.plugin.in:
1010         * plugins/project-import/Makefile.am:
1011         * plugins/project-import/anjuta-project-import-plugin.svg:
1012         * plugins/project-import/anjuta-project-import.plugin.in:
1013         * plugins/project-import/plugin.c:
1015         Icons from patch in bug #480093 comment #23. Also renamed icons.
1016         To be continued..
1018 2007-11-18  Johannes Schmid <jhs@gnome.org>
1020         * plugins/build-basic-autotools/build-basic-autotools.c:
1021         (build_regex_init):
1022         * plugins/debug-manager/anjuta-debug-manager.glade:
1023         * plugins/debug-manager/breakpoints.c:
1024         * plugins/debug-manager/sharedlib.c: (create_sharedlibs_gui):
1025         * plugins/file-wizard/file.c:
1026         * plugins/gdb/anjuta-gdb.glade:
1027         * plugins/glade/plugin.c: (ifile_open):
1028         * plugins/gtodo/egg-datetime.c: (egg_datetime_class_init):
1029         * plugins/gtodo/mcategory.c: (category_manager_add_item):
1030         * plugins/gtodo/tray-icon.c:
1031         * plugins/macro/macro-util.c: (get_date_Ymd), (get_date_Y):
1032         * plugins/macro/macros.xml:
1033         * plugins/symbol-browser/anjuta-symbol-browser-plugin.glade:
1034         Fixed translation bugs (#496833, #488211 and #497758)
1035         
1036         * plugins/document-manager/plugin.c: (on_editor_changed):
1037         Removed unused code
1039 2007-11-17  Naba Kumar  <naba.kumar@gnome.org>
1041         Icons from tpgww@onepost.net:
1042         * plugins/devhelp/Makefile.am:
1043         * plugins/devhelp/anjuta-devhelp-plugin.svg:
1044         * plugins/devhelp/anjuta-devhelp.plugin.in:
1045         * plugins/devhelp/plugin.c:
1046         * plugins/document-manager/anjuta-document-manager.plugin.in:
1047         * plugins/document-manager/images/Makefile.am:
1048         * plugins/document-manager/images/anjuta-document-manager-plugin.svg:
1049         * plugins/document-manager/plugin.c:
1050         * plugins/editor/Makefile.am:
1051         * plugins/editor/anjuta-editor-scintilla-plugin.svg:
1052         * plugins/editor/anjuta-editor.plugin.in:
1053         * plugins/editor/plugin.c:
1054         * plugins/sample1/Makefile.am:
1055         * plugins/sample1/anjuta-sample-plugin.svg:
1056         * plugins/sample1/anjuta-sample.plugin.in:
1057         * plugins/sourceview/Makefile.am:
1058         * plugins/sourceview/plugin.c:
1059         * plugins/sourceview/sourceview.plugin.in:
1061         Icons from patch in bug #480093 comment #23. Also renamed icons.
1062         To be continued..
1064 2007-11-17  Naba Kumar  <naba.kumar@gnome.org>
1066         * TODO.tasks: Updated.
1068         Icons from tpgww@onepost.net:
1069         * plugins/build-basic-autotools/Makefile.am:
1070         * plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin.svg:
1071         * plugins/build-basic-autotools/anjuta-build-basic-autotools.plugin.in:
1072         * plugins/build-basic-autotools/build-basic-autotools.c:
1073         * plugins/class-inheritance/Makefile.am:
1074         * plugins/class-inheritance/anjuta-class-inheritance-plugin.svg:
1075         * plugins/class-inheritance/anjuta-class-inheritance.plugin.in:
1076         * plugins/class-inheritance/plugin.c:
1077         * plugins/cvs-plugin/Makefile.am:
1078         * plugins/cvs-plugin/anjuta-cvs-plugin.svg:
1079         * plugins/cvs-plugin/anjuta-cvs.plugin.in:
1080         * plugins/cvs-plugin/plugin.c:
1081         * plugins/debug-manager/anjuta-debug-manager.plugin.in:
1082         * plugins/debug-manager/images/Makefile.am:
1083         * plugins/debug-manager/images/anjuta-debug-manager-plugin.svg:
1084         * plugins/debug-manager/plugin.c: 
1086         Icons from patch in bug #480093 comment #23. Also renamed icons.
1087         To be continued..
1089 2007-11-07  Sébastien Granjoux  <seb.sfo@free.fr>
1091         * (removed) libanjuta/anjuta-children.c,
1092         (removed) libanjuta/anjuta-children.h,
1093         libanjuta/anjuta-launcher.c,
1094         libanjuta/libanjuta.h,
1095         libanjuta/Makefile.am,
1096         plugins/gdb/debugger.c,
1097         plugins/terminal/terminal.c,
1098         manuals/reference/libanjuta/libanjuta-sections.txt,
1099         manuals/reference/libanjuta/libanjuta-docs.sgml:
1100         Replace anjuta_children_register by g_child_watch_add
1102 2007-11-13  Johannes Schmid <jhs@gnome.org>
1104         * plugins/subversion/anjuta-subversion.glade:
1105         * plugins/subversion/subversion-commit-dialog.c:
1106         (subversion_commit_dialog):
1107         * plugins/subversion/subversion-resolve-dialog.c:
1108         (subversion_resolve_dialog):
1109         * plugins/subversion/subversion-revert-dialog.c:
1110         (subversion_revert_dialog):
1111         * plugins/subversion/subversion-ui-utils.c: (status_pulse_timer),
1112         (pulse_timer), (status_bar_progress_pulse), (pulse_progress_bar),
1113         (hide_pulse_progress_bar):
1114         * plugins/subversion/subversion-ui-utils.h:
1116         Yet another patch from #457477:
1117         Add a pulsing progress bar to all dialogs receiving status
1119 2007-11-12  Johannes Schmid <jhs@gnome.org>
1121         * plugins/document-manager/plugin.c: (create_highlight_submenu):
1122         Bug 493583 – crash in Anjuta IDE: trying to open a file
1123         
1124         * plugins/subversion/subversion-commit-dialog.c:
1125         (select_all_files), (subversion_commit_dialog):
1126         Patch from jrligget - see #457477
1128 2007-11-12  Johannes Schmid <jhs@gnome.org>
1130         Patch from Marc Lorber <Lorber.Marc@wanodoo.fr>:
1131         * libanjuta/anjuta-plugin-handle.c:
1132         (anjuta_plugin_handle_get_about):
1133         Bug 495536 – Plugins localization improvement
1134         
1135         Patch from Gabor Kelemeng <kelemeng@gnome.hu>:
1136         * plugins/class-gen/anjuta-class-gen-plugin.glade:
1137         * plugins/indent/indent.glade:
1138         * plugins/subversion/anjuta-subversion.glade:
1139         Bug 495245 – Strings bug
1141 2007-11-08  James Liggett  <jrliggett@cox.net>
1143         reviewed by: Johannes Schmid <jhs@gnome.org>
1145         * libanjuta/anjuta-async-command.c: (anjuta_async_command_init),
1146         (anjuta_async_command_finalize),
1147         (anjuta_async_command_notification_poll),
1148         (anjuta_async_command_thread), (start_command),
1149         (notify_data_arrived), (notify_complete),
1150         (anjuta_async_command_class_init),
1151         (anjuta_async_command_set_error_message),
1152         (anjuta_async_command_get_error_message),
1153         (anjuta_async_command_lock), (anjuta_async_command_unlock):
1154         * libanjuta/anjuta-async-command.h:
1155         * libanjuta/anjuta-command.c: (anjuta_command_init),
1156         (anjuta_command_finalize), (anjuta_command_class_init),
1157         (anjuta_command_start), (anjuta_command_notify_data_arrived),
1158         (anjuta_command_notify_complete),
1159         (anjuta_command_set_error_message),
1160         (anjuta_command_get_error_message):
1161         * libanjuta/anjuta-command.h:
1162         * libanjuta/anjuta-glade-catalog.c:
1163         * libanjuta/anjuta-glade.xml:
1164         * libanjuta/anjuta-vcs-status-tree-view.c:
1165         (on_selected_column_toggled),
1166         (anjuta_vcs_status_tree_view_create_columns),
1167         (anjuta_vcs_status_tree_view_init),
1168         (anjuta_vcs_status_tree_view_finalize),
1169         (anjuta_vcs_status_tree_view_set_property),
1170         (anjuta_vcs_status_tree_view_get_property),
1171         (anjuta_vcs_status_tree_view_class_init),
1172         (anjuta_vcs_status_tree_view_new),
1173         (anjuta_vcs_status_tree_view_destroy),
1174         (anjuta_vcs_status_tree_view_add), (select_all_paths),
1175         (anjuta_vcs_status_tree_view_select_all), (unselect_all_paths),
1176         (anjuta_vcs_status_tree_view_unselect_all),
1177         (create_selected_paths_list),
1178         (anjuta_vcs_status_tree_view_get_selected):
1179         * libanjuta/anjuta-vcs-status-tree-view.h:
1180         * libanjuta/anjuta-widgets.c: (glade_module_register_widgets):
1181         * libanjuta/anjuta-widgets.h:
1182         * plugins/subversion/subversion-add-dialog.c:
1183         (on_add_command_finished), (on_subversion_add_response),
1184         (subversion_add_dialog), (on_menu_subversion_add),
1185         (on_fm_subversion_add):
1186         * plugins/subversion/subversion-add-dialog.h:
1187         * plugins/subversion/subversion-commit-dialog.c:
1188         (on_commit_command_finished), (on_subversion_commit_response),
1189         (subversion_commit_dialog), (on_menu_subversion_commit),
1190         (on_fm_subversion_commit):
1191         * plugins/subversion/subversion-commit-dialog.h:
1192         * plugins/subversion/subversion-copy-dialog.c:
1193         (on_copy_other_revision_radio_toggled),
1194         (on_copy_browse_button_clicked), (on_copy_dest_entry_focus_in),
1195         (on_copy_command_finished), (on_subversion_copy_response),
1196         (subversion_copy_dialog), (on_menu_subversion_copy),
1197         (on_fm_subversion_copy):
1198         * plugins/subversion/subversion-copy-dialog.h:
1199         * plugins/subversion/subversion-diff-dialog.c: (on_editor_destroy),
1200         (on_subversion_diff_response), (subversion_diff_dialog),
1201         (on_menu_subversion_diff), (on_fm_subversion_diff):
1202         * plugins/subversion/subversion-diff-dialog.h:
1203         * plugins/subversion/subversion-log-dialog.c:
1204         (on_diff_selected_column_toggled), (create_columns),
1205         (on_log_command_finished), (on_log_view_button_clicked),
1206         (on_cat_command_data_arrived), (on_cat_command_finished),
1207         (on_log_view_selected_button_clicked), (get_selected_revisions),
1208         (on_log_diff_selected_button_clicked),
1209         (on_log_diff_previous_button_clicked),
1210         (on_subversion_log_vbox_destroy),
1211         (on_log_changes_view_row_selected), (subversion_log_window_create),
1212         (on_menu_subversion_log), (on_fm_subversion_log),
1213         (subversion_log_set_whole_project_sensitive):
1214         * plugins/subversion/subversion-log-dialog.h:
1215         * plugins/subversion/subversion-merge-dialog.c:
1216         (on_merge_command_finished), (on_subversion_merge_response),
1217         (on_merge_first_path_browse_button_clicked),
1218         (on_merge_second_path_browse_button_clicked),
1219         (on_merge_use_first_path_check_toggled),
1220         (on_merge_start_revision_radio_toggled),
1221         (on_merge_end_revision_radio_toggled), (subversion_merge_dialog),
1222         (on_menu_subversion_merge):
1223         * plugins/subversion/subversion-merge-dialog.h:
1224         * plugins/subversion/subversion-remove-dialog.c:
1225         (on_remove_command_finished),
1226         (on_remove_path_browse_button_clicked),
1227         (on_subversion_remove_response), (subversion_remove_dialog),
1228         (on_menu_subversion_remove), (on_fm_subversion_remove):
1229         * plugins/subversion/subversion-remove-dialog.h:
1230         * plugins/subversion/subversion-resolve-dialog.c:
1231         (on_resolve_command_finished), (on_subversion_resolve_response),
1232         (subversion_resolve_dialog), (on_menu_subversion_resolve):
1233         * plugins/subversion/subversion-resolve-dialog.h:
1234         * plugins/subversion/subversion-revert-dialog.c:
1235         (on_revert_command_finished), (on_subversion_revert_response),
1236         (subversion_revert_dialog), (on_menu_subversion_revert):
1237         * plugins/subversion/subversion-revert-dialog.h:
1238         * plugins/subversion/subversion-switch-dialog.c:
1239         (on_switch_other_revision_radio_toggled),
1240         (on_switch_command_finished), (on_subversion_switch_response),
1241         (subversion_switch_dialog), (on_menu_subversion_switch):
1242         * plugins/subversion/subversion-switch-dialog.h:
1243         * plugins/subversion/subversion-ui-utils.c: (subversion_data_new),
1244         (subversion_data_free), (on_mesg_view_destroy),
1245         (create_message_view), (check_filename), (get_log_from_textview),
1246         (pulse_timer), (on_pulse_timer_destroyed),
1247         (status_bar_progress_pulse), (clear_status_bar_progress_pulse),
1248         (report_errors), (on_status_command_finished),
1249         (on_status_command_data_arrived), (on_command_info_arrived),
1250         (select_all_status_items), (clear_all_status_selections),
1251         (init_whole_project), (on_whole_project_toggled),
1252         (send_diff_command_output_to_editor), (on_diff_command_finished),
1253         (stop_status_bar_progress_pulse):
1254         * plugins/subversion/subversion-ui-utils.h:
1255         * plugins/subversion/subversion-update-dialog.c:
1256         (on_update_command_finished), (on_subversion_update_response),
1257         (subversion_update_dialog), (on_menu_subversion_update),
1258         (on_fm_subversion_update):
1259         * plugins/subversion/subversion-update-dialog.h:
1260         * plugins/subversion/svn-add-command.c: (svn_add_command_init),
1261         (svn_add_command_finalize), (svn_add_command_run),
1262         (svn_add_command_class_init), (svn_add_command_new),
1263         (svn_add_command_destroy):
1264         * plugins/subversion/svn-add-command.h:
1265         * plugins/subversion/svn-cat-command.c: (svn_cat_command_init),
1266         (svn_cat_command_finalize), (svn_cat_command_run),
1267         (svn_cat_command_class_init), (svn_cat_command_new),
1268         (svn_cat_command_destroy), (svn_cat_command_get_output):
1269         * plugins/subversion/svn-cat-command.h:
1270         * plugins/subversion/svn-command.c: (svn_command_acquire_ui_lock),
1271         (svn_command_release_ui_lock), (simple_prompt),
1272         (ssl_server_trust_prompt), (svn_auth_simple_prompt_func_cb),
1273         (svn_auth_ssl_server_trust_prompt_func_cb),
1274         (svn_auth_ssl_client_cert_prompt_func_cb),
1275         (svn_auth_ssl_client_cert_pw_prompt_func_cb), (on_svn_notify),
1276         (svn_command_init), (svn_command_finalize),
1277         (svn_command_class_init), (svn_command_push_info),
1278         (svn_command_get_info_queue), (svn_command_set_error),
1279         (svn_command_get_client_context), (svn_command_get_pool),
1280         (svn_command_lock_ui), (svn_command_unlock_ui),
1281         (svn_command_get_revision), (svn_command_copy_path_list),
1282         (svn_command_free_path_list):
1283         * plugins/subversion/svn-command.h:
1284         * plugins/subversion/svn-commit-command.c: (on_log_callback),
1285         (svn_commit_command_init), (svn_commit_command_finalize),
1286         (svn_commit_command_run), (svn_commit_command_class_init),
1287         (svn_commit_command_new), (svn_commit_command_destroy):
1288         * plugins/subversion/svn-commit-command.h:
1289         * plugins/subversion/svn-copy-command.c: (on_log_callback),
1290         (svn_copy_command_init), (svn_copy_command_finalize),
1291         (svn_copy_command_run), (svn_copy_command_class_init),
1292         (svn_copy_command_new), (svn_copy_command_destroy):
1293         * plugins/subversion/svn-copy-command.h:
1294         * plugins/subversion/svn-diff-command.c: (svn_diff_command_init),
1295         (svn_diff_command_finalize), (svn_diff_command_run),
1296         (svn_diff_command_class_init), (svn_diff_command_new),
1297         (svn_diff_command_destroy), (svn_diff_command_get_output):
1298         * plugins/subversion/svn-diff-command.h:
1299         * plugins/subversion/svn-log-command.c: (svn_log_command_init),
1300         (svn_log_command_finalize), (log_callback), (svn_log_command_run),
1301         (svn_log_command_class_init), (svn_log_command_new),
1302         (svn_log_command_destroy), (svn_log_command_get_entry_queue):
1303         * plugins/subversion/svn-log-command.h:
1304         * plugins/subversion/svn-log-entry.c: (svn_log_entry_init),
1305         (svn_log_entry_finalize), (svn_log_entry_class_init),
1306         (strip_whitespace), (svn_log_entry_new), (svn_log_entry_destroy),
1307         (svn_log_entry_get_author), (svn_log_entry_get_date),
1308         (svn_log_entry_get_revision), (svn_log_entry_get_short_log),
1309         (svn_log_entry_get_full_log):
1310         * plugins/subversion/svn-log-entry.h:
1311         * plugins/subversion/svn-merge-command.c: (svn_merge_command_init),
1312         (svn_merge_command_finalize), (svn_merge_command_run),
1313         (svn_merge_command_class_init), (svn_merge_command_new),
1314         (svn_merge_command_destroy):
1315         * plugins/subversion/svn-merge-command.h:
1316         * plugins/subversion/svn-remove-command.c: (on_log_callback),
1317         (svn_remove_command_init), (svn_remove_command_finalize),
1318         (svn_remove_command_run), (svn_remove_command_class_init),
1319         (svn_remove_command_new), (svn_remove_command_destroy),
1320         (svn_remove_command_get_path):
1321         * plugins/subversion/svn-remove-command.h:
1322         * plugins/subversion/svn-resolve-command.c:
1323         (svn_resolve_command_init), (svn_resolve_command_finalize),
1324         (svn_resolve_command_run), (svn_resolve_command_class_init),
1325         (svn_resolve_command_new), (svn_resolve_command_destroy):
1326         * plugins/subversion/svn-resolve-command.h:
1327         * plugins/subversion/svn-revert-command.c:
1328         (svn_revert_command_init), (svn_revert_command_finalize),
1329         (svn_revert_command_run), (svn_revert_command_class_init),
1330         (svn_revert_command_new), (svn_revert_command_destroy):
1331         * plugins/subversion/svn-revert-command.h:
1332         * plugins/subversion/svn-status-command.c:
1333         (svn_status_command_init), (svn_status_command_finalize),
1334         (on_svn_status_notify), (svn_status_command_run),
1335         (svn_status_command_class_init), (svn_status_command_new),
1336         (svn_status_command_destroy),
1337         (svn_status_command_get_status_queue):
1338         * plugins/subversion/svn-status-command.h:
1339         * plugins/subversion/svn-status.c: (svn_status_init),
1340         (svn_status_finalize), (svn_status_class_init), (svn_status_new),
1341         (svn_status_destroy), (svn_status_get_path),
1342         (svn_status_get_vcs_status):
1343         * plugins/subversion/svn-status.h:
1344         * plugins/subversion/svn-switch-command.c:
1345         (svn_switch_command_init), (svn_switch_command_finalize),
1346         (svn_switch_command_run), (svn_switch_command_class_init),
1347         (svn_switch_command_new), (svn_switch_command_destroy):
1348         * plugins/subversion/svn-switch-command.h:
1349         * plugins/subversion/svn-update-command.c:
1350         (svn_update_command_init), (svn_update_command_finalize),
1351         (svn_update_command_run), (svn_update_command_class_init),
1352         (svn_update_command_new), (svn_update_command_destroy):
1353         * plugins/subversion/svn-update-command.h:
1355         Now really committed all files from James patch (#457477)
1357 2007-11-08  Johannes Schmid <jhs@gnome.org>
1359         * TODO.tasks: Updated
1361 2007-11-08  James Liggett  <jrliggett@cox.net>
1363         reviewed by: Johannes Schmid <jhs@gnome.org>
1365         * configure.in:
1366         * libanjuta/Makefile.am:
1367         * libanjuta/anjuta-status.c: (anjuta_status_progress_pulse):
1368         * libanjuta/anjuta-status.h:
1369         * libanjuta/libanjuta.h:
1370         * plugins/subversion/Makefile.am:
1371         * plugins/subversion/anjuta-subversion.glade:
1372         * plugins/subversion/anjuta-subversion.ui:
1373         * plugins/subversion/plugin.c: (value_added_project_root_uri),
1374         (value_removed_project_root_uri), (activate_plugin),
1375         (deactivate_plugin), (finalize), (subversion_instance_init):
1376         * plugins/subversion/plugin.h:
1377         * plugins/subversion/subversion-actions.c:
1378         * plugins/subversion/subversion-actions.h:
1379         * plugins/subversion/subversion-callbacks.c:
1380         * plugins/subversion/subversion-callbacks.h:
1381         * plugins/subversion/svn-auth.c:
1382         * plugins/subversion/svn-auth.h:
1383         * plugins/subversion/svn-backend-priv.h:
1384         * plugins/subversion/svn-backend.c:
1385         * plugins/subversion/svn-backend.h:
1386         * plugins/subversion/svn-notify.c:
1387         * plugins/subversion/svn-notify.h:
1388         * plugins/subversion/svn-thread.c:
1389         * plugins/subversion/svn-thread.h:
1390         
1391         Commited alpha2 of the new subversion plugin (#457477)
1393 2007-11-07  Sébastien Granjoux  <seb.sfo@free.fr>
1395         * plugins/debug-manager/command.c:
1396         Fix a stupid crash when changing a register value
1398 2007-11-07  Sébastien Granjoux  <seb.sfo@free.fr>
1400         * libanjuta/interfaces/libanjuta.idl,
1401         plugins/debug-manager/command.c,
1402         plugins/debug-manager/command.h,
1403         plugins/debug-manager/start.c,
1404         plugins/gdb/plugin.c,
1405         plugins/gdb/debugger.c,
1406         plugins/gdb/debugger.h:
1407         Use anjuta terminal plugin instead of gnome terminal
1408         Select if a terminal is used in the the start_program function
1409         Move terminal code from debugger.c to plugin.c
1410         Partial fix of bug #481366
1412         * plugins/gdb/utilities.c,
1413         plugins/gdb/utilities.h:
1414         Remove gnome terminal check function
1416 2007-11-06  Johannes Schmid <jhs@gnome.org>
1418         * plugins/project-import/anjuta-project-import.glade:
1419         * plugins/project-import/project-import.c: (on_import_next),
1420         (on_import_finish), (project_import_set_directory):
1421         * plugins/project-wizard/property.c: (npw_property_create_widget),
1422         (npw_property_set_value_from_widget):
1423         
1424         Replaced gnome_file_entry with gtk_file_chooser_button
1425         Fixes #422329 – Creating a new directory in program options doesn't work
1426         
1427 2007-11-04  Massimo Cora' <maxcvs@email.it>
1429         * plugins/symbol-db/plugin.c:
1430         add all files at once on project_import.
1431         No need to split them into more languages: ctags
1432         and the engine will take care of that.
1434         * plugins/symbol-db/symbol-db-engine.h,
1435         * plugins/symbol-db/symbol-db-engine.c,
1436         * plugins/symbol-db/tables.sql,
1437         * plugins/symbol-db/test/Makefile.am,
1438         * plugins/symbol-db/test/main.c,
1439         * plugins/symbol-db/symbol-db-view-locals.c:
1440         some memory leaks fixed. Ported the thing to
1441         libgda 3.1.2 [or better svn HEAD].
1442         Thanks to a fresh new algorithm to detect
1443         parent scope we're able to display correcly
1444         a local gtktree, including classes not directly
1445         defined inside that file.
1447 2007-11-04  Sébastien Granjoux  <seb.sfo@free.fr>
1449         * plugins/debug-manager/threads.c,
1450         plugins/debug-manager/stack_trace.c:
1451         Do not display address when not needed
1453         * plugins/debug-manager/plugin.c,
1454         plugins/debug-manager/breakpoints.c:
1455         Breakpoints directly connect to debugger signals
1457         * plugins/debug-manager/watch.c:
1458         program-unload signal does not exist used debugger-stopped
1460         * plugins/debug-manager/queue.c,
1461         libanjuta/interfaces/libanjuta.idl:
1462         Display error message returned by debugger command
1463         Add new error codes
1465 2007-11-04  Johannes Schmid <jhs@gnome.org>
1467         * plugins/project-wizard/templates/gcj/configure.ac.tpl:
1468         Bug 493062 – gcj template needs AC_PROG_CC
1469         (thanks to Bruno Cigic <bruno.cigic@gmail.com>)
1471         * src/anjuta-actions.h:
1472         Bug 493212 – Use GTK_STOCK_ABOUT i.s.o. deprecated GNOME_STOCK_ABOUT
1473         (thanks to Jaap A. Haitsma <jaap@haitsma.org>)
1475 === anjuta 2.3.0 ===
1477 2007-11-02  Naba Kumar  <naba.kumar@gnome.org>
1479         * AUTHORS: Updated
1481 2007-11-01  Naba Kumar  <naba.kumar@gnome.org>
1483         * ChangeLog: Tagged 2.3.0 release.
1485         * plugins/indent/Makefile.am: Fixed indentation.
1487         * plugins/editor/aneditor-autocomplete.cxx:
1488         * plugins/editor/aneditor-priv.h:
1489         * plugins/editor/aneditor.cxx:
1490         * plugins/editor/aneditor.h: Commented out dead codes.
1492         * configure.in, plugins/symbol-db/symbol-db.plugin.in:
1493         Do not build symbol-db by
1494         default. Added 'unstable' in plugin description to signify it's
1495         developmental state.
1497         * plugins/file-manager/Makefile.am,
1498         plugins/language-manager/Makefile.am: Fixed 'make distcheck'.
1500 2007-11-01  Sébastien Granjoux  <seb.sfo@free.fr>
1502         * plugins/debug-manager/utilities.c,
1503         plugins/debug-manager/utilities.h,
1504         plugins/debug-manager/threads.c,
1505         plugins/debug-manager/plugin.c,
1506         plugins/debug-manager/plugin.h,
1507         plugins/debug-manager/disassemble.h,
1508         plugins/debug-manager/watch.c,
1509         plugins/debug-manager/watch.h,
1510         plugins/debug-manager/breakpoints.c,
1511         plugins/debug-manager/stack_trace.c:
1512         Replace few remaining function calls by signal 
1514         * plugins/debug-manager/disassemble.c,
1515         plugins/debug-manager/registers.c,
1516         plugins/debug-manager/memory.c,
1517         plugins/debug-manager/locals.c,
1518         plugins/debug-manager/queue.c,
1519         plugins/debug-manager/queue.h:
1520         Connect signals when debugger is started
1521         Disconnect them when debugger is stopped
1522         Do not display window if debugger doesn't support feature
1524         * plugins/gdb/plugin.c,
1525         libanjuta/interfaces/libanjuta.idl:
1526         Remove unused initialization function
1528 2007-11-01  Naba Kumar  <naba.kumar@gnome.org>
1530         * configure.in:
1531         * plugins/file-manager/Makefile.am:
1532         * scripts/build-schemas.mk: Fixed 'make distcheck'
1534 2007-11-01  Naba Kumar  <naba.kumar@gnome.org>
1536         * manuals/reference/libanjuta/libanjuta-docs.sgml,
1537         manuals/reference/libanjuta/libanjuta-sections.txt: Updated docs
1538         to latest API additions.
1540         * manuals/reference/libanjuta/writing-plugins.sgml: Fixed to adhere
1541         to API changes.
1543 2007-10-31  Naba Kumar  <naba.kumar@gnome.org>
1545         * ChangeLog: Fixed indentation.
1546         * NEWS: Updated for 2.3.0 release. Also merged changes from 2.2.x
1547         branch.
1549 2007-10-30  Naba Kumar  <naba.kumar@gnome.org>
1551         * libanjuta/interfaces/libanjuta.idl:
1552         * plugins/build-basic-autotools/build-basic-autotools.c:
1553         (build_compile_file_real), (build_build_project),
1554         (build_install_project), (build_clean_project),
1555         (build_configure_project), (build_autogen_project),
1556         (build_distribution_project), (build_build_module),
1557         (build_install_module), (build_clean_module), (fm_build),
1558         (fm_install), (fm_clean), (pm_build), (pm_install), (pm_clean),
1559         (finalize), (basic_autotools_plugin_instance_init),
1560         (ibuildable_set_command), (ibuildable_reset_commands),
1561         (ibuildable_get_command), (ibuildable_build), (ibuildable_clean),
1562         (ibuildable_install), (ibuildable_configure),
1563         (ibuildable_generate), (ibuildable_iface_init):
1564         * plugins/build-basic-autotools/build-basic-autotools.h:
1566         Added API for commands override in build interface and implemented
1567         them in build plugin. Useful for other plugins override build
1568         commands depending on project environment.
1570 2007-10-28  Naba Kumar  <naba@gnome.org>
1572         * src/anjuta.glade,
1573         plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin.glade:
1574         Fixed widget alignment for dock switcher tab style combo and
1575         scratchbox path entrybox.
1577 2007-10-28  Johannes Schmid <jhs@gnome.org>
1579         * plugins/document-manager/plugin.c: (on_editor_changed):
1580         Fixed a memory leak and simplified code (thanks again Sébastien)
1581         
1582         * configure.in:
1583         Bumped LIBGDA requirement to 3.1.2 (the version that supports LIMIT
1584         and OFFSET sql statements)
1586 2007-10-28  Massimo Cora' <maxcvs@email.it>
1588         * plugins/symbol-db/plugin.c,
1589         plugins/symbol-db/symbol-db-engine.h,
1590         plugins/symbol-db/symbol-db-view.c,
1591         plugins/symbol-db/symbol-db-view.c,
1592         plugins/symbol-db/symbol-db-view-locals.c,
1593         plugins/symbol-db/symbol-db-view-locals.h,
1594         plugins/symbol-db/symbol-db-engine.c:
1595         Better end-of-file-scan detection, permitting
1596         an improved scope/inheritance parsing.
1597         Locals tab gtktree now displays correct
1598         namespace->class->children tree, even if
1599         in a C++ file there isn't class declaration.
1601 2007-10-27  Johannes Schmid <jhs@gnome.org>
1603         Patch from Stanislav Brabec <sbrabec@suse.cz>
1604         * configure.in:
1605         Bug 489798 – Do not rely on svn-config
1607         Patch from Michael Wolf <maw@ximian.com>:
1608         * libegg/eggtreemodelfilter.c: (egg_tree_model_filter_fetch_child),
1609         (egg_tree_model_filter_remove_node),
1610         (egg_tree_model_filter_row_deleted):
1611         Bug 487683 – undefined operations in libegg/eggtreemodelfilter.c
1613 2007-10-27  Johannes Schmid <jhs@gnome.org>
1615         * plugins/devhelp/anjuta-devhelp.ui:
1616         * plugins/message-view/anjuta-message-manager.ui:
1618         Added some separators to the toolbar
1619         
1620         * plugins/document-manager/plugin.c:
1621         (on_support_plugin_deactivated), (load_new_support_plugins),
1622         (unload_unused_support_plugins), (on_editor_changed):
1623         
1624         Fixed the language supprt loading unloading stuff. Thanks to Sébastien
1625         for pointing out that is was crap.
1627 2007-10-24  Sébastien Granjoux  <seb.sfo@free.fr>
1629         * libanjuta/interfaces/libanjuta.idl,
1630         libanjuta/anjuta-plugin-manager.c,
1631         libanjuta/anjuta-plugin-manager.h,
1632         libanjuta/anjuta-c-plugin-factory.c,
1633         libanjuta/anjuta-c-module.h,
1634         libanjuta/anjuta-c-module.c:
1635         Report detailled error message in case of plugin loading failure
1637 2007-10-24  Johannes Schmid <jhs@gnome.org>
1639         * configure.in:
1640         * plugins/Makefile.am:
1641         
1642         Activate build of symbol-db plugin (when libgda is available)
1643         
1644         * plugins/document-manager/plugin.c:
1645         (on_support_plugin_deactivated), (on_editor_changed):
1646         
1647         Properly handle language support plugins even when they are
1648         unloaded by the session.
1649         
1650         * plugins/symbol-db/plugin.c: (register_stock_icons),
1651         Port to new REGISTER_ICONS stuff
1652   
1653 2007-10-22  Massimo Cora'  <maxcvs@email.it>
1655         * plugins/symbol-db/plugin.c,
1656         * plugins/symbol-db/symbol-db-view.c
1657         * plugins/symbol-db/symbol-db-engine.h,
1658         * plugins/symbol-db/symbol-db-engine-iterator-node.c,
1659         * plugins/symbol-db/symbol-db-view-locals.c,
1660         * plugins/symbol-db/symbol-db-view-locals.h,
1661         * plugins/symbol-db/symbol-db-engine.c:
1662         Fixed functions declarations with 'const gchar*' instead of 'gchar*'.
1663         Added a new algorithm for dynamic population of the local symbols' tab.
1664         Now the default view is tree-like.
1665         Some fixes on engine correct some population issues.    
1667 2007-10-23  Naba Kumar  <naba@gnome.org>
1669         * plugins/glade/Makefile.am: Corrected conditional not to install
1670         .plugin file if plugin is disabled.
1671         * plugins/sourceview/Makefile.am: Corrected conditional not to
1672         install schemas if plugin is not built.
1674 2007-10-20  Sébastien Granjoux  <seb.sfo@free.fr>
1676         * plugins/debug-manager/queue.c:
1677         Fix #488061: Mutiple crash dialogs
1679         * plugins/gdb/debugger.c,
1680         plugins/gdb/debugger.h:
1681         Remove maximum gdb command length, should fix bug#474811
1683 2007-10-19  Sébastien Granjoux  <seb.sfo@free.fr>
1685         * manuals/reference/libanjuta/plugin-description-file.sgml,
1686         manuals/reference/libanjuta/libanjuta-docs.sgml,
1687         manuals/reference/libanjuta/libanjuta-sections.txt,
1688         libanjuta/interfaces/libanjuta.idl,
1689         libanjuta/anjuta-c-module.c,
1690         libanjuta/anjuta-c-plugin-factory.c:
1691         Document last changes in plugin code
1693 2007-10-19  Johannes Schmid <jhs@gnome.org>
1695         * plugins/subversion/subversion-callbacks.c: (check_filename):
1696         
1697         Fixed #487854 – Anjuta crashes when i try to add a SVN url
1699 2007-10-19  Naba Kumar  <naba@gnome.org>
1701         * plugins/file-manager/file-model.c: Fixed a critical runtime
1702         warning.
1704 2007-10-18  Johannes Schmid <jhs@gnome.org>
1706         * libanjuta/anjuta-ui.h:
1707         Small fix on icon macros
1708         
1709         * libanjuta/interfaces/libanjuta.idl:
1710         * plugins/language-manager/plugin.c: (ilanguage_get_name),
1711         (ilanguage_get_from_editor), (ilanguage_get_name_from_editor),
1712         (ilanguage_iface_init):
1713         
1714         Added get_from_editor() and get_name_from_editor() methods
1715         to IAnjutaLanguage
1716         
1717         * plugins/document-manager/plugin.c:
1718         (update_editor_ui_interface_items), (on_editor_changed):
1719         * plugins/language-support-cpp-java/anjuta-language-cpp-java.plugin
1720         .in:
1721         * plugins/language-support-cpp-java/plugin.c: (install_support):
1722         
1723         Ported plugins to use the new interface
1725 2007-10-17  Johannes Schmid <jhs@gnome.org>
1727         * libanjuta/anjuta-ui.h:
1728         
1729         Added macros to register stock icons to stop all this copy&paste
1730         which had spread over a lot of files. New macros support to add 
1731         icons with toolbar and menu size (16 and 24)
1732         
1733         * plugins/class-inheritance/plugin.c: (register_stock_icons):
1734         * plugins/debug-manager/images/anjuta-attach.svg:
1735         * plugins/debug-manager/images/anjuta-step-out.svg:
1736         * plugins/debug-manager/images/anjuta-step-over.svg:
1737         * plugins/debug-manager/plugin.c: (register_stock_icons):
1738         * plugins/document-manager/images/Makefile.am:
1739         * plugins/document-manager/images/anjuta-block-end.svg:
1740         * plugins/document-manager/images/anjuta-block-start.svg:
1741         * plugins/document-manager/images/anjuta-bookmark-16.xpm:
1742         * plugins/document-manager/images/anjuta-bookmark.svg:
1743         * plugins/document-manager/images/anjuta-go-history-next.svg:
1744         * plugins/document-manager/images/anjuta-go-history-prev.svg:
1745         * plugins/document-manager/plugin.c: (register_stock_icons):
1746         * plugins/glade/plugin.c: (register_stock_icons):
1747         * plugins/language-support-cpp-java/plugin.c:
1748         (register_stock_icons):
1749         * plugins/message-view/Makefile.am:
1750         * plugins/message-view/anjuta-go-message-next.svg:
1751         * plugins/message-view/anjuta-go-message-prev.svg:
1752         * plugins/message-view/anjuta-message-view.svg:
1753         * plugins/message-view/messages.xpm:
1754         * plugins/message-view/plugin.c: (register_stock_icons):
1755         * plugins/patch/plugin.c: (patch_plugin_activate):
1756         * plugins/project-manager/plugin.c: (register_stock_icons):
1757         * plugins/search/Makefile.am:
1758         * plugins/search/anjuta-go-match-next.svg:
1759         * plugins/search/anjuta-go-match-prev.svg:
1760         * plugins/search/plugin.c: (activate_plugin):
1761         * plugins/symbol-browser/plugin.c: (register_stock_icons):
1762         * plugins/terminal/terminal.c: (register_stock_icons):
1763         * plugins/valgrind/plugin.c: (register_stock_icons):
1764         
1765         Updated to use the new icons and added several new and updated 
1766         icons from #480093
1768 2007-10-16  Sébastien Granjoux  <seb.sfo@free.fr>
1770         * libanjuta/anjuta-plugin-handle.c,
1771         libanjuta/anjuta-plugin-handle.h:
1772         Add a new path property containing the directory of the .plugin
1773         file, library file (.so or whatever) must be in the same directory
1775         * libanjuta/anjuta-plugin-manager.c,
1776         libanjuta/interfaces/libanjuta.idl,
1777         (removed) libanjuta/anjuta-glue-plugin.c,
1778         (removed) libanjuta/anjuta-glue-plugin.h,
1779         (removed) libanjuta/anjuta-glue-c.c,
1780         (removed) libanjuta/anjuta-glue-c.h,
1781         (removed) libanjuta/anjuta-glue-cpp.c,
1782         (removed) libanjuta/anjuta-glue-cpp.h,
1783         (removed) libanjuta/anjuta-glue-factory.c,
1784         (removed) libanjuta/anjuta-glue-factory.h,
1785         (added) libanjuta/anjuta-c-module.c,
1786         (added) libanjuta/anjuta-c-module.h,
1787         (added) libanjuta/anjuta-c-plugin-factory.c,
1788         (added) libanjuta/anjuta-c-plugin-factory.h,
1789         libanjuta/Makefile.am:
1790         AnjutaPluginManager uses the new IAnjutaPluginFactory interface
1791         anjuta-glue-factory.[ch] is replaced by anjuta-c-plugin-factory.[ch]
1792         implementing IAnjutaPluginFactory
1793         anjuta-glue-(c|plugin).[ch] is replaced by anjuta-c-module.[ch]
1795         * libanjuta/libanjuta.h:
1796         anjuta-plugin-handle.h must be public (used in IAnjutaPluginFactory
1797         interface)
1799         * libanjuta/anjuta-plugin.h:
1800         Replace AnjutaGluePlugin by GTypeModule
1801         Remove unused anjuta_glue_get_component_type replaced by
1802         g_type_from_name
1804         * plugins/build-basic-autotools/build-basic-autotools.h,
1805         plugins/class-gen/plugin.h,
1806         plugins/class-inheritance/plugin.h,
1807         plugins/cvs-plugin/plugin.h,
1808         plugins/debug-manager/plugin.h,
1809         plugins/devhelp/plugin.h,
1810         plugins/document-manager/plugin.h,
1811         plugins/editor/plugin.h,
1812         plugins/file-loader/plugin.h,
1813         plugins/file-wizard/plugin.h,
1814         plugins/gdb/plugin.h,
1815         plugins/glade/plugin.h,
1816         plugins/gtodo/plugin.h,
1817         plugins/indent/plugin.h,
1818         plugins/language-manager/plugin.h,
1819         plugins/language-support-cpp-java/plugin.h,
1820         plugins/macro/plugin.h,
1821         plugins/message-view/plugin.h,
1822         plugins/patch/plugin.h,
1823         plugins/profiler/plugin.h,
1824         plugins/project-import/plugin.h,
1825         plugins/project-manager/plugin.h,
1826         plugins/project-wizard/plugin.h,
1827         plugins/sample1/plugin.h,
1828         plugins/search/plugin.h,
1829         plugins/sourceview/plugin.h,
1830         plugins/subversion/plugin.h,
1831         plugins/symbol-browser/plugin.h,
1832         plugins/symbol-db/plugin.h,
1833         plugins/terminal/terminal.c,
1834         plugins/tools/plugin.h,
1835         plugins/valgrind/plugin.h:
1836         Replace AnjutaGluePlugin by GTypeModule
1838 2007-10-16 Sebastien Granjoux <seb.sfo@free.fr>
1840         * plugins/debug-manager/breakpoints.c:
1841         Fix bug#487112, crash while removing a breakpoint in a new file
1843 2007-10-15 Sebastien Granjoux <seb.sfo@free.fr>
1845         * plugins/document-manager/search-box.c:
1846         Fix a crash (with an useful comment) focus-out-event handler must
1847         return a gboolean
1849 2007-10-14 Johannes Schmid <jhs@gnome.org>
1851         * plugins/sourceview/sourceview.c:
1852         Hide calltip when "Up" or "Down" key is pressed
1854 2007-10-14 Sebastien Granjoux <seb.sfo@free.fr>
1856         * plugins/document-manager/search-box.c:
1857         Change included file order to avoid a compile error with gnome 2.16
1859 2007-10-13  Johannes Schmid <jhs@gnome.org>
1861         * plugins/debug-manager/plugin.c: (enable_log_view):
1862         
1863         Fixed crash when closing a project and unloading another while
1864         the debugger is enabled
1866 2007-10-13  Johannes Schmid <jhs@gnome.org>
1868         * plugins/debug-manager/breakpoints.c: (breakpoints_dbase_new):
1869         
1870         Use correct breakpoint icon
1871         
1872         * plugins/devhelp/Makefile.am:
1873         * plugins/devhelp/anjuta-go-help-next.svg:
1874         * plugins/devhelp/anjuta-go-help-prev.svg:
1875         * plugins/devhelp/plugin.c: (register_stock_icons),
1876         (devhelp_activate):
1877         
1878         Added new icons from #480093
1879         
1880         * plugins/document-manager/images/anjuta-bookmark-clear.svg:
1881         * plugins/document-manager/images/anjuta-bookmark-first.svg:
1882         * plugins/document-manager/images/anjuta-bookmark-last.svg:
1883         * plugins/document-manager/images/anjuta-bookmark-next.svg:
1884         * plugins/document-manager/images/anjuta-bookmark-prev.svg:
1885         * plugins/document-manager/images/anjuta-bookmark-toggle.svg:
1886         * plugins/message-view/anjuta-go-message-next.svg:
1887         * plugins/message-view/anjuta-go-message-prev.svg:
1888         
1889         Updated icons from #480093
1890                 
1891         * src/anjuta-actions.h:
1892         Use GTK_STOCK_FULLSCREEN
1893         
1894         * src/anjuta-app.c: (on_gdl_style_changed),
1895         (anjuta_app_instance_init):
1896         * src/anjuta.glade:
1897         
1898         Added preference option to set the gdl switcher style
1900 2007-10-13  Johannes Schmid <jhs@gnome.org>
1902         * libanjuta/anjuta-preferences.c: (get_object_type_from_string),
1903         (get_property_value_as_string), (set_property_value_as_string),
1904         (register_callbacks):
1905         * libanjuta/anjuta-preferences.h:
1906         
1907         Support GtkFileChooserButton as preferences widget
1908         
1909         * libanjuta/anjuta-ui.c: (anjuta_ui_add_action_group):
1910         
1911         Fixed a Gtk-Critical
1912         
1913         * plugins/file-manager/Makefile.am:
1914         * plugins/file-manager/file-model.c: (file_model_filter_file),
1915         (file_model_add_dummy), (file_model_expand_idle),
1916         (file_model_set_property), (file_model_get_property),
1917         (file_model_class_init):
1918         * plugins/file-manager/plugin.c: (file_manager_set_default_uri),
1919         (project_root_added), (on_file_view_open_file), (on_gconf_notify),
1920         (file_manager_activate), (file_manager_finalize),
1921         (file_manager_instance_init), (ipreferences_merge),
1922         (ipreferences_unmerge), (ipreferences_iface_init):
1923         * plugins/file-manager/plugin.h:
1924         
1925         Added preferences to file-manager
1927         * plugins/glade/plugin.c: (activate_plugin):
1928         
1929         Move Properties widget into center because it is way to big
1930         for the sidebar
1932 2007-10-10  Johannes Schmid <jhs@gnome.org>
1934         * plugins/language-support-cpp-java/Makefile.am:
1935         * plugins/language-support-cpp-java/anjuta-complete-auto.svg:
1936         * plugins/language-support-cpp-java/anjuta-complete.svg:
1937         * plugins/language-support-cpp-java/anjuta-indent-auto.svg:
1938         * plugins/language-support-cpp-java/plugin.c:
1939         (register_stock_icons):
1940         
1941         And yet some more icons...
1943 2007-10-10  Johannes Schmid <jhs@gnome.org>
1945         * plugins/debug-manager/breakpoints.c:
1946         * plugins/debug-manager/images/Makefile.am:
1947         * plugins/debug-manager/images/anjuta-bookmark.svg:
1948         * plugins/debug-manager/images/anjuta-breakpoint-clear.svg:
1949         * plugins/debug-manager/images/anjuta-breakpoint-disabled.svg:
1950         * plugins/debug-manager/images/anjuta-breakpoint-enabled.svg:
1951         * plugins/debug-manager/images/anjuta-breakpoint-toggle.svg:
1952         * plugins/debug-manager/images/anjuta-linemark.svg:
1953         * plugins/debug-manager/images/anjuta-pcmark.svg:
1954         * plugins/debug-manager/plugin.c: (register_stock_icons):
1955         * plugins/debug-manager/sparse_view.c:
1956         * plugins/document-manager/images/Makefile.am:
1957         * plugins/document-manager/images/anjuta-block-select.svg:
1958         * plugins/document-manager/images/anjuta-fold-close.svg:
1959         * plugins/document-manager/images/anjuta-fold-open.svg:
1960         * plugins/document-manager/images/anjuta-fold-toggle.svg:
1961         * plugins/document-manager/images/anjuta-indent-less.svg:
1962         * plugins/document-manager/images/anjuta-indent-more.svg:
1963         * plugins/document-manager/images/anjuta-swap.svg:
1964         * plugins/document-manager/images/block_select.xpm:
1965         * plugins/document-manager/images/fold_close.xpm:
1966         * plugins/document-manager/images/fold_open.xpm:
1967         * plugins/document-manager/images/fold_toggle.xpm:
1968         * plugins/document-manager/images/indent.xpm:
1969         * plugins/document-manager/images/indent_dcr.xpm:
1970         * plugins/document-manager/images/indent_inc.xpm:
1971         * plugins/document-manager/plugin.c: (register_stock_icons):    
1972         * plugins/editor/Makefile.am:
1973         * plugins/editor/anjuta-bookmark-16.xpm:
1974         * plugins/editor/anjuta-breakpoint-disabled-16.xpm:
1975         * plugins/editor/anjuta-breakpoint-enabled-16.xpm:
1976         * plugins/editor/anjuta-linemark-16.xpm:
1977         * plugins/editor/anjuta-pcmark-16.xpm:
1978         * plugins/editor/bookmark.xpm:
1979         * plugins/editor/breakpoint-disabled.xpm:
1980         * plugins/editor/breakpoint-enabled.xpm:
1981         * plugins/editor/linemarker.xpm:
1982         * plugins/editor/program-counter.xpm:
1983         * plugins/editor/text_editor.c:
1984         * plugins/message-view/Makefile.am:
1985         * plugins/message-view/anjuta-go-message-next.svg:
1986         * plugins/message-view/anjuta-go-message-prev.svg:
1987         * plugins/message-view/anjuta-message-manager.ui:
1988         * plugins/message-view/plugin.c:
1989         * plugins/sourceview/Makefile.am:
1990         * plugins/sourceview/sourceview.c:
1992         Integrated lots of icons from #480093
1993         Thanks to <tpgww@onepost.net>
1995         * plugins/document-manager/plugin.c:
1996         Do not mark the line in ifile_open(), that looks ugly.
1997         
1998         * plugins/document-manager/search-box.c: (on_search_focus_out),
1999         (search_box_init):
2000         Clear the status bar on focus_out.
2001         
2002         * plugins/file-loader/anjuta-loader-plugin.ui:
2003         Fixed a missing "="
2005 2007-10-09  Johannes Schmid <jhs@gnome.org>
2007         * plugins/debug-manager/breakpoints.c: (breakpoints_dbase_new):
2008         * plugins/valgrind/vgmemcheckprefs.c: (option_menu_new):
2010         Some things I missed in the patch for #484419
2011         
2012         * plugins/document-manager/action-callbacks.c:
2013         (on_new_file_activate):
2014         * plugins/document-manager/action-callbacks.h:
2015         * plugins/document-manager/plugin.c: (ui_give_shorter_names),
2016         (on_window_key_press_event), (on_gconf_notify_timer):
2017         
2018         484645 – patch to deal with docman FIXME etc
2019         
2020         * plugins/editor/text_editor.c: (text_editor_set_indicator):
2021         * plugins/search/search-replace.c: (search_and_replace),
2022         (write_message_pane), (search_replace_populate),
2023         (translate_dialog_strings), (create_dialog),
2024         (anjuta_search_replace_activate):
2025         * plugins/search/search-replace_backend.c:
2026         (file_buffer_new_from_path), (get_next_match),
2027         (create_search_entries), (regex_backref),
2028         (clear_search_replace_instance):
2029         * plugins/search/search-replace_backend.h:
2030         
2031         #484573 – patch to correct various search-related issues
2032         
2033         Thanks for the above patches to <tpgww@onepost.net>
2034         
2035         * plugins/sourceview/sourceview.c:
2036         (sourceview_create_highligth_indic):
2037         
2038         Use the same marker for important as gedit (yellow background)
2040         * plugins/document-manager/anjuta-document-manager.ui:
2041         * plugins/file-loader/anjuta-file-loader.ui:
2042         * plugins/file-loader/plugin.c:
2043         
2044         Moved FileNew action to document-manager
2046 2007-10-08  Johannes Schmid <jhs@gnome.org>
2048         * plugins/document-manager/search-box.c: (on_search_activated):
2049         Mark messages for translation
2051 2007-10-07   Marc Lorber <Lorber.Marc@wanadoo.fr>
2053         reviewed by: Johannes Schmid <jhs@gnome.org>
2055         * plugins/Makefile.am:
2056         * plugins/build-basic-autotools/build-basic-autotools.c:
2057         (build_compile_file_real):
2058         * plugins/search/search-replace.c:
2059         * plugins/valgrind/preferences.c: (build_general_prefs):
2060         
2061         Fix #484379 – Contents of Makefile.am plugins and
2062         #484419 – Improvement into translation
2064 2007-10-06  Johannes Schmid <jhs@gnome.org>
2066         * libanjuta/interfaces/anjuta-idl-compiler.pl:
2068         Fixed to properly support pointer-to-pointer (**) types
2070         * libanjuta/interfaces/libanjuta.idl:
2071         * plugins/sourceview/sourceview-cell.c: (sourceview_cell_get_iter):
2072         * plugins/sourceview/sourceview-cell.h:
2073         * plugins/sourceview/sourceview.c: (ieditor_get_position_iter),
2074         (ieditor_iface_init), (iselect_set_iter), (iselect_get_start_iter),
2075         (iselect_get_end_iter), (iselect_iface_init), (isearch_forward),
2076         (isearch_backward), (isearch_iface_init):
2077         * plugins/editor/text_editor.c: (itext_editor_get_position_iter),
2078         (itext_editor_iface_init), (iselection_set_iter),
2079         (iselection_get_start_iter), (iselection_get_end_iter),
2080         (iselection_iface_init), (isearch_forward), (isearch_backward),
2081         (isearch_iface_init):
2082         
2083         Added IAnjutaEditorSearch interface and some utility methods to
2084         migrate from positions to iterators for the editor interface.
2085         
2086         * plugins/document-manager/Makefile.am:
2087         * plugins/document-manager/action-callbacks.c:
2088         (on_goto_line_no1_activate), (on_show_search):
2089         * plugins/document-manager/action-callbacks.h:
2090         * plugins/document-manager/anjuta-docman.c:
2091         (anjuta_docman_add_document), (anjuta_docman_show_editor),
2092         (anjuta_docman_grab_text_focus):
2093         * plugins/document-manager/anjuta-document-manager.ui:
2094         * plugins/document-manager/goto_line.c: (removed)
2095         * plugins/document-manager/goto_line.h: (removed)
2096         * plugins/document-manager/search-box.c:
2097         * plugins/document-manager/search-box.h:
2098         * plugins/document-manager/plugin.c: (ui_give_shorter_names),
2099         (update_editor_ui_enable_all), (update_editor_ui_disable_all),
2100         (update_editor_ui_interface_items), (on_editor_added),
2101         (activate_plugin), (deactivate_plugin):
2102         * plugins/document-manager/plugin.h:
2103         
2104         Created new incremental "Quick Search" bar in the document manager to
2105         replace the crappy EggToolbar entries. Uses the new search interface and
2106         it thus much faster and more reliable.
2107         Fixes: 
2108         Bug 357544 – incremental search should work consistently (or not at all) 
2109         when main toolbar is hidden
2110         Bug 440637 – Search, don't work very well (partly for incremental search)
2111         
2112         * plugins/search/anjuta-search.ui:
2113         * plugins/search/plugin.c: (activate_plugin):
2114         
2115         Removed incremental search stuff
2116         
2117         * plugins/build-basic-autotools/build-basic-autotools.c:
2118         (on_session_save), (on_session_load):
2119         * plugins/build-basic-autotools/executer.c:
2120         (get_program_parameters):
2121         
2122         Scroll to selected executable and remember it across sessions
2123         (followup of #477976)
2124         
2125         * plugins/debug-manager/plugin.c: (value_added_current_editor):
2126         Check if it is an editor and cast afterwards, avoids a Gtk-Critical
2127         
2128         * plugins/devhelp/anjuta-devhelp.ui:
2129         Rearraged toolbar items a bit
2131 2007-10-05 Sebastien Granjoux <seb.sfo@free.fr>
2133         * plugins/debug-manager/command.c,
2134         plugins/debug-manager/queue.c,
2135         plugins/gdb/plugin.c,
2136         plugins/gdb/debugger.c:
2137         Fix several crashing bugs (including bug#482985) with the debugger
2138         when closing project, stopping the debugger, restarting the program
2140 2007-10-05 Sebastien Granjoux <seb.sfo@free.fr>
2142         * libanjuta/anjuta-launcher.c:
2143         Avoid adding new timeout in anjuta_launcher_execution_done_cleanup
2145 2007-10-03 Sebastien Granjoux <seb.sfo@free.fr>
2147         * plugins/debug-manager/command.c,
2148         plugins/debug-manager/queue.c:
2149         Asynchronous command can abort other commands in queue
2150         Resynchronize debugger state when a command is cancelled
2152         * plugins/debug-manager/breakpoints.c:
2153         Free BreakpointItem only when it is not used anymore
2155         * plugins/gdb/plugin.c:
2156         Do not return TRUE if the callback and/or ready signal is not used
2158         * plugins/gdb/debugger.c:
2159         Fix a crash, return correct state when debugger is stopped
2161 2007-10-01 Sebastien Granjoux <seb.sfo@free.fr>
2163         * plugins/project-wizard/autogen.c:
2164         Fix bug#482067, escape project wizard user defined strings
2166 2007-10-01  Johannes Schmid <jhs@gnome.org>
2168         * plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin
2169         .glade:
2170         * plugins/build-basic-autotools/build-basic-autotools.c:
2171         (basic_autotools_plugin_instance_init):
2172         * plugins/build-basic-autotools/build-basic-autotools.h:
2173         * plugins/build-basic-autotools/executer.c:
2174         (get_program_parameters):
2175         
2176         Fixed #477976 – Keybinding in run dialog
2178 2007-09-30  Johannes Schmid <jhs@gnome.org>
2180         * plugins/Makefile.am:
2181         Do not build indent plugin (yet)
2182         
2183         * plugins/document-manager/plugin.c: (ipreferences_merge):
2184         Fixed unintentional and wrong change
2186         * plugins/indent/anjuta-indent.ui:
2187         Added missing file
2189 2007-09-28  Johannes Schmid <jhs@gnome.org>
2191         * libanjuta/anjuta-launcher.c: (anjuta_launcher_send_stdin_eof):
2192         * libanjuta/anjuta-launcher.h:
2193         Add a method to send EOF to some process. Needed for the indent plugin
2194         and should be useful in general. It does not actually send EOF as this
2195         is not possible with utf-8, but closes the stream instead.
2197         * plugins/devhelp/plugin.c: (value_added_current_editor):
2198         Fixed a Gtk-Critical due to the IAnjutaEditor - 
2199         IAnjutaDocument switch.
2201         * configure.in:
2202         * plugins/Makefile.am:
2203         * plugins/document-manager/Makefile.am:
2204         * plugins/document-manager/action-callbacks.c:
2205         * plugins/document-manager/anjuta-document-manager.glade:
2206         * plugins/document-manager/anjuta-document-manager.ui:
2207         * plugins/document-manager/images/Makefile.am:
2208         * plugins/document-manager/images/indent_auto.xpm:
2209         * plugins/document-manager/images/indent_set.xpm:
2210         * plugins/document-manager/indent-dialog.c:
2211         * plugins/document-manager/indent-dialog.h:
2212         * plugins/document-manager/indent-util.c:
2213         * plugins/document-manager/indent-util.h:
2214         * plugins/document-manager/indent_test.c:
2215         * plugins/document-manager/plugin.c: (register_stock_icons),
2216         (docman_plugin_instance_init), (ipreferences_merge):
2217         * plugins/document-manager/plugin.h:
2218         
2219         Removed indent code from document manager
2220         
2221         * plugins/indent/Makefile.am:
2222         * plugins/indent/indent-dialog.c:
2223         * plugins/indent/indent-util.c: (indent_init_indent_style):
2224         * plugins/indent/indent.glade:
2225         * plugins/indent/indent.plugin.in:
2226         * plugins/indent/plugin.c: (on_indent_finished),
2227         (on_indent_output), (on_indent_action_activate),
2228         (on_edit_editor_indent), (on_style_combo_changed),
2229         (value_added_current_editor), (value_removed_current_editor),
2230         (indent_plugin_activate_plugin), (indent_plugin_deactivate_plugin),
2231         (indent_plugin_finalize), (indent_plugin_dispose),
2232         (anjuta_indent_plugin_instance_init),
2233         (anjuta_indent_plugin_class_init), (ipreferences_merge),
2234         (ipreferences_unmerge), (ipreferences_iface_init):
2235         * plugins/indent/plugin.h:
2237         Moved indent code to it's own plugin. Also reimplemented indent invocation
2238         using anjuta_launcher and streams. This is not yet completely working, maybe
2239         I got something wrong with the launcher.
2240         Also fixed #478987 – Unusable 'Indent setting window' on preferences
2242 2007-09-27 Sebastien Granjoux <seb.sfo@free.fr>
2244         * plugins/debug-manager/plugin.c:
2245         Fix bug#480851, disconnect save_session signal when plugin is unloaded
2247 2007-09-27  Johannes Schmid <jhs@gnome.org>
2249         * libanjuta/interfaces/libanjuta.idl:
2250         * plugins/Makefile.am:
2251         * plugins/symbol-browser/an_symbol.c: (isymbol_type_name),
2252         (isymbol_type_str), (isymbol_name), (isymbol_args),
2253         (isymbol_scope), (isymbol_inheritance), (isymbol_access),
2254         (isymbol_impl), (isymbol_iface_init):
2255         * plugins/symbol-browser/an_symbol_info.c:
2256         * plugins/symbol-browser/an_symbol_info.h:
2257         * plugins/symbol-db/Makefile.am:
2258         * plugins/symbol-db/plugin.c:
2259         (on_editor_buffer_symbols_update_timeout), (on_editor_saved),
2260         (value_added_current_editor), (on_editor_foreach_clear),
2261         (value_removed_current_editor), (project_root_added),
2262         (symbol_db_activate), (symbol_db_deactivate),
2263         (isymbol_manager_search):
2264         * plugins/symbol-db/readtags.c: (initialize_1):
2265         * plugins/symbol-db/symbol-db-engine-iterator.c:
2266         (sdb_engine_iterator_instance_init),
2267         (sdb_engine_iterator_finalize), (sdb_engine_iterator_class_init),
2268         (symbol_db_engine_iterator_new), (symbol_db_engine_iterator_first),
2269         (symbol_db_engine_iterator_move_next),
2270         (symbol_db_engine_iterator_move_prev),
2271         (symbol_db_engine_iterator_get_n_items),
2272         (symbol_db_engine_iterator_last),
2273         (symbol_db_engine_iterator_set_position),
2274         (symbol_db_engine_iterator_get_position),
2275         (symbol_db_engine_iterator_foreach), (isymbol_iter_first),
2276         (isymbol_iter_next), (isymbol_iter_previous), (isymbol_iter_last),
2277         (isymbol_iter_foreach), (isymbol_iter_set_position),
2278         (isymbol_iter_get_position), (isymbol_iter_get_length),
2279         (isymbol_iter_clone), (isymbol_iter_assign),
2280         (isymbol_iter_iface_init):
2281         * plugins/symbol-db/symbol-db-engine-iterator.h:
2282         * plugins/symbol-db/symbol-db-engine.c:
2283         (sdb_engine_disconnect_from_db), (sdb_engine_populate_db_by_tags),
2284         (sdb_engine_ctags_output_callback_1), (sdb_engine_scan_files_1),
2285         (sdb_engine_finalize), (sdb_engine_get_type),
2286         (sdb_engine_create_db_tables), (symbol_db_engine_open_db),
2287         (sdb_engine_get_table_id_by_unique_name2),
2288         (sdb_engine_get_table_id_by_unique_name3),
2289         (symbol_db_engine_add_new_workspace),
2290         (symbol_db_engine_get_opened_project_name),
2291         (symbol_db_engine_open_project), (symbol_db_engine_close_project),
2292         (sdb_engine_add_new_language), (sdb_engine_add_new_file),
2293         (sdb_prepare_executing_commands), (symbol_db_engine_add_new_files),
2294         (sdb_engine_add_new_sym_kind), (sdb_engine_add_new_sym_access),
2295         (sdb_engine_add_new_scope_definition),
2296         (sdb_engine_add_new_tmp_heritage_scope),
2297         (sdb_engine_second_pass_update_scope_1),
2298         (sdb_engine_second_pass_update_heritage),
2299         (sdb_engine_add_new_symbol), (sdb_engine_detects_removed_ids),
2300         (sdb_engine_update_file), (symbol_db_engine_update_files_symbols),
2301         (symbol_db_engine_update_project_symbols),
2302         (symbol_db_engine_remove_file), (on_scan_update_buffer_end),
2303         (symbol_db_engine_update_buffer_symbols),
2304         (sdb_engine_walk_down_scope_path),
2305         (sdb_engine_prepare_symbol_info_sql),
2306         (symbol_db_engine_get_global_members),
2307         (symbol_db_engine_get_scope_members_by_symbol_id),
2308         (symbol_db_engine_get_scope_members),
2309         (symbol_db_engine_get_current_scope),
2310         (symbol_db_engine_get_file_symbols):
2311         * plugins/symbol-db/symbol-db-engine.h:
2312         * plugins/symbol-db/symbol-db-view-locals.c: (on_symbol_removed),
2313         (on_symbol_updated), (on_symbol_inserted),
2314         (symbol_db_view_locals_get_line),
2315         (symbol_db_view_locals_update_list):
2316         * plugins/symbol-db/symbol-db-view-search.c:
2317         (sdb_view_search_model_filter), (sdb_view_search_get_type):
2318         * plugins/symbol-db/symbol-db-view-search.h:
2319         * plugins/symbol-db/symbol-db-view.c: (on_symbol_updated),
2320         (do_add_hidden_children), (do_recurse_and_add_new_sym),
2321         (on_symbol_inserted), (on_symbol_removed), (symbol_db_view_open):
2322         * plugins/symbol-db/tables.sql:
2323         * plugins/symbol-db/test/Makefile.am:
2324         * plugins/symbol-db/test/main.c: (add_new_files), (main):
2325         Updated patch from Massimo to improve symbol-db plugin
2327         * plugins/document-manager/plugin.c: (on_editor_changed):
2328         Make the code a bit more robust
2329         
2330         * plugins/sourceview/anjuta-document.c: (anjuta_document_finalize),
2331         (anjuta_document_get_property), (anjuta_document_class_init),
2332         (anjuta_document_init), (set_uri), (document_loader_loaded),
2333         (anjuta_document_load), (document_saver_saving):
2334         * plugins/sourceview/anjuta-document.h:
2335         * plugins/sourceview/sourceview.c: (autodetect_language),
2336         (ilanguage_set_language), (ilanguage_get_language):
2337         Fix language detection on startup
2339 2007-09-27  Naba Kumar  <naba.kumar@gnome.org>
2341         * plugins/document-manager/action-callbacks.c:
2342         (on_editor_command_upper_case_activate),
2343         (on_editor_command_lower_case_activate): Leftover commit from previous
2344         commit (see last changlog entry by me).
2345         
2346         * plugins/file-manager/plugin.c: (file_manager_activate):
2347         Gave proper widget name so that layout works.
2349 2007-09-26  Johannes Schmid <jhs@gnome.org>
2351         * plugins/document-manager/plugin.c: (on_editor_changed),
2352         (docman_plugin_instance_init):
2353         Only unload/load language-support plugins if necessary.
2354         
2355         * plugins/language-manager/plugin.c: (language_manager_activate):
2356         Removed some debugging code
2358         * plugins/sourceview/sourceview.c: (on_document_saved),
2359         (ilanguage_set_language), (ilanguage_get_language):
2360         Fixed ianjuta_language interface and ensure that highlighting is
2361         activated when a new file is saved.
2362         
2363 2007-09-26  Naba Kumar  <naba.kumar@gnome.org>
2365         * libanjuta/interfaces/libanjuta.idl:
2366         * plugins/document-manager/action-callbacks.c:
2367         (on_editor_command_upper_case_activate),
2368         (on_editor_command_lower_case_activate):
2369         * plugins/editor/text_editor.c: (iselection_has_selection),
2370         (iselection_get_start), (iselection_get_end),
2371         (iselection_iface_init):
2372         * plugins/language-support-cpp-java/plugin.c: (on_auto_indent):
2373         * plugins/sourceview/sourceview.c: (iselect_has_selection),
2374         (iselect_iface_init): Added IAnjutaEditorSelection::has_selection()
2375         method and implemented it for both scintilla and sourceview editors.
2376         Updated document-manager and assist plugins to use the new method.
2378 2007-09-25 Sebastien Granjoux <seb.sfo@free.fr>
2380         * plugins/file-manager/file-view.c:
2381         Fix typo, allow to compile new file manager with gtk < 2.12
2383 2007-09-25  Johannes Schmid <jhs@gnome.org>
2385         * plugins/language-support-cpp-java/plugin.c: (on_auto_indent):
2386         Support Auto-Indent for single lines (e.g no selection);
2387         
2388         * plugins/macro/plugin.c:
2389         Do not use the same shortcut as auto-indent does
2390         
2391         * plugins/sourceview/anjuta-view.c: (anjuta_view_key_press_event):
2392         Optimized keyboard navigation - do not emit char_added when only
2393         navigation keys have been pressed.
2395 2007-09-25  Naba Kumar  <naba.kumar@gnome.org>
2397         * plugins/language-support-cpp-java/cpp-java-assist.c:
2398         (on_assist_chosen), (cpp_java_assist_install),
2399         (cpp_java_assist_uninstall):
2400         * plugins/language-support-cpp-java/plugin.c: (install_support),
2401         (uninstall_support): Install and uninstall support in correct order.
2402         Fixes a bug where it was installed multiple times resulting in
2403         inserting autocomplete text multiple times.
2405 2007-09-25  Johannes Schmid <jhs@gnome.org>
2407         * configure.in:
2408         Add GNOME_WARNING_FLAGS(maximum) and
2409         GNOME_CXX_WARNIGS(yes) to avoid bugs
2410         the compiler can warn you.
2411         
2412         * libegg/test-tree-utils.c: (key_test):
2413         * plugins/file-manager/file-model.c:
2414         (file_model_cancel_expand_idle), (file_model_sort),
2415         (file_model_row_expanded):
2416         * plugins/file-manager/file-view.c: (file_view_cancel_refresh),
2417         (file_view_refresh), (file_view_get_selected), (file_view_init),
2418         (file_view_new):
2419         * plugins/file-manager/file-view.h:
2420         * plugins/symbol-db/readtags.c: (initialize_1):
2421         * src/main.c:
2422         
2423         Fixed the more critical warnings
2425 2007-09-25  Naba Kumar  <naba.kumar@gnome.org>
2427         Icons from tpgww@onepost.net:
2428         * configure.in:
2429         * plugins/debug-manager/Makefile.am:
2430         * plugins/debug-manager/images/Makefile.am:
2431         * plugins/debug-manager/images/anjuta-attach.svg:
2432         * plugins/debug-manager/images/anjuta-run-to-cursor.svg:
2433         * plugins/debug-manager/images/anjuta-step-into.svg:
2434         * plugins/debug-manager/images/anjuta-step-out.svg:
2435         * plugins/debug-manager/images/anjuta-step-over.svg:
2436         * plugins/debug-manager/plugin.c: (register_stock_icons):
2437         * plugins/document-manager/Makefile.am:
2438         * plugins/document-manager/block_select.xpm:
2439         * plugins/document-manager/fold_close.xpm:
2440         * plugins/document-manager/fold_open.xpm:
2441         * plugins/document-manager/fold_toggle.xpm:
2442         * plugins/document-manager/images/Makefile.am:
2443         * plugins/document-manager/images/anjuta-block-end.svg:
2444         * plugins/document-manager/images/anjuta-block-start.svg:
2445         * plugins/document-manager/images/anjuta-bookmark-clear.svg:
2446         * plugins/document-manager/images/anjuta-bookmark-first.svg:
2447         * plugins/document-manager/images/anjuta-bookmark-last.svg:
2448         * plugins/document-manager/images/anjuta-bookmark-next.svg:
2449         * plugins/document-manager/images/anjuta-bookmark-prev.svg:
2450         * plugins/document-manager/images/anjuta-bookmark-toggle.svg:
2451         * plugins/document-manager/indent.xpm:
2452         * plugins/document-manager/indent_auto.xpm:
2453         * plugins/document-manager/indent_dcr.xpm:
2454         * plugins/document-manager/indent_inc.xpm:
2455         * plugins/document-manager/indent_set.xpm:
2456         * plugins/document-manager/plugin.c: Added nicer icons for
2457         document manager and debugger. Organized icons in 'images'
2458         directories.
2460 2007-09-24  Johannes Schmid <jhs@gnome.org>
2462         * src/anjuta-app.c: (anjuta_app_add_widget_full):
2463         Fixed a missing NULL in g_object_set.
2465 2007-09-24  Naba Kumar  <naba.kumar@gnome.org>
2467         * plugins/language-support-cpp-java/cpp-java-assist.c:
2468         (cpp_java_assist_show_autocomplete): Fixed autocompletion to show for
2469         scope memebers just after scope operator is entered.
2471 2007-09-24  Naba Kumar  <naba.kumar@gnome.org>
2473         * plugins/language-support-cpp-java/anjuta-language-cpp-java.glade:
2474         * plugins/language-support-cpp-java/cpp-java-assist.c:
2475         (completion_function), (completion_compare),
2476         (cpp_java_assist_tag_destroy), (create_completion),
2477         (cpp_java_assist_destroy_completion_cache),
2478         (cpp_java_assist_show_autocomplete), (on_assist_chosen):
2479         Show '()' for function items in autocomplete list. Allow adding
2480         ' ' and/or '(' after function call autocompletion and have preferences
2481         settings for them.
2483 2007-09-24  Johannes Schmid <jhs@gnome.org>
2485         * sourceview.c: Reverting patch from r3157 because
2486         of side-effects
2488 2007-09-24  Johannes Schmid <jhs@gnome.org>
2490         * plugins/search/search-replace.c: (on_message_clicked):
2492         Fixed #427104 – No "highlight" of lines matching find-result
2494 2007-09-24  Johannes Schmid <jhs@gnome.org>
2496         * src/anjuta.glade:
2498         Fixed #479020 – Use of old open file dialog instead of GtkFileChooser
2500 2007-09-24  Yang Hong  <hongyang@redflag-linux.com>
2502         reviewed by: Johannes Schmid <jhs@gnome.org>
2504         * plugins/build-basic-autotools/executer.c: (execute_program):
2505         Fix #478238 – set env for execute programe in the terminal
2507 2007-09-24 Tom <tpgww@onepost.net>
2509         reviewed by: Johannes Schmid <jhs@gnome.org>
2511         * libanjuta/anjuta-status.c: (anjuta_status_set_title):
2512         Fix memory leak
2513         
2514         * plugins/debug-manager/disassemble.c: (on_disassemble):
2515         Correct a format string in DEBUG_PRINT()
2517 2007-09-23  Johannes Schmid <jhs@gnome.org>
2519         * plugins/sourceview/sourceview.c: (offset_to_position),
2520         (position_to_offset), (ieditor_goto_position), (ieditor_get_text),
2521         (ieditor_get_position), (iselect_set), (iselect_get_start),
2522         (iselect_get_end):
2523         
2524         Fixed #Bug 440637 – Search, don't work very well
2526 2007-09-23  Johannes Schmid <jhs@gnome.org>
2528         * plugins/file-manager/file-model.c: (file_model_get_filename):
2529         * plugins/file-manager/file-model.h:
2530         * plugins/file-manager/file-view.c: (file_view_query_tooltip),
2531         (file_view_init), (file_view_class_init):
2532         * plugins/message-view/message-view.c:
2533         (message_view_query_tooltip), (message_view_dispose),
2534         (message_view_instance_init), (message_view_class_init):
2536         Added GTK+ 2.12 style tooltips to file-manager and message view.
2537         Only build if GTK+ 2.12 is availible otherwise for message-view, the
2538         old implementation is used.
2540 2007-09-23  Johannes Schmid <jhs@gnome.org>
2542         * libanjuta/anjuta-plugin-manager.c: (plugin_set_update):
2543         Fixed typo
2544         
2545         * plugins/language-manager/language-manager.plugin.in:
2546         Marked UserActivatable=FALSE
2547         
2548         * plugins/language-manager/plugin.c: (load_languages),
2549         (language_manager_activate), (language_manager_deactivate),
2550         (language_manager_dispose), (language_manager_instance_init),
2551         (language_manager_find_mime_type), (language_manager_find_string),
2552         (ilanguage_get_from_mime_type), (ilanguage_get_from_string),
2553         (ilanguage_get_name), (ilanguage_get_strings):
2554         
2555         Fixed various stupid bugs in language-manager plugin
2556         
2557         * plugins/symbol-db/symbol-db-engine.c:
2558         (sdb_engine_second_pass_update_scope_1):
2559         
2560         Add a g_return_if_fail to avoid a crash though still unsure
2561         what's causing it.
2563 2007-09-23  Johannes Schmid <jhs@gnome.org>
2565         * plugins/symbol-db/plugin.c: (on_project_element_added),
2566         (sources_array_free), (sources_array_add_foreach),
2567         (project_root_added):
2568         * plugins/symbol-db/symbol-db-engine.c:
2569         (symbol_db_engine_add_new_files):
2570         * plugins/symbol-db/symbol-db-engine.h:
2571         
2572         Added support for other languages than "C" to symbol-db. Now
2573         supports all languages listed by the language-manager.
2575 2007-09-23  Tom <tpgww@onepost.net>
2577         reviewed by: Johannes Schmid <jhs@gnome.org> (with small changes)
2579         * configure.in:
2580         Bumped GNOME_VFS_REQUIRED to 2.14 (this is two years ago now...)
2581         
2582         * libanjuta/anjuta-glue-factory.c: (load_plugin),
2583         (anjuta_glue_factory_get_object_type):
2584         * libanjuta/anjuta-status.c: (anjuta_status_set_title):
2585         * plugins/build-basic-autotools/build-basic-autotools.c:
2586         (value_added_current_editor):
2587         * plugins/debug-manager/breakpoints.c:
2588         (breakpoints_dbase_edit_breakpoint),
2589         (on_toggle_breakpoint_activate):
2590         * plugins/debug-manager/plugin.c:
2591         (on_run_to_cursor_action_activate):
2592         * plugins/debug-manager/stack_trace.c:
2593         (dma_thread_update_stack_trace):
2594         * plugins/gdb/plugin.c:
2595         * plugins/glade/plugin.c: (ifile_open):
2596         * plugins/profiler/gprof-call-graph-view.c:
2597         * plugins/profiler/gprof-flat-profile-view.c:
2598         * plugins/profiler/gprof-function-call-tree-view.c:
2599         * plugins/profiler/gprof-options.c: (setup_widgets):
2600         * plugins/project-manager/plugin.c: (project_manager_unload_gbf):
2601         * plugins/search/search-replace_backend.c:
2602         (file_buffer_new_from_te):
2603         * plugins/sourceview/assist-tip.c: (assist_tip_move):
2604         * plugins/sourceview/assist-window.c: (assist_window_set_property),
2605         (assist_window_get_property), (assist_window_move):
2606         * plugins/symbol-browser/plugin.c: (update_editor_symbol_model),
2607         (value_added_current_editor):
2608         * plugins/symbol-db/plugin.c: (value_added_current_editor):
2609         * plugins/tools/variable.c: (atp_variable_get_editor_variable):
2610         * plugins/valgrind/vggeneralprefs.c: (general_prefs_get_argv):
2611         
2612         Many small code, warnings and leak fixes
2614 2007-09-23 Sebastien Granjoux <seb.sfo@free.fr>
2616         * (removed) plugins/debug-manager/debugger.c,
2617         (removed) plugins/debug-manager/debugger.h,
2618         (added) plugins/debug-manager/command.c,
2619         (added) plugins/debug-manager/command.h,
2620         (added) plugins/debug-manager/queue.c,
2621         (added) plugins/debug-manager/queue.h,
2622         plugins/debug-manager/breakpoints.c,
2623         plugins/debug-manager/debug_tree.c,
2624         plugins/debug-manager/debug_tree.h,
2625         plugins/debug-manager/disassemble.c,
2626         plugins/debug-manager/disassemble.h,
2627         plugins/debug-manager/locals.c,
2628         plugins/debug-manager/locals.h,
2629         plugins/debug-manager/memory.c,
2630         plugins/debug-manager/memory.h,
2631         plugins/debug-manager/plugin.c,
2632         plugins/debug-manager/plugin.h,
2633         plugins/debug-manager/registers.c,
2634         plugins/debug-manager/registers.h,
2635         plugins/debug-manager/sharedlib.c,
2636         plugins/debug-manager/sharedlib.h,
2637         plugins/debug-manager/signals.c,
2638         plugins/debug-manager/signals.h,
2639         plugins/debug-manager/stack_trace.c,
2640         plugins/debug-manager/stack_trace.h,
2641         plugins/debug-manager/start.h,
2642         plugins/debug-manager/start.c,
2643         plugins/debug-manager/threads.c,
2644         plugins/debug-manager/threads.h,
2645         plugins/debug-manager/watch.c,
2646         plugins/debug-manager/watch.h,
2647         plugins/debug-manager/Makefile.am,
2648         plugins/gdb/debugger.c,
2649         plugins/gdb/debugger.h,
2650         plugins/gdb/plugin.c,
2651         libanjuta/interfaces/libanjuta.idl:
2652         Split debug-manager/debugger.c into command.c and queue.c
2653         Clean up debugger queue
2654         DmaDebuggerQueue object does not implement IAnjutaDebugger
2656 2007-09-23  Johannes Schmid <jhs@gnome.org>
2658         * configure.in:
2659         Bumped version to 2.3.0 (to ensure bugzilla bugs are
2660         set correctly, etc.)
2661         
2662         * libanjuta/anjuta-glue-factory.c: (load_plugin):
2663         * libanjuta/anjuta-plugin-manager.c: (activate_plugin),
2664         (plugin_set_update):
2665         
2666         Show an error dialog instead of crashing when plugin loading fails
2668         * plugins/language-manager/Makefile.am:
2669         * plugins/language-manager/language-manager.plugin.in:
2670         * plugins/language-manager/languages.xml:
2671         * plugins/language-manager/plugin.c: (language_destroy),
2672         (load_languages), (language_manager_activate),
2673         (language_manager_deactivate), (language_manager_finalize),
2674         (language_manager_dispose), (language_manager_instance_init),
2675         (language_manager_class_init), (language_manager_find_mime_type),
2676         (language_manager_find_string), (ilanguage_get_from_mime_type),
2677         (ilanguage_get_from_string), (ilanguage_get_name),
2678         (ilanguage_get_strings), (ilanguage_iface_init):
2679         * plugins/language-manager/plugin.h:
2680         
2681         Added new language-manager plugin to have a better organisation for
2682         language names. The xml probabaly needs to be extended over time.
2683         
2684         * plugins/Makefile.am:
2685         * plugins/document-manager/plugin.c: (on_editor_changed):
2686         
2687         Adapted to new IAnjutaLanguage interface. Do not unload language-support
2688         because it does not really save memory but makes tab switching slow.
2689         
2690         * plugins/language-support-cpp-java/anjuta-language-cpp-java.plugin
2691         .in:
2692         * plugins/language-support-cpp-java/plugin.c: (install_support),
2693         (uninstall_support), (cpp_java_plugin_deactivate_plugin):
2694         Adapted to new IAnjutaLanguage interface and fixed a Gtk-Critical while
2695         unloading
2697         * plugins/language-support-cpp-java/cpp-java-assist.c:
2698         (cpp_java_assist_show_autocomplete):
2699         
2700         Fix autocomplete to only show valid completions
2702         * plugins/sourceview/assist-tip.c: (assist_tip_set_tips):
2703         Calltips always have correct size and position now
2705 2007-09-22  Johannes Schmid <jhs@gnome.org>
2707         * plugins/search/search-replace_backend.c: (get_next_match):
2708         Removed code introduced by accident that causes a crash.
2709         
2710         * plugins/sourceview/sourceview-tags.c:
2711         * plugins/sourceview/sourceview-tags.h:
2712         Removed ununsed files
2714 2007-09-22  Johannes Schmid <jhs@gnome.org>
2716         * plugins/language-support-cpp-java/cpp-java-assist.c:
2717         Fixed build error
2719 2007-09-21  Naba Kumar  <naba.kumar@gnome.org>
2721         * plugins/language-support-cpp-java/cpp-java-assist.c:
2722         (cpp_java_assist_get_calltip_context), (on_editor_char_added):
2723         Increased matching brace search to 500 chars.
2725 2007-09-21  Johannes Schmid <jhs@gnome.org>
2727         * plugins/language-support-cpp-java/cpp-java-assist.c:
2728         (cpp_java_assist_get_pre_word),
2729         (cpp_java_assist_get_calltip_context), (cpp_java_assist_check):
2730         
2731         Added some profiling debug code
2732         
2733         * plugins/language-support-cpp-java/cpp-java-utils.c:
2734         (cpp_java_util_jump_to_matching_brace):
2735         * plugins/language-support-cpp-java/cpp-java-utils.h:
2736         * plugins/language-support-cpp-java/plugin.c:
2737         (get_line_indentation_base), (get_line_auto_indentation):
2738         
2739         Add the possiblity to pass a limit to cpp_java_util_jump_matching_brace to
2740         avoid looping over the whole file when using calltips which is too slow and
2741         unneeded.
2742         
2743         * plugins/sourceview/assist-tip.c: (assist_tip_init),
2744         (assist_tip_set_tips), (assist_tip_get_coordinates),
2745         (assist_tip_new):
2746         * plugins/sourceview/sourceview.c: (iassist_show_tips):
2747         
2748         Better calltips appearance (use theme now) and avoid jumping
2749         calltips
2751 2007-09-21  Naba Kumar  <naba.kumar@gnome.org>
2753         * plugins/document-manager/plugin.c:
2754         (update_editor_ui_interface_items):
2755         * plugins/language-support-cpp-java/plugin.c: (install_support),
2756         (uninstall_support): Moved autocomplete ui update code from
2757         document-manager to language-plugin.
2759 2007-09-21  Johannes Schmid <jhs@gnome.org>
2761         * libanjuta/interfaces/libanjuta.idl:
2762         
2763         Added IAnjutaLanguage interface (might still change...) for
2764         the upcoming language-manager plugin.
2765         
2766         * plugins/file-manager/Makefile.am:
2767         * plugins/file-manager/file-model.c:
2768         (file_model_cancel_expand_idle), (file_model_add_dummy),
2769         (file_model_expand_idle), (file_model_sort),
2770         (file_model_row_expanded), (file_model_row_collapsed),
2771         (file_model_init), (file_model_finalize),
2772         (file_model_set_property), (file_model_get_property),
2773         (file_model_class_init), (file_model_new), (file_model_refresh),
2774         (file_model_get_uri):
2775         * plugins/file-manager/file-model.h:
2776         * plugins/file-manager/file-view.c: (file_view_cancel_refresh),
2777         (file_view_expand_row_idle), (file_view_refresh),
2778         (file_view_get_selected), (file_view_button_press_event),
2779         (file_view_selection_changed), (file_view_init),
2780         (file_view_get_property), (file_view_set_property),
2781         (file_view_finalize), (file_view_class_init):
2782         
2783         Split up model/view as far as possible and fixed some file-manager
2784         bugs (popup-menu and incorrect project loading).
2785         
2786         * plugins/sourceview/assist-tip.c: (assist_tip_set_tips):
2787         Use monospace font for tips.
2788         
2789         * plugins/sourceview/sourceview-cell.c: (sourceview_cell_finalize),
2790         (sourceview_cell_new), (icell_get_character), (icell_get_length),
2791         (icell_get_attribute), (icell_style_get_font_description),
2792         (icell_style_get_color), (icell_style_get_background_color),
2793         (iiter_first), (iiter_next), (iiter_previous), (iiter_last),
2794         (iiter_foreach), (iiter_set_position), (iiter_get_position),
2795         (iiter_get_length), (iiter_clone), (iiter_assign):
2797         Use GtkTextIter only and do not use GtkTextMark at all in the sourceview-cell
2798         interface. This is way faster though it has the drawback to create invalid
2799         iterators if the buffer is changed.
2801 2007-09-21  Naba Kumar  <naba.kumar@gnome.org>
2803         * libanjuta/interfaces/libanjuta.idl:
2804         * plugins/document-manager/action-callbacks.c:
2805         * plugins/document-manager/anjuta-document-manager.ui:
2806         * plugins/document-manager/plugin.c: (register_stock_icons):
2807         * plugins/editor/text_editor.c:
2808         * plugins/language-support-cpp-java/anjuta-language-support-cpp-java.ui:
2809         * plugins/language-support-cpp-java/cpp-java-assist.c:
2810         (cpp_java_assist_get_calltip_context):
2811         * plugins/language-support-cpp-java/plugin.c: (on_auto_complete),
2812         (register_stock_icons), (cpp_java_plugin_activate_plugin):
2814         Moved autocomplete menu action from document-manager to assist plugin
2815         and got rid of deprecated autocomplete interface.
2817 2007-09-20  Naba Kumar  <naba.kumar@gnome.org>
2819         * libanjuta/interfaces/libanjuta.idl:
2820         * plugins/editor/text_editor.c: (iassist_iface_init):
2821         * plugins/language-support-cpp-java/cpp-java-assist.c:
2822         (cpp_java_assist_check), (on_assist_chosen):
2823         * plugins/sourceview/sourceview.c: (iassist_iface_init):
2824         Removed react() methods in both editors and assist interface. Assist
2825         plugin itself handles setting the autocomplete. Also fixed
2826         some mem leaks.
2828 2007-09-20  Naba Kumar  <naba.kumar@gnome.org>
2830         * plugins/file-manager/Makefile.am:
2831         * plugins/file-manager/file-view.c: (file_view_add_dummy),
2832         (file_view_expand_idle), (file_view_init):
2833         * plugins/file-manager/plugin.c: (on_file_manager_refresh),
2834         (file_manager_set_default_uri), (project_root_added),
2835         (on_file_view_current_uri_changed), (on_file_view_show_popup_menu),
2836         (file_manager_activate), (file_manager_deactivate),
2837         (file_manager_instance_init), (file_manager_class_init),
2838         (ifile_manager_set_root), (ifile_manager_set_selected),
2839         (ifile_manager_iface_init): Adjusted white spaces to match
2840         anjuta convention.
2842 2007-09-19  Naba Kumar  <naba@gnome.org>
2844         * libanjuta/interfaces/libanjuta.idl:
2845         * plugins/editor/text_editor.c: (text_editor_instance_init),
2846         (iassist_show_tips), (iassist_cancel_tips),
2847         (iassist_hide_suggestions), (iassist_iface_init):
2848         * plugins/editor/text_editor.h:
2849         * plugins/editor/text_editor_cbs.c:
2850         (on_text_editor_scintilla_notify):
2851         * plugins/language-support-cpp-java/cpp-java-assist.c:
2852         (is_scope_context_character), (is_word_character),
2853         (create_completion), (cpp_java_assist_get_scope_context),
2854         (cpp_java_assist_get_pre_word),
2855         (cpp_java_assist_get_scope_operator),
2856         (cpp_java_assist_destroy_completion_cache),
2857         (cpp_java_assist_create_scope_completion_cache),
2858         (cpp_java_assist_create_word_completion_cache),
2859         (cpp_java_assist_show_autocomplete),
2860         (cpp_java_assist_get_calltip_context),
2861         (cpp_java_assist_show_calltip), (cpp_java_assist_check),
2862         (on_editor_char_added), (on_assist_chosen),
2863         (cpp_java_assist_install), (cpp_java_assist_uninstall),
2864         (cpp_java_assist_init), (cpp_java_assist_finalize):
2865         * plugins/language-support-cpp-java/cpp-java-assist.h:
2866         * plugins/language-support-cpp-java/plugin.c:
2867         (initialize_indentation_params):
2868         * plugins/sourceview/assist-tip.c:
2869         * plugins/sourceview/assist-tip.h:
2870         * plugins/sourceview/sourceview-private.h:
2871         * plugins/sourceview/sourceview.c: (on_assist_window_destroyed),
2872         (on_assist_tip_destroyed), (on_assist_cancel),
2873         (on_document_char_added), (iassist_get_suggestions),
2874         (iassist_suggest), (iassist_show_tips), (iassist_iface_init):
2875         
2876         Implement state-less assistance so that assist can be evaluated
2877         any given time at any position. Changed IAnjutaEditorAssist interfance
2878         and implementations and removed any state management in editors.
2880 2007-09-18  Naba Kumar  <naba.kumar@gnome.org>
2882         * plugins/language-support-cpp-java/cpp-java-assist.c: Improved
2883         completion items sorting and avoided unnecssary sorts.
2885         * plugins/text-editor.c: Fixed state.
2887 2007-09-17  Johannes Schmid <jhs@gnome.org>
2889         * plugins/language-support-cpp-java/cpp-java-assist.c:
2890         (on_assist_begin):
2891         
2892         Fixed calltips in sourceview
2894 2007-09-17  Naba Kumar  <naba.kumar@gnome.org>
2896         * plugins/language-support-cpp-java/cpp-java-assist.c: Improved
2897         completion items preparation time. Fixed a crash bug.
2899         * libanjuta/anjuta-launcher.c: (anjuta_launcher_fork):
2900         Set buffer size (From Massimo, required for symbol-db).
2902         * libanjuta/interfaces/libanjuta.idl: Also pass position information
2903         for suggestions.
2905         * plugins/sourceview/sourceview.c: (iassist_suggest): Fix for above
2906         change in API.
2908         * plugins/editor/aneditor-autocomplete.cxx,
2909         plugins/editor/aneditor.h, plugins/editor/aneditor-priv.h:
2910         Added ANE_GETWORDBEFORECARAT command.
2912         * plugins/editor/aneditor.cxx: Do not autocomplete. It's now done
2913         using assist interface.
2915         * plugins/editor/text_editor.c: (text_editor_instance_init),
2916         (text_editor_get_word_before_carat),
2917         (text_editor_get_current_word), (iassist_add_trigger),
2918         (iassist_remove_trigger), (on_assist_canceled),
2919         (iassist_init_suggestions), (iassist_suggest), (iassist_show_tips),
2920         (iassist_react), (iassist_hide_suggestions), (iassist_iface_init):
2921         * plugins/editor/text_editor.h:
2922         * plugins/editor/text_editor_cbs.c: (trigger_size),
2923         (max_trigger_size), (text_editor_check_assist),
2924         (on_text_editor_scintilla_notify): Implemented IAnjutaEditorAssist
2925         interface.
2927         * plugins/language-support-cpp-java/Makefile.am:
2928         * plugins/language-support-cpp-java/plugin.c:
2929         (get_line_indentation_base), (get_line_auto_indentation),
2930         (install_support), (uninstall_support),
2931         (cpp_java_plugin_activate_plugin), (cpp_java_plugin_finalize),
2932         (cpp_java_plugin_instance_init):
2933         * plugins/language-support-cpp-java/plugin.h:
2934         * plugins/language-support-cpp-java/cpp-java-assist.[ch] (added),
2935         * plugins/language-support-cpp-java/cpp-java-utils.[ch] (added),
2936         Make assist a separate class.
2938 2007-09-14  Johannes Schmid <jhs@gnome.org>
2940         * plugins/sourceview/sourceview.c: (iassist_suggest):
2941         Fixed changed char_alignment paramter in language-support
2942         plugin
2944 2007-09-14  Naba Kumar  <naba@gnome.org>
2946         * plugins/language-support-cpp-java/plugin.c: Send the right
2947         'char_alignment' paramenter (needs fixing in sourceview).
2949 2007-09-13  Johannes Schmid <jhs@gnome.org>
2951         * anjuta.anjuta:
2952         * plugins/project-wizard/templates/minimal/project.anjuta:
2953         Use IAnjutaSymbolManager instead of loading the plugin directly.
2954         (TODO: Think of a version to do this for older files...)
2956         * configure.in:
2957         * plugins/Makefile.am:
2958         * plugins/symbol-db/Makefile.am:
2959         
2960         Build symbol-db plugin if libgda-3.0 is found
2962 2007-09-13  Johannes Schmid <jhs@gnome.org>
2964         * plugins/sourceview/Makefile.am:
2965         * plugins/sourceview/anjuta-document.c: (anjuta_document_finalize),
2966         (set_uri):
2967         * plugins/sourceview/anjuta-document.h:
2968         Removed lots of dead code
2969         
2970         * plugins/sourceview/anjuta-languages-manager.c:
2971         * plugins/sourceview/anjuta-languages-manager.h:
2972         removed completely
2973         
2974         * plugins/sourceview/sourceview.c: (on_document_char_added),
2975         (on_document_loaded), (sourceview_instance_init),
2976         (iselect_get_start), (iselect_get_end),
2977         (ilanguage_get_supported_languages), (ilanguage_set_language):
2978         
2979         Fixed selection handling and make some adaptions for the changes 
2980         mentioned above
2982 2007-09-13  Johannes Schmid <jhs@gnome.org>
2984         * plugins/language-support-cpp-java/anjuta-language-cpp-java.glade:
2985         * plugins/language-support-cpp-java/plugin.c: (on_assist_begin),
2986         (on_assist_update):
2987         
2988         Added preferences to language support completion/calltips
2989         
2990         * plugins/sourceview/assist-window.c: (assist_window_update):
2992         Always select first entry
2994         * plugins/sourceview/sourceview.glade:
2995         Removed old completion preferences
2997 2007-09-11  Naba Kumar  <naba@gnome.org>
2999         * plugins/terminal/terminal.c: Fixed critical warning, memory leak
3000         and possible crash when pressing ctrl+d in terminal after preferences
3001         window has been shown once (no need for backport).
3003         * libanjuta/interfaces/anjuta-idl-compiler.pl: Create default method
3004         implementations to get warnings instead of crashes for unimplemented
3005         interface methods.
3007 2007-09-11   Massimo Cora' <maxcvs@email.it>
3009         Reviewed by: Naba Kumar  <naba@gnome.org>
3011         * libanjuta/anjuta-launcher.c: (anjuta_launcher_fork):
3012         * plugins/symbol-db/*:
3013         Added new symbol-database backend based on SQLite 3.
3014         (does not enabled for build currently).
3016 2007-09-10  Johannes Schmid <jhs@gnome.org>
3018         * anjuta.anjuta:
3019         * configure.in:
3020         * libegg/egg-recent-model.c: (egg_recent_model_write_raw),
3021         (parse_info_init), (parse_info_free), (valid_element),
3022         (start_element_handler), (end_element_handler), (text_handler),
3023         (egg_recent_model_filter), (egg_recent_model_changed_timeout),
3024         (egg_recent_model_monitor_cb), (egg_recent_model_poll_timeout),
3025         (egg_recent_model_monitor), (egg_recent_model_read),
3026         (egg_recent_model_open_file), (egg_recent_model_lock_file),
3027         (egg_recent_model_unlock_file), (egg_recent_model_finalize),
3028         (egg_recent_model_set_property), (egg_recent_model_class_init),
3029         (egg_recent_model_init), (egg_recent_model_add_full),
3030         (egg_recent_model_delete), (egg_recent_model_get_list),
3031         (egg_recent_model_clear), (egg_recent_model_clear_mime_filter),
3032         (egg_recent_model_set_filter_mime_types),
3033         (egg_recent_model_clear_group_filter),
3034         (egg_recent_model_set_filter_groups),
3035         (egg_recent_model_clear_scheme_filter),
3036         (egg_recent_model_set_filter_uri_schemes),
3037         (egg_recent_model_remove_expired):
3038         
3039         Update EggRecent (#456465)
3041 2007-09-10  Johannes Schmid <jhs@gnome.org>
3043         * libanjuta/anjuta-plugin-manager.c: (get_plugin_loader_type),
3044         (anjuta_plugin_manager_get_plugin):
3045         * plugins/profiler/gprof-call-graph-view.c:
3046         (gprof_call_graph_view_create_columns):
3047         * plugins/profiler/gprof-flat-profile-view.c:
3048         (gprof_flat_profile_view_create_columns):
3049         * plugins/profiler/gprof-function-call-tree-view.c:
3050         (gprof_function_call_tree_view_create_columns):
3051         
3052         Fixed #466031 – Update of pieces of menus for Localization
3054 2007-09-10  Johannes Schmid <jhs@gnome.org>
3056         * libanjuta/anjuta-utils.c: (anjuta_util_parse_args_from_string):
3057         Bug 343522 – anjuta: Unable to execute commands that use options.
3059 2007-09-09  Johannes Schmid <jhs@gnome.org>
3061         * plugins/document-manager/anjuta-docman.c:
3062         (anjuta_docman_update_page_label):
3063         
3064         Fixed #458034 – Method of indicating unsaved changes breaks convention
3065         
3066         * plugins/document-manager/plugin.c: (update_title),
3067         (value_added_project_root_uri), (value_removed_project_root_uri),
3068         (on_editor_changed), (activate_plugin):
3069         * plugins/document-manager/plugin.h:
3070         * plugins/project-manager/plugin.c: (on_profile_scoped),
3071         (on_profile_descoped), (ifile_open):
3072         
3073         Fixed #427390 – Show path of item in currently focused editor window
3075 2007-09-09  Johannes Schmid <jhs@gnome.org>
3077         * plugins/search/plugin.c: (on_toolbar_find_clicked),
3078         (on_toolbar_find_incremental):
3079         Fix incremental search
3080         
3081         * plugins/sourceview/sourceview.c: (on_document_char_added),
3082         (set_select):
3083         Fixed selection management
3085 2007-09-09  Johannes Schmid <jhs@gnome.org>
3087         * libanjuta/anjuta-ui.c: (anjuta_ui_remove_action_group):
3088         Fixed memory leak
3090         * libanjuta/interfaces/libanjuta.idl:
3091         Extended IAnjutaEditorAssist interface
3092         
3093         * plugins/language-support-cpp-java/plugin.c:
3094         (jump_to_matching_brace), (add_tags), (on_assist_begin),
3095         (assist_cleanup), (on_assist_chosen), (on_assist_update),
3096         (context_character), (get_context), (function_parser),
3097         (cpp_member_parser), (install_assist), (uninstall_assist),
3098         (get_line_indentation_base), (get_line_auto_indentation),
3099         (install_support), (uninstall_support),
3100         (on_value_added_current_editor), (on_value_removed_current_editor),
3101         (cpp_java_plugin_finalize), (cpp_java_plugin_instance_init):
3102         * plugins/language-support-cpp-java/plugin.h:
3103         
3104         Improved fixed editor assistance and added support for function/method
3105         tooltips. jumb_to_matching_brance => jump_to_matching_brace
3106         
3107         * plugins/message-view/anjuta-msgman.c: (on_message_view_destroy):
3108         Removed a FIXME
3109         
3110         * plugins/project-import/project-import.c: (on_import_next):
3111         Added a non-NULL check with could probably fix #474843 but not sure
3112         
3113         * plugins/project-wizard/templates/anjuta-plugin/src/Makefile.am.tpl:
3114         Fixed anjuta-plugin project wizard
3115         
3116         * plugins/sourceview/Makefile.am:
3117         * plguins/sourceview/assist-tip.[ch]:
3118         * plugins/sourceview/anjuta-view.c: (anjuta_view_focus_out),
3119         (anjuta_view_key_press_event):
3120         * plugins/sourceview/assist-window.c: (assist_window_class_init),
3121         (assist_window_init), (assist_window_update), (assist_window_new):
3122         * plugins/sourceview/sourceview-private.h:
3123         * plugins/sourceview/sourceview.c: (on_assist_window_destroyed),
3124         (on_assist_tip_destroyed), (on_assist_chosen), (on_assist_cancel),
3125         (trigger_size), (max_trigger_size), (on_document_char_added),
3126         (sourceview_dispose), (ieditor_get_current_word),
3127         (iassist_add_trigger), (iassist_init_suggestions),
3128         (iassist_suggest), (iassist_hide_suggestions), (iassist_show_tips),
3129         (iassist_cancel_tips), (iassist_react), (iassist_iface_init):
3130         
3131         Big update on sourceview assist capabilites. Autocompletion should
3132         now work much better and function tooltips are finally supported!
3134         * plugins/sourceview/anjuta-document.h:
3135         * plugins/sourceview/anjuta-document.c: (wordcharacters_contains),
3136         (anjuta_document_get_current_word):
3137         Fixed get_current_word (inspired by aneditor.cxx implementation)
3139         * plugins/sourceview/sourceview-cell.c: (icell_get_char),
3140         (icell_get_attribute):
3141         Fixed get_attribute() to also detect character constants.
3142         Simplified get_char()
3144         * plugins/symbol-browser/plugin.c: (isymbol_manager_search),
3145         (isymbol_manager_get_members), (isymbol_manager_get_parents),
3146         (isymbol_manager_get_completions_at_position):
3147         
3148         Fixed IAnjutaSymbolManager interface (see 2.2.1 for details)
3150 2007-09-04  Naba Kumar  <naba@gnome.org>
3152         * plugins/class-gen/plugin.c: Do not enable 'Add to project'
3153         projects that can not add sources.
3155         * plugins/file-wizard/file.c: Similarly for file wizard,
3156         Do not enable 'Add to project' projects that can not add sources.
3158 2007-09-04  Naba Kumar  <naba@gnome.org>
3160         * configure.in: Bumped gnome-build requirement to 0.2.0
3161         for project capabilities support.
3163         * plugins/project-manager/plugin.c: Enable/disable project
3164         actions based on project capabilities. Fixes bug #433552:
3165         crash in Anjuta IDE: add file test.h in project on generic
3166         Makefile.
3168         * libanjuta/interfaces/libanjuta.idl: Added method to query
3169         project capabilities.
3171 2007-09-03  Naba Kumar  <naba@gnome.org>
3173         * plugins/file-manager/plugin.c: Set shadow type IN.
3174         * plugins/file-manager/file-view.c: Fixed code style.
3175         * plugins/file-manager/file-view.c: Fixed icons column to size
3176         properly.
3178         * plugins/file-manager/plugin.[c,h]: Fixed code style.
3180         * plugins/file-manager/plugin.c: Fixed crash on closing project and
3181         unmonitors project-uri on file-manager deactivation.
3183         * TODO.tasks: Updated
3185 2007-09-02  Johannes Schmid <jhs@gnome.org>
3187         * libanjuta/anjuta-ui.c: (anjuta_ui_remove_action_group):
3188         Fixed memory leak
3189         
3190         * plugins/file-manager/file-view.c: (file_view_get_selected),
3191         (file_view_button_press_event), (file_view_finalize):
3192         * plugins/file-manager/plugin.c: (project_root_removed),
3193         (file_manager_deactivate):
3194         
3195         Fixed some small bugs I missed before
3197 2007-09-02  Johannes Schmid <jhs@gnome.org>
3199         * plugins/file-manager/*:
3200         Added new and file-manager
3202 2007-09-02  Johannes Schmid <jhs@gnome.org>
3204         * plugins/file-manager/*:
3205         Removed old file-manager
3207 2007-08-31  Johannes Schmid <jhs@gnome.org>
3209         * libanjuta/anjuta-plugin-manager.c: (anjuta_plugin_manager_new):
3210         * libanjuta/anjuta-ui.c: (anjuta_ui_add_action_group):
3211         
3212         Fixed some memory leaks
3213         
3214         * MAINTAINERS: Fixed
3215         
3216 2007-08-31  Johannes Schmid <jhs@gnome.org>
3218         * libanjuta/anjuta-preferences.c: (get_object_type_from_string),
3219         (get_property_value_as_string), (set_property_value_as_string),
3220         (register_callbacks), (preferences_foreach_callback),
3221         (anjuta_preferences_register_property_raw):
3222         * libanjuta/anjuta-preferences.h:
3223         * plugins/build-basic-autotools/build-basic-autotools.c:
3224         (on_build_mesg_format):
3225         * plugins/document-manager/anjuta-document-manager.glade:
3226         * plugins/message-view/anjuta-message-manager-plugin.glade:
3227         
3228         Use GtkComboBox instead of (deprecated) GtkOptionMenu and fixed
3229         broken message view preferences
3230         
3231         * plugins/message-view/message-view.c:
3232         (message_view_instance_init), (pref_change_color), (prefs_init),
3233         (imessage_view_append):
3234         Cleaned up message view (#458041)
3235         
3236         * src/shell.c: (on_preferences_activate),
3237         (anjuta_test_shell_instance_init),
3238         (anjuta_test_shell_get_plugin_manager), (anjuta_shell_iface_init):
3239         Fixed test shell to allow better debugging
3240         
3241 2007-08-31  Johannes Schmid <jhs@gnome.org>
3243         * plugins/gtodo/interface.c: (gtodo_get_hide_done),
3244         (gtodo_get_hide_nodate), (gtodo_get_hide_due):
3245         * plugins/gtodo/main.h:
3246         * plugins/gtodo/plugin.c: (activate_plugin):
3247         
3248         Fixed #423467 (View->Tasks menu items are not 
3249         checked on startup)
3251 2007-08-31  Tobias Müller <gnome-bugs@auftrags-killer.org>
3253         reviewed by: Johannes Schmid <jhs@gnome.org>
3255         * COPYING:
3256         * data/welcome.txt.in:
3257         * launcher/anjuta_launcher.c:
3258         * libanjuta/anjuta-children.c:
3259         * libanjuta/anjuta-children.h:
3260         * libanjuta/anjuta-debug.h:
3261         * libanjuta/anjuta-encodings.c:
3262         * libanjuta/anjuta-encodings.h:
3263         * libanjuta/anjuta-glue-c.c:
3264         * libanjuta/anjuta-glue-c.h:
3265         * libanjuta/anjuta-plugin-description.c:
3266         * libanjuta/anjuta-plugin-description.h:
3267         * libanjuta/anjuta-plugin-handle.c:
3268         * libanjuta/anjuta-plugin-handle.h:
3269         * libanjuta/anjuta-plugin-manager.c:
3270         * libanjuta/anjuta-plugin-manager.h:
3271         * libanjuta/anjuta-plugin.c:
3272         * libanjuta/anjuta-plugin.h:
3273         * libanjuta/anjuta-preferences.c:
3274         * libanjuta/anjuta-preferences.h:
3275         * libanjuta/anjuta-profile-manager.c:
3276         * libanjuta/anjuta-profile-manager.h:
3277         * libanjuta/anjuta-profile.c:
3278         * libanjuta/anjuta-profile.h:
3279         * libanjuta/anjuta-save-prompt.c:
3280         * libanjuta/anjuta-save-prompt.h:
3281         * libanjuta/anjuta-serializer.c:
3282         * libanjuta/anjuta-serializer.h:
3283         * libanjuta/anjuta-session.c:
3284         * libanjuta/anjuta-session.h:
3285         * libanjuta/anjuta-shell.c:
3286         * libanjuta/anjuta-shell.h:
3287         * libanjuta/anjuta-status.c:
3288         * libanjuta/anjuta-status.h:
3289         * libanjuta/anjuta-ui.c:
3290         * libanjuta/anjuta-ui.h:
3291         * libanjuta/anjuta-utils-priv.h:
3292         * libanjuta/anjuta-utils.c:
3293         * libanjuta/anjuta-utils.h:
3294         * libanjuta/cell-renderer-captioned-image.c:
3295         * libanjuta/cell-renderer-captioned-image.h:
3296         * libanjuta/e-splash.c:
3297         * libanjuta/e-splash.h:
3298         * libanjuta/interfaces/anjuta-idl-compiler.pl:
3299         * libanjuta/interfaces/libanjuta.idl:
3300         * libanjuta/libanjuta.h:
3301         * libanjuta/resources.c:
3302         * libanjuta/resources.h:
3303         * libegg/egg-cell-renderer-text.c:
3304         * libegg/egg-combo-action.c:
3305         * libegg/egg-entry-action.c:
3306         * libegg/egg-recent-action.c:
3307         * libegg/egg-recent-files-module.c:
3308         * libegg/egg-recent-item.c:
3309         * libegg/egg-recent-model.c:
3310         * libegg/egg-recent-view-gtk.c:
3311         * libegg/egg-recent-view.c:
3312         * libegg/egg-submenu-action.c:
3313         * libegg/eggaccelerators.c:
3314         * libegg/eggcellrendererpopup.c:
3315         * libegg/eggcomboselect.c:
3316         * libegg/eggtreemodelfilter.c:
3317         * libegg/eggtreemultidnd.c:
3318         * libegg/gtkcellview.h:
3319         * libegg/treeviewutils/egg-cell-renderer-text.h:
3320         * libegg/treeviewutils/eggaccelerators.h:
3321         * libegg/treeviewutils/eggcellrendererkeys.h:
3322         * libegg/treeviewutils/eggcellrendererpopup.h:
3323         * libegg/treeviewutils/eggtreemodelfilter.h:
3324         * libegg/treeviewutils/eggtreemultidnd.h:
3325         * libegg/treeviewutils/eggtreeviewstate.h:
3326         * manuals/anjuta-faqs/C/anjuta-faqs.xml:
3327         * manuals/anjuta-faqs/Makefile.am:
3328         * manuals/anjuta-manual/C/anjuta-manual.xml:
3329         * manuals/anjuta-manual/C/license.xml:
3330         * manuals/anjuta-manual/es/es.po:
3331         * manuals/anjuta-manual/sv/sv.po:
3332         * manuals/old/C/anjuta-advanced-tutorial/anjuta-advanced-tutorial.x
3333         ml:
3334         * manuals/old/C/anjuta-tutorial/anjuta-tutorial.xml:
3335         * manuals/old/de/anjuta-tutorial/anjuta-tutorial.xml:
3336         * manuals/old/ja/anjuta-faqs/anjuta-faqs.xml:
3337         * manuals/old/ja/anjuta-manual/anjuta-manual.xml:
3338         * manuals/old/ja/anjuta-manual/license.xml:
3339         * plugins/build-basic-autotools/build-basic-autotools.c:
3340         * plugins/build-basic-autotools/build-basic-autotools.h:
3341         * plugins/build-basic-autotools/executer.c:
3342         * plugins/build-basic-autotools/executer.h:
3343         * plugins/build/build_file.c:
3344         * plugins/build/build_file.h:
3345         * plugins/build/build_project.c:
3346         * plugins/build/build_project.h:
3347         * plugins/build/clean_project.c:
3348         * plugins/build/clean_project.h:
3349         * plugins/build/commands.c:
3350         * plugins/build/commands.h:
3351         * plugins/build/compile.c:
3352         * plugins/build/compile.h:
3353         * plugins/build/compiler_options.c:
3354         * plugins/build/compiler_options.h:
3355         * plugins/build/configurer.c:
3356         * plugins/build/configurer.h:
3357         * plugins/build/executer.c:
3358         * plugins/build/executer.h:
3359         * plugins/class-gen/cell-renderer-flags.c:
3360         * plugins/class-gen/cell-renderer-flags.h:
3361         * plugins/class-gen/combo-flags.c:
3362         * plugins/class-gen/combo-flags.h:
3363         * plugins/class-gen/element-editor.c:
3364         * plugins/class-gen/element-editor.h:
3365         * plugins/class-gen/generator.c:
3366         * plugins/class-gen/generator.h:
3367         * plugins/class-gen/plugin.c:
3368         * plugins/class-gen/plugin.h:
3369         * plugins/class-gen/transform.c:
3370         * plugins/class-gen/transform.h:
3371         * plugins/class-gen/validator.c:
3372         * plugins/class-gen/validator.h:
3373         * plugins/class-gen/window.c:
3374         * plugins/class-gen/window.h:
3375         * plugins/class-inheritance/class-callbacks.c:
3376         * plugins/class-inheritance/class-callbacks.h:
3377         * plugins/class-inheritance/class-inherit.c:
3378         * plugins/class-inheritance/class-inherit.h:
3379         * plugins/class-inheritance/plugin.c:
3380         * plugins/class-inheritance/plugin.h:
3381         * plugins/cvs-plugin/cvs-actions.c:
3382         * plugins/cvs-plugin/cvs-actions.h:
3383         * plugins/cvs-plugin/cvs-callbacks.c:
3384         * plugins/cvs-plugin/cvs-callbacks.h:
3385         * plugins/cvs-plugin/cvs-execute.c:
3386         * plugins/cvs-plugin/cvs-execute.h:
3387         * plugins/cvs-plugin/cvs-interface.c:
3388         * plugins/cvs-plugin/cvs-interface.h:
3389         * plugins/cvs-plugin/plugin.c:
3390         * plugins/cvs-plugin/plugin.h:
3391         * plugins/debug-manager/breakpoints.c:
3392         * plugins/debug-manager/breakpoints.h:
3393         * plugins/debug-manager/chunk_view.c:
3394         * plugins/debug-manager/chunk_view.h:
3395         * plugins/debug-manager/data_buffer.c:
3396         * plugins/debug-manager/data_buffer.h:
3397         * plugins/debug-manager/data_view.c:
3398         * plugins/debug-manager/data_view.h:
3399         * plugins/debug-manager/debug_tree.c:
3400         * plugins/debug-manager/debug_tree.h:
3401         * plugins/debug-manager/debugger.c:
3402         * plugins/debug-manager/debugger.h:
3403         * plugins/debug-manager/disassemble.c:
3404         * plugins/debug-manager/disassemble.h:
3405         * plugins/debug-manager/info.c:
3406         * plugins/debug-manager/info.h:
3407         * plugins/debug-manager/locals.c:
3408         * plugins/debug-manager/locals.h:
3409         * plugins/debug-manager/memory.c:
3410         * plugins/debug-manager/memory.h:
3411         * plugins/debug-manager/plugin.c:
3412         * plugins/debug-manager/plugin.h:
3413         * plugins/debug-manager/registers.c:
3414         * plugins/debug-manager/registers.h:
3415         * plugins/debug-manager/sexy-icon-entry.c:
3416         * plugins/debug-manager/sexy-icon-entry.h:
3417         * plugins/debug-manager/sharedlib.c:
3418         * plugins/debug-manager/sharedlib.h:
3419         * plugins/debug-manager/signals.c:
3420         * plugins/debug-manager/signals.h:
3421         * plugins/debug-manager/sparse_buffer.c:
3422         * plugins/debug-manager/sparse_buffer.h:
3423         * plugins/debug-manager/sparse_view.c:
3424         * plugins/debug-manager/sparse_view.h:
3425         * plugins/debug-manager/stack_trace.c:
3426         * plugins/debug-manager/stack_trace.h:
3427         * plugins/debug-manager/start.c:
3428         * plugins/debug-manager/start.h:
3429         * plugins/debug-manager/threads.c:
3430         * plugins/debug-manager/threads.h:
3431         * plugins/debug-manager/utilities.c:
3432         * plugins/debug-manager/utilities.h:
3433         * plugins/debug-manager/watch.c:
3434         * plugins/debug-manager/watch.h:
3435         * plugins/devhelp/htmlview.c:
3436         * plugins/devhelp/htmlview.h:
3437         * plugins/document-manager/action-callbacks.c:
3438         * plugins/document-manager/action-callbacks.h:
3439         * plugins/document-manager/anjuta-docman.c:
3440         * plugins/document-manager/anjuta-docman.h:
3441         * plugins/document-manager/editor-tooltips.c:
3442         * plugins/document-manager/editor-tooltips.h:
3443         * plugins/document-manager/file_history.c:
3444         * plugins/document-manager/file_history.h:
3445         * plugins/document-manager/indent-dialog.c:
3446         * plugins/document-manager/indent-dialog.h:
3447         * plugins/document-manager/indent-util.c:
3448         * plugins/document-manager/indent-util.h:
3449         * plugins/document-manager/plugin.c:
3450         * plugins/editor/aneditor-autocomplete.cxx:
3451         * plugins/editor/aneditor-calltip.cxx:
3452         * plugins/editor/aneditor-indent.cxx:
3453         * plugins/editor/aneditor-priv.h:
3454         * plugins/editor/aneditor.cxx:
3455         * plugins/editor/aneditor.h:
3456         * plugins/editor/lexer.h:
3457         * plugins/editor/plugin.c:
3458         * plugins/editor/plugin.h:
3459         * plugins/editor/print.c:
3460         * plugins/editor/print.h:
3461         * plugins/editor/properties.h:
3462         * plugins/editor/properties_cxx.h:
3463         * plugins/editor/style-editor.c:
3464         * plugins/editor/style-editor.h:
3465         * plugins/editor/text-editor-iterable.c:
3466         * plugins/editor/text-editor-iterable.h:
3467         * plugins/editor/text_editor.c:
3468         * plugins/editor/text_editor.h:
3469         * plugins/editor/text_editor_cbs.c:
3470         * plugins/editor/text_editor_cbs.h:
3471         * plugins/editor/text_editor_menu.c:
3472         * plugins/editor/text_editor_menu.h:
3473         * plugins/editor/text_editor_prefs.c:
3474         * plugins/editor/text_editor_prefs.h:
3475         * plugins/file-loader/dnd.c:
3476         * plugins/file-loader/dnd.h:
3477         * plugins/file-loader/plugin.c:
3478         * plugins/file-manager/an_file_view.c:
3479         * plugins/file-manager/plugin.c:
3480         * plugins/file-wizard/file.c:
3481         * plugins/file-wizard/file.h:
3482         * plugins/file-wizard/plugin.c:
3483         * plugins/file-wizard/plugin.h:
3484         * plugins/gdb/debugger.c:
3485         * plugins/gdb/debugger.h:
3486         * plugins/gdb/gdbmi-test.c:
3487         * plugins/gdb/gdbmi.c:
3488         * plugins/gdb/gdbmi.h:
3489         * plugins/gdb/global.h:
3490         * plugins/gdb/parser.c:
3491         * plugins/gdb/parser.h:
3492         * plugins/gdb/plugin.c:
3493         * plugins/gdb/plugin.h:
3494         * plugins/gdb/utilities.c:
3495         * plugins/gdb/utilities.h:
3496         * plugins/glade/plugin.c:
3497         * plugins/glade/plugin.h:
3498         * plugins/gtodo/egg-datetime.c:
3499         * plugins/gtodo/egg-datetime.h:
3500         * plugins/gtodo/eggtrayicon.c:
3501         * plugins/gtodo/eggtrayicon.h:
3502         * plugins/gtodo/plugin.c:
3503         * plugins/gvim/anjuta-vim.c:
3504         * plugins/gvim/anjuta-vim.h:
3505         * plugins/gvim/gtkvim.c:
3506         * plugins/gvim/gtkvim.h:
3507         * plugins/gvim/plugin.c:
3508         * plugins/gvim/plugin.h:
3509         * plugins/language-support-cpp-java/plugin.c:
3510         * plugins/language-support-cpp-java/plugin.h:
3511         * plugins/macro/macro-actions.c:
3512         * plugins/macro/macro-actions.h:
3513         * plugins/macro/macro-db.c:
3514         * plugins/macro/macro-db.h:
3515         * plugins/macro/macro-dialog.c:
3516         * plugins/macro/macro-dialog.h:
3517         * plugins/macro/macro-edit.c:
3518         * plugins/macro/macro-edit.h:
3519         * plugins/macro/macro-util.c:
3520         * plugins/macro/macro-util.h:
3521         * plugins/macro/plugin.c:
3522         * plugins/macro/plugin.h:
3523         * plugins/message-view/anjuta-msgman.c:
3524         * plugins/message-view/anjuta-msgman.h:
3525         * plugins/message-view/message-view.c:
3526         * plugins/message-view/message-view.h:
3527         * plugins/message-view/plugin.c:
3528         * plugins/message-view/plugin.h:
3529         * plugins/patch/patch-plugin.c:
3530         * plugins/patch/patch-plugin.h:
3531         * plugins/patch/plugin.c:
3532         * plugins/patch/plugin.h:
3533         * plugins/profiler/gprof-call-graph-block-entry.c:
3534         * plugins/profiler/gprof-call-graph-block-entry.h:
3535         * plugins/profiler/gprof-call-graph-block.c:
3536         * plugins/profiler/gprof-call-graph-block.h:
3537         * plugins/profiler/gprof-call-graph-view.c:
3538         * plugins/profiler/gprof-call-graph-view.h:
3539         * plugins/profiler/gprof-call-graph.c:
3540         * plugins/profiler/gprof-call-graph.h:
3541         * plugins/profiler/gprof-flat-profile-entry.c:
3542         * plugins/profiler/gprof-flat-profile-entry.h:
3543         * plugins/profiler/gprof-flat-profile-view.c:
3544         * plugins/profiler/gprof-flat-profile-view.h:
3545         * plugins/profiler/gprof-flat-profile.c:
3546         * plugins/profiler/gprof-flat-profile.h:
3547         * plugins/profiler/gprof-function-call-chart-view.c:
3548         * plugins/profiler/gprof-function-call-chart-view.h:
3549         * plugins/profiler/gprof-function-call-tree-view.c:
3550         * plugins/profiler/gprof-function-call-tree-view.h:
3551         * plugins/profiler/gprof-options.c:
3552         * plugins/profiler/gprof-options.h:
3553         * plugins/profiler/gprof-profile-data.c:
3554         * plugins/profiler/gprof-profile-data.h:
3555         * plugins/profiler/gprof-view-manager.c:
3556         * plugins/profiler/gprof-view-manager.h:
3557         * plugins/profiler/gprof-view.c:
3558         * plugins/profiler/gprof-view.h:
3559         * plugins/profiler/plugin.c:
3560         * plugins/profiler/plugin.h:
3561         * plugins/profiler/string-utils.c:
3562         * plugins/profiler/string-utils.h:
3563         * plugins/project-import/plugin.c:
3564         * plugins/project-import/plugin.h:
3565         * plugins/project-import/project-import.c:
3566         * plugins/project-import/project-import.h:
3567         * plugins/project-manager/plugin.c:
3568         * plugins/project-manager/plugin.h:
3569         * plugins/project-wizard/action.c:
3570         * plugins/project-wizard/action.h:
3571         * plugins/project-wizard/autogen.c:
3572         * plugins/project-wizard/autogen.h:
3573         * plugins/project-wizard/druid.c:
3574         * plugins/project-wizard/druid.h:
3575         * plugins/project-wizard/file.c:
3576         * plugins/project-wizard/file.h:
3577         * plugins/project-wizard/header.c:
3578         * plugins/project-wizard/header.h:
3579         * plugins/project-wizard/install.c:
3580         * plugins/project-wizard/install.h:
3581         * plugins/project-wizard/parser.c:
3582         * plugins/project-wizard/parser.h:
3583         * plugins/project-wizard/plugin.c:
3584         * plugins/project-wizard/plugin.h:
3585         * plugins/project-wizard/property.c:
3586         * plugins/project-wizard/property.h:
3587         * plugins/project-wizard/values.c:
3588         * plugins/project-wizard/values.h:
3589         * plugins/sample1/plugin.c:
3590         * plugins/search/plugin.c:
3591         * plugins/search/plugin.h:
3592         * plugins/search/search-replace_backend.c:
3593         * plugins/search/search-replace_backend.h:
3594         * plugins/search/search_preferences.c:
3595         * plugins/sourceview/anjuta-convert.c:
3596         * plugins/sourceview/anjuta-convert.h:
3597         * plugins/sourceview/anjuta-document-loader.c:
3598         * plugins/sourceview/anjuta-document-loader.h:
3599         * plugins/sourceview/anjuta-document-saver.c:
3600         * plugins/sourceview/anjuta-document-saver.h:
3601         * plugins/sourceview/anjuta-document.c:
3602         * plugins/sourceview/anjuta-document.h:
3603         * plugins/sourceview/anjuta-encodings.c:
3604         * plugins/sourceview/anjuta-encodings.h:
3605         * plugins/sourceview/anjuta-languages-manager.c:
3606         * plugins/sourceview/anjuta-languages-manager.h:
3607         * plugins/sourceview/anjuta-utils.c:
3608         * plugins/sourceview/anjuta-utils.h:
3609         * plugins/sourceview/anjuta-view.c:
3610         * plugins/sourceview/anjuta-view.h:
3611         * plugins/sourceview/assist-window.c:
3612         * plugins/sourceview/assist-window.h:
3613         * plugins/sourceview/sourceview-cell.c:
3614         * plugins/sourceview/sourceview-cell.h:
3615         * plugins/sourceview/sourceview-prefs.c:
3616         * plugins/sourceview/sourceview-prefs.h:
3617         * plugins/sourceview/sourceview-print.c:
3618         * plugins/sourceview/sourceview-print.h:
3619         * plugins/sourceview/sourceview-private.h:
3620         * plugins/sourceview/sourceview-tags.c:
3621         * plugins/sourceview/sourceview-tags.h:
3622         * plugins/sourceview/sourceview.c:
3623         * plugins/sourceview/sourceview.h:
3624         * plugins/subversion/plugin.c:
3625         * plugins/subversion/plugin.h:
3626         * plugins/subversion/subversion-actions.c:
3627         * plugins/subversion/subversion-actions.h:
3628         * plugins/subversion/subversion-callbacks.c:
3629         * plugins/subversion/subversion-callbacks.h:
3630         * plugins/subversion/svn-auth.c:
3631         * plugins/subversion/svn-auth.h:
3632         * plugins/subversion/svn-backend-priv.h:
3633         * plugins/subversion/svn-backend.c:
3634         * plugins/subversion/svn-backend.h:
3635         * plugins/subversion/svn-notify.c:
3636         * plugins/subversion/svn-notify.h:
3637         * plugins/subversion/svn-thread.c:
3638         * plugins/subversion/svn-thread.h:
3639         * plugins/symbol-browser/an_symbol.c:
3640         * plugins/symbol-browser/an_symbol.h:
3641         * plugins/symbol-browser/an_symbol_info.c:
3642         * plugins/symbol-browser/an_symbol_info.h:
3643         * plugins/symbol-browser/an_symbol_iter.c:
3644         * plugins/symbol-browser/an_symbol_iter.h:
3645         * plugins/symbol-browser/an_symbol_prefs.c:
3646         * plugins/symbol-browser/an_symbol_prefs.h:
3647         * plugins/symbol-browser/an_symbol_search.c:
3648         * plugins/symbol-browser/an_symbol_search.h:
3649         * plugins/symbol-browser/an_symbol_view.c:
3650         * plugins/symbol-browser/an_symbol_view.h:
3651         * plugins/symbol-browser/plugin.c:
3652         * plugins/symbol-browser/plugin.h:
3653         * plugins/terminal/terminal.c:
3654         * plugins/tools/dialog.c:
3655         * plugins/tools/dialog.h:
3656         * plugins/tools/editor.c:
3657         * plugins/tools/editor.h:
3658         * plugins/tools/execute.c:
3659         * plugins/tools/execute.h:
3660         * plugins/tools/fileop.c:
3661         * plugins/tools/fileop.h:
3662         * plugins/tools/plugin.c:
3663         * plugins/tools/plugin.h:
3664         * plugins/tools/scripts/find-fixmes.pl:
3665         * plugins/tools/scripts/translation-status.pl:
3666         * plugins/tools/tool.c:
3667         * plugins/tools/tool.h:
3668         * plugins/tools/variable.c:
3669         * plugins/tools/variable.h:
3670         * plugins/valgrind/ldd.c:
3671         * plugins/valgrind/ldd.h:
3672         * plugins/valgrind/list.c:
3673         * plugins/valgrind/list.h:
3674         * plugins/valgrind/menu-utils.c:
3675         * plugins/valgrind/menu-utils.h:
3676         * plugins/valgrind/parser.c:
3677         * plugins/valgrind/parser.h:
3678         * plugins/valgrind/plugin.c:
3679         * plugins/valgrind/plugin.h:
3680         * plugins/valgrind/preferences.c:
3681         * plugins/valgrind/preferences.h:
3682         * plugins/valgrind/process.c:
3683         * plugins/valgrind/process.h:
3684         * plugins/valgrind/symtab.c:
3685         * plugins/valgrind/symtab.h:
3686         * plugins/valgrind/vgactions.c:
3687         * plugins/valgrind/vgactions.h:
3688         * plugins/valgrind/vgcachegrindprefs.c:
3689         * plugins/valgrind/vgcachegrindprefs.h:
3690         * plugins/valgrind/vgdefaultview.c:
3691         * plugins/valgrind/vgdefaultview.h:
3692         * plugins/valgrind/vgerror.c:
3693         * plugins/valgrind/vgerror.h:
3694         * plugins/valgrind/vggeneralprefs.c:
3695         * plugins/valgrind/vggeneralprefs.h:
3696         * plugins/valgrind/vghelgrindprefs.c:
3697         * plugins/valgrind/vghelgrindprefs.h:
3698         * plugins/valgrind/vgio.c:
3699         * plugins/valgrind/vgio.h:
3700         * plugins/valgrind/vgmemcheckprefs.c:
3701         * plugins/valgrind/vgmemcheckprefs.h:
3702         * plugins/valgrind/vgrule-editor.c:
3703         * plugins/valgrind/vgrule-editor.h:
3704         * plugins/valgrind/vgrule-list.c:
3705         * plugins/valgrind/vgrule-list.h:
3706         * plugins/valgrind/vgrule.c:
3707         * plugins/valgrind/vgrule.h:
3708         * plugins/valgrind/vgrulepattern.c:
3709         * plugins/valgrind/vgrulepattern.h:
3710         * plugins/valgrind/vgsearchbar.c:
3711         * plugins/valgrind/vgsearchbar.h:
3712         * plugins/valgrind/vgstrpool.c:
3713         * plugins/valgrind/vgstrpool.h:
3714         * plugins/valgrind/vgtoolprefs.c:
3715         * plugins/valgrind/vgtoolprefs.h:
3716         * plugins/valgrind/vgtoolview.c:
3717         * plugins/valgrind/vgtoolview.h:
3718         * src/about.c:
3719         * src/about.h:
3720         * src/action-callbacks.c:
3721         * src/action-callbacks.h:
3722         * src/anjuta-actions.h:
3723         * src/anjuta-app.c:
3724         * src/anjuta-app.h:
3725         * src/anjuta-callbacks.c:
3726         * src/anjuta-callbacks.h:
3727         * src/anjuta.c:
3728         * src/anjuta.h:
3729         * src/anjuta_cbs.c:
3730         * src/bacon-message-connection.c:
3731         * src/bacon-message-connection.h:
3732         * src/getline.c:
3733         * src/main.c:
3734         * src/shell.c:
3735         * src/shell.h:
3736         * src/start-with.c:
3737         * src/start-with.h:
3738         * src/utilities.c:
3739         * src/utilities.h:
3740         * tagmanager/options.c:
3741         
3742         Change the address of FSF in various files
3744 2007-08-30  Johannes Schmid <jhs@gnome.org>
3746         * anjuta.glade:
3747         * anjuta.gladep:
3748         Removed because they are no longer in use
3749         
3750         * plugins/class-gen/anjuta-class-gen-plugin.glade:
3751         * plugins/cvs-plugin/anjuta-cvs-plugin.glade:
3752         Marked some strings as not translatable
3754         * plugins/search/search-replace.c: (list_max_items):
3755         Fixed a possible memory corruption
3757         * src/anjuta-app.c: (anjuta_app_add_widget_full):
3758         Do not show menuitems for locked layout items
3760         * src/main.c: (main):
3761         Some minor style correction in gnome_init
3763 2007-08-25 Sebastien Granjoux <seb.sfo@free.fr>
3765         * plugins/debug-manager/debugger.c,
3766         plugins/debug-manager/breakpoints.c,
3767         plugins/gdb/plugin.c,
3768         plugins/gdb/debugger.c,
3769         libanjuta/interfaces/libanjuta.idl:
3770         Move all breakpoints functions from IAnjutaDebugger to a new
3771         IAnjutaBreakpointDebugger interface
3773 2007-07-28  Tom Lowe <tomlowe1@earthlink.net>
3775         Reviewed by Sébastien Granjoux <seb.sfo@free.fr>:
3776         * plugins/debug-manager/plugin.c,
3777         plugins/debug-manager/breakpoints.c,
3778         plugins/tools/execute.c,
3779         plugins/project-wizard/plugin.c,
3780         plugins/build-basic-autotools/executer.c,
3781         plugins/gdb/debugger.c,
3782         plugins/profiler/gprof-options.h,
3783         plugins/sourceview/assist-window.h,
3784         plugins/class-gen/transform.c,
3785         libanjuta/anjuta-plugin-description.c,
3786         libanjuta/anjuta-status.c,
3787         libanjuta/anjuta-glue-c.c,
3788         libanjuta/anjuta-glue-cpp.c,
3789         plugins/symbol-browser/an_symbol_prefs.c:
3790         Fix warnings mostly "dereferencing type-punned pointer"
3791         Fix two bugs in breakpoints.c and an_symbol_prefs.c
3793 2007-07-22 Sebastien Granjoux <seb.sfo@free.fr>
3795         * plugins/debug-manager/breakpoints.c,
3796         plugins/debug-manager/debugger.c:
3797         Avoid an endless loop if clearing all breakpoints while the programm
3798         is running
3800 2007-07-22  Tom Lowe <tomlowe1@earthlink.net>
3802         Reviewed by Sébastien Granjoux <seb.sfo@free.fr>:
3803         * plugins/debug-manager/plugin.c:
3804         Fix a segmentation fault added in the previous patch
3806 2007-07-21  Johannes Schmid <jhs@gnome.org>
3808         * plugins/build-basic-autotools/executer.c:
3809         (get_program_parameters):
3810         
3811         Show an error dialog if no targets are availible instead of
3812         just returning
3814 2007-07-20  Johannes Schmid <jhs@gnome.org>
3816         * libanjuta/anjuta-shell.c: (on_widget_data_add),
3817         (anjuta_shell_add_widget), (anjuta_shell_add_widget_full):
3818         * libanjuta/anjuta-shell.h:
3819         * plugins/document-manager/plugin.c: (activate_plugin):
3820         * plugins/glade/anjuta-design-document.c:
3821         * plugins/glade/plugin.c: (glade_update_ui):
3822         * src/anjuta-app.c: (anjuta_app_add_widget_full),
3823         (anjuta_shell_iface_init):
3824         * src/shell.c: (anjuta_test_shell_add_widget),
3825         (anjuta_shell_iface_init):
3826         
3827         Make the document manager undockable (#458038)
3829 2007-07-20  Johannes Schmid <jhs@gnome.org>
3831         * plugins/document-manager/plugin.c: (on_editor_update_ui):
3832         * plugins/glade/anjuta-design-document.c:
3833         * plugins/glade/plugin.c: (glade_update_ui):
3834         
3835         Fixed some save/dirty status bug in glade
3837 2007-07-20  Johannes Schmid <jhs@gnome.org>
3839         * libanjuta/anjuta-status.c:
3840         Fixed crasher on shutdown
3842 2007-07-20  Johannes Schmid <jhs@gnome.org>
3844         * configure.in:
3845         Minimum glade requirement is 3.2 now. It was before
3846         but we did not check...
3847         
3848         * libanjuta/anjuta-glue-factory.c: (load_plugin):
3849         * libanjuta/anjuta-profile.c:
3850         (anjuta_profile_add_plugins_from_xml):
3851         * libanjuta/anjuta-status.c: (anjuta_status_dispose):
3852         * libanjuta/anjuta-ui.c: (iter_compare_func), (anjuta_ui_merge):
3853         * libegg/egg-recent-action.c: (on_recent_files_tooltip):
3854         * plugins/file-loader/plugin.c: (on_create_submenu):
3855         * plugins/file-manager/an_file_view.c: (compare_iter):
3856         * plugins/glade/plugin.c: (activate_plugin):
3857         * src/anjuta-app.c: (on_toolbar_view_toggled):
3858         * src/main.c: (main):
3859         
3860         Fixed lots of memory leaks (thansk valgrind)
3862 2007-07-19  Johannes Schmid <jhs@gnome.org>
3864         * plugins/debug-manager/plugin.c: (value_added_current_editor):
3865         * plugins/document-manager/anjuta-docman.c:
3866         (anjuta_docman_set_busy):
3867         * plugins/document-manager/plugin.c: (on_editor_changed):
3868         * plugins/glade/plugin.c: (activate_plugin):
3869         * plugins/language-support-cpp-java/plugin.c: (on_assist_begin),
3870         (on_value_removed_current_editor):
3871         
3872         Fixed remaining criticals with IAnjutaEditor -> IAnjutaDocument
3874 2007-07-18  Johannes Schmid <jhs.gnome.org>
3876         * plugins/build-basic-autotools/executer.c: (execute_program):
3877         Fixed some of the scratchbox stuff but the environment is
3878         still broken
3880 2007-07-18  Johannes Schmid <jhs@gnome.org>
3882         * libanjuta/anjuta-plugin-manager.c: (on_plugin_activated),
3883         (on_plugin_deactivated), (get_plugin_loader_type):
3884         * plugins/glade/plugin.c: (on_close_activated), (on_shell_destroy),
3885         (activate_plugin), (deactivate_plugin),
3886         (glade_plugin_instance_init):
3887         
3888         Fixed glade plugin deactivation
3890 2007-07-18  Johannes Schmid <jhs@gnome.org>
3892         * plugins/document-manager/anjuta-docman.c:
3893         (anjuta_docman_add_document):
3894         * plugins/glade/anjuta-design-document.c: (ifile_get_uri):
3895         
3896         Fixed path display in document manager with glade files
3898 2007-07-17  Johannes Schmid <jhs@gnome.org>
3900         * libanjuta/interfaces/Makefile.am.iface:
3901         * pixmaps/Makefile.am:
3902         * plugins/cvs-plugin/plugin.c: (value_added_current_editor):
3903         * plugins/debug-manager/plugin.c: (value_added_current_editor),
3904         (value_removed_current_editor):
3905         * plugins/document-manager/anjuta-docman.c: (on_editor_save_point),
3906         (anjuta_docman_set_current_document):
3907         * plugins/document-manager/plugin.c: (on_editor_update_ui),
3908         (on_editor_added), (on_editor_changed):
3909         * plugins/glade/Makefile.am:
3910         * plugins/glade/anjuta-design-document.c:
3911         (anjuta_design_document_instance_init),
3912         (anjuta_design_document_set_property),
3913         (anjuta_design_document_get_property),
3914         (anjuta_design_document_class_init), (anjuta_design_document_new),
3915         (ifile_open), (ifile_get_uri), (ifile_iface_init):
3916         * plugins/glade/anjuta-design-document.h:
3917         * plugins/glade/anjuta-glade-notebook.c:
3918         * plugins/glade/anjuta-glade-notebook.h:
3919         * plugins/glade/plugin.c: (value_added_current_editor),
3920         (value_removed_current_editor), (glade_update_ui),
3921         (on_close_activated), (on_glade_project_changed),
3922         (glade_plugin_add_project), (activate_plugin), (deactivate_plugin),
3923         (ifile_open):
3924         * plugins/language-support-cpp-java/plugin.c:
3925         (on_value_added_current_editor), (on_value_removed_current_editor):
3926         * plugins/macro/plugin.c: (value_added_current_editor):
3927         * plugins/project-manager/plugin.c: (value_added_current_editor):
3928         * plugins/subversion/plugin.c: (value_added_current_editor):
3929         * plugins/symbol-browser/plugin.c: (value_added_current_editor):
3931         Fixed lot of IAnjutaEditor stuff and completed glade integration
3932         with document manager
3933         
3934         * plugins/build-basic-autotools/build-basic-autotools.c:
3935         (value_added_current_editor):
3936         * plugins/build-basic-autotools/executer.c: (execute_program):
3937         
3938         Some initial code to execute projects inside scratchbox
3939         
3940 2007-07-13 Sebastien Granjoux <seb.sfo@free.fr>
3942         * plugins/project-import/project-import.c:
3943         Project import overwrites file on user request (bug #452579)
3945 2007-07-11 Sebastien Granjoux <seb.sfo@free.fr>
3947         * plugins/debug-manager/debugger.c,
3948         plugins/debug-manager/threads.c,
3949         plugins/debug-manager/plugin.c,
3950         plugins/debug-manager/registers.c,
3951         plugins/debug-manager/locals.c,
3952         plugins/debug-manager/stack_trace.c,
3953         plugins/gdb/plugin.c,
3954         plugins/gdb/debugger.c,
3955         plugins/gdb/debugger.h,
3956         libanjuta/interfaces/libanjuta.idl:
3957         Rename change-location to program-moved
3958         Store thread id as gint instead of guint
3959         Do not display registers list if not available
3960         Add intermediate debugger states if missing
3962 2007-07-11  Johannes Schmid <jhs@gnome.org>
3964         * plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin
3965         .glade:
3966         Reverted unnecessary changes (#455819)
3968 2007-07-10  Johannes Schmid <jhs@gnome.org>
3970         * plugins/glade/plugin.c:
3971         Fixed glade plugin with glade 3.2 and another crasher
3973 2007-07-09  Johannes Schmid <jhs@gnome.org>
3975         * libanjuta/interfaces/libanjuta.idl:
3976         * plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin
3977         .glade:
3978         * plugins/debug-manager/breakpoints.c:
3979         (breakpoint_item_update_in_ui),
3980         (breakpoints_dbase_edit_breakpoint),
3981         (on_toggle_breakpoint_activate):
3982         * plugins/debug-manager/plugin.c:
3983         (on_run_to_cursor_action_activate):
3984         * plugins/document-manager/action-callbacks.c:
3985         (on_editor_command_cut_activate),
3986         (on_editor_command_copy_activate),
3987         (on_editor_command_paste_activate),
3988         (on_editor_command_clear_activate):
3989         * plugins/document-manager/anjuta-docman.c:
3990         (on_text_editor_notebook_close_page), (anjuta_docman_add_editor),
3991         (anjuta_docman_add_document), (anjuta_docman_set_current_document),
3992         (anjuta_docman_goto_file_line_mark),
3993         (anjuta_docman_find_editor_with_path),
3994         (anjuta_docman_get_all_editors):
3995         * plugins/document-manager/anjuta-docman.h:
3996         * plugins/document-manager/plugin.c:
3997         (update_editor_ui_interface_items), (on_editor_update_ui),
3998         (on_editor_changed), (on_session_save), (on_docman_auto_save),
3999         (ianjuta_docman_add_document), (ianjuta_docman_remove_document),
4000         (ianjuta_document_manager_iface_init), (isaveable_save),
4001         (isavable_is_dirty):
4002         * plugins/editor/editor.glade:
4003         * plugins/editor/text_editor.c: (idocument_cut), (idocument_copy),
4004         (idocument_paste), (idocument_clear), (idocument_iface_init),
4005         (iselection_iface_init):
4006         * plugins/glade/Makefile.am:
4007         * plugins/glade/anjuta-glade-notebook.c:
4008         (anjuta_glade_notebook_instance_init),
4009         (anjuta_glade_notebook_set_property),
4010         (anjuta_glade_notebook_get_property),
4011         (anjuta_glade_notebook_class_init), (anjuta_glade_notebook_new),
4012         (ifile_open), (ifile_get_uri), (ifile_iface_init),
4013         (ifile_savable_save), (ifile_savable_save_as),
4014         (ifile_savable_set_dirty), (ifile_savable_is_dirty),
4015         (ifile_savable_iface_init), (idocument_can_redo),
4016         (idocument_can_undo), (idocument_begin_undo_action),
4017         (idocument_end_undo_action), (idocument_undo), (idocument_redo),
4018         (idocument_grab_focus), (idocument_get_filename), (idocument_cut),
4019         (idocument_copy), (idocument_paste), (idocument_clear),
4020         (idocument_iface_init):
4021         * plugins/language-support-cpp-java/plugin.c:
4022         (on_value_added_current_editor), (on_value_removed_current_editor):
4023         * plugins/macro/macro-util.c: (get_current_editor):
4024         * plugins/project-manager/plugin.c: (project_manager_unload_gbf):
4025         * plugins/search/plugin.c: (on_enterselection), (on_prev_occur),
4026         (on_next_occur), (on_incremental_entry_key_press),
4027         (on_toolbar_find_clicked), (on_toolbar_find_start_over),
4028         (on_toolbar_find_incremental_start),
4029         (on_toolbar_find_incremental_end), (on_toolbar_find_incremental):
4030         * plugins/search/search-replace.c: (search_start_over),
4031         (search_update_combos), (replace_update_combos),
4032         (anjuta_search_replace_activate):
4033         * plugins/search/search-replace_backend.c: (create_search_entries):
4034         * plugins/sourceview/sourceview.c: (idocument_cut),
4035         (idocument_copy), (idocument_paste), (idocument_clear),
4036         (idocument_iface_init), (iselect_iface_init), (iassist_react):
4037         * plugins/tools/editor.c: (on_editor_response):
4038         * plugins/tools/execute.c: (get_current_editor),
4039         (atp_output_context_initialize), (atp_user_tool_execute):
4040         * plugins/tools/variable.c: (get_current_editor),
4041         (atp_variable_get_editor_variable):
4042         
4043         Some more IAnjutaEditor => IAnjutaDocument fixing!
4044         
4045         * plugins/glade/anjuta-glade-notebook.h:
4046         * plugins/glade/plugin.c: (glade_can_undo), (glade_can_redo),
4047         (glade_update_ui):
4048         * plugins/glade/plugin.h:
4049         Integrate glade designer in document manager for GLADEUI_VERSION >= 303
4050         and get rid of the glade menu. The Edit/File menu and the toolbar can now 
4051         be used for glade, too. It might still have some rough edges but already works.
4052         (Fixes #415547 – Glade usability problem)
4054 2007-07-07  Vincent Geddes <vgeddes@gnome.org>
4056         * plugins/glade/plugin.c: Ensure plugin compiles with glade 3.3.1
4057           development release (I updated version of glade3 svn to 3.3.2).
4059 2007-07-07  Naba Kumar  <naba.kumar@gnome.org>
4061         * plugins/symbol-browser/an_symbol_view.c:
4062         (anjuta_symbol_view_dispose), (sv_get_type_of_token): Removed prints.
4064 2007-07-07  Naba Kumar  <naba.kumar@gnome.org>
4066         * plugins/symbol-browser/an_symbol_prefs.c: (refresh_tags_list),
4067         (on_system_tags_update_finished), (on_update_global_clicked),
4068         (prefs_page_init), (on_gconf_notify_tags_list_changed),
4069         (symbol_browser_prefs_init),
4070         (symbol_browser_prefs_create_global_tags),
4071         (symbol_browser_load_global_tags):
4072         * plugins/symbol-browser/an_symbol_prefs.h:
4073         * plugins/symbol-browser/an_symbol_view.c:
4074         (anjuta_symbol_view_dispose), (anjuta_symbol_view_instance_init):
4075         * plugins/symbol-browser/an_symbol_view.h:
4076         * plugins/symbol-browser/plugin.c: (activate_plugin): Do not crash
4077         on global tags update because of delayed prefs merging. Happens when
4078         anjuta is first launched (i.e. no ~/.anjuta dir exists) and a file
4079         is opened.
4081 2007-07-07  Naba Kumar  <naba.kumar@gnome.org>
4083         * scripts/build-schemas.mk: Tell gconfd-2 to update schemas
4084         after install/uninstall.
4086         Patch from James Liggett:
4087         * scripts/glade2schemas.pl: Fixed creating schemas for list
4088         values.
4090 2007-07-06  Vincent Geddes <vgeddes@gnome.org>
4092         * plugins/glade/plugin.c: Ensure plugin compiles with gladeui
4093           version 3.3.0 release. The plugin will not compile with the gladeui 3.3.1
4094           development release since glade svn version is also 3.3.1. In future, the
4095           solution would be for us to always increment the micro version when
4096           changing the API.
4098 2007-07-05  Johannes Schmid <jhs@gnome.org>
4100         * libanjuta/interfaces/libanjuta.idl:
4101         * plugins/build-basic-autotools/build-basic-autotools.c:
4102         (on_build_mesg_format):
4103         * plugins/debug-manager/breakpoints.c:
4104         (breakpoint_item_update_in_ui),
4105         (breakpoints_dbase_edit_breakpoint),
4106         (on_toggle_breakpoint_activate):
4107         * plugins/debug-manager/plugin.c:
4108         (on_run_to_cursor_action_activate):
4109         * plugins/debug-manager/watch.c: (on_debug_tree_inspect):
4110         * plugins/document-manager/action-callbacks.c: (editor_autoformat),
4111         (get_current_editor), (on_save_activate), (on_save_as_activate),
4112         (on_save_prompt_save_editor), (on_close_file_activate),
4113         (on_close_all_file_activate), (on_reload_file_activate),
4114         (anjuta_print_cb), (anjuta_print_preview_cb),
4115         (on_editor_command_upper_case_activate),
4116         (on_editor_command_lower_case_activate),
4117         (on_editor_command_undo_activate),
4118         (on_editor_command_redo_activate),
4119         (on_editor_command_bookmark_toggle_activate), (on_comment_block),
4120         (on_comment_box), (on_comment_stream), (on_toolbar_goto_clicked),
4121         (on_goto_line_no1_activate), (on_goto_block_start1_activate),
4122         (on_goto_block_end1_activate), (on_zoom_in_text_activate),
4123         (on_zoom_out_text_activate), (on_force_hilite_activate),
4124         (on_indent1_activate), (on_swap_activate),
4125         (on_editor_add_view_activate), (on_editor_remove_view_activate):
4126         * plugins/document-manager/anjuta-docman.c:
4127         (on_text_editor_notebook_close_page), (editor_tab_widget_new),
4128         (anjuta_docman_save_document_as), (anjuta_docman_save_document),
4129         (anjuta_docman_dispose), (on_notebook_switch_page),
4130         (anjuta_docman_page_from_widget), (on_editor_destroy),
4131         (anjuta_docman_add_editor), (anjuta_docman_remove_document),
4132         (anjuta_docman_get_current_document),
4133         (anjuta_docman_set_current_document),
4134         (anjuta_docman_get_full_filename), (anjuta_docman_show_editor),
4135         (anjuta_docman_update_page_label),
4136         (anjuta_docman_get_document_from_path),
4137         (anjuta_docman_save_file_if_modified), (anjuta_docman_reload_file),
4138         (anjuta_docman_order_tabs):
4139         * plugins/document-manager/anjuta-docman.h:
4140         * plugins/document-manager/plugin.c: (update_editor_ui_save_items),
4141         (update_editor_ui_interface_items), (update_editor_ui),
4142         (on_editor_update_save_ui), (on_editor_update_ui),
4143         (on_editor_changed), (on_save_prompt_save_editor),
4144         (on_save_prompt), (ianjuta_docman_find_editor_with_path),
4145         (ianjuta_docman_get_current_document),
4146         (ianjuta_docman_set_current_document),
4147         (ianjuta_docman_remove_buffer),
4148         (ianjuta_document_manager_iface_init), (ifile_get_uri):
4149         * plugins/editor/text_editor.c: (itext_editor_iface_init),
4150         (idocument_get_filename), (idocument_can_undo),
4151         (idocument_can_redo), (idocument_undo),
4152         (idocument_begin_undo_action), (idocument_end_undo_action),
4153         (idocument_redo), (idocument_grab_focus), (idocument_iface_init):
4154         * plugins/language-support-cpp-java/plugin.c:
4155         (on_editor_char_inserted_cpp), (on_auto_indent):
4156         * plugins/macro/macro-util.c: (get_current_editor), (get_filename):
4157         * plugins/project-manager/plugin.c: (project_manager_unload_gbf):
4158         * plugins/sample1/plugin.c: (on_sample_action_activate):
4159         * plugins/search/plugin.c: (on_enterselection), (on_prev_occur),
4160         (on_next_occur), (on_incremental_entry_key_press),
4161         (on_toolbar_find_clicked), (on_toolbar_find_start_over),
4162         (on_toolbar_find_incremental_start),
4163         (on_toolbar_find_incremental_end), (on_toolbar_find_incremental):
4164         * plugins/search/search-replace.c: (search_and_replace),
4165         (write_message_pane), (search_start_over), (search_update_combos),
4166         (replace_update_combos), (anjuta_search_replace_activate):
4167         * plugins/search/search-replace_backend.c:
4168         (file_buffer_new_from_path), (create_search_entries):
4169         * plugins/sourceview/sourceview-print.c: (create_print_job):
4170         * plugins/sourceview/sourceview.c:
4171         (on_sourceview_uri_changed_prompt), (ieditor_iface_init),
4172         (idocument_can_redo), (idocument_can_undo),
4173         (idocument_begin_undo_action), (idocument_end_undo_action),
4174         (idocument_undo), (idocument_redo), (idocument_grab_focus),
4175         (idocument_get_filename), (idocument_iface_init):
4176         * plugins/tools/editor.c: (on_editor_response):
4177         * plugins/tools/execute.c: (atp_output_context_initialize),
4178         (atp_user_tool_execute):
4179         * plugins/tools/variable.c: (atp_variable_get_editor_variable):
4180         
4181         Create IAnjutaDocument interface. This interface is a more general idea
4182         of documents being anything that can be modified, has undo/redo and
4183         may have operations like copy/paste.
4184         The primary goal is to integrate better by making it use the standard file
4185         and edit menu instead of it's own glade menu. Of course the downside is that
4186         you won't be able to view a source file and the designer at the same time. Anyway
4187         so many people have complained that they "can't save a glade file" that I think
4188         this is the much better solution.
4189         Work on the glade plugin is still to come but the most difficult things should be
4190         done now.
4192 2007-07-02  Vincent Geddes  <vgeddes@gnome.org>
4194         * plugins/glade/plugin.c: Ensure plugin builds with libgladeui
4195           version 3.0.3.
4197 2007-07-04  Naba Kumar  <naba.kumar@gnome.org>
4199         * libanjuta/anjuta-plugin-manager.c:
4200         (anjuta_plugin_manager_get_plugins_page),
4201         (anjuta_plugin_manager_get_remembered_plugins_page):
4202         * libanjuta/anjuta-plugin-manager.h:
4203         * src/anjuta-app.c: (anjuta_app_install_preferences):
4204         * src/shell.c: (anjuta_test_shell_instance_init): Put installed plugins
4205         and remembered plugins preferences pages in separate pages (avoid
4206         crowd).
4208 2007-07-04  Naba Kumar  <naba.kumar@gnome.org>
4210         Patch from James Liggett  <jrliggett@cox.net>:
4211         * plugins/editor/Makefile.am, scripts/build-schemas.mk:
4212         Installed editor preferences schemas. Fixes bug #453463.
4214 2007-07-03  Naba Kumar  <naba.kumar@gnome.org>
4216         * libanjuta/anjuta-preferences-dialog.c: (compare_pref_page_func),
4217         (anjuta_preferences_dialog_init): Sort preferences pages on title.
4219 2007-07-03  Naba Kumar  <naba.kumar@gnome.org>
4221         * plugins/document-manager/anjuta-document-manager.ui:
4222         * plugins/language-support-cpp-java/anjuta-language-support-cpp-java.ui:
4223         * src/action-callbacks.c:
4224         * src/action-callbacks.h:
4225         * src/anjuta-actions.h:
4226         * src/anjuta-app.c: (anjuta_app_instance_init),
4227         (anjuta_app_install_preferences):
4228         * src/anjuta.glade:
4229         * src/anjuta.ui: Moved plugins and shortcuts settings inside
4230         General preferences page. Move preferences menu from Settings to
4231         Edit submenu. And got rid of Settings submenu.
4233 2007-07-02  Vincent Geddes  <vgeddes@gnome.org>
4235         * plugins/glade/plugin.c (on_close_activated): Update for glade3 svn trunk.
4236         
4237 2007-07-02  Naba Kumar  <naba.kumar@gnome.org>
4239         * TODO.tasks: Increased bounty for on-demand preferences task to $150
4240         as discussed and agreed with James Liggett.
4242         Patch from James Liggett  <jrliggett@cox.net>:
4244         * configure.in:
4245         * libanjuta/anjuta-plugin-manager.c:
4246         (on_activated_plugin_objects_foreach),
4247         (anjuta_plugin_manager_get_active_plugin_objects):
4248         * libanjuta/anjuta-plugin-manager.h:
4249         * libanjuta/anjuta-plugin.c: (anjuta_plugin_activate),
4250         (anjuta_plugin_deactivate):
4251         * libanjuta/anjuta-preferences-dialog.c:
4252         (anjuta_preferences_dialog_finalize),
4253         (anjuta_preferences_dialog_class_init), (add_category_columns),
4254         (anjuta_preferences_dialog_init), (anjuta_preferences_dialog_new),
4255         (anjuta_preferences_dialog_remove_page):
4256         * libanjuta/anjuta-preferences.c: (property_destroy),
4257         (unregister_preferences_key), (register_callbacks),
4258         (preferences_foreach_callback), (connect_prop_to_object),
4259         (anjuta_preferences_register_property_raw),
4260         (anjuta_preferences_register_property_custom),
4261         (anjuta_preferences_foreach), (anjuta_preferences_add_page),
4262         (anjuta_preferences_remove_page),
4263         (on_preferences_dialog_destroyed), (anjuta_preferences_get_dialog),
4264         (anjuta_preferences_get_type), (anjuta_preferences_dispose),
4265         (anjuta_preferences_instance_init), (anjuta_preferences_finalize),
4266         (anjuta_preferences_class_init), (anjuta_preferences_new):
4267         * libanjuta/anjuta-preferences.h:
4268         * plugins/build-basic-autotools/Makefile.am:
4269         * plugins/build-basic-autotools/build-basic-autotools.c:
4270         (ipreferences_unmerge):
4271         * plugins/cvs-plugin/Makefile.am:
4272         * plugins/cvs-plugin/plugin.c: (ipreferences_unmerge):
4273         * plugins/document-manager/Makefile.am:
4274         * plugins/document-manager/plugin.c: (ipreferences_unmerge):
4275         * plugins/editor/plugin.c: (ipreferences_unmerge):
4276         * plugins/file-manager/Makefile.am:
4277         * plugins/file-manager/plugin.c: (activate_plugin),
4278         (deactivate_plugin), (ipreferences_merge), (ipreferences_unmerge):
4279         * plugins/gtodo/plugin.c: (ipreferences_merge),
4280         (ipreferences_unmerge):
4281         * plugins/language-support-cpp-java/Makefile.am:
4282         * plugins/language-support-cpp-java/plugin.c:
4283         (ipreferences_unmerge):
4284         * plugins/message-view/Makefile.am:
4285         * plugins/message-view/plugin.c: (ipreferences_unmerge):
4286         * plugins/sourceview/Makefile.am:
4287         * plugins/sourceview/plugin.c: (ipreferences_unmerge):
4288         * plugins/symbol-browser/Makefile.am:
4289         * plugins/symbol-browser/an_symbol_prefs.c:
4290         (symbol_browser_prefs_finalize):
4291         * plugins/terminal/Makefile.am:
4292         * plugins/terminal/terminal.c: (ipreferences_unmerge):
4293         * plugins/valgrind/plugin.c: (ipreferences_merge),
4294         (ipreferences_unmerge):
4295         * scripts/Makefile.am:
4296         * scripts/glade2schema.pl, (added) scripts/build-schemas.mk:
4297         * src/Makefile.am:
4298         * src/action-callbacks.c: (on_set_preferences1_activate):
4299         * src/anjuta-app.c: (anjuta_app_instance_init),
4300         (anjuta_app_install_preferences):
4301         * src/anjuta-app.h:
4302         * src/shell.c: (anjuta_test_shell_instance_init): Completed bounty
4303         task: Bug #445314: On demand preferences widgets creation. Thanks
4304         James for this great work.
4306 2007-07-02  Naba Kumar  <naba.kumar@gnome.org>
4308         * plugins/debug-manager/data_buffer.c,
4309         plugins/message-view/message-view.c: Fixed compiler warnings.
4311 2007-06-29  Naba Kumar  <naba.kumar@gnome.org>
4313         * src/action-callbacks.c: (help_activate),
4314         (on_help_manual_activate), (on_help_tutorial_activate),
4315         (on_help_advanced_tutorial_activate), (on_help_faqs_activate):
4317         Fixed help activation (bug #451557).
4319 2007-06-28  Naba Kumar  <naba.kumar@gnome.org>
4321         * AUTHORS: Added James Liggett. Forgot to add him before :(
4323 2007-06-28 Sebastien Granjoux <seb.sfo@free.fr>
4325         * plugins/debug-manager/debugger.c,
4326         plugins/debug-manager/plugin.c,
4327         plugins/gdb/debugger.c,
4328         libanjuta/interfaces/libanjuta.idl:
4329         Add a GError* parameter to debugger-stopped signal
4331         * (added) libanjuta/anjuta-error.c,
4332         (added) libanjuta/anjuta-error.h,
4333         libanjuta/Makefile.am:
4334         Register GError as a boxed type
4336         * libanjuta/interfaces/anjuta-idl-compiler.pl:
4337         Support GError* in signal, GError must be registered as a boxed type
4338         Accept NULL as strings
4340 === anjuta 2.2.0 ===
4342 2007-06-25  Naba Kumar  <naba.kumar@gnome.org>
4344         * configure.in: Bumped version to 2.2.0
4345         * NEWS: Updated for 2.2.0 stable release.
4346         * plugins/file-manager/an_file_view.c: (fv_queue_node_expansion):
4347         Reduce the idle priority to make the UI update before anything else.
4349 2007-06-24  Naba Kumar  <naba.kumar@gnome.org>
4351         * configure.in: Bumped version to 2.1.4 (RC1 for 2.2.0).
4353         * libanjuta/interfaces/libanjuta.idl:
4354         * plugins/document-manager/action-callbacks.c:
4355         (on_editor_command_complete_word_activate):
4356         * plugins/document-manager/plugin.c:
4357         (update_editor_ui_interface_items):
4358         * plugins/editor/text_editor.c: (iautocomplete_activate),
4359         (iautocomplete_iface_init):
4360         * plugins/sourceview/sourceview.c: (iassist_iface_init):
4362         Moved autocomplete() method away from IAnjutaEditorAssist into
4363         a new deprecated IAnjutaEditorAutocomplete. This restores scintilla
4364         autocomplete and does not crash with sourceview. Fixes Bug #449620
4365         – The auto completion functionality not work. Also sets menuitem 
4366         insensitive when hiding them.
4368         * plugins/debug-manager/disassemble.c:
4369         (dma_disassembly_iter_refresh): Fixed compiler warnings for incorrect
4370         printf types.
4372 2007-06-22  Naba Kumar  <naba.kumar@gnome.org>
4374         * pixmaps/anjuta_splash.png: Updated.
4375         
4376         * plugins/search/search-replace.c
4377         (anjuta_search_replace_activate): Fixed "Find in Files" to select
4378         the right target (project).
4379         * ChangeLog: Added missing log.
4381 2007-06-21  Naba Kumar  <naba.kumar@gnome.org>
4383         * manuals/anjuta-faqs/C/anjuta-faqs.xml,
4384         manuals/anjuta-manual/C/fileoperations.xml,
4385         manuals/anjuta-manual/C/projects.xml: Fixd validation errors.
4387         * plugins/gtodo/libgtodo.h: Give a typedef for enum.
4389         * libanjuta/anjuta-children.c: Fixed a bad compile warning.
4391 2007-06-21  Naba Kumar  <naba.kumar@gnome.org>
4393         * TODO.tasks: Added bounty for on-demand preferences.
4395         Patch from Thierry Moisan:
4396         * manuals/anjuta-manual/C/fileoperations.xml: Fixed typo
4397         (bug #88824).
4399 2007-06-20  Naba Kumar  <naba.kumar@gnome.org>
4401         Patch from tpgww@onepost.net:
4403         * libegg/egg-recent-files-module.c: (do_tell), (do_set_file_info):
4404         * libegg/test-actions.c:
4405         * libegg/test-multi-drag.c: (main):
4406         * plugins/debug-manager/memory.c: (read_memory_block):
4407         * tagmanager/tm_file_entry.c: (tm_file_entry_list):
4409         Fixes compile warnings. Fixes bug #427101.
4411 2007-06-20  Naba Kumar  <naba.kumar@gnome.org>
4413         Patch from James Liggett:
4415         * plugins/profiler/gprof-options.c: (on_option_changed),
4416         (setup_widgets):
4417         * plugins/profiler/gprof-options.h:
4418         * plugins/profiler/gprof-profile-data.c:
4419         (gprof_profile_data_init_profile):
4420         * plugins/profiler/gprof-profile-data.h:
4421         * plugins/profiler/plugin.c: (profiler_get_data),
4422         (profiler_set_target), (register_options),
4423         (on_profile_data_browse_button_clicked),
4424         (on_profiling_options_button_clicked), (on_profiler_delete_data):
4425         * plugins/profiler/profiler.glade: implements independent targets.
4426         implements the ability to select arbitrary gmon.out files.
4427         Fixes bug #403502 – User should also be allowed to select an
4428         independent executable target.
4430 2007-06-20  Naba Kumar  <naba.kumar@gnome.org>
4432         * plugins/tools/scripts/prepare-changelog.pl: Updated newer version.
4434         * manuals/anjuta-faqs/C/anjuta-faqs.xml: Updated.
4435         * plugins/tools/scripts/prepare-changelog.pl: Fixed opening file.
4437 2007-06-20 Sebastien Granjoux <seb.sfo@free.fr>
4439         * plugins/debug-manager/plugin.c,
4440         plugins/debug-manager/breakpoints.c:
4441         Remove weak pointers when owner is destroyed
4442         Remove all breakpoints before loading new one
4444 2007-06-20  Vincent Geddes  <vincent.geddes@gmail.com>
4446         * plugins/glade/plugin.c: Update for API changes in glade 3.3.0 and above.
4447          
4448 2007-06-19  Naba Kumar  <naba@gnome.org>
4450         * plugins/message-view/message-view.c: Wrap long lines (at 1000px)
4451         Bug #448491 Empty Lines Problem.
4453         * libanjuta/anjuta-utils.c: Return incompletly transformed text too.
4454         
4455         * data/default.profile, plugins/message-view/plugin.c: Do not
4456         restore session for messages.
4457         Fixes bug #377461 – don't create new message window for each
4458         build/find.
4460         * plugins/profiler/plugin.c: Disconnect session signals on deactivate.
4461         Fixes a crash on exit/project-close if profiler plugin is loaded.
4463 2007-06-17  Naba Kumar  <naba@gnome.org>
4465         * plugins/class-gen/anjuta-class-gen-plugin.glade: Do not translate
4466         C keywords. Fixes bug #447655 – C keyword must NOT be localised.
4468         * plugins/file-loader/plugin.c: Fail on opening non existent files.
4469         Bug #448034 – Anjuta crashes on starting (when the last project
4470         directory was deleted).
4472         * plugins/document-manager/plugin.c: Set line markers for files
4473         opened via IAnjutaFile::open(). Fixes missing line markers while
4474         navigating symbols.
4476 2007-06-17  Naba Kumar  <naba@gnome.org>
4478         * plugins/sourceview/sourceview.glade: Set correct font
4479         default value and use monospace instead of sans. Fixes
4480         bug #448408 – crash in Anjuta IDE: Trying to change the
4481         editor
4483 2007-06-16 Sebastien Granjoux <seb.sfo@free.fr>
4485         * plugins/search/search-replace.c,
4486         plugins/search/search-replace.h,
4487         plugins/search/anjuta-search.glade:
4488         Replace deprecated GtkCombo by GtkComboBox or GtkComboBoxEntry
4489         Fixes bug #355166
4491 2007-06-16 Sebastien Granjoux <seb.sfo@free.fr>
4493         * plugins/debug-manager/plugin.c,
4494         plugins/debug-manager/breakpoints.c:
4495         Add weak references, fixes bug #448053 ?
4497 2007-06-16  Naba Kumar  <naba@gnome.org>
4499         * libanjuta/plugin-manager.c: Added remembered plugins page in plugins
4500         dialog to allow forgetting them if user chooses to select a different
4501         one.
4503 2007-06-13  Naba Kumar  <naba@gnome.org>
4505         * plugins/sourceview/sourceview-prefs.c: Initialize font
4506         on startup correctly if use_theme is set.
4508         * plugins/sourceview/sourceview-prefs.c: Use desktop fixed font
4509         if available for default font. Fixes bug #447304.
4511         * plugins/sourceview/sourceview-prefs.c: Return value based
4512         on right data type. Fixes Bug #438878 – Using gtksourceview editor
4513         for the first time has black background
4514         
4515         * plugins/project-manager/plugin.c: Give a better error message
4516         when project could not be loaded.
4518         * libanjuta/anjuta-serializer.c: Added a comment.
4520 2007-06-13  Johannes Schmid <jhs@gnome.org>
4522         * configure.in:
4523         Use GNOME_COMPILE_WARNINGS(maximum) instead of hand-written macro. Show
4524         most warnings to avoid simple coding problems.
4525         
4526         * plugins/message-view/anjuta-msgman.c:
4527         (anjuta_msgman_append_view), (anjuta_msgman_set_current_view):
4528         * plugins/message-view/plugin.c: (on_view_changed),
4529         (ianjuta_msgman_add_view):
4530         
4531         Fixed #440866 by always presenting the message-manager when a tab is
4532         added because Gtk+ seems to have problems to add tabs to hidden widgets.
4533         
4534         * plugins/subversion/subversion-callbacks.c:
4535         (on_subversion_commit_response):
4536         Destroy dialog if user clicks "No"
4538 2007-06-12  Naba Kumar  <naba@gnome.org>
4540         * tagmanager/tm_tag.c, tagmanager/tm_workspace.c: Fixes an invalid
4541         read and use of uninitialized variable.
4543         * Makefile.am, src/about.c: Install AUTHORS file in datadir also
4544         because it is used in credits listing and packaging could compress
4545         it in docdir. Fixes bug #397881: The credits are empty
4547         * tagmanager/tm_tag.c, tagmanager/include/tm_tag.h,
4548         tagmanager/include/tm_workspace.h, tagmanager/include/tm_symbol.h,
4549         tagmanager/tm_workspace.c, tagmanager/tm_symbol.c,
4550         plugins/symbol-browser/an_symbol_info.c,
4551         plugins/symbol-browser/plugin.c,
4552         plugins/symbol-browser/an_symbol_view.c,
4553         plugins/editor/aneditor-autocomplete.cxx:
4555         - Do not access TMTag
4556         member in TMSymbol when freeing it because by then the tags
4557         could have changed. Avoids dangerous memory corruptions by freeing
4558         someone else's memory (Could explain those random crashes when
4559         refreshing symbols or re-loading a different project or closing
4560         a project). Anything that tries to refresh symbols could trigger
4561         this corruptions.
4562         - Added a flag to also retrieve method definitions as part of
4563         the class's scope members. And used it to set both function prototype
4564         and definition in symbols. Fixes navigation to prototype and
4565         function definitions from symbol browser (bug #440370)
4567         * plugins/editor/text_editor.c: Avoid invalid reads beyond allocated
4568         memory. Could fix those bogus 'file changed' dialogs.
4570         * plugins/document-manager/anjuta-docman.c: Avoid runtime warning.
4572 2007-06-09 Sebastien Granjoux <seb.sfo@free.fr>
4574         * (added) libanjuta/anjuta-utils-priv.h,
4575         libanjuta/anjuta-utils.h,
4576         libanjuta/anjuta-launcher.c,
4577         libanjuta/Makefile.am:
4578         Fix bug #440801: do not use config.h in public include files
4580 2007-06-09 Sebastien Granjoux <seb.sfo@free.fr>
4582         * plugins/project-wizard/templates/mkfile.wiz:
4583         Fix bug #442038: missing project.sh file
4585         * configure.in,
4586         plugins/project-wizard/templates/Makefile.am,
4587         plugins/project-wizard/templates/translatable-strings.h,
4588         (added) plugins/project-wizard/templates/sdl.wiz,
4589         (added) plugins/project-wizard/templates/appwiz_sdl.png,
4590         (added) plugins/project-wizard/templates/sdl/configure.ac.tpl,
4591         (added) plugins/project-wizard/templates/sdl/acinclude.m4.tpl,
4592         (added) plugins/project-wizard/templates/sdl/Makefile.am,
4593         (added) plugins/project-wizard/templates/sdl/.cvsignore,
4594         (added) plugins/project-wizard/templates/sdl/src/main.c,
4595         (added) plugins/project-wizard/templates/sdl/src/Makefile.am.tpl,
4596         (added) plugins/project-wizard/templates/sdl/src/Makefile.am,
4597         (added) plugins/project-wizard/templates/sdl/src/.cvsignore,
4598         (added) plugins/project-wizard/templates/sdl/po/Makefile.am,
4599         (added) plugins/project-wizard/templates/sdl/po/POTFILES.in,
4600         (added) plugins/project-wizard/templates/sdl/po/.cvsignore:
4601         Fix bug #315635: add a SDL project wizard
4603 2007-06-09  Naba Kumar  <naba.kumar@nokia.com>
4605         * libanjuta/anjuta-children.c: Avoid a race condition and deadlock
4606         when SIGCHLD is triggered when main loop context is locked. Dead lock
4607         happens when child_exited callback also accesses main loop context.
4608         Happens particularly badly in debug target exiting.
4610 2007-06-05 Sebastien Granjoux <seb.sfo@free.fr>
4612         * manuals/anjuta-manual/C/debugger.xml:
4613         First update of the debugger documentation
4615 2007-06-04  Naba Kumar  <naba.kumar@nokia.com>
4617         * manuals/anjuta-manual/C/fileoperations.xml,
4618         manuals/anjuta-manual/C/projects.xml,
4619         manuals/anjuta-manual/C/anjuta-manual.xml,
4620         manuals/anjuta-manual/C/build.xml,
4621         manuals/anjuta-manual/C/execute.xml,
4622         manuals/anjuta-manual/Makefile.am: Updated more documentation.
4623         Added project properties documentation. Moved execution section
4624         inside project management. Removed dead documentation.
4626 2007-06-02  Naba Kumar  <naba.kumar@nokia.com>
4628         * src/anjuta.c, plugins/symbol-browser/plugin.c,
4629         plugins/symbol-browser/plugin.h,
4630         plugins/symbol-browser/an_symbol_prefs.c,
4631         plugins/symbol-browser/anjuta-symbol-browser-plugin.glade,
4632         libanjuta/anjuta-status.c, libanjuta/anjuta-status.h: Use internal
4633         progress bar instead of separate window for system tags
4634         generation. Renamed AnjutaStatus methods to a proper ones.
4636         * plugins/symbol-browser/plugin.c,
4637         plugins/symbol-browser/plugin.h,
4638         plugins/symbol-browser/an_symbol_prefs.c,
4639         plugins/symbol-browser/anjuta-symbol-browser-plugin.glade,
4640         global-tags/create_global_tags.sh.in: Get rid of message window
4641         for showing global tags creation and use a small window with
4642         progress bar.
4644 2007-05-30  Naba Kumar  <naba@gnome.org>
4646         * plugins/build-basic-autotools/build-basic-autotools.c: Fixed
4647         Bug 442315 – After calling configure, the build menus are still insensitive,
4648         Bug 442314 – Autogeneration fails when there is no autogen.sh
4650         * plugins/project-manager/plugin.c: Fixed mem corruption when it
4651         fails to remove target/source/group. Fixes bug #440196 – crash in
4652         Anjuta IDE: removing a target
4654 2007-05-29  Naba Kumar  <naba@gnome.org>
4656         * plugins/symbol-browser/an_symbol_view.c,
4657         plugins/symbol-browser/an_symbol_prefs.c: Fixed custom
4658         tags generation. Fixed runtime warning.
4660 2007-05-28  Naba Kumar  <naba@gnome.org>
4662         Patch from James Liggett  <jrliggett@cox.net>:
4663         * plugins/profiler/plugin.c, plugins/profiler/profiler.glade:
4664         Fixed bug #403502 – User should also be allowed to select an
4665         independent executable target.
4667 2007-05-27  Johannes Schmid <jhs@gnome.org>
4669         * plugins/build-basic-autotools/build-basic-autotools.c:
4670         (get_real_directory), (on_build_mesg_format):
4671         
4672         Find correct files for error messages inside scratchbox
4674 2007-05-27  Naba Kumar  <naba@gnome.org>
4676         * manuals/anjuta-manual/C/projects.xml,
4677         manuals/anjuta-manual/C/projects.xml: Updated project
4678         management chapter more.
4680 2007-05-25  Johannes Schmid <jhs@gnome.org>
4682         * plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin.glade:
4683         * plugins/build-basic-autotools/build-basic-autotools.c:
4684         (on_sb_check_toggled), (build_execute_command),
4685         (ipreferences_merge), (ipreferences_unmerge):
4686         Added support for building inside scratchbox environment
4687         
4688         Patch from James Liggett <jrliggett@cox.net>:
4689         * plugins/message-view/anjuta-msgman.c: (anjuta_msgman_page_new),
4690         (anjuta_msgman_append_view):
4692         Fix 440866 
4693           – Anjuta aborts with numerous assertion failures when adding a new message view tab
4695 2007-05-23  Naba Kumar  <naba@gnome.org>
4697         * manuals/anjuta-manual/C/projects.xml: Updated project
4698         management chapter.
4700 2007-05-22  Naba Kumar  <naba@gnome.org>
4702         * manuals/anjuta-manual/C/projects.xml: More updates.
4704         * manuals/anjuta-manual/C/introduction.xml,
4705         manuals/anjuta-manual/C/projects.xml,
4706         manuals/anjuta-manual/C/interface.xml: Updated documentation.
4708 2007-05-22  Naba Kumar  <naba@gnome.org>
4710         Patch from Étienne Bersac:
4711         * plugins/class-gen/templates/go-source.tpl: use G_TYPE_DEFINE parent
4712         class in generated class.
4714 2007-05-22  Naba Kumar  <naba@gnome.org>
4716         * plugins/profiler/plugin.c: Fixed a compiler warning.
4717         * plugins/valgrind/Makefile.am: Added ldflags.
4719         Patch from James Liggett:
4720         * plugins/profiler/gprof-options.[ch], plugins/profiler/plugin.[ch],
4721         plugins/profiler/Makefile.am: Fixes bug #403503. Implemented target
4722         specific options.
4724 2007-05-18  Johannes Schmid <jhs@gnome.org>
4726         * plugins/editor/text_editor.c:
4727         * plugins/language-support-cpp-java/plugin.c:
4728         (on_editor_language_changed), (on_value_added_current_editor),
4729         (on_value_removed_current_editor):
4730         
4731         Remove IAnjutaEditorAssist from Scintilla for now as it is not supported
4732         Fix assist support in language-support-plugin.
4734 2007-05-17 Sebastien Granjoux <seb.sfo@free.fr>
4736         * libanjuta/interfaces/libanjuta.idl:
4737         Add a new interface allowing to implement plugin able
4738         to load other plugins (not written in C)
4740         * libanjuta/anjuta-plugin-handle.c,
4741         libanjuta/anjuta-plugin-handle.h:
4742         Add a language and a resident plugin properties
4744         * libanjuta/anjuta-glue-plugin.c,
4745         libanjuta/anjuta-glue-plugin.h,
4746         (added)libanjuta/anjuta-glue-c.c,
4747         (added)libanjuta/anjuta-glue-c.h,
4748         libanjuta/Makefile.am:
4749         Split code used to load a C plugin into a common part
4750         in anjuta-glue-plugin and a specific part in anjuta-glue-c
4752         * libanjuta/anjuta-glue-factory.c,
4753         libanjuta/anjuta-glue-factory.h,
4754         libanjuta/anjuta-plugin-manager.c:
4755         Allow to load plugin not written in C and search for the
4756         additional needed code in another plugin
4758 2007-05-17 Sebastien Granjoux <seb.sfo@free.fr>
4760         * plugins/editor/text_editor.c:
4761         Add an empty implementation of IAnjutaEditorAssist for scintilla,
4762         avoiding a crash if scintilla is used
4764 2007-05-14  Johannes Schmid <jhs@gnome.org>
4766         * libanjuta/interfaces/libanjuta.idl:
4767         * plugins/language-support-cpp-java/plugin.c: (on_assist_begin),
4768         (assist_cleanup), (on_assist_end), (on_assist_cancel),
4769         (on_assist_chosen), (on_assist_update), (get_context),
4770         (dot_member_parser), (pointer_member_parser), (cpp_member_parser),
4771         (install_assist), (uninstall_assist), (install_support),
4772         (on_editor_language_changed), (cpp_java_plugin_activate_plugin),
4773         (cpp_java_plugin_instance_init):
4774         * plugins/language-support-cpp-java/plugin.h:
4775         Use IAnjutaEditorAssist to show language specific suggestions
4776         
4777         * plugins/sourceview/Makefile.am:
4778         * plugins/sourceview/anjuta-view.c: (anjuta_view_new),
4779         (anjuta_view_key_press_event), (anjuta_view_button_press_event):
4780         * plugins/sourceview/anjuta-view.h:
4781         * plugins/sourceview/assist-window.c: (assist_window_expose),
4782         (assist_window_set_property), (assist_window_get_property),
4783         (assist_window_class_init), (assist_activated),
4784         (assist_window_init), (assist_window_finalize),
4785         (assist_window_select), (assist_window_first),
4786         (assist_window_last), (assist_window_up), (assist_window_down),
4787         (get_coordinates), (assist_window_move), (assist_window_update),
4788         (assist_window_filter_keypress), (assist_window_is_active),
4789         (assist_window_new), (assist_window_get_trigger),
4790         (assist_window_get_position):
4791         * plugins/sourceview/assist-window.h:
4792         * plugins/sourceview/sourceview-args.c (removed):
4793         * plugins/sourceview/sourceview-args.h (removed):
4794         * plugins/sourceview/sourceview-autocomplete.c (removed):
4795         * plugins/sourceview/sourceview-autocomplete.h (removed):
4796         * plugins/sourceview/sourceview-cell.c: (icell_get_attribute):
4797         * plugins/sourceview/sourceview-private.h:
4798         * plugins/sourceview/sourceview-scope.c(removed):
4799         * plugins/sourceview/sourceview-scope.h(removed):
4800         * plugins/sourceview/sourceview.c: (on_assist_chosen),
4801         (on_assist_cancel), (on_document_char_added),
4802         (on_reload_dialog_response), (sourceview_class_init),
4803         (sourceview_dispose), (sourceview_new), (iassist_add_trigger),
4804         (iassist_remove_trigger), (iassist_autocomplete),
4805         (iassist_get_suggestions), (iassist_suggest), (iassist_tip),
4806         (iassist_react), (iassist_iface_init):
4807         * plugins/sourceview/tag-window.c (moved to assist-window.c):
4808         * plugins/sourceview/tag-window.h (moved to assist-window.c):
4809         
4810         - Implemented IAnjutaEditorAssist for sourceview editor (without tooltips)
4811         - Mark files dirty if reload dialog is canceled.
4813 2007-05-12  Naba Kumar  <naba@gnome.org>
4815         * libanjuta/anjuta-launcher.h: Corrected include file.
4817 2007-05-12 Sebastien Granjoux <seb.sfo@free.fr>
4819         * libanjuta/anjuta-glue-plugin.c,
4820         libanjuta/anjuta-glue-plugin.h,
4821         libanjuta/anjuta-glue-factory.c,
4822         libanjuta/anjuta-glue-factory.h,
4823         ibanjuta/anjuta-plugin-manager.c:
4824         Move code used to load a C plugin from glue-factory to glue-plugin
4825         So loading a plugin written in another language could be done by
4826         just using another object derived from AnjutaGluePlugin
4828         * libanjuta/libanjuta.h:
4829         Remove anjuta-plugin-handle header, it's not installed as libanjuta
4830         includes
4832 === anjuta 2.1.3 ===
4834 2007-05-11  Naba Kumar  <naba@gnome.org>
4836         * configure.in: Bumped version to 2.1.3
4837         * NEWS: Updated.
4838         * AUTHORS: Updated.
4839         * plugins/glade/plugin.c: Fixed build with glade-3 == 3.1.4
4841 2007-05-11  Naba Kumar  <naba@gnome.org>
4843         * configure.in:
4844         * plugins/glade/plugin.c: (glade_update_ui), (glade_save):
4845         Fixed glade plugin compilation for glade3 svn version (> 3.3.0)
4846         based on patch from Jaap Versteegh  <j_r_versteegh@hotmail.com>.
4848 2007-05-10  Johannes Schmid <jhs@gnome.org>
4850         * plugins/search/plugin.c:
4851         Make incremental search behave less annoying
4852         
4853 2007-05-09 Sebastien Granjoux <seb.sfo@free.fr>
4855         * plugins/macro/macro-util.c:
4856         Fix bug #419008 and bug #419036
4857         When creating new header file, use name and email set in
4858         preferences and replace invalid C character by underscore
4859         in guards
4861 2007-05-08 Sebastien Granjoux <seb.sfo@free.fr>
4863         * plugins/search/search-replace.c,
4864         plugins/search/search-replace_backend.c:
4865         Disable search button if search expression is empty (bug #378193)
4867 2007-05-08  Naba Kumar  <naba@gnome.org>
4869         * plugins/project-wizard/templates/minimal/Makefile.am: Fixed
4870         build error.
4872 2007-05-07  Naba Kumar  <naba@gnome.org>
4874         * configure.in:
4875         * plugins/project-wizard/templates/Makefile.am:
4876         * plugins/project-wizard/templates/minimal.wiz:
4877         * plugins/project-wizard/templates/minimal/.cvsignore:
4878         * plugins/project-wizard/templates/minimal/Makefile.am:
4879         * plugins/project-wizard/templates/minimal/Makefile.am.tpl:
4880         * plugins/project-wizard/templates/minimal/autogen.sh:
4881         * plugins/project-wizard/templates/minimal/configure.ac.tpl:
4882         * plugins/project-wizard/templates/minimal/project.anjuta:
4883         Added 'minimal', a generic and flat, project template.
4884         
4885 2007-05-05  Naba Kumar  <naba@gnome.org>
4887         Patch from Cygwin Ports maintainer  <yselkowitz@users.sourceforge.net>:
4889         * configure.in: Define GNOME_CANVAS and fix GRAPHVIZ and SVN cflags/libs.
4890         * libanjuta/anjuta-launcher.c: Cygwin does not have B460800 or ECHOPRT.
4891         * libanjuta/interfaces/Makefile.am.iface: Fixed a typo.
4892         * libanjuta/interfaces/anjuta-idl-compiler.pl: Make a convenience library
4893         instead of a real one, fixes interdependency with libanjuta.
4894         * plugins/gdb/gdbmi.c: G_MODULE_EXPORT for gdbmi-test linking on Cygwin.
4895         * libanjuta/Makefile.am: 
4896         * libegg/Makefile.am:
4897         * plugins/build-basic-autotools/Makefile.am:
4898         * plugins/class-gen/Makefile.am:
4899         * plugins/class-inheritance/Makefile.am:
4900         * plugins/cvs-plugin/Makefile.am:
4901         * plugins/debug-manager/Makefile.am:
4902         * plugins/devhelp/Makefile.am:
4903         * plugins/document-manager/Makefile.am:
4904         * plugins/editor/Makefile.am:
4905         * plugins/file-loader/Makefile.am:
4906         * plugins/file-manager/Makefile.am:
4907         * plugins/file-wizard/Makefile.am:
4908         * plugins/gdb/Makefile.am:
4909         * plugins/glade/Makefile.am:
4910         * plugins/gtodo/Makefile.am:
4911         * plugins/language-support-cpp-java/Makefile.am:
4912         * plugins/macro/Makefile.am:
4913         * plugins/message-view/Makefile.am:
4914         * plugins/patch/Makefile.am:
4915         * plugins/profiler/Makefile.am:
4916         * plugins/project-import/Makefile.am:
4917         * plugins/project-manager/Makefile.am:
4918         * plugins/project-wizard/Makefile.am:
4919         * plugins/sample1/Makefile.am:
4920         * plugins/search/Makefile.am:
4921         * plugins/sourceview/Makefile.am:
4922         * plugins/subversion/Makefile.am:
4923         * plugins/symbol-browser/Makefile.am:
4924         * plugins/terminal/Makefile.am:
4925         * plugins/tools/Makefile.am:
4926         * tagmanager/Makefile.am: Properly define LDFLAGS and LIBADD.
4928 2007-05-05 Vincent Geddes  <vincent.geddes@gmail.com>
4930         * plugins/glade/anjuta-glade-plugin.png: Update Glade icon.
4932 2007-04-21 Sebastien Granjoux <seb.sfo@free.fr>
4934         * libanjuta/anjuta-launcher.c,
4935         libanjuta/anjuta-launcher.h:
4936         Add some missing implementation
4938 2007-04-26  Brian Pepple  <bpepple@fedoraproject.org>
4940         Reviewed by Naba Kumar  <naba@gnome.org>:
4941         * pixmaps/Makefile.am (update-icon-cache): fix gtk-update-icon-cache
4942         for uninstall-hook.
4944 2007-04-26  Jason Switzer  <jswitzer@gmail.com>
4946         Reviewed by Naba Kumar  <naba@gnome.org>:
4947         * plugins/editor/text_editor.c: Large memory addresses were being
4948         truncated, switched to glong (bug #422143).
4950 2007-04-24  Naba Kumar  <naba@gnome.org>
4952         * plugins/document-manager/plugin.c: (prefs_finalize):
4953         * plugins/editor/aneditor-autocomplete.cxx:
4954         * plugins/editor/text_editor_menu.c:
4955         * plugins/editor/text_editor_prefs.c: (text_editor_prefs_finalize):
4956         * plugins/file-loader/plugin.c: (open_file_with),
4957         (create_open_with_submenu):
4958         * plugins/file-manager/plugin.c: (prefs_finalize):
4959         * plugins/terminal/terminal.c: (prefs_finalize): Fixed int to
4960         pointer type castings.
4962 2007-04-24  Naba Kumar  <naba@gnome.org>
4964         Patch from s|s  <supreet.sethi@gmail.com>:
4965         * (added) plugins/project-wizard/templates/django-logo.png:
4966         * (added) plugins/project-wizard/templates/django.wiz:
4967         * plugins/project-wizard/templates/Makefile.am:
4968         * plugins/project-wizard/templates/translatable-strings.h: Added
4969         django project template. http://www.djangoproject.com/
4971 2007-04-24  Naba Kumar  <naba@gnome.org>
4973         * plugins/subversion/anjuta-subversion.glade: Set expansion for
4974         the log entry widget and made the dialog little larger.
4976 2007-04-24  Naba Kumar  <naba@gnome.org>
4978         Patch from Halton Huo:
4979         * configure.in:
4980         * plugins/project-wizard/property.c:
4981         * plugins/subversion/svn-auth.c:
4982         * plugins/subversion/svn-backend-priv.h:
4983         * plugins/subversion/svn-backend.c:
4984         * plugins/subversion/svn-backend.h:
4985         * plugins/subversion/svn-notify.h: Proper use of subversion
4986         headers. Fixes build issues in solaris (bug #426701).
4988 2007-04-24  Naba Kumar  <naba@gnome.org>
4990         * libanjuta/Makefile.am: Removed bogus newlines at the end of file.
4991         
4992         * plugins/project-wizard/templates/cpp.wiz:
4993         * plugins/project-wizard/templates/gcj.wiz:
4994         * plugins/project-wizard/templates/gnome.wiz:
4995         * plugins/project-wizard/templates/gtk.wiz:
4996         * plugins/project-wizard/templates/gtkmm.wiz:
4997         * plugins/project-wizard/templates/java.wiz:
4998         * plugins/project-wizard/templates/python.wiz:
4999         * plugins/project-wizard/templates/terminal.wiz:
5000         * plugins/project-wizard/templates/wxwin.wiz:
5001         * plugins/project-wizard/templates/xlib-dock.wiz:
5002         * plugins/project-wizard/templates/xlib.wiz: Enabled shared library
5003         project option and set it ON by default (since gnome-build, can't
5004         enabled configure shared lib support later when a sharedlib target
5005         is added).
5007 2007-04-21 Sebastien Granjoux <seb.sfo@free.fr>
5009         * plugins/debug-manager/stack_trace.c:
5010         Fix a missing case in the previous changes
5012 2007-04-21 Sebastien Granjoux <seb.sfo@free.fr>
5014         * plugins/debug-manager/plugin.c:
5015         Fix bug #430401
5017         * plugins/debug-manager/breakpoints.c,
5018         plugins/gdb/plugin.c:
5019         Fix adding breakpoint on a function
5021         * plugins/debug-manager/stack_trace.c:
5022         Highlight changed stack frame
5024 2007-04-18  Naba Kumar  <naba@gnome.org>
5026         * plugins/document-manager/anjuta-docman.c:
5027         (anjuta_docman_dispose), (on_editor_destroy),
5028         (anjuta_docman_remove_editor): Remove the editor widget from
5029         the parent container before calling destroy, otherwise container
5030         removal happens after TextEditor is disposed resulting in call
5031         to value-remove for a TextEditor which is half-dead (crash).
5033 2007-04-11 Sebastien Granjoux <seb.sfo@free.fr>
5035         * plugins/debug-manager/data_buffer.c
5036         plugins/debug-manager/data_view.c,
5037         plugins/debug-manager/memory.c:
5038         Fixes for bug #418523, bug #427090 and bug #428174
5040 2007-04-11 Halton Huo <halton.huo@sun.com>
5042         reviewed by: <jhs@gnome.org>
5044         * configure.in:
5045         * libanjuta/Makefile.am:
5046         * libanjuta/anjuta-utils.c:
5047         * libanjuta/anjuta-utils.h:
5048         * manuals/reference/libanjuta/Makefile.am:
5049         
5050         Fixed compilation on sun by deploying the libutil methods
5051         in anjuta-utils.h and building them on condition.
5053 2007-04-11  Johannes Schmid <jhs@gnome.org>
5055         * plugins/document-manager/anjuta-docman.c: (on_editor_destroy),
5056         (anjuta_docman_add_editor):
5057         Hold a reference on the editor as long as we use it.
5058         
5059         * plugins/document-manager/plugin.c: (on_editor_changed):
5060         Destroy GValue to fix a memoery leak.
5062 2007-04-11  Johannes Schmid <jhs@gnome.org>
5064         * plugins/document-manager/plugin.c: (on_editor_changed):
5065         Fixed reference counting for editor by using g_value_take_object instead
5066         of g_value_set_object. The editors are now correctly finalized and thus
5067         we do not lack so much memory anymore.
5068         
5069         * plugins/sourceview/anjuta-view.c: (anjuta_view_init),
5070         (anjuta_view_finalize), (anjuta_view_focus_out),
5071         (anjuta_view_key_press_event), (anjuta_view_button_press_event):
5072         * plugins/sourceview/anjuta-view.h:
5073         * plugins/sourceview/plugin.c: (ieditor_factory_new_editor):
5074         * plugins/sourceview/sourceview-prefs.c:
5075         (on_gconf_notify_tab_size), (sourceview_prefs_destroy):
5076         * plugins/sourceview/sourceview-prefs.h:
5077         * plugins/sourceview/sourceview-private.h:
5078         * plugins/sourceview/sourceview.c: (on_document_loaded),
5079         (timeout_unref), (on_document_saved), (sourceview_finalize),
5080         (sourceview_new), (ifile_open), (ifile_savable_save),
5081         (ifile_savable_save_as):
5083         Several changes to fix things when the editor is correctly destroyed.
5084         Fixed preferences (which led me to the refcounting issue, #409412)
5085         and removed deprecated completition code that will be replace by
5086         IAnjutaAssist interface soon. 
5088 2007-04-11  Johannes Schmid <jhs@gnome.org>
5090         * libanjuta/anjuta-launcher.c:
5091         (anjuta_launcher_execution_done_cleanup),
5092         (anjuta_launcher_child_terminated):
5093         Possible fix for #428363 and added a g_return_if_fail
5095         * plugins/message-view/plugin.c: (activate_plugin):
5096         Fixed a Gtk/Gdl-Critical
5097         
5098         Patches from Étienne Bersac <bersace03@laposte.net>
5099         * plugins/class-gen/templates/go-source.tpl:
5100         * plugins/macro/macros.xml:
5101         Use better template for GObjects (#417875 and #417918)
5102         
5103         Patches from Halton Huo <halton.huo@sun.com>
5104         * libanjuta/anjuta-launcher.h:
5105         * libanjuta/anjuta-preferences.c:
5106         * libanjuta/anjuta-utils.c:
5107         * plugins/class-gen/window.c: (cg_window_set_add_to_project),
5108         (cg_window_set_add_to_repository):
5109         * plugins/class-inheritance/class-inherit.c:
5110         Fix build with suncc (#423727, #423730, #423733, #423768, #423772)
5112 2007-04-09  Johannes Schmid <jhs@gnome.org>
5114         * plugins/editor/print.c: (anjuta_print_show_header):
5115         * plugins/file-manager/anjuta-file-manager-plugin.glade:
5116         * plugins/symbol-browser/anjuta-symbol-browser-plugin.glade:
5118   Some string changes (#427395 and #427399)
5120 2007-04-06  Johannes Schmid <jhs@gnome.org>
5122         * plugins/build-basic-autotools/build-basic-autotools.c:
5123         (on_build_mesg_format), (on_build_mesg_parse):
5124         Fixed full path detection
5126 2007-04-05  Naba Kumar  <naba@gnome.org>
5128         Patch from Halton Huo:
5129         * libanjuta/Makefile.am:
5130         * libanjuta/anjuta-glue-cpp.c: (anjuta_glue_cpp_load_plugin):
5131         * libanjuta/anjuta-glue-cpp.h:
5132         * libanjuta/anjuta-glue-factory.c: (anjuta_glue_factory_get_type),
5133         (anjuta_glue_factory_class_init), (anjuta_glue_factory_init),
5134         (anjuta_glue_factory_new), (anjuta_glue_factory_add_path),
5135         (anjuta_glue_factory_get_path), (get_already_loaded_module),
5136         (load_plugin), (anjuta_glue_factory_get_object_type):
5137         * libanjuta/anjuta-glue-factory.h:
5138         * libanjuta/anjuta-glue-plugin.c: (anjuta_glue_plugin_get_type),
5139         (anjuta_glue_plugin_load), (anjuta_glue_plugin_unload),
5140         (anjuta_glue_plugin_class_init), (anjuta_glue_plugin_init),
5141         (anjuta_glue_plugin_new):
5142         * libanjuta/anjuta-glue-plugin.h:
5143         * libanjuta/anjuta-plugin-manager.c: (activate_plugin),
5144         (anjuta_plugin_manager_finalize), (anjuta_plugin_manager_new):
5145         * libanjuta/anjuta-plugin.h:
5146         * libanjuta/glue-cpp.c:
5147         * libanjuta/glue-cpp.h:
5148         * libanjuta/glue-factory.c:
5149         * libanjuta/glue-factory.h:
5150         * libanjuta/glue-plugin.c:
5151         * libanjuta/glue-plugin.h:
5152         * plugins/build-basic-autotools/build-basic-autotools.h:
5153         * plugins/class-gen/plugin.h:
5154         * plugins/class-inheritance/plugin.h:
5155         * plugins/cvs-plugin/plugin.h:
5156         * plugins/debug-manager/plugin.h:
5157         * plugins/devhelp/plugin.h:
5158         * plugins/document-manager/plugin.h:
5159         * plugins/editor/plugin.h:
5160         * plugins/file-loader/plugin.h:
5161         * plugins/file-manager/plugin.h:
5162         * plugins/file-wizard/plugin.h:
5163         * plugins/gdb/plugin.h:
5164         * plugins/glade/plugin.h:
5165         * plugins/gtodo/plugin.h:
5166         * plugins/language-support-cpp-java/plugin.h:
5167         * plugins/macro/plugin.h:
5168         * plugins/message-view/plugin.h:
5169         * plugins/patch/plugin.h:
5170         * plugins/profiler/plugin.h:
5171         * plugins/project-import/plugin.h:
5172         * plugins/project-manager/plugin.h:
5173         * plugins/project-wizard/plugin.h:
5174         * plugins/sample1/plugin.h:
5175         * plugins/search/plugin.h:
5176         * plugins/sourceview/plugin.h:
5177         * plugins/subversion/plugin.h:
5178         * plugins/symbol-browser/plugin.h:
5179         * plugins/terminal/terminal.c:
5180         * plugins/tools/plugin.h:
5181         * plugins/tools/scripts/tools-2.xml.in:
5182         * plugins/valgrind/plugin.h:
5184         Renamed Glue to AnjutaGlue to avoid namespace conflicts.
5186 2007-04-05  Naba Kumar  <naba@gnome.org>
5188         * anjuta.spec.in, configure.in: Removed dead codes.
5189         
5190         Patch from Jos Dehaes:
5191         * configure.in, plugins/project-wizard/templates/Makefile.am,
5192         plugins/project-wizard/templates/mkfile.wiz,
5193         plugins/project-wizard/templates/translatable-strings.h: Enabled
5194         makefile-based project creation and import. Fixes bug #355145
5196 2007-04-04 Sebastien Granjoux <seb.sfo@free.fr>
5198         * plugins/debug-manager/debugger.c,
5199         plugins/debug-manager/plugin.c,
5200         plugins/gdb/anjuta-gdb.plugin.in:
5201         Code cleaning (remove unused code, rename this into self)
5202         Add information about supported format in debugger plugin
5203         Activate debugger plugin according to the target format
5205 2007-04-01  Naba Kumar  <naba@gnome.org>
5207         * plugins/message-view/message-view.c:
5208         (message_view_instance_init): Fixed message icons to appear.
5210 2007-03-31  Johannes Schmid <jhs@gnome.org>
5212         * plugins/message-view/anjuta-msgman.c:
5213         (anjuta_msgman_append_view):
5214         * plugins/message-view/plugin.c: (on_view_changed),
5215         (ianjuta_msgman_add_view), (ianjuta_msgman_set_current_view):
5216         
5217         Fixed #424845
5219 2007-03-31  Johannes Schmid <jhs@gnome.org>
5221         * plugins/message-view/message-view.c:
5222         (message_view_instance_init), (imessage_view_append):
5223         Show nice icons beside the messages for info, warning and error. This is a completly
5224         cosmetic change so if someone dislikes it he is free to remove it.
5226 2007-03-31  Johannes Schmid <jhs@gnome.org>
5227         
5228         * plugins/message-view/anjuta-msgman.c: (on_notebook_switch_page),
5229         (anjuta_msgman_class_init), (anjuta_msgman_append_view),
5230         (anjuta_msgman_remove_view), (anjuta_msgman_set_current_view):
5231         * plugins/message-view/anjuta-msgman.h:
5232         * plugins/message-view/message-view.h:
5233         * plugins/message-view/plugin.c: (on_view_changed),
5234         (activate_plugin):
5235         Fixed #359399 and made next/previous insensitive when not availible
5236         
5237         * plugins/sourceview/anjuta-languages-manager.c: (color_to_string),
5238         (tag_style_to_string):
5239         Fixed namespace Problem with gdk >= 2.11
5240         
5241         * plugins/sourceview/sourceview-autocomplete.c:
5242         (sourceview_autocomplete_init):
5243         Removed structure, follow-up of #423682
5245 2007-03-29 Sebastien Granjoux <seb.sfo@free.fr>
5247         * plugins/debug-manager/debug_tree.c,
5248         plugins/debug-manager/debug_tree.h,
5249         plugins/debug-manager/watch.c,
5250         plugins/debug-manager/anjuta-debug-manager.glade:
5251         Inspect variable at cursor
5252         Fix buttons in inspect dialog
5254 2007-03-27  Halton Huo  <halton.huo@sun.com>
5256         Reviewed by Sebastien Granjoux  <seb.sfo@free.fr>:
5258         * plugins/sourceview/sourceview-autocomplete.c
5259         plugins/debug-manager/disassemble.c,
5260         libanjuta/interfaces/libanjuta.idl:
5261         Remove array with 0 size and empty structure as it is not
5262         supported by sun cc, Fixes bug #423682
5264         * plugins/debug-manager/debugger.c:
5265         Remove anonymous union as it is not supported by sun cc,
5266         Fixes bug #423680
5268 === anjuta 2.1.2 ===
5270 2007-03-28  Naba Kumar  <naba@gnome.org>
5272         * configure.in: Bumped version to 2.1.2
5273         * NEWS: Updated for release.
5274         
5275         * plugins/editor/bookmark.xpm, plugins/sourceview/bookmark.png:
5276         Improved breakpoint marker icon.
5277         
5278         * plugins/editor/anjuta-editor.plugin.in,
5279         plugins/sourceview/sourceview.plugin.in: Made editor plugins
5280         non user activable since they are now remembered properly.
5282 2007-03-27 Sebastien Granjoux <seb.sfo@free.fr>
5284         * plugins/tools/editor.c:
5285         Fix bug #423270
5287 2007-03-27  Naba Kumar  <naba@gnome.org>
5289         * plugins/editor/aneditor-autocomplete.cxx: Replace the complete
5290         word when autocompleting without leaving any trailing part of
5291         the word.
5293 2007-03-27  Kamil Páral  <ripper42@gmail.com>
5295         Reviewed by Naba Kumar  <naba@gnome.org>:
5296         * anjuta.desktop.in.in: Remove "Application" category from desktop
5297         file and add "GNOME". GNOME Goal #3 (fixes bug #417612).
5298         
5299 2007-03-27  Naba Kumar  <naba@gnome.org>
5300         
5301         * configure.in, plugins/document-manager/anjuta-docman.c:
5302         (anjuta_docman_add_editor): Conditionally compile notebook tab
5303         reordering feature for gtk >= 2.10. Reduced dependency on gtk to 2.8.0
5305         Patch from Halton Huo:
5306         * configure.in, global-tags/Makefile.am: Do not pass -Wall to
5307         non gcc compiler flags. Fixes bug #423089.
5308         
5309 2007-03-26  Naba Kumar  <naba@gnome.org>
5310         
5311         * AUTHORS, NEWS, TODO.tasks: Updated.
5312         
5313         * plugins/project-manager/plugin.c: (update_ui): Do not insensitise
5314         close menuitem.
5315         
5316         * plugins/symbol-browser/plugin.c: (on_editor_saved),
5317         (update_editor_symbol_model), (iter_matches),
5318         (on_editor_update_ui), (value_added_current_editor),
5319         (activate_plugin), (dispose),
5320         (symbol_browser_plugin_instance_init):
5321         * plugins/symbol-browser/plugin.h: update line on editor save
5322         and editor change. Code clean up and fixed warnings.
5324 2007-03-26  Naba Kumar  <naba@gnome.org>
5326         * plugins/project-wizard/templates/java/project.anjuta,
5327         plugins/project-wizard/templates/python/project.anjuta,
5328         plugins/project-wizard/templates/python/project.anjuta:
5329         Removed version control plugins from default selection.
5331         * plugins/tools/scripts/prepare-changelog.pl,
5332         plugins/tools/scripts/tools-2.xml.in: Updated prepare changelog
5333         script to a better one (that works on both cvs and svn).
5335 2007-03-26  Naba Kumar  <naba@gnome.org>
5337         * (added) plugins/project-wizard/templates/translatable-strings.pl,
5338         Makefile.am: Added the generated translatable file (required for
5339         translations for svn checkouts).
5341         * (added)
5342         plugins/project-wizard/templates/extract-translatable-strings.pl
5343         plugins/project-wizard/templates/Makefile.am, Makefile.am,
5344         po/POTFILES.in: Generated translatable strings for .wiz files and
5345         added them in POTFILES.in for translation. Fixes bug #398035
5347 2007-03-25  Naba Kumar  <naba@gnome.org>
5349         * plugins/language-support-cpp-java/plugin.c: Fixed modeline parsing.
5350         
5351         * src/anjuta-app.c: Removed dead codes.
5352         
5353         * plugins/symbol-browser/an_symbol_prefs.c: Show message view when
5354         global tags generation starts.
5355         
5356         * plugins/debug-manager/chunk_view.c,
5357         plugins/debug-manager/start.h,
5358         plugins/debug-manager/chunk_view.h,
5359         plugins/debug-manager/utilities.c,
5360         plugins/debug-manager/utilities.h,
5361         plugins/debug-manager/debugger.c,
5362         plugins/debug-manager/threads.c,
5363         plugins/debug-manager/disassemble.c,
5364         plugins/debug-manager/info.c,
5365         plugins/debug-manager/sharedlib.c,
5366         plugins/debug-manager/threads.h,
5367         plugins/debug-manager/disassemble.h,
5368         plugins/debug-manager/signals.c,
5369         plugins/debug-manager/info.h,
5370         plugins/debug-manager/sharedlib.h,
5371         plugins/debug-manager/data_buffer.c,
5372         plugins/debug-manager/data_view.c,
5373         plugins/debug-manager/signals.h,
5374         plugins/debug-manager/debug_tree.c,
5375         plugins/debug-manager/watch.c,
5376         plugins/debug-manager/registers.c,
5377         plugins/debug-manager/data_buffer.h,
5378         plugins/debug-manager/data_view.h,
5379         plugins/debug-manager/memory.c,
5380         plugins/debug-manager/debug_tree.h,
5381         plugins/debug-manager/watch.h,
5382         plugins/debug-manager/registers.h,
5383         plugins/debug-manager/memory.h,
5384         plugins/debug-manager/locals.c,
5385         plugins/debug-manager/sexy-icon-entry.c,
5386         plugins/debug-manager/breakpoints.c,
5387         plugins/debug-manager/locals.h,
5388         plugins/debug-manager/sexy-icon-entry.h,
5389         plugins/debug-manager/stack_trace.c,
5390         plugins/debug-manager/breakpoints.h,
5391         plugins/debug-manager/sparse_buffer.c,
5392         plugins/debug-manager/sparse_view.c,
5393         plugins/debug-manager/stack_trace.h,
5394         plugins/debug-manager/sparse_buffer.h,
5395         plugins/debug-manager/sparse_view.h,
5396         plugins/debug-manager/start.c,
5397         plugins/gdb/utilities.c,
5398         plugins/gdb/utilities.h,
5399         plugins/gdb/debugger.c,
5400         plugins/gdb/debugger.h: Added indentation modeline for easy indentation
5401         setup.
5403 2007-03-24 Sebastien Granjoux <seb.sfo@free.fr>
5405         * plugins/gdb/debugger.c:
5406         Avoid empty debugger log window by limiting line to 90 characters
5408 2007-03-24 Sebastien Granjoux <seb.sfo@free.fr>
5410         * plugins/debug-manager/plugin.c,
5411         plugins/debug-manager/plugin.h,
5412         plugins/debug-manager/threads.c,
5413         plugins/debug-manager/threads.h,
5414         plugins/debug-manager/breakpoints.c,
5415         plugins/debug-manager/breakpoints.h,
5416         plugins/debug-manager/stack_trace.c,
5417         plugins/debug-manager/stack_trace.h:
5418         View code action now changes location in disassembly view too
5420         * plugins/debug-manager/anjuta-debug-manager.ui:
5421         Rename breakpoint actions
5423 2007-03-24  Naba Kumar  <naba@gnome.org>
5425         * configure.in, src/anjuta-app.c: Use the new docking algorithm
5426         in gdl 0.7.3 (svn trunk).
5427         * src/anjuta-app.c: Removed dead codes and fixed compiler warnings.
5428         
5429 2007-03-24 Sebastien Granjoux <seb.sfo@free.fr>
5431         * plugins/debug-manager/threads.c,
5432         plugins/debug-manager/debug_tree.c,
5433         plugins/debug-manager/debug_tree.h,
5434         plugins/debug-manager/locals.c,
5435         plugins/debug-manager/registers.c,
5436         plugins/debug-manager/stack_trace.c:
5437         Allow to change current thread updating register, stack and locals
5438         Allow to change current stack frame updating locals
5440         * plugins/gdb/debugger.c:
5441         Read argument of selected stack frame
5443         * plugins/debug-manager/data_view.c:
5444         Fix an unrelated bug
5446 2007-03-23  Naba Kumar  <naba@gnome.org>
5448         * plugins/document-manager/anjuta-docman.c,
5449         plugins/document-manager/plugin.c: Fixed many memory leaks.
5450         (ianjuta_file_get_uri() returns a new string).
5452         * plugins/document-manager/action-callbacks.c: Use AnjutaSavePrompt
5453         widget for save dialogs.
5454         
5455         * tagmanager/tm_tag.c, tagmanager/entry.h: Restored entry.h from
5456         svn and fixed to get function/prototype/member args list. Call tips
5457         also work fine now.
5459 2007-03-22  Naba Kumar  <naba@gnome.org>
5461         * tagmanager/c.c: Enabled 'prototype' tags so that autocomplete
5462         and calltips would work again for functions from global tags (Needs
5463         regenerating global tags).
5465         * tagmanager/c.c, plugins/symbol-browser/plugin.c: Restored c.c to
5466         ctags svn version and reopened bug #395362. Fixes tags parsing that
5467         seemed to have stopped working recently.
5469 2007-03-21  Naba Kumar  <naba@gnome.org>
5471         * tagmanager/tm_source_file.c, tagmanager/options.c,
5472         global-tags/create_global_tags.sh.in: Fixed c++ parsing (to some
5473         extend .. more needs to be investigated and fixed). Enabled some
5474         debugging.
5476 2007-03-16  Naba Kumar  <naba@gnome.org>
5478         * src/anjuta.c: Fixed project loading from command line.
5480 2007-03-16  Naba Kumar  <naba@gnome.org>
5482         Patch from James Liggett <jrliggett@cox.net>:
5483         plugins/profiler/gprof-profile-data.c: Fixed a crash.
5484         
5485 2007-03-15  Naba Kumar  <naba@gnome.org>
5487         * libanjuta/anjuta-profile-manager.c,
5488         libanjuta/anjuta-profile-manager.h: Added method to get current
5489         profile.
5491         * libanjuta/anjuta-shell.c, libanjuta/anjuta-shell.h: Added "exiting"
5492         signal and anjuta_shell_notify_exit(). Signal is emitted when anjuta
5493         is exiting.
5495         * libanjuta/anjuta-utils.c, libanjuta/anjuta-utils.h,
5496         plugins/file-loader/plugin.c: Moved to functions as utility functions.
5497         Also, not load project files in session load in loader plugin.
5498         
5499         * plugins/project-manager/plugin.c, src/anjuta.c:
5500         Emit "exiting" signal in shell when exiting anjuta. project manager
5501         listens to exiting signal and saves session. anjuta.c saves session
5502         only when current projfile is 'user'. Load project saved in session
5503         differently then the rest of the session. This should fix all the
5504         session restoration bugs.
5505         
5506         src/main.c: Present anjuta window when becon message is received.
5508 2007-03-14  Naba Kumar  <naba@gnome.org>
5510         * libanjuta/anjuta-profile.c: Fixed a bug where some plugins would
5511         not randomly save (it was a wrong looping).
5512         
5513 2007-03-12  Naba Kumar  <naba@gnome.org>
5515         * libanjuta/interfaces/libanjuta.idl: Added more API section headers.
5517 2007-03-12 Sebastien Granjoux <seb.sfo@free.fr>
5519         * plugins/debug-manager/anjuta-debug-manager.ui,
5520         libanjuta/interfaces/libanjuta.idl,
5521         plugins/debug-manager/debugger.c,
5522         (added) plugins/debug-manager/threads.c,
5523         (added) plugins/debug-manager/threads.h,
5524         plugins/debug-manager/plugin.c,
5525         plugins/debug-manager/Makefile.am,
5526         plugins/gdb/plugin.c,
5527         plugins/gdb/debugger.c,
5528         plugins/gdb/debugger.h:
5529         Add a window displaying all threads
5530         Add needed functions
5531         Switching to a different thread is still not done
5533         * plugins/debug-manager/debug_tree.c,
5534         plugins/debug-manager/locals.c,
5535         plugins/debug-manager/stack_trace.c:
5536         Small cosmetic changes
5538         * plugins/gdb/gdbmi.c:
5539         Keep all elements in gdbmi hash
5540         Even if using the same key like in -threads-list-ids
5542 2007-03-11  Naba Kumar  <naba@gnome.org>
5544         * libanjuta/interfaces/anjuta-idl-compiler.pl: Generate class comments.
5545         
5546         * libanjuta/interfaces/libanjuta.idl: Fixed and added API docs.
5547         
5548         * manuals/reference/libanjuta/libanjuta-docs.sgml,
5549         manuals/reference/libanjuta/libanjuta-sections.txt,
5550         manuals/reference/libanjuta/libanjuta.types: Updated to contain latest
5551         interfaces.
5553 2007-03-11  Naba Kumar  <naba@gnome.org>
5555         * configure.in, manuals/reference/libanjuta/Makefile.am: Fixed to use
5556         gtk-doc properly. Bumped gtk-doc requirement to 1.4
5558         * manuals/reference/libanjuta/libanjuta-docs.sgml,
5559         manuals/reference/libanjuta/libanjuta.types,
5560         manuals/reference/libanjuta/libanjuta-sections.txt,
5561         manuals/reference/libanjuta/.cvsignore,
5562         (removed) manuals/reference/libanjuta/tmpl/*: Updated API docs
5563         infrastructure. Got rid of tmpl/ directory and moved all section
5564         documenation to source code (requires gtk-doc >= 1.4).
5565         
5566         * libanjuta/anjuta-plugin-description.c,
5567         libanjuta/interfaces/libanjuta.idl,     libanjuta/anjuta-status.c,
5568         libanjuta/cell-renderer-captioned-image.c,
5569         libanjuta/anjuta-plugin-handle.c, libanjuta/resources.c,
5570         libanjuta/anjuta-debug.h, libanjuta/glue-cpp.c,
5571         libanjuta/e-splash.c, libanjuta/anjuta-plugin.c,
5572         libanjuta/anjuta-preferences-dialog.c, libanjuta/libanjuta.h,
5573         libanjuta/anjuta-plugin-manager.c, libanjuta/anjuta-shell.c,
5574         libanjuta/glue-plugin.c, libanjuta/anjuta-encodings.c,
5575         libanjuta/anjuta-save-prompt.c, libanjuta/glue-factory.c,
5576         libanjuta/anjuta-session.c, libanjuta/anjuta-children.c,
5577         libanjuta/anjuta-utils.c, libanjuta/anjuta-profile.c,
5578         libanjuta/anjuta-preferences.c, libanjuta/anjuta-launcher.c,
5579         libanjuta/anjuta-profile-manager.c, libanjuta/anjuta-serializer.c,
5580         libanjuta/anjuta-ui.c: Added inline API documentation. Moved section
5581         documentation from templates to source code.
5583 2007-03-10  Johannes Schmid <jhs@gnome.org>
5585         * libanjuta/anjuta-profile.c: (anjuta_profile_to_xml):
5586         Added some debug output but could not figure out why 
5587         some plugins are not kept.
5588         
5589         * libanjuta/interfaces/libanjuta.idl:
5590         * manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml:
5591         * manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml:
5592         Added IAnjutaEditorGoto::matching_brace
5593         
5594         * plugins/document-manager/action-callbacks.c:
5595         (on_editor_command_match_brace_activate):
5596         * plugins/document-manager/plugin.c:
5597         (update_editor_ui_interface_items):
5598         * plugins/editor/text_editor.c: (igoto_matching_brace),
5599         (igoto_iface_init):
5600         * plugins/sourceview/sourceview.c: (ieditor_iface_init):
5601         Fixed #355155 (matching brace for scintilla, disabled for sourceview)
5603 2007-03-09  Johannes Schmid <jhs@gnome.org>
5605         * plugins/file-manager/an_file_view.c: (fv_add_tree_entry):
5606         Hide correct column
5607         
5608         * plugins/sourceview/sourceview-private.h:
5609         * plugins/sourceview/sourceview.c: (on_reload_dialog_response),
5610         (on_sourceview_uri_changed_prompt), (on_sourceview_uri_changed),
5611         (sourceview_new), (ifile_savable_save_as):
5612         Tweaked vfs monitoring
5614 2007-03-09  Johannes Schmid <jhs@gnome.org>
5616         * libanjuta/interfaces/Makefile.am.iface:
5617         Fixed installtion of header files
5618         
5619         * plugins/sourceview/sourceview.c: (set_select):
5620         do not scroll to much in interactive search
5622 2007-03-09  Naba Kumar  <naba@gnome.org>
5624         * src/anjuta.c: Fixed session restoration.
5625         
5626         * plugins/symbol-browser/plugin.c: Fixed crashes due to dangling
5627         signal handlers after symbol browser plugin is deactivated.
5628         
5629         * plugins/editor/editor.glade,
5630         plugins/language-support-cpp-java/anjuta-language-cpp-java.glade:
5631         Fixed indentation confustion in preferences.
5633 2007-03-08  Johannes Schmid <jhs@gnome.org>
5635         * plugins/search/search-replace.c: (search_set_combo),
5636         (search_set_action), (search_set_target), (search_set_direction),
5637         (create_dialog), (search_disconnect_set_toggle_connect),
5638         (on_search_match_whole_word_toggled),
5639         (on_search_match_whole_line_toggled),
5640         (on_search_match_word_start_toggled),
5641         (search_set_toggle_direction):
5642         Use GCallback instead of GSignalFunc! We need to fix this code anyway,
5643         it's somehow ugly and uses many deprecated widgets
5644         
5645         Patch from Ritesh Khadgaray <baby.linux@gmail.com>:
5646         * plugins/symbol-browser/anjuta-symbol-browser-plugin.glade:
5647         Fix #394709
5648         
5649 2007-03-07  Naba Kumar  <naba@gnome.org>
5651         * src/anjuta.c: Make launching projects work from command line. Also
5652         fixes gnome session restart command.
5653         
5654 2007-03-07  Johannes Schmid <jhs@gnome.org>
5656         Patch from Lucas Mazzardo Veloso <lmveloso@gmail.com>
5657         * plugins/class-gen/plugin.c: (iwizard_activate):
5658         Fixed #408218
5659         
5660         * plugins/cvs-plugin/cvs-callbacks.c: (on_cvs_import_response):
5661         Fixed #402774
5662         
5663         * plugins/file-manager/an_file_view.c: (fv_add_tree_entry):
5664         Fixed #377483 (It's not possible to know if directories have
5665         a version in CVS. Show version column only if there are version
5666         informations availible
5668         * plugins/sourceview/sourceview-cell.c: (icell_get_attribute):
5669         Fixed memory leak
5671 2007-03-07  Johannes Schmid <jhs@gnome.org>
5673         * plugins/sourceview/sourceview-prefs.c: (get_bool):
5674         Fixed #409408
5675         * plugins/symbol-browser/an_symbol_prefs.c:
5676         (on_update_global_clicked):
5677         Fixed ##409176
5679 2007-03-07  Johannes Schmid <jhs@gnome.org>
5681         * libanjuta/anjuta-save-prompt.c: (anjuta_save_prompt_init),
5682         (anjuta_save_prompt_new):
5683         * plugins/project-import/project-import.c:
5684         (project_import_finalize):
5685         Fixed Gtk-Criticals (maybe #409408)
5687 2007-03-07  Naba Kumar  <naba@gnome.org>
5689         * plugins/language-support-cpp-java/plugin.c: Fixed indentation anomaly
5690         when we are at just beginning of string or comment. Fixes bug #397981.
5692 2007-03-07  Johannes Schmid <jhs@gnome.org>
5694         * plugins/language-support-cpp-java/plugin.c:
5695         (initialize_indentation_params):
5696         Removed annoying DEBUG_PRINT
5697         
5698         * plugins/sourceview/sourceview-cell.c:
5699         (sourceview_cell_instance_init), (icell_get_character),
5700         (icell_get_length), (icell_get_char), (icell_get_attribute):
5701         Improved code to be faster
5702         Implemented attribute handling so that indentation really works in any case
5704 2007-03-06  Johannes Schmid <jhs@gnome.org>
5706         * configure.in:
5707         GTK_REQUIRED = 2.10.0 (required for GtkRecent and Docman tabs)
5708         
5709         * plugins/document-manager/anjuta-docman.c:
5710         (anjuta_docman_instance_init), (anjuta_docman_add_editor):
5711         Removed old and ugly tab drag&drop code and use built-in gtk stuff
5712         instead (required GTK >= 2.10)
5713         
5714         * plugins/sourceview/sourceview-private.h:
5715         * plugins/sourceview/sourceview.c:
5716         (on_sourceview_uri_changed_prompt), (on_sourceview_uri_changed),
5717         (sourceview_finalize), (sourceview_new), (imark_mark),
5718         (imark_unmark), (imark_is_marker_set),
5719         (imark_location_from_handle), (imark_delete_all_markers):
5720         Fixed marker handling and worked a bit more on vfs monitoring
5722 2007-03-05  Johannes Schmid <jhs@gnome.org>
5724         * libegg/egg-combo-action.c: (egg_combo_action_set_active_iter):
5725         Added method to select specific iter
5726         
5727         * plugins/sourceview/sourceview-private.h:
5728         * plugins/sourceview/sourceview.c: (on_reload_dialog_response),
5729         (on_sourceview_uri_changed_prompt), (on_sourceview_uri_changed),
5730         (sourceview_add_monitor), (on_document_saved),
5731         (sourceview_finalize), (sourceview_new), (ifile_savable_save_as):
5732         Fixed vfs monitoring (mostly ported code from text_editor.c)
5733         
5734         * plugins/symbol-browser/an_symbol_view.c:
5735         * plugins/symbol-browser/an_symbol_view.h:
5736         * plugins/symbol-browser/plugin.c: (iter_matches),
5737         (on_editor_update_ui), (value_added_current_editor):
5738         Select the current tag in locals window and symbol toolbar. If there
5739         is no tag at the current line, reserve backward for the next tag. This will
5740         select the correct tag if inside a function.
5742 2007-03-05  Naba Kumar  <naba@gnome.org>
5744         * src/anjuta-app.c: Fixes gtk-critical messages at shutdown.
5745         * plugins/editor/text_editor.c: Disabled DEBUG_PRINTs and fixed
5746         compiler warnings.
5747         * plugins/editor/text_editor.c: Fixes a crash on 64 bit arch
5748         (Bug #412186)
5749         
5750 2007-03-04  Johannes Schmid <jhs@gnome.org>
5752         * data/Makefile.am:
5753         * po/POTFILES.in:
5754         Fixed distcheck (well, partly)
5756 2007-03-04  Johannes Schmid <jhs@gnome.org>
5758         * plugins/document-manager/anjuta-document-manager.ui:
5759         Move "Swap .c/.h from Main to Browser toolbar
5761         Modified Patch from Yang Hong <yanghong@ccoss.com.cn>:
5762         * plugins/file-manager/an_file_view.c: (fv_prefs_new),
5763         (fv_prefs_free), (fv_add_tree_entry):
5764         * plugins/file-manager/anjuta-file-manager-plugin.glade:
5765         * plugins/file-manager/plugin.c: (prefs_init):
5766         
5767         Bug 387208 – [Patch] Add custom file-manager ignore pattern support
5769 2007-03-04  Naba Kumar  <naba@gnome.org>
5771         * data/default.proflie, data/Makefile.am, src/anjuta.c,
5772         plugins/project-manager/plugin.c:
5773         Restored default profile and renamed it from "default.anjuta" to
5774         "default.profile".
5775         
5776 2007-03-03 Sebastien Granjoux <seb.sfo@free.fr>
5778         * plugins/debug-manager/debugger.c,
5779         plugins/debug-manager/plugin.c,
5780         plugins/gdb/debugger.c,
5781         libanjuta/interfaces/libanjuta.idl,
5782         plugins/debug-manager/stack_trace.c:
5783         Add a dialog box when a signal is received (except SIGINT)
5784         Display stack frame even if arguments are not available
5786 2007-03-03  Naba Kumar  <naba@gnome.org>
5788         * TODO.tasks: Icons bounty added.
5790         * libanjuta/anjuta-plugin-manager.[ch]: Implemented remember plugin
5791         choise selection.
5792         
5793         * libanjuta/anjuta-profile-manager.[ch]: Implemented profile scoping
5794         and descoping.
5796         * configure.in, src/anjuta.c, plugins/project-manager/plugin.[ch],
5797         plugins/Makefile.am, (removed) plugins/profile-default/*,
5798         plugins/project-manager/anjuta-project-manager.plugin.in,
5799         plugins/project-manager/anjuta-project-manager.ui: Use the new plugins
5800         profile implementation to load user profile and projects. Store and
5801         restore remembered plugins. Use profile scoping and descoping for
5802         saving and loading sesstions.
5803         
5804         * libanjuta/anjuta-plugin-handle.c, libanjuta/anjuta-plugin-manager.c,
5805         libanjuta/anjuta-shell.c, libanjuta/anjuta-preferences.c,
5806         libanjuta/anjuta-profile-manager.c, libanjuta/anjuta-ui.c: Disabled
5807         DEBUG_PRINTs.
5809 2007-03-03 Sebastien Granjoux <seb.sfo@free.fr>
5811         * plugins/debug-manager/debug_tree.c
5812         plugins/debug-manager/debug_tree.h:
5813         Bug fix, deleting wrong variable
5815         * plugins/gdb/debugger.c:
5816         Bug fix, remove forgotten debugging code
5818 2007-03-02  Johannes Schmid <jhs@gnome.org>
5820         * plugins/document-manager/anjuta-document-manager.ui:
5821         * plugins/search/anjuta-search.ui:
5822         * plugins/symbol-browser/anjuta-symbol-browser-plugin.ui:
5823         Break toolbars into smaller peaces: ToolbarBookmark, ToolbarSymbols,
5824         ToolbarFind
5826         * src/anjuta-app.c: (on_toolbar_view_toggled),
5827         (on_add_merge_widget), (on_session_save), (on_widget_remove):
5828         Save toolbar positions, don't use fixed toolbar style
5829         
5830         All in all this will allow more complex toolbar configurations and
5831         might gain some space on smaller displays because the user can disable
5832         toolbar parts he does not use. Also allows to use any toolbar style
5833         without looking too ugly.
5835 2007-03-01  Naba Kumasr  <naba@gnome.org>
5837         * TODO.tasks: Added a bounty for creating icons.
5839         * libanjuta/anjuta-profile.c, libanjuta/anjuta-profile-manager.c,
5840         libanjuta/anjuta-profile-manager.h: Fixed infinite loop. Added
5841         profile-changed signal. Do not sync non-user-activatable plugins.
5843 2007-02-29 Sebastien Granjoux <seb.sfo@free.fr>
5845         * plugins/debug-manager/disassemble.c,
5846         plugins/debug-manager/sparse_view.c,
5847         plugins/gdb/debugger.c,
5848         libanjuta/interfaces/libanjuta.idl:
5849         Display function name in disassembly view
5851 2007-02-28 Sebastien Granjoux <seb.sfo@free.fr>
5853         * (added) plugins/debug-manager/bookmark.png,
5854         (added) plugins/debug-manager/breakpoint-disabled.png,
5855         (added) plugins/debug-manager/breakpoint-enabled.png,
5856         (added) plugins/debug-manager/program-counter.png,
5857         (added) plugins/debug-manager/linemarker.png,
5858         plugins/debug-manager/Makefile.am,
5859         plugins/debug-manager/disassemble.c,
5860         plugins/debug-manager/disassemble.h,
5861         plugins/debug-manager/sparse_buffer.c,
5862         plugins/debug-manager/sparse_buffer.h,
5863         plugins/debug-manager/sparse_view.c,
5864         plugins/debug-manager/sparse_view.h,
5865         plugins/debug-manager/plugin.c,
5866         plugins/debug-manager/breakpoints.c,
5867         libanjuta/interfaces/libanjuta.idl:
5868         Add markers in the disassembly view
5869         Display program counter and breakpoints in disassembly view
5871         * plugins/gdb/debugger.c:
5872         Fix a bug added with my previous patch, setting and clearing
5873         breakpoints was not working
5875 2007-02-28  Johannes Schmid <jhs@gnome.org>
5877         * manuals/reference/libanjuta/tmpl/anjuta-shell.sgml:
5878         * manuals/reference/libanjuta/tmpl/ianjuta-debugger.sgml:
5879         * manuals/reference/libanjuta/tmpl/ianjuta-editor-assist.sgml:
5880         * manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml:
5881         * manuals/reference/libanjuta/tmpl/ianjuta-file-manager.sgml:
5882         * manuals/reference/libanjuta/tmpl/ianjuta-file-savable.sgml:
5883         * manuals/reference/libanjuta/tmpl/ianjuta-markable.sgml:
5884         * manuals/reference/libanjuta/tmpl/ianjuta-message-view.sgml:
5885         * manuals/reference/libanjuta/tmpl/ianjuta-project-manager.sgml:
5886         * manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml:
5887         Updated (why do they need to be under version control?)
5888         
5889         * plugins/message-view/anjuta-msgman.c: (on_msgman_close_all),
5890         (create_tab_popup_menu), (on_msgman_popup_menu),
5891         (on_tab_button_press_event), (anjuta_msgman_page_new),
5892         (anjuta_msgman_finalize), (anjuta_msgman_instance_init):
5893         Added "Close all message tabs" popup menu
5895 2007-02-26  Naba Kumar  <naba@gnome.org>
5897         * plugins/profiler/gprof-flat-profile-entry.c,
5898         plugins/profiler/gprof-flat-profile.c,
5899         plugins/profiler/gprof-flat-profile-entry.h,
5900         plugins/profiler/gprof-flat-profile.h,
5901         plugins/profiler/gprof-flat-profile-view.c,
5902         plugins/profiler/gprof-flat-profile-view.h,
5903         plugins/profiler/gprof-call-graph-block-entry.c,
5904         plugins/profiler/gprof-call-graph-block.c,
5905         plugins/profiler/gprof-function-call-chart-view.c,
5906         plugins/profiler/gprof-call-graph-block-entry.h,
5907         plugins/profiler/gprof-profile-data.c,
5908         plugins/profiler/gprof-call-graph-block.h,
5909         plugins/profiler/gprof-view.c,
5910         plugins/profiler/gprof-call-graph.c,
5911         plugins/profiler/gprof-function-call-chart-view.h,
5912         plugins/profiler/gprof-profile-data.h,
5913         plugins/profiler/gprof-call-graph.h,
5914         plugins/profiler/gprof-view.h,
5915         plugins/profiler/gprof-view-manager.c,
5916         plugins/profiler/gprof-call-graph-view.c,
5917         plugins/profiler/plugin.c,
5918         plugins/profiler/gprof-view-manager.h,
5919         plugins/profiler/gprof-call-graph-view.h,
5920         plugins/profiler/gprof-function-call-tree-view.c,
5921         plugins/profiler/gprof-function-call-tree-view.h,
5922         plugins/profiler/Makefile.am: Fix compiler warnings and link with
5923         gnome-vfs. Fixes bug #411377.
5925 2007-02-26  Naba Kumar  <naba@gnome.org>
5927         * plugins/profiler/gprof-profile-data.c: Fixes bug #411623,
5929         Patch from James Liggett  <jrliggett@cox.net>:
5930         * plugins/profiler/gprof-flat-profile-view.c,
5931         plugins/profiler/gprof-flat-profile-view.h,
5932         plugins/profiler/gprof-function-call-chart-view.c,
5933         plugins/profiler/gprof-function-call-chart-view.h,
5934         plugins/profiler/gprof-view.c,
5935         plugins/profiler/gprof-view.h,
5936         plugins/profiler/gprof-call-graph-view.c,
5937         plugins/profiler/plugin.c,
5938         plugins/profiler/gprof-call-graph-view.h,
5939         plugins/profiler/gprof-function-call-tree-view.c,
5940         plugins/profiler/gprof-function-call-tree-view.h: Implements
5941         double click navigation. Fixes bug #403514.
5943 2007-02-25  Naba Kumar  <naba@gnome.org>
5945         * libanjuta/anjuta-plugin-manager.c,
5946         libanjuta/anjuta-plugin-handle.[ch],
5947         plugins/build-basic-autotools/build-basic-autotools.c: Removed the use of
5948         g_hash_table_remove_all (introduced in glib 2.12) to stay the
5949         dependency on glib 2.8. Fixes bug #411623.
5951 2007-02-24  Naba kumar  <naba@gnome.org>
5953         * libanjuta/interfaces/Makefile.am.iface: Added log domain.
5954         
5955         * libanjuta/anjuta-marshal.list, libanjuta/anjuta-plugin-manager.c,
5956         libanjuta/anjuta-plugin-manager.h, libanjuta/anjuta-profile.c,
5957         libanjuta/anjuta-profile.h, libanjuta/Makefile.am,
5958         (added) libanjuta/anjuta-profile-manager.c,
5959         (added) libanjuta/anjuta-profile-manager.h: Implemented profile
5960         manager.
5961         Implemented profile pushing and popping. Implemented profile xml
5962         synchronization. Implemented error handling in profiles. Implemented
5963         activation and deactivation signals in plugin manager.
5964         
5965         * libanjuta/Makefile.am: Added libanjuta log domain.
5966         
5967         * libanjuta/anjuta-shell.c, libanjuta/anjuta-shell.h,
5968         src/anjuta-app.c, src/anjuta-app.h: Added get_profile_manager()
5969         in AnjutaShell interface and implemented it in AnjutaApp.
5970         
5971         * manuals/reference/libanjuta/tmpl/anjuta-shell.sgml: Updated.
5973 2007-02-23  Naba kumar  <naba@gnome.org>
5975         src/main.c: Fixed missing end quote.
5977 2007-02-20  Jean-Noel Guiheneuf  <guiheneuf.jean-noel@wanadoo.fr>
5979         * plugins/debug-manager/breakpoints.c: Enabled/Disabled breakpoints.
5982 2007-02-20  Naba Kumar  <naba@gnome.org>
5984         * plugins/subversion/plugin.c: Added "..." menuitems.
5985         * ROADMAP, README: Updated.
5986         * libanjuta/anjuta-profile.c: Fixed bugs.
5988         * (removed)plugins/gtodo/gtodo.c, (removed)plugins/gtodo/main.c,
5989         plugins/gtodo/Makefile.am: Removed dead code.
5991         Patch from  Antoine Cailliau  <a.cailliau@ac-graphic.net>:
5992         * plugins/gtodo/interface.c, plugins/gtodo/preferences.c,
5993         plugins/gtodo/notification.c, plugins/gtodo/add_edit_item.c,
5994         plugins/gtodo/list_tooltip.c,
5995         plugins/document-manager/goto_line.c, plugins/glade/plugin.c,
5996         libanjuta/anjuta-save-prompt.c: Fixed translatable strings to
5997         not contain markups. Fixes Bug #360462.
5999 2007-02-16  Naba Kumar  <naba@gnome.org>
6001         * manuals/reference/libanjuta/project-wizard-format.sgml: Removed
6002         unnecessary sub-sections.
6003         
6004 2007-02-15  Naba Kumar  <naba@gnome.org>
6006         * (removed) plugins/document-manager/bookmark-prev-16.png,
6007         plugins/document-manager/bookmark-last.png,
6008         (removed)plugins/document-manager/bookmark-first-16.png,
6009         plugins/document-manager/bookmark-prev.png,
6010         (added) plugins/document-manager/bookmark-toggle.png,
6011         (removed)plugins/document-manager/bookmark_toggle.xpm,
6012         (removed)plugins/document-manager/bookmark-last-16.png,
6013         plugins/document-manager/plugin.c,
6014         plugins/document-manager/anjuta-document-manager.ui,
6015         (removed)plugins/document-manager/bookmark-next-16.png,
6016         plugins/document-manager/bookmark-next.png,
6017         plugins/document-manager/Makefile.am,
6018         (added) plugins/document-manager/bookmark-clear.png,
6019         plugins/document-manager/bookmark-first.png: Upgraded bookmark
6020         icons (stolen from monodevelop). Added clear bookmarks toolbar
6021         button.
6023         * plugins/document-manager/plugin.c,
6024         (added) plugins/document-manager/swap.png,
6025         (removed) plugins/document-manager/undock.png,
6026         plugins/document-manager/Makefile.am: Fixed swap icon.
6028 2007-02-13  Naba Kumar  <naba@gnome.org>
6030         * plugins/class-gen/element-editor.c: Fixed typo.
6031         
6032         * libanjuta/anjuta-plugin-manager.c, libanjuta/anjuta-plugin-manager.h,
6033         libanjuta/anjuta-profile.c, libanjuta/anjuta-profile.h:
6034         Implementing plugin profiles loading.
6036 2007-02-13  Naba Kumar  <naba@gnome.org>
6038         * pixmaps/*.xpm, pixmaps/Makefile.am: Removed old icons.
6039         * pixmaps/Makefile.am, pixmaps/appwiz*.png, 
6040         pixmaps/applogo.png, pixmaps/anjuta_logo.png,
6041         pixmaps/open_project.png, pixmaps/close_project.png:
6042         Removed more old icons.
6043         * pixmaps/anjuta_logo2.png, pixmaps/anjuta_logo.png,
6044         pixmaps/Makefile.am, src/about.c: Renmaed anjuta_logo2.png to
6045         anjuta_logo.png
6046         
6047 2007-02-13  Naba Kumar  <naba@gnome.org>
6049         * plugins/class-gen/element-editor.c: Included missing headers to
6050         prevent build failures in some cases.
6051         
6052 2007-02-13 Sebastien Granjoux <seb.sfo@free.fr>
6054         * plugins/debug-manager/stack_trace.c:
6055         Fix bug #407115
6057         * plugins/debug-manager/watch.c,
6058         plugins/debug-manager/breakpoints.c:
6059         Same bug than above, wrong use of gtk_ui_manager_get_widget
6061 === anjuta 2.1.1 ===
6063 2007-02-11  Naba Kumar  <naba@gnome.org>
6065         * cofigure.in: Bumped version to 2.1.1
6066         * NEWS: Updated for 2.1.1 release.
6067         
6068 2007-02-10 Sebastien Granjoux <seb.sfo@free.fr>
6070         * plugins/debug-manager/plugin.c,
6071         plugins/debug-manager/sparse_view.c,
6072         plugins/debug-manager/sparse_view.h:
6073         Reorder some code
6075         * plugins/gdb/debugger.c,
6076         plugins/debug-manager/debugger.c,
6077         plugins/debug-manager/memory.c,
6078         plugins/debug-manager/sparse_buffer.c
6079         plugins/gdb/debugger.h,
6080         libanjuta/interfaces/libanjuta.idl:
6081         Clean up, remove some warnings
6082         Use guint everywhere for addresses
6083         Rewrite code parsing position in debugger
6085 2007-02-10 Sebastien Granjoux <seb.sfo@free.fr>
6087         * plugins/debug-manager/debug_tree.c:
6088         Use GtkTreeRowReference instead of GtkTreeIter as callback data
6089         Fix bug #406113
6091 2007-02-08  Naba Kumar  <naba@gnome.org>
6093         * plugins/editor/text_editor.h, plugins/editor/text_editor.c:
6094         Delay showing the 'file modified on disk' dialog for one sec
6095         from the last notification to insure multiple notifications for
6096         the same file are treated as one. Do not same multiple dialogs
6097         for the same file. Make sure to destory the dialog if later
6098         the conent is no longer different.
6099         
6100 2007-02-08  Naba Kumar  <naba@gnome.org>
6102         * plugins/editor/text_editor.h, plugins/editor/text_editor.c:
6103         Prevented spurious 'file modified' dialogs in scintilla editor
6104         when the file is saved.
6106 2007-02-09  Johannes Schmid <jhs@gnome.org>
6108         * scripts/glade2schema.pl:
6109         Added script to convert glade preferences into gconf schema files.
6110         See #406061
6112 2007-02-08  Naba Kumar  <naba@gnome.org>
6114         * src/anjuta-app.c: Destroy toolbar menuitem when the toolbar
6115         itself is destroyed. Fixes bug #355160.
6116         
6117 2007-02-08  Johannes Schmid <jhs@gnome.org>
6119         * plugins/profiler/profiler.plugin: 
6120         removed from version control (only .in file needed)
6121         
6122         * plugins/sourceview/anjuta-view.c: (anjuta_view_init):
6123         * plugins/sourceview/sourceview.c: (sourceview_new):
6124         Code cleanup
6125         
6126         * plugins/subversion/svn-thread.c: (svn_thread_start):
6127         * src/main.c: (main):
6128         
6129         Fixed #395875 about initialisation of threads too late
6131 2007-02-07  Armin Burgmeier  <armin@arbur.net>
6133         Reviewed by Naba Kumar  <naba@gnome.org>:
6134         * plugins/class-gen/plugin.c:
6135         * plugins/class-gen/window.c: Removed browse button related code, load
6136         generated output directly into new buffers when not adding to project.
6138         * plugins/class-gen/anjuta-class-gen-plugin.glade: Removed browse
6139         buttons from user interface.
6141 2007-02-07  Naba Kumar  <naba@gnome.org>
6143         * po/POTFILES.in: Fixed distcheck.
6145 2007-02-07  Daniel Nylander <po@danielnylander.se>
6147         * manuals/anjuta-manual/sv/sv.po: Added initial Swedish translation.
6149 2007-02-07  Johannes Schmid <jhs@gnome.org>
6151         * anjuta.desktop.in.in:
6152         Fixed spelling
6154 2007-02-07  Johannes Schmid <jhs@gnome.org>
6156         * configure.in:
6157         * manuals/anjuta-manual/*
6158         * manuals/anjuta-faqs/*:
6159         #398991 – Anjuta manuals does not use the gnome-doc-utils format
6160         
6161         * plugins/document-manager/anjuta-document-manager.plugin.in:
6162         Removed duplicate application-xml mime-type (review patches properly ;-)
6163         
6164 2007-02-06 Sebastien Granjoux <seb.sfo@free.fr>
6166         * plugins/gdb/debugger.c,
6167         libanjuta/interfaces/libanjuta.idl:
6168         Fix bug #404755
6169         Fix handling of missing source file
6171 2007-02-06  Naba Kumar  <naba@gnome.org>
6173         Patch from James Liggett  <jrliggett@cox.net>:
6174         * plugins/profiler/gprof-flat-profile.c,
6175         plugins/profiler/gprof-profile-data.c,
6176         plugins/profiler/gprof-call-graph.c,
6177         plugins/profiler/gprof-profile-data.h,
6178         plugins/profiler/plugin.c: Fixed infinite loop bug #403501,
6179         Show profiler view when target selected bug #403515.
6181 2007-02-05  Naba Kumar  <naba@gnome.org>
6183         * configure.in: Enabled devhelp plugin by default now that
6184         it works.
6185         
6186         Patch from parmigio@2ainfo.it:
6187         * plugins/document-manager/anjuta-document-manager.plugin.in:
6188         Added xml file type in supported mime types list.
6189         
6190 2007-02-04 Sebastien Granjoux <seb.sfo@free.fr>
6192         * plugins/debug-manager/debugger.c,
6193         plugins/debug-manager/plugin.c:
6194         Add a field in status bar displaying debugger state
6195         Change cursor shape when debugger is busy
6196         Fix bug #378600
6198         * plugins/debug-manager/watch.c,
6199         plugins/debug-manager/locals.c,
6200         libanjuta/interfaces/libanjuta.idl:
6201         Clean up, remove debugging messages and unused signals
6203 2007-02-03  Johannes Schmid <jhs@gnome.org>
6205         * configure.in:
6206         Fixed AC_INIT and seperated version to major, minor, micro
6208         * anjuta.anjuta:
6209         Load Subversion instead of CVS
6210         
6211         * anjuta.desktop.in.in:
6212         Fixed bug-buddy component
6214         Original patch from Rob Bradfort <robster@debian.org>:
6215         * src/main.c: (get_command_line_args), (main):
6216         Bug #335981 – Migration from popt to GOption
6218 2007-02-03  Naba Kumar  <naba@gnome.org>
6220         * configure.in: Depend on devhelp 0.13 and fixed gecko home
6221         path variable. Fixed bug #341170.
6222         * plugins/profiler/Makefile.am: Fixed indentation.
6223         
6224 2007-02-02 Sebastien Granjoux <seb.sfo@free.fr>
6226         * libanjuta/interfaces/libanjuta.idl,
6227         plugins/sourceview/sourceview.c,
6228         plugins/editor/text-editor.c,
6229         plugins/symbol-browser/plugin.c,
6230         plugins/search/search-replace.c,
6231         plugins/document-manager/goto_line.c,
6232         plugins/document-manager/action-callbacks.c,
6233         plugins/document-manager/anjuta-docman.c:
6234         Rename markers of anjuta interface
6235         IANJUTA_MARKABLE_NONE has been removed
6236         IANJUTA_MARKABLE_BASIC renamed in IANJUTA_MARKABLE_LINEMARKER
6237         IANJUTA_MARKABLE_LIGHT renamed in IANJUTA_MARKABLE_BOOKMARK
6238         IANJUTA_MARKABLE_ATTENTIVE renamed in
6239                 IANJUTA_MARKABLE_BREAKPOINT_DISABLED
6240         IANJUTA_MARKABLE_INTENSE renamed in
6241                 IANJUTA_MARKABLE_BREAKPOINT_ENABLED
6242         IANJUTA_MARKABLE_PROGRAM_COUNTER has been created
6244         * (removed) plugins/sourceview/marker-light.png,
6245         (removed) plugins/sourceview/marker-basic.png,
6246         (removed) plugins/sourceview/marker-attentive.png,
6247         (removed) plugins/sourceview/marker-intense.png,
6248         plugins/sourceview/bookmark.png,
6249         (added) plugins/sourceview/breakpoint-disabled.png,
6250         (added) plugins/sourceview/breakpoint-enabled.png,
6251         (added) plugins/sourceview/program-counter.png,
6252         (added) plugins/sourceview/linemarker.png,
6253         plugins/sourceview/Makefile.am,
6254         (added) plugins/editor/bookmark.xpm,
6255         (added) plugins/editor/breakpoint-disabled.xpm,
6256         (added) plugins/editor/breakpoint-enabled.xpm,
6257         (added) plugins/editor/program-counter.xpm,
6258         (added) plugins/editor/linemarker.xpm,
6259         plugins/editor/Makefile.am:
6260         Add or change marker pixmaps in scintilla and sourceview editor
6262         * plugins/document-manager/plugin.c,
6263         libanjuta/interfaces/libanjuta.idl,
6264         plugins/debug-manager/plugin.c,
6265         plugins/debug-manager/breakpoints.c
6266         plugins/gdb/debugger.c:
6267         Fix bug #376404, program counter marker is not displayed when debugger
6268         Return the selected editor or NULL (if file does not exist) with 
6269         ianjuta_document_manager_goto_file_line* functions
6270         Emit a change-location signal even if the program counter is in an
6271         unknown file
6273 2007-02-02  Naba Kumar  <naba@gnome.org>
6275         * TODO.tasks: Marked bounty bug #359478 completed. And checked
6276         older bounties 'Done'.
6277         
6278 2007-02-02  Naba Kumar  <naba@gnome.org>
6280         * TODO.tasks: Fixed typop.
6282         Patch from James Liggett  <jrliggett@cox.net>:
6283         * plugins/profiler/*, plugins/class-inheritance/Makefile.am,
6284         plugins/Makefile.am, configure.in, libanjuta/Makefile.am: gprof
6285         profiler plugin by James Liggett. Completes bounty bug #359478
6286         'Gprof performance profiler plugin'
6288 2007-02-01  Naba Kumar  <naba@gnome.org>
6290         * src/main.c: Renamed option name.
6292         * TODO.tasks: Marked "Test and fix all project wizards templates"
6293         bounty completed.
6294         
6295 2007-01-29  Johannes Schmid <jhs@gnome.org>
6297         * plugins/document-manager/plugin.c: (on_editor_changed):
6298         Added DEBUG_PRINT(...)
6299         * plugins/editor/text_editor.c: (itext_editor_set_auto_indent):
6300         implemented
6301         * plugins/language-support-cpp-java/anjuta-language-cpp-java.plugin.in:
6302         Fix language support plugin for sourceview editor (add some new
6303         language names)
6304         
6305         * plugins/sourceview/sourceview.c: (iindic_clear):
6306         Clear all indicators
6308 2007-01-29  Johannes Schmid <jhs@gnome.org>
6310         * TODO.tasks:
6311         Minor task currentions
6312         
6313         * libanjuta/interfaces/libanjuta.idl:
6314         * plugins/editor/text_editor.c: (itext_editor_set_auto_indent),
6315         (itext_editor_iface_init):
6316         * plugins/language-support-cpp-java/plugin.c: (install_support):
6317         * plugins/sourceview/sourceview.c: (ieditor_set_auto_indent),
6318         (ieditor_get_attributes), (ieditor_iface_init):
6319         Added ianjuta_editor_set_auto_indent to disable auto-indent from language support
6320         plugins.
6321         
6322         * plugins/sourceview/sourceview.glade:
6323         Fixed sourceview preference window
6325 2007-01-28  Naba Kumar  <naba@gnome.org>
6326         
6327         * src/anjuta.glade, src/anjuta.c, src/main.c, src/anjuta.h:
6328         Implemented --no-files and --no-session command line options and
6329         corresponding preferernces checkboxes in General tab.
6331 2007-01-28  Johannes Schmid <jhs@gnome.org>
6333         * plugins/subversion/plugin.c:
6334         * plugins/subversion/plugin.h:
6335         * plugins/subversion/svn-notify.c: (svn_show_info),
6336         (show_svn_error), (on_svn_notify):
6337         * plugins/subversion/svn-notify.h:
6338         * plugins/subversion/svn-thread.c: (create_message_view),
6339         (svn_thread_start):
6340         Fixed error handling and fixed #394216 – No indication of subversion commands running
6341         
6342         * plugins/tools/execute.c: (atp_output_context_print):
6343         Show name of tool in message pane
6345 2007-01-28  Naba Kumar  <naba@gnome.org>
6346         
6347         * configure.in, plugins/glade/plugin.c: Make it work with
6348         glade svn. Based on patch from  Vincent Geddes. Fixes bug #400833.
6349         
6350         * configure.in, src/Makefile.am: Cleaned up dead codes. Added ldflags
6351         from devhelp (won't work untill devhelp is fixed: bug #341170).
6352         
6353         * plugins/symbol-browser/an_symbol_prefs.c: Code cleanup.
6354         
6355 2007-01-26 Sebastien Granjoux <seb.sfo@free.fr>
6357         Reviewed by Naba Kumar  <naba@gnome.org>:
6358         * libanjuta/interfaces/libanjuta.idl, 
6359         plugins/debug-manager/debugger.c,
6360         plugins/debug-manager/start.c,
6361         plugins/gdb/plugin.c,
6362         plugins/gdb/debugger.c,
6363         plugins/gdb/debugger.h:
6364         Fix a bug when launching gdb
6365         Set the terminal for the debugged program on the command line.
6367 2007-01-26  Johannes Schmid <jhs@gnome.org>
6369         * plugins/sourceview/anjuta-document-saver.c:
6370         (anjuta_document_saver_save):
6371         * plugins/sourceview/anjuta-document.c: (document_saver_saving):
6372         * plugins/sourceview/sourceview.c: (save_if_modified),
6373         (on_document_saved), (ifile_savable_save), (ifile_savable_save_as):
6374         Proper error handling, for example if a file was modified externally. Use backup files
6375         to avoid data-loss on disk full.
6377 2007-01-24  Naba Kumar  <naba@gnome.org>
6378         
6379         * plugins/devhelp/htmlview.c: Fixed crash during project load.
6380         Fixed mem leak and source leak.
6381         
6382 2007-01-24 Sebastien Granjoux <seb.sfo@free.fr>
6384         Reviewed by Naba Kumar  <naba@gnome.org>:
6385         * plugins/debug-manager/debug_tree.c,
6386         plugins/debug-manager/debug_tree.h,
6387         plugins/debug-manager/watch.c:
6388         Partial rewrite of the variable object code, find and fix a few bugs
6389         Fix bug #395808: gdb can still crash but children are listed
6390         on request only so you can avoid the crash
6392 2007-01-24  Naba Kumar  <naba@gnome.org>
6393         
6394         * (added) plugins/symbol-browser/anjuta-symbol-locals.c,
6395         (added) plugins/symbol-browser/anjuta-symbol-locals.h,
6396         plugins/symbol-browser/plugin.h,
6397         plugins/symbol-browser/plugin.c,
6398         plugins/symbol-browser/Makefile.am: Added current file (local)
6399         symbols view (Seriously getting bored with the browse toolbar).
6401 2007-01-22  Naba Kumar  <naba@gnome.org>
6402         
6403         Patch from Gabor Kelemen:
6404         * po/POTFILES.in: Added .plugin.in files.
6406 2007-01-21 Yang Hong <yanghong@ccoss.com.cn>
6408         Reviewed by Naba Kumar  <naba@gnome.org>:
6409         * plugins/document-manager/anjuta-docman.c,
6410         plugins/message-view/anjuta-msgman.c
6411         Set right alignment to the label widget in the tab title.
6413 2007-01-21  Naba Kumar  <naba@gnome.org>
6414         
6415         * libegg/egg-combo-action.c: Fixed mode line.
6416         * manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml,
6417         manuals/reference/libanjuta/tmpl/plugins.sgml: Updated.
6419 2007-01-21  Armin Burgmeier  <armin@arbur.net>
6421         Reviewed by Naba Kumar  <naba@gnome.org>:
6422         * plugins/class-gen/plugin.c: Prompt for target before actually
6423         generating the class files. This ensures that the files are created in
6424         the correct directory. Fixes bug #397406.
6426         * plugins/class-gen/window.c: Set browse buttons to insensitive when
6427         the class is added to the project.
6429 2007-01-21  Naba Kumar  <naba@gnome.org>
6431         * libanjuta/anjuta-plugin-description.c,
6432         libanjuta/anjuta-ui.h,
6433         libanjuta/anjuta-status.c,
6434         libanjuta/anjuta-plugin-description.h,
6435         libanjuta/cell-renderer-captioned-image.c,
6436         libanjuta/anjuta-plugin-handle.c,
6437         libanjuta/anjuta-status.h,
6438         libanjuta/resources.c,
6439         libanjuta/cell-renderer-captioned-image.h,
6440         libanjuta/glue-cpp.c,
6441         libanjuta/anjuta-plugin-handle.h,
6442         libanjuta/anjuta-plugin.c,
6443         libanjuta/anjuta-preferences-dialog.c,
6444         libanjuta/libanjuta.h,
6445         libanjuta/resources.h,
6446         libanjuta/glue-cpp.h,
6447         libanjuta/anjuta-plugin.h,
6448         libanjuta/anjuta-preferences-dialog.h,
6449         libanjuta/anjuta-plugin-manager.c,
6450         libanjuta/anjuta-shell.c,
6451         libanjuta/anjuta-plugin-manager.h,
6452         libanjuta/anjuta-shell.h,
6453         libanjuta/anjuta-save-prompt.c,
6454         libanjuta/anjuta-save-prompt.h,
6455         libanjuta/anjuta-children.c,
6456         libanjuta/anjuta-utils.c,
6457         libanjuta/anjuta-profile.c,
6458         libanjuta/anjuta-preferences.c,
6459         libanjuta/anjuta-launcher.c,
6460         libanjuta/anjuta-utils.h,
6461         libanjuta/anjuta-profile.h,
6462         libanjuta/anjuta-launcher.h,
6463         libanjuta/anjuta-ui.c: Updated file headers.
6465         * po/POTFILES.in: Updated.
6467         * libanjuta/anjuta-marshal.list,
6468         (added) libanjuta/anjuta-plugin-handle.c,
6469         (added) libanjuta/anjuta-plugin-handle.h,
6470         (added) libanjuta/anjuta-plugin-manager.c,
6471         (added) libanjuta/anjuta-plugin-manager.h,
6472         libanjuta/anjuta-shell.c, libanjuta/anjuta-shell.h,
6473         (added) libanjuta/anjuta-profile.c,
6474         (added) libanjuta/anjuta-profile.h,
6475         (renamed) libanjuta/plugins.c, (renamed) libanjuta/plugins.h,
6476         libanjuta/Makefile.am, src/anjuta-app.c, src/anjuta-app.h,
6477         src/shell.c, src/about.c, src/shell.h, src/anjuta.c, src/main.c,
6478         src/action-callbacks.c: Implemented AnjutaPluginManager
6479         class based on old plugins.[ch]. Implemented AnjutaProfile as
6480         prelimanary profiles implementation. Implemented AnjutaPluginHandle
6481         class to represent plugins (not to be confused with plugin objects).
6482         Added a method anjuta_shell_get_plugin_manager() in AnjutaShell and
6483         implemented it in AnjutaApp and AnjutaTestShell.
6484         De-globalized plugin management and several clean ups.
6486         * plugins/file-loader/plugin.c, plugins/symbol-browser/plugin.c,
6487         plugins/debug-manager/debugger.c, plugins/debug-manager/plugin.c,
6488         plugins/search/search-replace.c, plugins/terminal/terminal.c,
6489         plugins/project-import/project-import.c,
6490         plugins/profile-default/plugin.c, plugins/profile-default/plugin.h,
6491         plugins/document-manager/plugin.c, plugins/file-manager/plugin.c:
6492         Fixed plugins for the change in API.
6494         * libanjuta/anjuta-utils.c: Fixed a crash bug when saving an empty
6495         file.
6496         
6497         * manuals/reference/libanjuta/tmpl/anjuta-shell.sgml: Updated.
6499 2007-01-19 Sebastien Granjoux <seb.sfo@free.fr>
6501         Reviewed by Naba Kumar  <naba@gnome.org>:
6502         * libanjuta/anjuta-launcher.c,
6503         libanjuta/anjuta-launcher.h:
6504         Add a new function anjuta_set_terminate_on_exit to close the i/o
6505         channel when the child exit
6506         Return directly the status and not the exit code in child-exited
6507         signal
6509         * plugins/gdb/debugger.c:
6510         Use new function in debugger plugin
6512 2007-01-18  Johannes Schmid <jhs@gnome.org>
6514         * src/about.c: Do not show empty license information instead hide the button (#397883)
6516 2007-01-15  Johannes Schmid <jhs@gnome.org>
6518         * plugins/project-manager/plugin.c:
6519         * plugins/project-wizard/templates/python.wiz
6520         * plugins/project-wizard/templates/python/src/Makefile.am.tpl:
6521         
6522         Fixed #335235 python programs are not executeable/ do not start when pressing F3
6523         You will also need latest gnome-build svn       
6525 === anjuta 2.1.0 ===
6527 2007-01-14  Naba Kumar  <naba@gnome.org>
6529         * configure.in: Removed reference of mkfile project
6530         template to fix distcheck build error.
6531         * AUTHORS: Updated.
6532         * NEWS: Updated.
6533         * configure.in: Bumped version to 2.1.0 for beta release.
6534         * plugins/symbol-browser/an_symbol_view.c: Fixed Bug #396571: Anjuta
6535         crashes as soon as editing starts in normal text files.
6537 2007-01-14  Johannes Schmid <jhs@gnome.org>
6539         * configure.in
6540         * po/LINGUAS:
6541         Applied http://live.gnome.org/GnomeGoals/PoLinguas
6543         * tagmanager/c.c:
6544         Patch from Massimo Cora' to hopefully fix #395362
6546         * plugins/project-wizard/templates/*:
6548         Fixed and tested all project-wizards. Deactivated mkfile project because
6549         it was totally broken and I don't see any real use for it.
6550         Applied http://live.gnome.org/GnomeGoals/PoLinguas to all projects
6552 2007-01-14  Naba Kumar  <naba@gnome.org>
6554         * NEWS: Updated for release.
6555         
6556         * libanjuta/anjuta-launcher.c: Fixed a possible timer leak.
6557         
6558         * libanjuta/interfaces/libanjuta.idl,
6559         plugins/editor/text_editor_cbs.c,
6560         plugins/editor/text_editor.c: Added 'changed' signal in IAnjutaEditor
6561         interface and implemented it for scintilla.
6562         
6563         * plugins/editor/text-editor.c: Fixed highlighing issues when
6564         used with indicators (particularly when the file is just opened).
6565         Fixes bug #377477 – when debugging, scintilla editor grays out all
6566         lines before current line.
6567         
6568         * plugins/build-basic-autotools/build-basic-autotools.[ch]:
6569         Maintain a separate list of indicated edtitors for separate contexts.
6570         Fixes bug 342717 - Build errors redisplayed AFTER a successful build.
6571         
6572 2007-01-12 Sebastien Granjoux <seb.sfo@free.fr>
6574         Reviewed by Naba Kumar  <naba@gnome.org>:
6575         * plugins/debug-manager/plugin.c:
6576         Bug fix: breakpoints cannot be added after stopping the debugger
6578 2007-01-13  Naba Kumar  <naba@gnome.org>
6580         * NEWS: Updated for release.
6582 2007-01-12  Johannes Schmid <jhs@gnome.org>
6584         * plugins/project-wizard/anjuta-plugin/src/Makefile.am.tpl:
6585         * plugins/project-wizard/cpp/src/Makefile.am.tpl:
6586         * plugins/project-wizard/gcj/src/Makefile.am.tpl:
6587         * plugins/project-wizard/gnome/src/Makefile.am.tpl:
6588         * plugins/project-wizard/gtk/src/Makefile.am.tpl:
6589         * plugins/project-wizard/gtkmm/src/Makefile.am.tpl:
6590         * plugins/project-wizard/terminal/src/Makefile.am.tpl:
6591         * plugins/project-wizard/wxwin/src/Makefile.am.tpl:
6592         * plugins/project-wizard/xlib/src/Makefile.am.tpl:
6593         * plugins/project-wizard/xlib-dock/src/Makefile.am.tpl:
6594         
6595         Fixed #395767: Changed PACKAGE_LIBS and PACKAGE_CFLAGS to
6596         [+NameCUpper+]_CFLAGS/LIBS in Makefile.am.tpl
6597         
6598         * plugins/sourceview/sourceview.c:
6599         Use gtk_text_buffer_get_slice() instead of gtk_text_buffer_get_text because we rely
6600         on character positions.
6601         
6602 2007-01-12  Naba Kumar  <naba@gnome.org>
6604         * src/anjuta-app.c,
6605         plugins/project-manager/plugin.c,
6606         plugins/profile-default/plugin.c,
6607         libanjuta/anjuta-status.c,
6608         libanjuta/anjuta-status.h: Introduced an API for application title
6609         in AnjutaStatus. Set application title to project name.
6611 2007-01-11  Massimo Cora' <maxcvs@email.i>
6613         Reviewed by Naba Kumar  <naba@gnome.org>:
6614         * tagmanager/Makefile.am,
6615         plugins/symbol-browser/Makefile.am: removed installation for 
6616         test programs.
6618 2007-01-11 Sebastien Granjoux <seb.sfo@free.fr>
6620         Reviewed by Naba Kumar  <naba@gnome.org>:
6621         * plugins/debug-manager/start.h,
6622         plugins/debug-manager/start.c,
6623         plugins/debug-manager/anjuta-debug-manager.ui,
6624         plugins/debug-manager/plugin.c:
6625         Partial fix for bug #392537
6627         * plugins/debug-manager/disassemble.c:
6628         Fix bug #392543
6630 2007-01-11  Naba Kumar  <naba@gnome.org>
6632         * src/anjuta.c: Load project seperately from session,
6633         so that project session is also loaded.
6634         
6635         * plugins/profile-default/plugin.c: Load project in new
6636         anjuta if there already is one loaded currently (disabled
6637         code for now).
6638         
6639         * plugins/editor/aneditor.cxx: Disconnect focus in/out
6640         signals when editor is destroyed. Fixes a crash bug.
6641         
6642         * plugins/editor/text_editor.c: Do not mark line in
6643         ianjuta_editor_goto_line() implementation.
6644         
6645         * plugins/search/search-replace.c: Always check for markable
6646         interface availablility because its optional for an editor.
6647         
6648         * plugins/document-manager/goto_line.c,
6649         plugins/document-manager/action-callbacks.c: Mark lines for
6650         goto line commands (from dialog and from menu entry box).
6651         
6652         * plugins/file-manager/plugin.c, plugins/file-manager/plugin.h,
6653         plugins/file-manager/an_file_view.c: Expand file manager
6654         nodes in idle loop, one at a time. Did as a possible work
6655         around for bug #361763, but it didn't make any difference.
6656         However, it could still be useful in situations where there
6657         are lots to expand.
6658         
6659         * libanjuta/anjuta-serializer.c: Avoid an unnecessary warning.
6661 2007-01-11  Naba Kumar  <naba@gnome.org>
6663         * plugins/editor/scintilla/LineMarker.h,
6664         plugins/editor/scintilla/LexBasic.cxx,
6665         plugins/editor/scintilla/LexHTML.cxx,
6666         plugins/editor/scintilla/include/SciLexer.h,
6667         plugins/editor/scintilla/include/Scintilla.h,
6668         plugins/editor/scintilla/include/Scintilla.iface,
6669         plugins/editor/scintilla/include/ScintillaWidget.h,
6670         plugins/editor/scintilla/LexBash.cxx,
6671         plugins/editor/scintilla/PlatGTK.cxx,
6672         plugins/editor/scintilla/ViewStyle.h,
6673         plugins/editor/scintilla/Editor.cxx,
6674         plugins/editor/scintilla/StyleContext.h,
6675         plugins/editor/scintilla/LexCPP.cxx,
6676         plugins/editor/scintilla/Converter.h,
6677         plugins/editor/scintilla/LexAU3.cxx,
6678         plugins/editor/scintilla/Editor.h,
6679         plugins/editor/scintilla/LexPerl.cxx,
6680         plugins/editor/scintilla/LexVB.cxx,
6681         plugins/editor/scintilla/ScintillaGTK.cxx,
6682         plugins/editor/scintilla/ViewStyle.cxx,
6683         plugins/editor/scintilla/PropSet.cxx,
6684         plugins/editor/scintilla/LexSQL.cxx,
6685         plugins/editor/scintilla/ScintillaBase.cxx: Updated scintilla to
6686         version 1.71
6688 2007-01-11  Armin Burgmeier  <armin@arbur.net>
6690         Reviewed by Naba Kumar  <naba@gnome.org>:
6691         * plugins/class-gen/element-editor.c: Scroll to a cell if it is
6692         selected for editing. This fixes bug #394218.
6694         * plugins/class-gen/plugin.c: Do not use project's root URI as project
6695         name if said URI is not known.
6697         * plugins/class-gen/window.c: When stripping function prefix away,
6698         include the trailing underscore because it is already set by the
6699         template.
6701         * plugins/class-gen/transform.c: Include "const char*" and "const
6702         gchar*" in the list for transforming a default C type to a GType.
6703         Don't access invalid memory when writing pointer_str in
6704         cg_transform_first_argument.
6706 2007-01-11  Naba Kumar  <naba@gnome.org>
6708         * pixmaps/anjuta.png, (renamed) pixmaps/anjuta_icon.svg
6709         pixmaps/anjuta.svg, pixmaps/Makefile.am,
6710         (renamed) pixmaps/anjuta_icon.png, src/main.c,
6711         libegg/test-actions.c, anjuta.desktop.in.in,
6712         anjuta.prj: Renamed application icon to 'anjuta.png' from
6713         'anjuta_icon.png'. Added more fields in desktop file.
6715         * mime/anjuta.xml: Added magic section.
6716         
6717         * (removed) mime/anjuta.applications,
6718         (removed) mime/anjuta.mime, mime/Makefile.am,
6719         (removed) mime/anjuta.keys,
6720         mime/gnome-mime-application-x-anjuta.svg: Removed deprecated mime
6721         registeration and added scalable icon. Also fixes bug #393680
6723 2007-01-09  Curtis Magyar  <curtm4n@gmail.com>
6725         Reviewed by Naba Kumar  <naba@gnome.org>:
6726         * libanjuta/anjuta-status.c: fixed anjuta_status_progress_tick()
6727         and anjuta_status_progress_add_ticks() to check for progressbar 
6728         being realized before trying to update it.
6730 2007-01-10  Naba Kumar  <naba@gnome.org>
6732         * tagmanager/tm_workspace.c,
6733         po/POTFILES.in,
6734         plugins/debug-manager/Makefile.am,
6735         plugins/tools/scripts/Makefile.am,
6736         plugins/class-gen/plugin.c,
6737         plugins/class-gen/Makefile.am,
6738         global-tags/Makefile.am: Fixed make distcheck.
6740         * plugins/debug-manager/attach_process.c,
6741         plugins/debug-manager/attach_process.h,
6742         plugins/class-gen/action-callbacks.h,
6743         plugins/class-gen/action-callbacks.c,
6744         plugins/class-gen/class_gen.h,
6745         plugins/class-gen/class_gen.c: Deleted unused/old files.
6747         * (removed) scintilla, (added) plugins/editor/scintilla,
6748         plugins/editor/scintilla/lexers.make,
6749         plugins/editor/scintilla/Makefile.am,
6750         plugins/editor/Makefile.am
6751         configure.in, manuals/reference/libanjuta/Makefile.am
6752         Makefile.am: Moved scintilla to its right place.
6754 2007-01-09  Naba Kumar  <naba@gnome.org>
6756         * plugins/profile-default/plugin.c: Save project session before
6757         a new one is opened.
6759         * plugins/project-manager/plugin.c,
6760         plugins/project-manager/plugin.h,
6761         plugins/project-manager/anjuta-project-manager.ui,
6762         plugins/profile-default/plugin.c,
6763         plugins/profile-default/plugin.h,
6764         plugins/profile-default/Makefile.am,
6765         (added) plugins/profile-default/anjuta-default-profile.ui,
6766         manuals/reference/libanjuta/tmpl/ianjuta-profile.sgml,
6767         libanjuta/interfaces/libanjuta.idl: Reverted back incomplete
6768         multiple projects support.
6769         
6770 2007-01-06  Armin Burgmeier  <armin@arbur.net>
6772         Reviewed by Naba Kumar  <naba@gnome.org>
6773         * plugins/class-gen/combo-flags.h:
6774         * plugins/class-gen/combo-flags.c: Added CgComboFlagsSelectionType
6775         enum, added a type parameter to selected signal. Select highlighted
6776         entry when pressing enter (but not unselect it if it was already
6777         selected) before closing the popup. Also accept input when clicking
6778         not into the popup.
6780         * plugins/class-gen/cell-renderer-flags.c: Do appropriate action
6781         according to selection type.
6783         * libanjuta/anjuta-marshal.list: Changed VOID:BOXED marshaller to
6784         VOID:BOXED,ENUM.
6786 2007-01-08  Johannes Schmid <jhs@gnome.org>
6788   * plugins/project-wizard/templates/gtkmm/configure.in.tpl
6789   * plugins/project-wizard/templates/gtkmm/Makefile.am
6790   * plugins/project-wizard/templates/python/configure.ac.tpl
6791   * plugins/project-wizard/templates/python/configure.in.tpl
6792   * plugins/project-wizard/templates/python/Makefile.am
6793   * plugins/project-wizard/templates/cpp/configure.ac.tpl
6794   * plugins/project-wizard/templates/cpp/configure.in.tpl
6795   * plugins/project-wizard/templates/cpp/Makefile.am
6796   * plugins/project-wizard/templates/terminal.wiz
6797   * plugins/project-wizard/templates/xlib-dock.wiz
6798   * plugins/project-wizard/templates/wxwin.wiz
6799   * plugins/project-wizard/templates/java.wiz
6800   * plugins/project-wizard/templates/xlib/configure.ac.tpl
6801   * plugins/project-wizard/templates/xlib/configure.in.tpl
6802   * plugins/project-wizard/templates/xlib/Makefile.am
6803   * plugins/project-wizard/templates/gcj/configure.ac.tpl
6804   * plugins/project-wizard/templates/gcj/configure.in.tpl
6805   * plugins/project-wizard/templates/gcj/Makefile.am
6806   * plugins/project-wizard/templates/terminal/configure.ac.tpl
6807   * plugins/project-wizard/templates/terminal/configure.in.tpl
6808   * plugins/project-wizard/templates/terminal/Makefile.am
6809   * plugins/project-wizard/templates/terminal/autogen.sh
6810   * plugins/project-wizard/templates/wxwin/configure.ac.tpl
6811   * plugins/project-wizard/templates/wxwin/configure.in.tpl
6812   * plugins/project-wizard/templates/wxwin/Makefile.am
6813   * plugins/project-wizard/templates/gnome.wiz 
6814   * plugins/project-wizard/templates/java/configure.ac.tpl
6815   * plugins/project-wizard/templates/java/configure.in.tpl
6816   * plugins/project-wizard/templates/java/Makefile.am
6817   * plugins/project-wizard/templates/anjuta-plugin.wiz
6818   * plugins/project-wizard/templates/gtkmm.wiz
6819   * plugins/project-wizard/templates/python.wiz
6820   * plugins/project-wizard/templates/cpp.wiz
6821   * plugins/project-wizard/templates/gtk.wiz
6822   * plugins/project-wizard/templates/gcj.wiz
6823   * plugins/project-wizard/templates/anjuta-plugin/configure.ac.tpl
6824   * plugins/project-wizard/templates/anjuta-plugin/configure.in.tpl
6825   * plugins/project-wizard/templates/anjuta-plugin/Makefile.am:
6827   Starting fixing of all project wizards:
6828   - rename configure.in to configure.ac
6829   - use proper names for PKG_CONFIG_PATH variables instead of just 'PACKAGE'
6830   - fix AC_INIT and AM_INIT_AUTOMAKE to use the correct project names
6831   (See #394184)
6832   
6833   * TODO.task: Added bug number to bounty
6835 2007-01-07  Johannes Schmid <jhs@gnome.org>
6837   *  plugins/build-basic-autotools.c:
6838   Fixed #392290 – Missed install as root option in project manager
6840 2007-01-07  Johannes Schmid <jhs@gnome.org>
6842   * plugins/sourceview/sourceview.c:
6843   Fixed #388731 – Odd editor behaviour after performing block-text operations
6844   Fixed #388727 – Block-tab does not work
6845   
6846   * plugins/sourceview/anjuta-document.h/c:
6847   Removed deprecated has_selection() method which is now in Gtk (>= 2.10)
6848   
6849   * configure.in:
6850   Require Gtk+ >= 2.10 for sourceview plugin
6852 2007-01-06  Curtis Magyar <curtm4n@gmail.com>
6854         * libanjuta/anjuta-status.c:
6855         Replaced deprecated gtk_widget_draw() with gtk_widget_queue_draw()
6857 2007-01-05 Sebastien Granjoux <seb.sfo@free.fr>
6859         * configure.in,
6860         plugins/terminal/terminal.c:
6861         Fix bug #377027
6862         remove support for VTE < 0.9
6864 2007-01-06  Naba Kumar  <naba@gnome.org>
6866         * po/POTFILES.in: Updated
6868 2007-01-05  Adam Dingle  <adam@medovina.org>
6870         Reviewed by Naba Kumar  <naba@gnome.org>:
6871         * plugins/message-view/anjuta-message-manager-plugin.glade:
6872         Fixed bug #377903 (improve message color defaults).
6874 2007-01-05  Naba Kumar  <naba@gnome.org>
6876         * TODO.tasks: Completed Bounty bug #359862, Improve class wizard.
6877         
6878 2007-01-03  Armin Burgmeier  <armin@arbur.net>
6880         Reviewed by  Naba Kumar  <naba@gnome.org>:
6881         * plugins/symbol-browser/test-class.h: Fixed block ends.
6883         * libanjuta/anjuta-plugin.c: Changed a C++-style-//-comment to a
6884         C-style-block comment.
6886         * plugins/project-wizard/autogen.c: (Hopefully) temporary hack to
6887         allow lists when writing autogen definition files. This is required
6888         for the new class generator. Also fixed a wrong return value in
6889         npw_autogen_write_definition_file and set a GError in
6890         npw_autogen_execute when the output file could not be opened.
6892         * plugins/class-gen/anjuta-class-gen-plugin.glade: New class generator
6893         user interface.
6895         * plugins/class-gen/Makefile.am: Added templates subdir, removed
6896         goc_template_header and goc_template_source, added top_srcdir to
6897         includes, link against project wizard (also hopefully temporarily),
6898         removed class_gen.h, class_gen.c, action-callbacks.h,
6899         action-callbacks.c.
6901         * libanjuta/anjuta-marshal.list: Added VOID:BOXED marshaller.
6903         * plugins/class-gen/cell-renderer-flags.h:
6904         * plugins/class-gen/cell-renderer-flags.c:
6905         * plugins/class-gen/combo-flags.h:
6906         * plugins/class-gen/combo-flags.c:
6907         * plugins/class-gen/element-editor.c:
6908         * plugins/class-gen/element-editor.h:
6909         * plugins/class-gen/generator.c:
6910         * plugins/class-gen/generator.h:
6911         * plugins/class-gen/plugin.h:
6912         * plugins/class-gen/plugin.c:
6913         * plugins/class-gen/transform.c:
6914         * plugins/class-gen/transform.h:
6915         * plugins/class-gen/validator.c:
6916         * plugins/class-gen/validator.h:
6917         * plugins/class-gen/window.c:
6918         * plugins/class-gen/window.h: Rewrote class generator, it now allows
6919         adding of several class elements and uses autogen.
6921         * plugins/class-gen/templates/cc-header.tpl:
6922         * plugins/class-gen/templates/cc-source.tpl:
6923         * plugins/class-gen/templates/go-header.tpl:
6924         * plugins/class-gen/templates/go-source.tpl:
6925         * plugins/class-gen/templates/Makefile.am: Added Autogen templates
6926         for the class generator.
6928         * configure.in: Added plugins/class-gen/templates/Makefile to output.
6930 2007-01-04  Naba Kumar  <naba@gnome.org>
6932         Patch from Nick Treleaven:
6933         * tagmanager/tm-tag.c: Fixes Bug #389764 – Tags search do not retrieve
6934         all matching symbols.
6935         
6936         Patches from  Maik Beckmann and Sébastien Granjoux:
6937         * plugins/profile-default/plugin.c,
6938         plugins/project-manager/plugin.c: Unescape project name. Fixes
6939         Bug #357151
6941 2007-01-04  Naba Kumar  <naba@gnome.org>
6943         * plugins/glade/plugin.c: Fixed compilation with
6944         older glade-3 version.
6945         
6946         Patch from Roland Illig:
6947         libanjuta/anjuta-children.c, libanjuta/anjuta-launcher.c,
6948         plugins/sourceview/anjuta-document-saver.c,
6949         plugins/terminal/terminal.c, src/main.c: Fixed Bug 392699 Some patches
6950         are necessary to build anjuta on NetBSD 3.0
6952         Patch from Sebastien Granjoux <seb.sfo@free.fr>:
6953         * src/anjuta-app.c: Fixed Bug #377767 – resize crashes
6954         window manager in gnome.
6955         
6956 2007-01-02  Naba Kumar  <naba@gnome.org>
6957         
6958         * plugins/glade/plugin.c: Make it work with glade-3 svn.
6959         
6960 2006-12-31 Sebastien Granjoux <seb.sfo@free.fr>
6962         Reviewed by Naba Kumar  <naba@gnome.org>:
6963         * libanjuta/interfaces/libanjuta.idl,
6964         plugins/debug-manager/Makefile.am,
6965         plugins/debug-manager/anjuta-marshal.list,
6966         plugins/debug-manager/debugger.c,
6967         plugins/debug-manager/sparse_buffer.c,
6968         plugins/debug-manager/sparse_buffer.h,
6969         plugins/debug-manager/sparse_view.c,
6970         plugins/debug-manager/sparse_view.h,
6971         plugins/debug-manager/disassemble.h,
6972         plugins/debug-manager/disassemble.c,
6973         plugins/debug-manager/anjuta-marshal.list,
6974         plugins/debug-manager/plugin.c,
6975         plugins/gdb/debugger.c,
6976         plugins/gdb/debugger.h,
6977         plugins/gdb/plugin.c:
6978         Add a disassembly view window
6980         * plugins/debug-manager/breakpoints.c,
6981         plugins/debug-manager/chunk_view.c,
6982         plugins/debug-manager/locals.c,
6983         plugins/debug-manager/memory.c,
6984         plugins/debug-manager/registers.c,
6985         plugins/debug-manager/stack_trace.c:
6986         Add some debugging information 
6988 2006-12-18  Naba Kumar  <naba@gnome.org>
6990         * configure.in, plugins/glade/plugin.c: Allow building against both
6991         glade == 3.0.2 and glade > 3.0.2 (~ cvs).
6993 2006-12-03  Naba Kumar  <naba@gnome.org>
6994         
6995         * TODO.tasks: Marked a bounty completed.
6997 2006-11-24  Adam Dingle <adam@medovina.org>
6999         Reviewed by Naba Kumar  <naba@gnome.org>:
7000         * plugins/build-basic-autotools/build-basic-autotools.c,
7001         plugins/debug-manager/watch.c,
7002         plugins/document-manager/plugin.c, 
7003         plugins/patch/plugin.c,
7004         plugins/project-manager/plugin.c:
7005         Fixed bug #378879 (several command names need ellipses).
7007 2006-11-22  Sylvain Defresne  <sdefresne@gmail.com>
7009         Reviewed by: Naba Kumar  <naba@gnome.org>
7010         * plugins/*/*.[ch]: Corrected warnings occuring when compiling with
7011         GCC 4.1.2 (there are only two warnings remaining now when compiling
7012         plugins).
7014         * plugins/*/*.[ch]: Use class macro for type casting (ANJUTA_PLUGIN_*).
7016         * libanjuta/anjuta-plugin.h: Modification of the ANJUTA_PLUGIN_BEGIN
7017         macro so that the generated function support a NULL plugin parameter.
7019         * plugins/debug-manager/debug_tree.c: Fix an incorrect call to gfree
7020         in debug_tree_find_expression by freeing memory returned by the call
7021         to gtk_tree_model_get instead of the parameter string.
7023 2006-11-26 Sebastien Granjoux <seb.sfo@free.fr>
7025         * plugins/debug-manager/breakpoints.c:
7026         Fix bug #378850
7028         * plugins/debug-manager/anjuta-debug-manager.ui,
7029         plugins/debug-manager/debugger.c,
7030         plugins/debug-manager/plugin.c:
7031         Fix bug #378871
7033 2006-11-21 Sebastien Granjoux <seb.sfo@free.fr>
7035         * libanjuta/anjuta-launcher.c,
7036         plugins/gdb/debugger.c:
7037         Fix bug #377061
7039 2006-11-21  Naba Kumar  <naba@gnome.org>
7041         * plugins/search/search_preferences.c: Fixed build break.
7042         
7043 2006-11-20  Naba Kumar  <naba@gnome.org>
7044         
7045         Patch from Kjartan Maraas:
7046         * plugins/cvs-plugin/cvs-interface.c,
7047         plugins/document-manager/plugin.c,
7048         plugins/gtodo/interface.c,
7049         plugins/gtodo/libgtodo.h,
7050         plugins/message-view/anjuta-msgman.c,
7051         plugins/project-wizard/druid.c,
7052         plugins/search/search_preferences.c,
7053         plugins/sourceview/sourceview-prefs.c,
7054         plugins/terminal/terminal.c,
7055         src/start-with.c: Fix a bunch of memory leaks. Fixes bug #377115.
7057         Patch from Przemysław Grzegorczyk:
7058         * plugins/cvs-plugin/anjuta-cvs-plugin.glade,
7059         plugins/subversion/anjuta-subversion.glade: Enable files in
7060         fileselection dialog. Fixes bug #376031.
7061         
7062 2006-11-17  Adam Dingle <adam@medovina.org>
7064         Reviewed by: Naba Kumar  <naba@gnome.org>
7065         * plugins/build-basic-autotools/build-basic-autotools.c
7066         * plugins/class-gen/anjuta-class-gen.plugin.in
7067         * plugins/debug-manager/breakpoints.c
7068         * plugins/debug-manager/plugin.c
7069         * plugins/devhelp/plugin.c
7070         * plugins/document-manager/plugin.c
7071         * plugins/gdb/debugger.c
7072         * plugins/glade/anjuta-glade.plugin.in
7073         * plugins/gtodo/plugin.c
7074         * plugins/language-support-cpp-java/plugin.c
7075         * plugins/message-view/plugin.c
7076         * plugins/project-import/anjuta-project-import.glade
7077         * plugins/project-import/anjuta-project-import.plugin.in
7078         * plugins/search/plugin.c
7079         * plugins/tools/scripts/tools-2.xml.in
7080         * plugins/valgrind/plugin.c
7081         * src/anjuta-actions.h:
7082         Fixed bug #376335 "menu items should be capitalized".  Minor
7083         grammar edits.
7085 2006-11-20  Naba Kumar  <naba@gnome.org>
7086         
7087         * configure.in: Fixed build.
7089         Patch from: Arjan Timmerman
7090         *configure.in: Make subvesion plugin build for apr 1.x.
7091         Fixes: Bug #364754.
7092         
7093 2006-11-20  Johannes Schmid <jhs@gnome.org>
7095         * configure.in
7096         * plugins/*/*.[ch]:
7097         Removed patches from Sylvain and Günther. They caused not problems but
7098         Naba was against them.
7100 2006-11-20  Johannes Schmid <jhs@gnome.org>
7102         * Removed me from MAINTAINERS
7104 2006-11-14  Günther Brammer <GBrammer@gmx.de>
7106         * configure.in:
7107         Use apr-1 instead of apr-0
7109 2006-11-14  Sylvain Defresne  <sdefresne@gmail.com>
7111         * global-tags/create_global_tags.sh.in: Correct a bug when environment
7112         variable $PKG_CONFIG_PATH point to an empty or non-existent directory,
7113         and another bug occuring when parsing .pc file containing quotes.
7115 2006-11-13  Sylvain Defresne  <sdefresne@gmail.com>
7117         * plugins/*/*.[ch]: Use class macro for type casting.
7119         * plugins/*/*.[ch]: Corrected warnings occuring when compiling with
7120         GCC 4.1.2 (there are only two warnings remaining now when compiling
7121         plugins).
7123         * plugins/debug-manager/debug_tree.c: corrected a invalid free and
7124         a memory leak in debug_tree_find_expression; g_free was called on
7125         the parameter instead of the memory allocated by gtk_tree_model_get.
7127         * libanjuta/anjuta-plugin.h: updated the ANJUTA_PLUGIN_BEGIN macro
7128         to declare and initialize the global type variable of the plugin.
7130 2006-10-31  Naba Kumar  <naba@gnome.org>
7132         * global-tags/create_global_tags.sh.in: Added an end message.
7133         
7134         * libanjuta/anjuta-launcher.h: Fixed indentation.
7135         
7136         * plugins/symbol-browser/an_symbol_prefs.c: Fixed system tags
7137         creation to a) append the messages in right way, b) Connect signals
7138         to the view properly and c) Recreate the system-tags.cache at the
7139         end of the generation.
7141         * plugins/symbol-browser: Fixed action path (double
7142         click on sysmbols was not working).
7144         * libanjuta/anjuta-session.[ch], libanjuta/anjuta-serializer.c:
7145         Fixed typedef and removed dead code.
7147         * tagmanager/c.c: Took the latest version from ctags source
7148         repository, because the one we had (from ctags 5.6) was broken.
7149         
7150         * global_tags/create_global_tags.sh.in: Reverted the patch from
7151         Sylvain because it was not right fix (and added a helpful comment).
7152         Used /bin/bash to fix the bashism and generated separate log files
7153         for each tag files in the same directory.
7154         
7155 2006-10-29  Naba Kumar  <naba@gnome.org>
7157         * plugins/editor/text_editor.c: Use a temporary file
7158         to save the editor and move it at the end to original
7159         file. This will prevent data corruption if file save
7160         failed for any reason. Also report proper errors when
7161         file save fails. Fixes bug #346575.
7162         
7163 2006-10-26  Naba Kumar  <naba@gnome.org>
7165         * plugins/document-manager/anjuta-docman.c: Do not load
7166         the same files with different path more than once (happens
7167         with symlinked files). Fixes Bug #323591.
7169 2006-10-25  Naba Kumar  <naba@gnome.org>
7171         * plugins/valgrind/vgactions.c: Fixed a warning.
7173 2006-10-25  Sylvain Defresne  <sdefresne@gmail.com>
7175         Reviewed by Naba Kumar  <naba@gnome.org>:
7177         * plugins/valgrind/vgtoolview.c:
7178         Correct memory leaks in vg_tool_view_set_{argv,srcdir}.
7180         * plugins/valgrind/bugged-prg-test.c:
7181         No more warning during compilation with GCC 4.1.
7182         Program is still buggy in order to be used as a test of the
7183         plugin.
7185         * plugins/valgrind/ldd.c plugins/valgrind/parser.c
7186         plugins/valgrind/preferences.c plugins/valgrind/symtab.c
7187         plugins/valgrind/vgdefaultview.c plugins/valgrind/vgerror.c
7188         plugins/valgrind/vgrule.c:
7189         No more warning during compilation with GCC 4.1.
7191         * plugins/valgrind/plugin.c:
7192         Correct call to vg_tool_view_set_{argv,srcdir} to conform to
7193         prototype (was missing from previous patch).
7195 2006-10-24  Naba Kumar  <naba@gnome.org>
7197         * plugins/glade/plugin.c: Show glade tree view, not list view.
7198         
7199         * plugins/glade/plugin.c: Fixed crash when Anjuta is
7200         exited with glade plugin still loaded. Fixes Bug #364755.
7202         * plugins/document-manager/anjuta-document-manager.plugin.in:
7203         Added application/x-reject in accepted mime-types.
7204         
7205         * Changelog: Fixed changelog alignments.
7207 2006-10-24  Sylvain Defresne  <sdefresne@gmail.com>
7209         Reviewed by: Naba Kumar  <naba@gnome.org>
7210         
7211         * plugins/valgrind/menu-utils.c plugins/valgrind/plugin.c
7212         plugins/valgrind/plugin.h plugins/valgrind/preferences.c
7213         plugins/valgrind/vgactions.c plugins/valgrind/vgcachegrindprefs.c
7214         plugins/valgrind/vgdefaultview.c plugins/valgrind/vggeneralprefs.c
7215         plugins/valgrind/vghelgrindprefs.c plugins/valgrind/vgmemcheckprefs.c
7216         plugins/valgrind/vgrule-editor.c plugins/valgrind/vgrule-list.c
7217         plugins/valgrind/vgsearchbar.c:
7218         Use class macro for type casting.
7220         * plugins/valgrind/plugin.h:
7221         Don't force cast a GtkActionGroup to a GtkAction.
7223         * plugins/valgrind/plugin.c:
7224         Use correct API to get path of the preoject root when building
7225         the list of targets for the run action.
7226         Correct ordering of the construction of the preferences widgets.
7227         Only remove the valgrind widget if it is currently displayed.
7229         * plugins/valgrind/vgactions.c plugins/valgrind/vgactions.h:
7230         Return if check_valgrind_binary() fails.
7231         The ValgrindPluginPrefs object is initialized after the call to
7232         vg_action_new. Take a handle to the location of the pointer to
7233         the future object.
7235 2006-10-24  Naba Kumar  <naba@gnome.org>
7237         * HACKING: Updated coding sample.
7238         
7239         Patch from: Armin Burgmeier  <armin@arbur.net>
7240         * plugins/symbol-browser/test-class.h,
7241         plugins/editor/aneditor-autocomplete.cxx: Fixed block ends.
7242         
7243 2006-10-22 Sylvain Defresne <sdefresne@gmail.com>
7245         * plugins/valgrind/plugin.c plugins/valgrind/vgtoolview.c
7246         * plugins/valgrind/vgtoolview.h:
7247         Correctly handle the argv / srcdir of vg_tool_view object. Do
7248         not leak memory associated with those arrays.
7250         * plugins/symbol-browser/an_symbol_prefs.c:
7251         Support unloading / reloading of the module (for example when
7252         closing a project and opening another one).
7254         * plugins/project-manager/plugin.c:
7255         Remove plugin widget before removing plugin itself, preventing
7256         a crash with valgrind plugin.
7258         * libanjuta/anjuta-preferences-dialog.c:
7259         Do not use the page_num returned by gtk_notebook_append_page to
7260         remove the page as it cause bugs when pages removal is not done
7261         in LIFO.
7263         * plugins/document-manager/anjuta-docman.c:
7264         Fix some GTK+ warnings.
7266         * global-tags/create_global_tags.sh.in:
7267         Rewrite script to remove bash-ism and use pkg-config directly
7268         instead of parsing the *.pc file by hand. This solve problems
7269         that occurred when one of the directory in PKG_CONFIG_PATH is
7270         empty.
7272 2006-10-22 Arjan Timmermann <arjan@southfly.nl>
7274         * plugins/glade/plugin.c: Fix build (#363884)
7276 2006-10-22  Johannes Schmid <jhs@gnome.org>
7278         * plugins/file-manager/an_file_view.c:
7279         * plugins/file-manager/plugin.c:
7280         * plugins/file-manager/plugin.h:
7281         Fix possible crasher when changing project-root uri when we try to restore open nodes
7282         * AUTHORS: Updated
7284 2006-10-19  Naba Kumar  <naba@gnome.org>
7286         Patch from: Juan Pablo Ugarte
7287         * plugins/glade/plugin.c: Include glade header
7288         correctly.
7289         
7290 2006-10-15 Sebastien Granjoux <seb.sfo@free.fr>
7291         
7292         * plugins/debug-manager/Makefile.am,
7293         plugins/debug-manager/sexy-icon-entry.h,
7294         plugins/debug-manager/sexy-icon-entry.c,
7295         plugins/debug-manager/dataview.c:
7296         Fix bug #358134 (Goto memory prompt)
7297         Use sexy-icon-entry from libsexy 0.1.10
7299         * plugins/debug-manager/debugger.c,
7300         plugins/debug-manager/plugin.c,
7301         plugins/debug-manager/start.c,
7302         plugins/gdb/debugger.c,
7303         plugins/gdb/plugin.c:
7304         Better error handling when starting and stopping debugger
7306 2006-10-13  Maik Beckmann <maik@eigenco.de>
7308         * src/action_callbacks.c:
7309         Fixed bug #361830 (AboutDialog does not close) which is caused 
7310         due to a change in Gtk+ 2.10  
7311   
7312 2006-10-12  Adam Dingle <adam@medovina.org>
7314         * libanjuta/plugins.c: Fixed bug #357537 (allow double click in plugin selection dialog).
7316         * plugins/search/search-replace.c:
7317         Fixed bug #358068 (indicate when Find in Files is complete)
7319         * src/action-callbacks.c: fixed bug #357542 (plugins window is too narrow)
7321         * plugins/sourceview/sourceview-prefs.c:
7322         * plugins/sourceview/sourceview.glade:
7323         Fixed bug #359663 (make line highlighting optional in GtkSourceView editor).
7325         * manuals/xmldocs.make: fixed bug #359730 (Anjuta can't launch help files).
7327         * plugins/devhelp/plugin.c:
7328         * plugins/search/plugin.c: 
7329         Fixed bug #359750 (fix find/replace shortcut keys).
7331         * plugins/document-manager/plugin.c: fixed bug #351387 (don't
7332         use Alt+key for shortcuts)
7334         *  plugins/debug-manager/debug_tree.c:
7335         *  plugins/debug-manager/debugger.c:
7336         Fixed bug #359317 (can't load debug manager)
7338         * /plugins/document-manager/plugin.c:
7339         Fixed bug #359259 (highlight modes listed in reverse 
7340         alphabetical order).
7342 2006-10-10  Johannes Schmid <jhs@gnome.org>
7344         * plugins/glade/plugin.c:
7345         Add scrollbars to glade project window
7347 2006-10-10  Johannes Schmid <jhs@gnome.org>
7349         * libanjuta/interfaces/Makefile.am.iface:
7350         Fixed Makefile with broke build
7352 2006-10-07  Johannes Schmid <jhs@gnome.org>
7354         * libanjuta/interfaces/anjuta-idl-compiler.pl:
7355         * libanjuta/interfaces/Makefile.iface.am:
7356         Fixed enum types generation
7358         * libanjuta/interfaces/libanjuta.idl:
7359         Fixed some strange typo
7361 2006-10-06  Johannes Schmid <jhs@gnome.org>
7363         * libanjuta/interfaces/Makefile.iface.am:
7364         Fixed enum-types.h generation
7365         * libanjuta/interfaces/libanjuta.idl:
7366         char* => gchar*
7367         IAnjutaTODO::load should take const gchar* argument
7368         Remove include to libanjuta/e-splash.h which is not installed as header file
7369         Disable get_attributes for now
7370         
7371         * pluings/sourceview/sourceview.c: Disabled get_attributes
7372         
7373         * plugins/gtodo/plugin.c: itodo_load now with const gchar* argument
7375 2006-10-05  Naba Kumar  <naba@gnome.org>
7377         * TODO.tasks: Set 'Improve class widzard' task to assigned.
7378         Set bug id for 'Profiler plugin' task.
7380 2006-10-03  Naba Kumar  <naba@gnome.org>
7382         * TODO.tasks: Set 'Profiler plugin' task to assigned. Added new
7383         tasks 'Automated tests for Anjuta' and 'Bug fixing batch #1'
7385         * libanjuta/interfaces/libanjuta.idl, plugins/document-manager/plugin.c,
7386         plugins/project-manager/plugin.c: Added a new API in
7387         IAnjutaDocumentManager called ianjuta_document_manager_remove_editor().
7388         Added some documentation. On project close, close all editors that
7389         has files opened for the project.
7390         
7391         * plugins/glade/plugin.c, src/anjuta-app.c: Remove client widgets
7392         from the containers on anjuta_shell_remove_widget(). Do not destroy
7393         glade widgets once created.
7394         
7395 2006-10-03  Johannes Schmid <jhs@gnome.org>
7397         * libanjuta/interfaces/anjuta-idl-compiler.pl:
7398         * libanjuta/interfaces/libanjuta.idl:
7399         const-List<> => const List<>
7400         List-free<> => List<>
7401         
7402         * Makefile.am: Reenabled launcher
7404 2006-10-03  Johannes Schmid <jhs@gnome.org>
7406         * libanjuta/interfaces/Makefile.am.iface:
7407         Install libanjuta.idl
7409 2006-10-02  Adam Dingle <adam@medovina.org>
7411         * src/action-callbacks.c: fixed bug #357542 (plugins window is too narrow)
7413 2006-10-02  Adam Dingle <adam@medovina.org>
7415         * plugins/editor/style-editor.c: fixed bug #357534
7416         * plugins/gdb/utilities.h: removed 2 unused declarations
7418 2006-10-02  Johannes Schmid <jhs@gnome.org>
7420         * Makefile.am: disabled anjuta-launcher
7421         * libanjuta/Makefile.am:
7422         
7423         * libanjuta/anjuta-plugin.c: (anjuta_plugin_class_init):
7424         * libanjuta/glue-factory.c: (glue_factory_add_path),
7425         (glue_factory_get_path):
7426         * libanjuta/plugins.c: (activate_tool), (tool_set_update):
7427         * libanjuta/glue-factory.h:
7428         * libanjuta/glue-cpp.h:
7429         * libanjuta/glue-cpp.c:
7430         Added support for C++ plugins. Those have a Language=C++ tag in their .plugin file      
7431         
7432         * libanjuta/interfaces/Makefile.am.iface:
7433         * libanjuta/interfaces/anjuta-idl-compiler.pl:
7434         * libanjuta/interfaces/libanjuta.idl:
7435         Add a new features to idl compiler:
7436         List<Type> => List of Type
7437         List-free<Type> => List of Type, it is up to the caller to free items and list
7438         const-List(-free)<Type> = const List of Types
7439         These three all wrap to GList* in C but will be handled differently in C++, Python, etc.
7440         
7441         * plugins/class-gen/class_gen.c: (gobject_class_create_code),
7442         (generic_cpp_class_create_code):
7443         Adapted to new project_manager interface
7444         
7445         * plugins/gdb/plugin.c: (ivariable_debugger_iface_init):
7446         * plugins/debug-manager/debugger.c:
7447         (ivariable_debugger_iface_init):
7448         Do not use C++ keyword "delete" for interface name
7449         
7450         * plugins/document-manager/anjuta-document-manager.plugin.in:
7451         Added m4 to mime-types
7452         
7453         * plugins/project-manager/plugin.c:
7454         (iproject_manager_add_source_multi):
7455         Changed interface to use GList instead of GList* (needs new gnome-build CVS)
7457 2006-10-01  Naba Kumar  <naba@gnome.org>
7459         * plugins/devhelp/anjuta-devhelp-simple.ui: Added a simple
7460         UI file used when out-of-process devhelp is used instead of
7461         embedded devhelp.
7462         
7463         * configure.in, plugins/Makefile.am, plugins/devhelp/Makefile.am,
7464         plugins/devhelp/plugin.c, plugins/devhelp/plugin.h,
7465         plugins/profile-default/default.anjuta: Build devhelp plugin,
7466         but use out-of-process devhelp if devhelp plugin is disabled
7467         (either by user or devhelp is not installed). Disabled devhelp
7468         plugin by default. Added it in default profile.
7470 2006-10-01  Naba Kumar  <naba@gnome.org>
7472         * plguins/project-manager/plugin.c: Possible fix for crash
7473         bug #358583.
7474         
7475         * configure.in, plugins/Makefile.am: Enabled glade plugin and
7476         set dep to last version 3.0.2.
7477         
7478         * plugins/cvs-plugin/plugin.c, plugins/file-loader/plugin.c,
7479         plugins/file-loader/plugin.h, plugins/subversion/plugin.c,
7480         plugins/symbol-browser/plugin.c: Use the right action group
7481         for getting popup actions (Fixes lots of assertion failures).
7483         * plugins/project-manager/plugin.c,
7484         plugins/project-manager/plugin.h: use separate action group
7485         for profie actions.
7486         
7487         * plugins/message-view/plugin.c: Disconnect session load
7488         signal on plugin deactivation (fixes a crash).
7490 2006-09-30  Naba Kumar  <naba@gnome.org>
7492         * TODO.tasks: Added a few debugger tasks from Sebastien (two bounties).
7493         * TODO.tasks: Assigned a bounty to Massimo.
7495 2006-09-29  Naba Kumar  <naba@gnome.org>
7497         * src/anjuta-app.c, src/shell.c: Fixed build errors.
7499 2006-09-30 Sebastien Granjoux <seb.sfo@free.fr>
7501         * plugins/debug-manager/debugger.c,
7502         plugins/debug-manager/plugin.c,
7503         libanjuta/interfaces/libanjuta.idl:
7504         Add a new abort command to quit debugger without waiting
7506         * plugins/gdb/debugger.c,
7507         plugins/gdb/debugger.h,
7508         plugins/gdb/plugin.c:
7509         Send a signal directly to the debugged program
7510         Implement abort command
7512         * plugins/debug-manager/debug_tree.c:
7513         Fix bug #358163
7515         * plugins/debug-manager/stack-trace.c:
7516         Fix bug #358009
7518 2006-09-29  Naba Kumar  <naba@gnome.org>
7520         * TODO.tasks: Updated.
7521         
7522         * plugins/gtodo/add_edit_item.c: Fixed text wrapping and item edit
7523         dialog.
7524         
7525         * TODO.tasks: Added more tasks and bounties. Marked a few completed.
7526         
7527         * TODO.tasks: Updated in light of the word wrapping fix
7528         in Tasks Manager. Added a test bounty entry.
7530         * TODO.tasks: Added four bounties.
7531         
7532 2006-09-28  Naba Kumar  <naba@gnome.org>
7534         * libanjuta/anjuta-ui.c, libanjuta/anjuta-ui.h:
7535         Added 'customizable' parameter to
7536         anjuta_ui_add_action_group_entries() and similar functions to
7537         allow user configuration of the actions. Filter out actions that
7538         are not configurable items (such as submenu items). Now the
7539         'Customize shortcuts' dialog is much better listed.
7541         * plugins/build-basic-autotools/build-basic-autotools.c,
7542         plugins/build-basic-autotools/build-basic-autotools.h,
7543         plugins/cvs-plugin/plugin.c,
7544         plugins/cvs-plugin/plugin.h,
7545         plugins/debug-manager/breakpoints.c,
7546         plugins/debug-manager/plugin.c,
7547         plugins/debug-manager/stack_trace.c,
7548         plugins/debug-manager/watch.c,
7549         plugins/devhelp/plugin.c,
7550         plugins/document-manager/plugin.c,
7551         plugins/file-loader/plugin.c,
7552         plugins/file-manager/plugin.c,
7553         plugins/glade/plugin.c,
7554         plugins/gtodo/interface.c,
7555         plugins/gtodo/plugin.c,
7556         plugins/language-support-cpp-java/plugin.c,
7557         plugins/macro/plugin.c,
7558         plugins/macro/plugin.h,
7559         plugins/message-view/plugin.c,
7560         plugins/patch/plugin.c,
7561         plugins/profile-default/default.anjuta,
7562         plugins/project-manager/plugin.c,
7563         plugins/project-manager/plugin.h,
7564         plugins/sample1/plugin.c,
7565         plugins/search/plugin.c,
7566         plugins/subversion/plugin.c,
7567         plugins/subversion/plugin.h,
7568         plugins/symbol-browser/plugin.c,
7569         plugins/symbol-browser/plugin.h,
7570         plugins/tools/plugin.c,
7571         plugins/valgrind/plugin.c,
7572         plugins/valgrind/plugin.h: Fixed to take care of above change
7573         in API of AnjutaUI. Properly added/removed action groups in some
7574         plugins. Split action groups into customization and non-customizable
7575         groups and added them separately.
7577         * plugins/document-manager/plugin.c: Close files belonging to
7578         project when project is closed (not complete).
7579         
7580         * plugins/gtodo/plugin.c: Enabled wrapping of tasks texts and
7581         vertical aligned cell entries.
7582         
7583         * src/anjuta-app.c: Define macros for the placeholder names.
7584         Set default widths and heights of the default placeholders,
7585         so that newly docked widgets are correclty sized.
7586         
7587         * plugins/project-wizard/templates/anjuta-plugin/src/plugin.c,
7588         plugins/project-wizard/templates/anjuta-plugin/src/plugin.h:
7589         Fixed to generated correct actions addition/removal code.
7591 2006-09-25  Naba Kumar  <naba@gnome.org>
7593         * libanjuta/Makefile.am, libanjuta/libanjuta.h,
7594         libanjuta/anjuta-serializer.[ch]: Implemented serialization
7595         class.
7596         
7597         * plugins/message-view/anjuta-msgman.c,
7598         plugins/message-view/anjuta-msgman.h,
7599         plugins/message-view/message-view.c,
7600         plugins/message-view/message-view.h,
7601         plugins/message-view/plugin.c: Serialize messages panes in
7602         session save and deserialize them in session load so that
7603         build messages persistant.
7604         
7605 2006-09-24  Johannes Schmid <jhs@gnome.org>
7607         * libanjuta/anjuta-utils.c:
7608         * plugins/message-view/message-view.c:
7609         Really fixed #355407
7611 2006-09-23 Sebastien Granjoux <seb.sfo@free.fr>
7613         * libanjuta/interfaces/libanjuta.idl:
7614         Change one variable sign
7616         * plugins/debug-manager/anjuta-debug-manager.glade,
7617         plugins/debug-manager/anjuta-debug-manager.ui:
7618         Few small interface changes     
7620         * plugins/debug-manager/debug_tree.h,
7621         plugins/debug-manager/watch.c,
7622         plugins/debug-manager/debugger.c,
7623         plugins/debug-manager/plugin.c
7624         plugins/gdb/debugger.c,
7625         plugins/gdb/plugin.c:
7626         Big rewrite of debugger queue
7627         Allow to cancel command
7629         * plugins/debug-manager/memory.c:
7630         Fix a bug if a command is cancelled
7632 2006-09-23  Bursig Rafal <Bursig_Rafal@mentor.com>
7634         * plugins/gdb/debugger.c,
7635         plugins/debug-manager/debug_tree.c,
7636         plugins/debug-manager/locals.c:
7637         Restore tree representation for local variable
7638         Add argument in local variable list
7639         Use gdb variable object to get all informations
7641 2006-09-19  Naba Kumar  <naba@gnome.org>
7643         * libanjuta/anjuta-save-prompt.[c,h]: Added missing files
7644         that implements AnjutaSavePrompt class.
7646         * ChangeLog: Fixed indentation.
7647         
7648         * libanjuta/Makefile.am,
7649         libanjuta/anjuta-marshal.list,
7650         libanjuta/anjuta-shell.c,
7651         libanjuta/anjuta-shell.h,
7652         plugins/document-manager/action-callbacks.c,
7653         plugins/document-manager/action-callbacks.h,
7654         plugins/document-manager/anjuta-docman.c,
7655         plugins/document-manager/anjuta-docman.h,
7656         plugins/document-manager/plugin.c,
7657         src/anjuta.c: Impletemnted save prompt dialog to prompt for
7658         unsaved items during exit. A new signal is added in shell
7659         interface called 'save-prompt' to collect all unsaved items.
7660         Create AnjutaSavePrompt class (dialog) to process unsaved items.
7661         Fixed document manager to use the new save-prompt signal in shell
7662         and AnjutaSavePrompt object for unsaved files. Cleaned up
7663         AnjutaDocman to synchronously save new files. Fixed function
7664         names.
7666 2006-09-18  Johannes Schmid <jhs@gnome.org>
7668         * configure.in: Added gdl-gnome-1.0 to depencies and bumped
7669         gdl requirement to 0.7.0
7671 2006-09-18  Johannes Schmid <jhs@gnome.org>
7673         * global-tags/.cvsignore:
7674         * global-tags/Makefile.am:
7675         * global-tags/create_global_tags.sh (removed):
7676         * global-tags/create_global_tags.sh.in (added):
7677         Fixed #355407
7678         
7679         * libanjuta/anjuta-launcher.c:
7680         Fixed #349374
7681         
7682         * plugins/project-manager/plugin.c:
7683         (project_manager_plugin_close_project):
7684         Fixed crasher
7685         
7686         * plugins/symbol-browser/plugin.c: (update_editor_symbol_model):
7687         Fixed gtk critical
7688         
7689         * src/anjuta-app.c: (on_add_merge_widget), (on_widget_remove):
7690         More reasonable toolbar creation/deletition though it does
7691         not completly work!
7693 2006-09-15  Johannes Schmid <jhs@gnome.org>
7695         * libanjuta/anjuta-utils.c/.h:
7696         Fixed #355168
7698 2006-09-13  Curtis Magyar <curtm4n@gmail.com>
7700         * scintilla/ScintillaGTK.cxx
7701         Fixed doulbe freeing in Scintilla
7703 2006-09-12  Johannes Schmid  <jhs@gnome.org>
7705         * plugins/symbol-browser/an_symbol_prefs.c:
7706         Support unloading / reloading of the module (for example when
7707         closing a project and opening another one).
7709         * plugins/project-manager/plugin.c:
7710         Really fixed #355148 (Show project name in title bar)
7712 2006-09-09  Johannes Schmid  <jhs@gnome.org>
7714         * libanjuta/plugins.c:
7715         Fixed #355156 (Show plugins in alphabetical order)
7717 2006-09-09  Johannes Schmid  <jhs@gnome.org>
7719         * plugins/project-manager/plugin.c:
7720         Fixed #355148 (Show project name in title bar)
7722 2006-09-09  Johannes Schmid  <jhs@gnome.org>
7724         * plugins/project-manager/plugin.c:
7725         (value_removed_project_root_uri):
7726         Fixed crasher if project cannot be opened
7728 2006-08-30 Naba Kumar  <naba@gnome.org>
7730         * plugins/language-support-cpp-java/plugin.[c,h],
7731         plugins/language-support-cpp-java/anjuta-language-support-cpp-java.ui:
7732         Impletemnted UI for auto indent.
7733         
7734 2006-08-28 Naba Kumar  <naba@gnome.org>
7735         
7736         * plugins/gvim/.cvsignore,
7737         plugins/gvim/Makefile.am,
7738         plugins/gvim/anjuta-vim-plugin.png,
7739         plugins/gvim/anjuta-vim.c,
7740         plugins/gvim/anjuta-vim.h,
7741         plugins/gvim/anjuta-vim.plugin.in,
7742         plugins/gvim/gtkvim.c,
7743         plugins/gvim/gtkvim.h,
7744         plugins/gvim/plugin.c,
7745         plugins/gvim/plugin.h: Added gvim anjuta plugin. Not included
7746         in build yet.
7748 2006-08-28 Naba Kumar  <naba@gnome.org>
7750         Patch from: Massimo Corà  <maxcvs@email.it>
7751         * tagmanager/tm_source_file.c, tagmanager/tm_workspace.c: Fixed
7752         possible infinite loop.
7754 2006-08-22 Adam Dingle <adam@medovina.org>
7755         
7756         * plugins/editor/editor.glade: Fixed bug 346775 ("no highlight styles
7757         to edit are shown in the preferences dialog in anjuta").
7758         Removed unused widgets from the style editor dialog.
7760 2006-08-21  Johannes Schmid <jhs@gnome.org>
7762         * plugins/symbol-browser/test-class.[cpp/h]
7763         Added missing files
7765 2006-08-18  Naba Kumar  <naba@gnome.org>
7767         * plugins/sourceview/sourceview.c: Emit language-changed signal at the
7768         end of document loading.
7770         * plugins/language-support-cpp-java/plugin.c,
7771         plugins/sourceview/sourceview.c: Fixed plugin loading.
7773 2006-08-17  Naba Kumar  <naba@gnome.org>
7775         * plugins/language-support-cpp-java/plugin.c,
7776         plugins/language-support-cpp-java/plugin.h: Implemented emacs-style
7777         mode line parsing. Indentation parameters initialized based on
7778         mode line parameters.
7780 2006-08-16  Naba Kumar  <naba@gnome.org>
7782         * Makefile.am, plugins/editor/text_editor.c,
7783         plugins/language-support-cpp-java/plugin.c: Fixed indentation in
7784         comments.
7786 2006-08-16 Naba Kumar  <naba@gnome.org>
7788         Patch from  Massimo Cora'  <maxcvs@email.it>:
7789         
7790         * plugins/editor/aneditor-autocomplete.cxx,
7791         plugins/editor/aneditor-calltip.cxx,
7792         plugins/symbol-browser/Makefile.am,
7793         plugins/symbol-browser/an_symbol.c,
7794         plugins/symbol-browser/an_symbol_view.c,
7795         plugins/symbol-browser/plugin.c,
7796         tagmanager/Makefile.am, tagmanager/acconfig.h, tagmanager/args.c,
7797         tagmanager/args.h, tagmanager/asm.c, tagmanager/asp.c,
7798         tagmanager/awk.c, tagmanager/beta.c, tagmanager/c.c,
7799         tagmanager/cobol.c, tagmanager/ctags.c, tagmanager/ctags.h,
7800         tagmanager/debug.c, tagmanager/debug.h, tagmanager/eiffel.c,
7801         tagmanager/entry.c, tagmanager/entry.h, tagmanager/erlang.c,
7802         tagmanager/fortran.c, tagmanager/general.h, tagmanager/get.c,
7803         tagmanager/get.h, tagmanager/html.c,
7804         tagmanager/include/tm_source_file.h,
7805         tagmanager/include/tm_tag.h,
7806         tagmanager/include/tm_workspace.h,
7807         tagmanager/jscript.c, tagmanager/keyword.c,
7808         tagmanager/keyword.h, tagmanager/lisp.c,
7809         tagmanager/lregex.c, tagmanager/lua.c,
7810         tagmanager/main.h, tagmanager/make.c,
7811         tagmanager/options.c, tagmanager/options.h,
7812         tagmanager/parse.c, tagmanager/parse.h,
7813         tagmanager/parsers.h, tagmanager/pascal.c,
7814         tagmanager/perl.c, tagmanager/php.c,
7815         tagmanager/python.c, tagmanager/read.c,
7816         tagmanager/read.h, tagmanager/readtags.c,
7817         tagmanager/readtags.h, tagmanager/rexx.c,
7818         tagmanager/routines.c, tagmanager/routines.h,
7819         tagmanager/ruby.c, tagmanager/scheme.c,
7820         tagmanager/sh.c, tagmanager/slang.c,
7821         tagmanager/sml.c, tagmanager/sort.c,
7822         tagmanager/sort.h, tagmanager/sql.c,
7823         tagmanager/strlist.c, tagmanager/strlist.h,
7824         tagmanager/tcl.c, tagmanager/tm_source_file.c,
7825         tagmanager/tm_symbol.c, tagmanager/tm_tag.c,
7826         tagmanager/tm_workspace.c, tagmanager/verilog.c,
7827         tagmanager/vim.c, tagmanager/vstring.c,
7828         tagmanager/vstring.h, tagmanager/yacc.c: Updated ctags to version
7829         5.6 and namespace completion fixed.
7831         * manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml,
7832         manuals/reference/libanjuta/tmpl/ianjuta-iterable.sgml: Updated.
7834 2006-08-15 Naba Kumar  <naba@gnome.org>
7836         * libanjuta/interfaces/libanjuta.idl,
7837         plugins/editor/text-editor-iterable.c,
7838         plugins/editor/text_editor.c,
7839         plugins/sourceview/sourceview-cell.c,
7840         plugins/sourceview/sourceview.c: Implemented ianjuta_iterable_clone(),
7841         ianjuta_iterable_assign(), ianjuta_editor_begin_action (),
7842         ianjuta_editor_end_action().
7843         
7844         * plugins/language-support-cpp-java/plugin.c: Improved auto-indentation.
7846 2006-08-13 Naba Kumar  <naba@gnome.org>
7848         * plugins/debug-manager/breakpoints.c,
7849         plugins/debug-manager/memory.c,
7850         plugins/debug-manager/registers.c,
7851         src/layout.xml: Fixed debugger widgets layout.
7853 2006-08-12 Naba Kumar  <naba@gnome.org>
7855         * plugins/editor/aneditor-indent.cxx, plugins/editor/aneditor-priv.h,
7856         plugins/editor/aneditor.cxx, plugins/editor/aneditor.h,
7857         plugins/editor/editor.glade, plugins/editor/text_editor.h,
7858         plugins/editor/text_editor_prefs.c: Disabled automatic indentation
7859         codes and dead codes. Removed automatic indentation prefs.
7861 2006-08-12  Johannes Schmid <jhs@gnome.org>
7863         * libanjuta/Makefile.am:
7864         * libanjuta/anjuta-launcher.c:
7865         * libanjuta/anjuta-launcher.h:
7866         * libanjuta/anjuta-plugin.c:
7867         * libanjuta/anjuta-plugin.h:
7868         * libanjuta/anjuta-preferences.c:
7869         * libanjuta/anjuta-preferences.h:
7870         * libanjuta/anjuta-shell.c:
7871         * libanjuta/anjuta-shell.h:
7872         * libanjuta/libanjuta.h:
7873         
7874         Made wrapper friendly:
7875         - no inline in header files (preferences_set/get)
7876         - correct signal names
7877         - correct GError** argument in anjuta_shell_freeze/thaw
7878         - include correct files in libanjuta.h
7879         
7880         * plugins/project-manager/plugin.c: 
7881         Fixed two crashers
7883 2006-08-11 Naba Kumar  <naba@gnome.org>
7885         * plugins/editor/aneditor-priv.h,
7886         plugins/editor/aneditor.cxx: Disabled inbuilt autoindentation.
7887         
7888         * plugins/editor/text_editor_cbs.c,
7889         plugins/sourceview/anjuta-view.c: Pass the right position for char
7890         added signal.
7891         
7892         * plugins/sourceview/anjuta-view.c: Emit char-added signal for tab.
7893         
7894         * plugins/language-support-cpp-java/plugin.c: Fixed memory corruption.
7896 2006-08-11 Naba Kumar  <naba@gnome.org>
7898         * plugins/sourceview/sourceview-cell.c: Fixed get_character () to
7899         return the right character at the iter position and get_char() to
7900         not leak memory.
7902         * plugins/sourceview/sourceview.c: Fixed get_line_begin_position()
7903         to set to character offset and not byte index.
7905         * plugins/language-support-cpp-java/plugin.c: Improved
7906         auto-indentation login. Indents opening and closing braces correctly.
7908 2006-08-10  Johannes Schmid <jhs@gnome.org>
7910         * INSTALL:
7911         * autogen.sh:
7912         Required automake = 1.9
7914         * libanjuta/anjuta-children.c:
7915         * libanjuta/anjuta-children.h:
7916         * libanjuta/anjuta-encodings.h:
7917         * libanjuta/anjuta-launcher.h:
7918         * libanjuta/anjuta-plugin-description.h:
7919         * libanjuta/anjuta-preferences-dialog.h:
7920         * libanjuta/anjuta-preferences.h:
7921         * libanjuta/anjuta-session.h:
7922         * libanjuta/anjuta-status.h:
7923         * libanjuta/anjuta-ui.h:
7924         * libanjuta/anjuta-utils.c:
7925         * libanjuta/anjuta-utils.h:
7926         * libanjuta/e-splash.h:
7927         * libanjuta/glue-factory.h:
7928         * libanjuta/glue-plugin.h:
7929         * libanjuta/plugins.h:
7930         * libanjuta/resources.h:
7931         Fixed libanjuta to be able to wrap it
7932         - G_BEGIN_DECLS, G_END_DECLS
7933         - include all necessary files in libanjuta.h
7935         * plugins/gtodo/tray-icon.c:
7936         * plugins/terminal/terminal.c:
7937         Some build fixes for freebsd
7939         * plugins/sourceview/sourceview-prefs.c: (sourceview_prefs_init):
7940         * plugins/sourceview/sourceview.glade:
7941         Remove auto-indent feature as it is now in language-support
7943 2006-08-09 Naba Kumar  <naba@gnome.org>
7945         * plugins/language-support-cpp-java/anjuta-language-cpp-java.glade,
7946         plugins/language-support-cpp-java/anjuta-language-support-cpp-java.ui:
7947         Added missing files.
7949         * plugins/sourceview/sourceview.c:  Implemented get_tabsize(),
7950         get_use_spaces(), set_tabsize() and set_use_spaces().
7952 2006-08-09 Naba Kumar  <naba@gnome.org>
7954         * libanjuta/anjuta-plugin.c: Only merge preferences if the plugin
7955         succeeded in activating.
7957         * plugins/document-manager/plugin.c: Added debug message.
7959         * libanjuta/interfaces/libanjuta.idl,
7960         plugins/editor/text_editor.c: Implemented get_tabsize(),
7961         get_use_spaces(), set_tabsize() and set_use_spaces().
7963         * plugins/language-support-cpp-java/Makefile.am,
7964         plugins/language-support-cpp-java/plugin.c,
7965         plugins/language-support-cpp-java/plugin.h: Used editor parameters
7966         for indentation. Added preferences page for paramenters.
7968         * manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml: Updated.
7970 2006-08-08 Naba Kumar  <naba@gnome.org>
7972         * libanjuta/interfaces/libanjuta.idl,
7973         manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml,
7974         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml,
7975         plugins/editor/text_editor.c,
7976         plugins/sourceview/sourceview.c: Added grab_focus() in IAnjutaEditor
7977         and implemented it for both scintilla and sourceview.
7979         * plugins/search/plugin.c: Use the new grab_focus() to transfer
7980         focus back to editor (happens when pressing esc in incremental
7981         search box).
7983 2006-08-08 Naba Kumar  <naba@gnome.org>
7985         * libanjuta/interfaces/libanjuta.idl,
7986         plugins/editor/text_editor.c,
7987         plugins/editor/text_editor.h,
7988         plugins/editor/text-editor-iterable.c,
7989         plugins/sourceview/sourceview-cell.c,
7990         plugins/sourceview/sourceview.c: Implemented editor attributes
7991         methods.
7992         
7993         * plugins/editor/aneditor.cxx: Disabled old indentation code.
7994         plugins/language-support-cpp-java/plugin.c: Implemented indentation
7995         code (not complete yet).
7997         * manuals/reference/libanjuta/tmpl/anjuta-preferences-dialog.sgml,
7998         manuals/reference/libanjuta/tmpl/anjuta-preferences.sgml,
7999         manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml,
8000         manuals/reference/libanjuta/tmpl/ianjuta-iterable.sgml,
8001         manuals/reference/libanjuta/tmpl/ianjuta-profile.sgml,
8002         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml: Updated.
8004 2006-08-04 Naba Kumar  <naba@gnome.org>
8006         * plugins/sourceview/sourceview.c: Fixed ieditor_goto_position
8007         implementation.
8008         
8009 2006-08-03  Johannes Schmid <jhs@gnome.org>
8011         * configure.in: Add a more informative text to valgrind plugin
8013         * TODO.tasks:
8014         Modified Preferences tasl
8015         * libanjuta/anjuta-plugin.c: 
8016         * libanjuta/anjuta-preferences-dialog.c: 
8017         * libanjuta/anjuta-preferences-dialog.h:
8018         * libanjuta/anjuta-preferences.c:
8019         * libanjuta/anjuta-preferences.h:
8020         * libanjuta/interfaces/Makefile.am.iface:
8021         * libanjuta/interfaces/libanjuta.idl:
8022         Added IAnjutaPreferences interface which every plugin that has preferences should
8023         implement. Call merge() and unmerge() at plugin activation/deactivation.
8024         Fixed preferences_page_remove()
8025         
8026         * plugins/build-basic-autotools/build-basic-autotools.c:
8027         * plugins/cvs-plugin/plugin.c: 
8028         * plugins/document-manager/plugin.c:
8029         * plugins/editor/plugin.c:
8030         * plugins/editor/plugin.h:
8031         * plugins/file-manager/plugin.c: 
8032         * plugins/gtodo/main.h:
8033         * plugins/gtodo/plugin.c: 
8034         * plugins/gtodo/preferences.c: 
8035         * plugins/message-view/anjuta-msgman.c: 
8036         * plugins/message-view/anjuta-msgman.h:
8037         * plugins/message-view/plugin.c:
8038         * plugins/sourceview/plugin.c: 
8039         * plugins/sourceview/plugin.h:
8040         * plugins/symbol-browser/an_symbol_prefs.c:
8041         * plugins/symbol-browser/plugin.c: 
8042         * plugins/terminal/terminal.c: 
8043         * plugins/valgrind/plugin.c
8044         * src/anjuta-app.c:
8045         
8046         Updated preference loading/unloading for all plugins
8048 2006-08-03 Guenther Brammer <gbrammer@gmx.de>
8049         
8050         * configure.in, libanjuta/Makefile.am, libegg/Makefile.am,
8051         src/Makefile.am, plugins/tools/scripts/Makefile.am: 
8052     - Do not define PACKAGE_*_DIR in config.h, use -D compiler arguments instead as
8053         recommended by the autoconf manual. 
8054         - Fixes compiling with autoconf 2.60.
8055         
8056         * libanjuta/libanjuta-1.0.pc.in: Silence a warning about datarootdir
8058 2006-08-02      Johanes Schmid <jhs@gnome.org>
8060         * plugins/profile-default/plugin.c:
8061         Fixed session handling
8063 2006-08-01  Johannes Schmid <jhs@gnome.org>
8065         * configure.in
8066         * plugins/Makefile.am:
8067         Disabled devhelp and glade for now as they do not work (#341073
8068         and #341170)
8069         
8070         * plugins/profile-default/anjuta-default-profile.ui (removed):
8071         * plugins/profile-default/plugin.c:
8072         * plugins/profile-default/plugin.h:
8073         * plugins/project-manager/anjuta-project-manager.ui:
8074         * plugins/project-manager/plugin.c:
8075         * plugins/project-manager/plugin.h:
8076         Limted multiple project support #315043
8078         * libanjuta/interfaces/libanjuta.idl:
8079         Added ianjuta_profile_unload
8081 2006-07-31 Naba Kumar  <naba@gnome.org>
8083         * libanjuta/interfaces/libanjuta.idl,
8084         plugins/editor/text-editor-iterable.c,
8085         plugins/editor/text_editor.c,
8086         plugins/sourceview/anjuta-view.c,
8087         plugins/sourceview/anjuta-view.h,
8088         plugins/sourceview/sourceview.c: Fixed text iteration and 
8089         IAnjutaEditor implementations in both scintilla
8090         and sourceview. Cleand up libanjuta API: Removed redundant
8091         erase_range() method from IAnjutaEditor interface, fixed
8092         ianjuta_editor_get_text to take length instead of range (consistency).
8093         autoindentation in both sourceview and scintilla more or less works,
8094         but still disabled for now because there are still some anomalies
8095         in text iteration.
8097         * plugins/language-support-cpp-java/plugin.c: Fixed indentation code.
8099         * plugins/symbol-browser/plugin.c, plugins/tools/execute.c: Fixed
8100         API changes.
8102 2006-07-30  Johannes Schmid <jhs@gnome.org>
8104         * plugins/sourceview/anjuta-document.c:
8105         * plugins/sourceview/anjuta-document.h:
8106         * plugins/sourceview/anjuta-view.c: 
8107         * plugins/sourceview/sourceview.c:
8108         Wrote a new "char_added" implementation, I hope this one is good
8110         * plugins/sourceview/sourceview-cell.c:
8111         Fixed typo: "text_iter" instead of "iter"
8113 2006-07-30 Naba Kumar  <naba@gnome.org>
8115         * plugins/sourceview/sourceview-cell.c: Fixed iter navigation.
8117 2006-07-30  Johannes Schmid <jhs@gnome.org>
8119         * autogen.sh: use gnome-autogen.sh from gnome-coomen
8120         
8121         * plugins/debug-manager/plugin.c: 
8122         * plugins/patch/plugin.c:
8123         Use IAnjutaIndicable to mark debugger position
8125         * plugins/sourceview/sourceview.c:
8126         Define colors for IAnjutaIndicable
8128 2006-07-29  Johannes Schmid <jhs@gnome.org>
8130         * plugins/debug-manager/anjuta-debug-manager.ui:
8131         * plugins/debug-manager/breakpoints.c:
8132         * plugins/debug-manager/images/Makefile.am:
8133         * plugins/debug-manager/images/run-to-cursor.png:
8134         * plugins/debug-manager/plugin.c:
8135         Added toolbar and some icons
8137         * plugins/patch/anjuta-patch.ui:
8138         * plugins/patch/patch-plugin.c:
8139         * plugins/patch/patch-plugin.glade:
8140         * plugins/patch/plugin.c:
8141         * plugins/patch/plugin.h:
8142         Improved patch plugin (GUI and function)
8144         * plugins/sourceview/sourceview.c:
8145         Fixed another Gtk-Critical
8147         * plugins/tools/anjuta-tools.ui:
8148         * plugins/tools/plugin.h:
8149         Put Patch plugin in tools menu and changed ui file
8151 2006-07-29  Johannes Schmid <jhs@gnome.org>
8153         * plugins/document-manager/plugin.c:
8154         Fixed accelator Gtk-Warning
8156         * plugins/message-view/anjuta-msgman.c: 
8157         Fixed Gtk-Warning
8159         * plugins/sourceview/anjuta-document.c:
8160         * plugins/sourceview/anjuta-document.h:
8161         * plugins/sourceview/anjuta-marshal.list:
8162         Wrote a better emitter for the char-added signal
8164         * plugins/sourceview/sourceview.c:
8165         Fixed Redo/Undo to void Gtk-Criticals
8166         
8167         * plugins/sourceview/sourceview-args.c:
8168         * plugins/sourceview/sourceview-cell.c:
8169         * plugins/sourceview/sourceview-scope.c:
8170         * plugins/sourceview/sourceview-tags.c: 
8171         Adapted to new IAnjutaIterator API
8173 2006-07-28 Naba Kumar  <naba@gnome.org>
8175         * libanjuta/interfaces/libanjuta.idl: More accurate comments.
8177         * plugins/symbol-browser/an_symbol.c,
8178         plugins/symbol-browser/an_symbol_iter.c,
8179         plugins/symbol-browser/an_symbol_iter.h: AnjutaSymbolIter is now
8180         subclass of AnjutaSymbol so that the symbol is accessible from
8181         the iter in light of changes in IAnjutaIterable.
8183         * plugins/class-inheritance/class-inherit.c: Fixed based on changes
8184         implementation of IAnjutaIterable.
8186 2006-07-28 Naba Kumar  <naba@gnome.org>
8188         * libanjuta/interfaces/libanjuta.idl: Removed get data methods in
8189         IAnjutaIterable. They were kind of useless since the interface is
8190         defined on the data object itself. Added set_position() method
8191         in IAnjutaIterable to allow setting arbitrary current index to the
8192         iter.
8193         Added erase() and erase_range() in IAnjutaEditor.
8195         * plugins/editor/text-editor-iterable.c: Fixed 
8196         plugins/editor/text_editor.c: Implemented erase() and erase_range()
8197         methods in editor. Fixed get_line_from_position() method.
8199         * plugins/language-support-cpp-java/plugin.c: Fixed indentation
8200         code. It's disabled for now.
8202         * plugins/sourceview/sourceview-cell.c,
8203         plugins/symbol-browser/an_symbol_iter.c: Fixed IAnjutaIterable
8204         implementation.
8206 2006-07-27  Johannes Schmid <jhs@gnome.org>
8208         * plugins/sourceview/sourceview-cell.c:
8209         Fixed IAnjutaEditorCell to work only on a single line
8210         Fixed crasher in finalize
8212         * plugins/symbol-browser/an_symbol_prefs.c:
8213         * global-tags/Makefile.am:
8214         Philip van Hoof pointed out that it is a bad idea to depend on PATH for
8215         script installation     
8217 2006-07-26 Naba Kumar  <naba@gnome.org>
8219         * libanjuta/interfaces/libanjuta.idl: Fixed IAnjutaEditorCell and
8220         IAnjutaEditorCellStyle interfaces to not inherit IAnjutaEditor.
8221         
8222         * manuals/reference/libanjuta/tmpl/ianjuta-debugger.sgml: Updated.
8223         
8224         * plugins/document-manager/plugin.c: Fixed dynamic loading of
8225         support plugins
8226         
8227         * plugins/editor/text-editor-iterable.c,
8228         plugins/editor/text_editor.c,
8229         plugins/editor/text_editor_cbs.c: Fixed ianjuta_editor_get_text
8230         method to work correctly, it was ignoring start and end parameters.
8231         Fixed TextEditorCell implementation. Fixed 'char-added' signal
8232         emission.
8233         
8234         * plugins/language-support-cpp-java/anjuta-language-cpp-java.plugin.in,
8235         plugins/language-support-cpp-java/plugin.c: Fixed indentation engine.
8237 2006-07-24  Massimo Cora'  <maxcvs@email.it>
8239         * plugins/symbol-browser/an_symbol_view.c,
8240         plugins/symbol-browser/an_symbol_view.h,
8241         plugins/symbol-browser/plugin.c:
8242     fix a matching case into sv_extract_type_qualifier_from_expr ()
8243     and some minor issues.
8245 2006-07-26  Johannes Schmid <jhs@gnome.org>
8247         * plugins/language-support-cpp-java/plugin.c:
8248         Fixed to work kind of with sourceview editor
8249         * plugins/sourceview/anjuta-document.c: 
8250         * plugins/sourceview/anjuta-view.c: 
8251         * plugins/sourceview/sourceview-cell.c:
8252         * plugins/sourceview/sourceview.c:
8253         Fixed IAnjutaEditorCell and "char-added" signal
8255 2006-07-24 Naba Kumar  <naba@gnome.org>
8257         * plugins/document-manager/plugin.c,
8258         plugins/document-manager/plugin.h: Initial implementedion for loading
8259         support plugins.
8260         
8261         * plugins/editor/text_editor.c: Fixed IAnjutaEditorLanguage
8262         implementation.
8263         
8264         * plugins/editor/text_editor.c: Fixed syntax highlighting when
8265         indicators are cleared (that leaved grey texts).
8267 2006-07-14 Sebastien Granjoux <seb.sfo@free.fr>
8269         * libanjuta/interfaces/libanjuta.idl,
8270         plugins/debug-manager/breakpoints.c,
8271         plugins/debug-manager/memory.c,
8272         plugins/debug-manager/registers.c,
8273         plugins/debug-manager/debug_tree.c,
8274         plugins/debug-manager/debugger.c,
8275         plugins/gdb/debugger.c,
8276         plugins/gdb/debugger.h,
8277         plugins/gdb/plugin.c:
8278         Add a parameter for reporting error
8279         Add a new interface for using gdb variable object
8280         Allow to cancel commands
8281         Rewrite handling of debugger state
8283         * plugins/debug-manager/plugin.c,
8284         plugins/debug-manager/locals.c,
8285         plugins/debug-manager/locals.h,
8286         plugins/debug-manager/register.c,
8287         plugins/debug-manager/stack_trace.c,
8288         plugins/debug-manager/stack_trace.h:
8289         Create and destroy local and stack trace windows when needed
8291 2006-07-20  Johannes Schmid <jhs@cvs.gnome.org>
8293         * plugins/document-manager/plugin.c:
8294         Fixed "Automatic" highlighting
8296 2006-07-20  Johannes Schmid <jhs@cvs.gnome.org>
8298         * plugins/sourceview/sourceview.c: Added support for IAnjutaEditorLanguage
8300         * plugins/sourceview/anjuta-view.c:
8301         Patch from Fredrik Axelsson <fraxbe@gmail.com> to fix a popup-menu issue
8303 2006-07-14  Johannes Schmid <jhs@cvs.gnome.org>
8304         
8305         * configure.in: Check for C/C++-Compiler correctly
8307 2006-07-14  Fredrik Axelsson <fraxbe@gmail.com>
8309         reviewed by: Johannes Schmid <jhs@cvs.gnome.org>
8311         * plugins/debug-manager/stack_trace.c:
8312         Destroy stack window when debuuger is disabled (#347414)
8313         
8314         * plugins/sourceview/anjuta-view.c:
8315         Fix a crash with popup-menu (#347412)
8317 2006-07-13 Naba Kumar  <naba@gnome.org>
8319         * plugins/editor/Makefile.am,
8320         plugins/editor/text_editor.h,
8321         plugins/editor/text-editor-iterable.h,
8322         plugins/editor/text-editor-iterable.c: Implemented text iterator (not
8323         tested yet).
8324         
8325         * plugins/language-support-cpp-java/plugin.c: Preliminary indentation
8326         code.
8327         
8328         * plugins/sourceview/sourceview-cell.c: Fixed a leak.
8330 2006-07-03  Johannes Schmid <jhs@cvs.gnome.org>
8332         * plugins/editor/text_editor.c: (convert_to_utf8_from_charset):
8333         Bug #342937
8334         
8335 2006-07-03  Fredrik Axelsson <fraxbe@gmail.com>
8337         reviewed by: Johannes Schmid <jhs@cvs.gnome.org>
8339         * libanjuta/anjuta-preferences-dialog.c:
8340         Do not use the page_num returned by gtk_notebook_append_page to
8341         remove the page as it cause bugs when pages removal is not done
8342         in LIFO.
8344         * plugins/document-manager/anjuta-docman.c:
8345         * src/anjuta-app.c:
8346         makes Anjuta display dock_items which have previously been hidden
8348 2006-07-03  Fredrik Axelsson <fraxbe@gmail.com>
8350         reviewed by: Johannes Schmid <jhs@cvs.gnome.org>
8352         * plugins/debug-manager/breakpoints.c: (on_clear_all_breakpoints):
8353         * plugins/sourceview/sourceview.c: (imark_unmark):
8354         
8355         Patches for bugs #346450 and #346295
8356         
8357         * AUTHORS: Added Fredrik
8359 2006-06-18 Johannes Schmid <jhs@cvs.gnome.org>
8361         * plugins/message-view/anjuta-msgman.c: 
8362         Fixed close button/icon size (like in docman)
8364 2006-06-10 Naba Kumar <naba@gnome.org>
8366         * plugins/editor/text_editor.c: Fixed goto line to mark the line
8367         being set.
8368         
8369 2006-06-10 Sebastien Granjoux <seb.sfo@free.fr>
8371         * libanjuta/interfaces/libanjuta.idl:
8372         Move inspect_memory function in IAnjutaCpuDebugger interface
8373         Rename Boolean type to State
8375         * plugins/debug-manager/breakpoint.c:
8376         Rename Boolean type to State
8378         * plugins/debug-manager/Makefile.am,
8379         plugins/debug-manager/anjuta-marshal.list,
8380         plugins/debug-manager/data_view.c,
8381         plugins/debug-manager/data_view.h,
8382         plugins/debug-manager/data_buffer.c,
8383         plugins/debug-manager/data_buffer.h,
8384         plugins/debug-manager/chunk_view.c,
8385         plugins/debug-manager/chunk_view.h,
8386         plugins/debug-manager/anjuta-debug-manager.ui,
8387         plugins/debug-manager/debugger.c,
8388         plugins/debug-manager/memory.c,
8389         plugins/debug-manager/memory.h,
8390         plugins/debug-manager/plugin.c,
8391         plugins/gdb/debugger.c,
8392         plugins/gdb/debugger.h,
8393         plugins/gdb/plugin.c:
8394         Rewrite memory window using a special widget
8395         Rename Boolean type to State
8397 2006-06-08 Naba Kumar <naba@gnome.org>
8399         * plugins/editor/text_editor.c (itext_editor_get_current_word):
8400         Do not return garbage characters and return NULL when there is no
8401         current word.
8402         
8403         * plugins/search/plugin.c: Fixed next occurance and prev occurance to
8404         work correctly.
8405         
8406         * plugins/search/search-replace.c: Fixed a mem leak.
8408 2006-06-08  Johannes Schmid <jhs@cvs.gnome.org>
8410         * libanjuta/anjuta-launcher.c:
8411         Added debug message (see #343522)
8412         
8413         * plugins/build-basic-autotools/build-basic-autotools.c:
8414         Patch from Günther Brammer to fix #344015
8416         * plugins/sourceview/sourceview.c:
8417         Implemented IAnjutaEditor->get_begin/end_line_position (crashed
8418         automatic highlight of build messages)
8420 2006-06-06 Naba Kumar <naba@gnome.org>
8422         * configure.in,
8423         libanjuta/interfaces/libanjuta.idl,
8424         manuals/reference/libanjuta/tmpl/ianjuta-debugger.sgml,
8425         plugins/Makefile.am,
8426         plugins/document-manager/action-callbacks.c,
8427         plugins/document-manager/plugin.c,
8428         plugins/editor/text_editor.c: Implemented IAnjutaEditorLanguage
8429         interface for language highlight selection and langauge change
8430         signal.
8431         
8432         * plugins/language-support-cpp-java: Added language support
8433         plugin for cpp and java.
8435 2006-05-27  Naba Kumar  <naba@gnome.org>
8437         * libanjuta/interfaces/libanjuta.idl, plugins/gdb/*,
8438         plugins/debug-manager/*, data/Makefile.am,
8439         manuals/reference/libanjuta/libanjuta.types,
8440         manuals/reference/libanjuta/tmpl/ianjuta-debugger.sgml,
8441         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml:
8442         merged anjuta-new-debugger branch into trunck.
8443         (cvs -z3 up -j anjuta-merged-from-trunk-to-new-debugger -j anjuta-new-debugger)
8445 2006-05-06 Sebastien Granjoux <seb.sfo@free.fr>
8446         
8447         * libanjuta/interfaces/libanjuta.idl,
8448         plugins/debug-manager/debugger.c,
8449         plugins/debug-manager/debugger.h,
8450         plugins/gdb/anjuta-gdb.plugin.in,
8451         plugins/gdb/debugger.c,
8452         plugins/gdb/debugger.h,
8453         plugins/gdb/plugin.c:
8454         Add new IAnjutaCpuDebugger interface to access cpu register
8455         Run gdb instead of /usr/local/bin/gdb
8456         
8457         * plugins/debug-manager/plugin.c,
8458         plugins/debug-manager/registers.c,
8459         plugins/debug-manager/registers.h:
8460         Rewrite register window
8461         Rename Load target menu item to Run target
8463 2006-05-07  Naba Kumar  <naba@gnome.org>
8465         * plugins/gdb.init
8466         
8467 2006-05-01 Sebastien Granjoux <seb.sfo@free.fr>
8469         * plugins/debug-manager/watch.c,
8470         plugins/debug-manager/breakpoint.c,
8471         plugins/debug-manager/breakpoint.h:
8472         Fix crash: disconnect save and load session signals
8474 2006-04-30 Sebastien Granjoux <seb.sfo@free.fr>
8476         * libanjuta/interface/libanjuta.idl,
8477         plugins/debug-manager/debugger.c,
8478         plugins/gdb/plugin.c:
8479         Add a value parameter for evaluate command
8481         * plugins/debug-manager/anjuta-debug-manager.glade:
8482         Create new dialog box for watches using glade
8484         * plugins/debug-manager/anjuta-debug-manager.ui:
8485         Move watch menu items near the end
8486         Move breakpoint menu items outside the sub menu
8488         * plugins/debug-manager/debug_tree.c,
8489         plugins/debug-manager/debug_tree.h,
8490         plugins/debug-manager/debug_tree.h,
8491         plugins/debug-manager/watch.c:
8492         Move all GUI code from watch.c to debug_tree.c
8493         Add an auto update property to watches
8494         
8495         * plugins/debug-manager/locals.c,
8496         plugins/debug-manager/locals.h,
8497         plugins/debug-manager/stack_trace.c,
8498         plugins/debug-manager/stack_trace.h,
8499         plugins/debug-manager/plugin.c:
8500         Register actions before starting debugger
8502         * plugins/gdb/debugger.c:
8503         Do not call callback function if not present
8505 2006-04-02 Sebastien Granjoux <seb.sfo@free.fr>
8507         * libanjuta/interfaces/libanjuta.idl,
8508         plugins/debug-manager/stack_trace.c,
8509         plugins/debug-manager/stack_trace.h,
8510         plugins/debug-manager/anjuta-debug-manager.ui,
8511         plugins/gdb/debugger.c:
8512         Add a popup menu in stack frame window
8513         Add a new frame-changed event
8514         Use MI command for getting stack informations
8515         Get filename with full path (need gdb > 6.3)
8517         * libanjuta/interfaces/libanjuta.idl,
8518         plugins/debug-manager/debug_tree.c,
8519         plugins/debug-manager/debugger.c,
8520         plugins/debug-manager/locals.c,
8521         plugins/debug-manager/locals.h,
8522         plugins/debug-manager/plugin.c,
8523         plugins/gdb/debugger.c,
8524         plugins/gdb/debugger.h,
8525         plugins/gdb/parser.c,
8526         plugins/gdb/parser.h,
8527         plugins/gdb/plugin.c,
8528         plugins/gdb/Makefile.am:
8529         Pass watch data with string instead of Watch structures
8530         Use debug_tree in local window
8531         Remove info local
8532         Remove parser.{ch}
8534         * plugins/debug-manager/breakpoints.c,
8535         plugins/debug-manager/utilities.c,
8536         plugins/debug-manager/utilities.h:
8537         Use a GtkListStore instead of a GtkTreeStore
8538         move goto_location_in_editor in utilities.c
8539         
8540 2006-03-26 Sebastien Granjoux <seb.sfo@free.fr>
8542         * libanjuta/interfaces/libanjuta.idl,
8543         plugins/debug-manager/anjuta-debug-manager.ui,
8544         plugins/debug-manager/breakpoints.c,
8545         plugins/debug-manager/plugin.c,
8546         plugins/gdb/debugger.c:
8547         Add a breakpoint type
8548         Add new popup menu in breakpoint window
8549         Add toggle breakpoint in editor popup menu
8550         Save and restore breakpoint enable
8551         Fix bug in clear all breakpoints
8552         Remove old useless code
8554         * plugins/debug-manager/debugger.c:
8555         Fix some problem with debugger states
8557         * manuals/reference/libanjuta/tmpl/ianjuta-debugger.sgml:
8558         Update documentation
8559         
8560 2006-03-25 Sebastien Granjoux <seb.sfo@free.fr>
8562         * data/Makefile.am,
8563         plugins/gdb/Makefile.am,
8564         plugins/gdb/gdb.init:
8565         Move gdb.init crom data to plugins/gdb
8567         * plugins/gdb/gdb.init,
8568         libanjuta/interfaces/libanjuta.idl,
8569         plugins/debug-manager/breakpoints.c,
8570         plugins/debug-manager/debugger.c,
8571         plugins/debug-manager/plugin.c,
8572         plugins/gdb/debugger.c,
8573         plugins/gdb/plugin.c:
8574         Support pending breakpoints
8575         Rewrite debugger states
8576         Split ianjuta_debugger_log into _enable_log and _disable_log
8578         * plugins/debug-manager/start.c,
8579         plugins/debug-manager/debug_tree.c,
8580         plugins/gdb/parser.c:
8581         Remove some useless lines
8583         * manuals/reference/libanjuta/tmpl/ianjuta-debugger-manager.sgml,
8584         manuals/reference/libanjuta/tmpl/ianjuta-debugger.sgml,
8585         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml:
8586         Update documentation
8588 2006-03-12 Naba Kumar <naba@gnome.org>
8590         * manuals/references/libanjuta/libanjuta.types: Fixed
8591         debug-manager name.
8592         
8593 2006-03-12 Sebastien Granjoux <seb.sfo@free.fr>
8595         * libanjuta/anjuta-debugger.c,
8596         libanjuta/anjuta-debugger.h:
8597         Remove those files
8598         
8599         * libanjuta/interfaces/libanjuta.idl,
8600         plugins/debug-mananger/breakpoints.c,
8601         plugins/debug-manager/debug_tree.c,
8602         plugins/debug-manager/debugger.c,
8603         plugins/debug-manager/plugin.c,
8604         plugins/debug-manager/registers.c,
8605         plugins/debug-manager/sharedlib.c,
8606         plugins/debug-manager/signal.c,
8607         plugins/debug-manager/stack_trace.c,
8608         plugins/debug-manager/start.c,
8609         plugins/debug-manager/watch.c,
8610         plugins/gdb/debugger.c,
8611         plugins/gdb/debugger.h,
8612         plugins/gdb/parser.c,
8613         plugins/gdb/parser.h,
8614         plugins/gdb/plugin.c:
8615         Move types definitions from libanjuta/anjuta-debugger.{ch}
8616         Rename types from AnjutaDebugger* to IAnjutaDebugger*
8617         
8618         * plugins/gdb/Makefile.am:
8619         Remove user interface from gdb plugin
8621 2006-03-12 Naba Kumar <naba@gnome.org>
8623         * merged from trunk (tag: anjuta-merged-from-trunk-to-new-debugger)
8625 2006-05-21  Johannes Schmid <jhs@cvs.gnome.org>
8627         Modified Patch from Marc Maurer <uwog@uwog.net>:
8628         * libegg/egg-entry-action.c: (entry_focus_in), (entry_focus_out):
8629         Fixes #342447
8630         
8631         * plugins/sourceview/Makefile.am:
8632         * plugins/sourceview/sourceview-cell.c:
8633         * plugins/sourceview/sourceview-cell.h:
8634         * plugins/sourceview/sourceview.c: 
8635         
8636         Implemented IAnjutaEditorCell
8638 2006-05-21  Naba Kumar  <naba@gnome.org>
8640         * libanjuta/interfaces/libanjuta.idl,
8641         plugins/document-manager/action-callbacks.c,
8642         plugins/document-manager/plugin.c,
8643         plugins/editor/print.c, plugins/editor/text_editor.c,
8644         plugins/editor/text_editor.h, plugins/editor/text_editor_prefs.c:
8645         Fixed zooming and added icons and shortcuts for zoom menu items.
8647 2006-05-21  Naba Kumar  <naba@gnome.org>
8649         * libanjuta/interfaces/libanjuta.idl: Fixed api documentation and
8650         whitespaces.
8652 2006-05-20  Johannes Schmid <jhs@cvs.gnome.org>
8654         * plugins/document-manager/anjuta-docman.c:
8655         Fixed close button reaction by setting the correct current editor
8657 2006-05-20  Johannes Schmid <jhs@cvs.gnome.org>
8659         Patch from Yang Hong <yanghong@ccoss.com.cn>:
8660         * plugins/document-manager/anjuta-docman.c
8661         - Fix close button, you can close any tab as you wish now.
8662         - Fadeout mime icon as the same as close image  
8664 2006-05-20  Johannes Schmid <jhs@cvs.gnome.org>
8666         Patch from Marc Maurer <uwog@uwog.net>
8667         * main.c: Compile fix when NLS is enabled
8668         
8669         AUTHORS: Added Marc
8671 2006-05-20  Naba Kumar  <naba@gnome.org>
8673         * tagmanager/tm_symbol.c: Prevent infinite recursive (detected
8674         while loading abiword-2.4.4/abi project).
8676 2006-05-18 Naba Kumar  <naba@gnome.org>
8678         * libanjuta/interfaces/libanjuta.idl,
8679         plugins/document-manager/action-callbacks.c,
8680         plugins/editor/print.c,
8681         plugins/editor/text_editor.c,
8682         plugins/editor/text_editor.h,
8683         plugins/editor/text_editor_prefs.c: Fixed zooming.
8684         
8685         * libanjuta/interfaces/libanjuta.idl: Defined IAnjutaEditorCell
8686         interface for character iteration and IAnjutaEditorAssist interface
8687         for autocompletions and editor tips.
8689 2006-05-18  Johannes Schmid <jhs@cvs.gnome.org>
8691         Patch from Günther Brammer <GBrammer@gmx.de>:
8692         * plugins/document-manager/anjuta-docman.c:
8693         Make tabs smaller but keep nice closing icon
8695         * plugins/document-manager/anjuta-docman.c:
8696         * plugins/document-manager/Makefile.am:
8697         
8698         Added nice mime-icons to the editor tabs
8700 2006-05-17  Johannes Schmid <jhs@cvs.gnome.org>
8702         * configure.in: Bumped version to 2.0.3 (pre-release increment)
8703         
8704         * plugins/symbol-browser/an_symbol_view.c:
8705         - Fixed crasher
8706         - Fixed symbol searching (Yang Hong (#341997))
8707         
8708         * plugins/devhelp/htmlview.c:
8709         Fixed devhelp plugin
8710         
8711         * plugins/build-basic-autotools/build-basic-autotools.c:
8712         * plugins/search/search-replace.c:
8713         * plugins/document-manager/anjuta-docman.c:
8714         
8715         Only add a marker to a line where it makes sense!
8717 === anjuta 2.0.2 ===
8719 2006-05-15  Naba Kumar  <naba@gnome.org>
8721         * configure.in: set required versions for
8722         gdl and glade3.
8723         
8724 2006-05-15  Johannes Schmid <jhs@cvs.gnome.org>
8726         * plugins/glade/plugin.c:
8727         Fixed signal connection for "gtk-doc-search"
8729 2006-05-15  Johannes Schmid <jhs@cvs.gnome.org>
8731         * NEWS: Set release date, add known issues
8732         
8733         * libanjuta/anjuta-shell.c:
8734         Use DEBUG_PRINT instead of g_warning (to be able to pass --g-fatal-warnings
8735         and debug other gtk-warnings/criticals)
8736         
8737         * plugins/build-basic-autotools/build-basic-autotools.c:
8738         Fixed gtk-critical (gtk_hash_table_destroy(NULL))
8739         
8740         * plugins/sourceview/anjuta-view.c:
8741         * plugins/sourceview/sourceview-args.c:
8742         * plugins/sourceview/sourceview-scope.c:
8743         * plugins/sourceview/sourceview-tags.c:
8744         Fixed gtk-criticals (gtk_source_language_get_mime_types)
8746 2006-05-13  Johannes Schmid <jhs@cvs.gnome.org>
8748         * pixmaps/Makefile.am:
8749         Add preferences_general.png
8750         
8751         * plugins/devhelp/plugin.c:
8752         Fixed some more realise things
8753         
8754         * plugins/message-view/anjuta-msgman.c:
8755         Support stock icons for message panes
8756         
8757         * plugins/search/search-replace.c:
8758         Use GTK_STOCK_FIND_AND_REPLACE instead of anjuta_icon
8759          
8760         * plugins/search/search-replace_backend.c:
8761         Fixed #341359
8762         
8763         * plugins/sourceview/anjuta-document.c:
8764         * plugins/sourceview/sourceview.c:
8765         Fixed finalise and tag completion
8766         
8767         * src/anjuta-app.c:
8768         Use preferences_general icon
8770 2006-05-13  Johannes Schmid <jhs@cvs.gnome.org>
8772         * pixmaps/Makefile.am:
8773         Fixed EXTRA_DIST
8775 2006-05-13  Johannes Schmid <jhs@cvs.gnome.org>
8777         * plugins/sourceview/sourceview-prefs.c:
8778         Fixed font & color handling
8779         
8780         * plugins/symbol-browser/an_symbol_view.c:
8781         Fixed crasher
8783 2006-05-13 Johannes Schmid <jhs@cvs.gnome.org>
8785         * plugins/macro/macros.xml:
8786         Fixed bug #341583 (Address of FSF)
8788 2006-05-12      Johannes Schmid <jhs@cvs.gnome.org>
8790         * src/main.c:
8791         Added "--no-client" option to start a new instance of anjuta instead of connecting to an old one.
8792         Update: Do it the cool way...
8793         
8794 2006-05-08      Johannes Schmid <jhs@cvs.gnome.org>
8796         * plugins/glade/plugin.c: (on_api_help), (activate_plugin):
8797         Implement gtk-api-help signals of glade3
8798         * configure.in: Bump to glade3 2.91.2
8799         
8800         * plugins/devhelp/plugin.c:
8801         Fixed some realize stuff in the devhelp plugin
8802         
8803         * plugins/sourceview/anjuta-document.c:
8804         fixed bug with scope completion
8806 2006-05-08      Johannes Schmid <jhs@cvs.gnome.org>
8808         * plugins/symbol-browser/an_symbol_view.c
8809         * plugins/symbol-browser/an_symbol_prefs.c
8810         * plugins/symbol-browser/an_symbol_prefs.h
8811         * global_tags/create_global_tags.sh:
8812         
8813         Automaticly create global tags on first startup
8815 2006-05-08  Massimo Cora'  <maxcvs@email.it>
8817         * configure.in:
8818         * plugins/project-wizard/templates/Makefile.am:
8819         * (added) plugins/project-wizard/templates/cpp-logo.png:
8820         * (added) plugins/project-wizard/templates/cpp.wiz:
8821         * (added) plugins/project-wizard/templates/cpp/*:
8823         Added a generic c++ template. It's a simple hello world.
8825 2006-05-07  Massimo Cora' <maxcvs@email.it>
8827         * plugins/symbol-browser/an_symbol_view.c:
8828         fixed a stupid crasher.
8830 2006-05-05  Johannes Schmid <jhs@cvs.gnome.org>
8832         * plugins/project-wizard/templates/wxwin/configure.in.tpl
8833         * plugins/project-wizard/templates/wxwin/src/Makefile.am:
8834         
8835         Fixed WxWidgets project type
8837 2006-05-04  Johannes Schmid <jhs@cvs.gnome.org>
8839         * plugins/devhelp/htmlview.c: 
8840         * plugins/devhelp/plugin.c:
8841         Maybe I fixed the crash this time! I could at least not reproduce anymore!
8842         
8843         * plugins/project-wizard/install.c:
8844         Don't set a message - thanks to seb
8846 2006-05-04  Johannes Schmid <jhs@cvs.gnome.org>
8848         * plugins/devhelp/htmlview.c: 
8849         * plugins/symbol-browser/an_symbol_view.c:
8850         
8851         There is a weird crash in gtk_idle which I still did not completly fix!
8852         
8853         * plugins/project-wizard/install.c:
8854         Default to success instead of failure
8856 2006-05-03  Johannes Schmid <jhs@cvs.gnome.org>
8858         * plugins/devhelp/htmlview.c:
8859         * plugins/devhelp/plugin.c:
8860         Fixed bug and libdevhelp issue!
8862         * plugins/project-wizard/install.c:
8863         Fixed message string!
8865 2006-05-03  Massimo Cora' <maxcvs@email.it>
8866        
8867         * plugins/symbol-browser/an_symbol_view.c:
8868         Avoiding to get keywords from sv_extract_type_qualifier_from_expr()
8870 2006-05-01  Johannes Schmid <jhs@cvs.gnome.org>
8872         * pixmaps/Makefile.am:
8873         * src/main.c:
8874         * anjuta.desktop.in.in
8875         
8876         GNOME Goal #2.1: Install theme-friendly icons
8878 2006-05-01  Johannes Schmid <jhs@cvs.gnome.org>
8880         * plugins/devhelp/htmlview.c: Reload page on reparent
8881         * plugins/document-manager/anjuta-docman.c:
8882         Present document-manager when document is selected in file-manager
8884 2006-05-01  Johannes Schmid <jhs@cvs.gnome.org>
8886         * plugins/symbol-broser/an_symbol_view.c:
8887         Fixed crasher in namespace exploration
8889 2006-05-01  Massimo Cora' <maxcvs@email.it>
8891         * configure.in:
8892         * plugins/valgrind/Makefile.am:
8894         Optional compiling of Valgrind plugin
8896 2006-05-01  Massimo Cora' <maxcvs@email.it>
8898         * plugins/symbol-browser/an_symbol_view.c:
8899         - modularized code. Marked with FIXME the parts which need improvement.
8900         - More comments.
8901     - Added basic namespace completion for Gtkmm type project:
8902     - namespace1::MyClass *class;
8903     - class-> [display]
8904     - Namespaces must be anyway improved.
8906 2006-05-01  Johannes Schmid <jhs@cvs.gnome.org>
8908         * plugins/devhelp/plugin.c: 
8909         Fixed up plugin unloading and show html widget on link selected
8910         
8911         * NEWS: Updated
8912         
8913 2006-05-01  Johannes Schmid <jhs@cvs.gnome.org>
8915         * plugins/devhelp/Makefile.am:
8916         * plugins/devhelp/anjuta-devhelp.plugin.in:
8917         * plugins/devhelp/htmlview.c:
8918         * plugins/devhelp/htmlview.h:
8919         * plugins/devhelp/plugin.c: 
8920         * plugins/devhelp/plugin.h:
8921         Reimplemeted devhelp plugin from scratch
8922         
8923         * plugins/symbol-browser/an_symbol_view.c: (sv_get_type_of_token):
8924         Fixed crasher
8926 2006-04-30  Johannes Schmid <jhs@cvs.gnome.org>
8928         * plugins/sourceview/sourceview-tags.c:
8929         complete some more tag types
8930         
8931         * plugins/valgrind/plugin.c:
8932         * plugins/valgrind/preferences.c:
8933         * plugins/valgrind/vggeneralprefs.c:
8934         
8935         Fixed lots of gtk warnings
8937 2006-04-29 Johannes Schmid <jhs@cvs.gnome.org>
8939         * plugins/sourceview/sourceview-scope.c:
8940         Implemented type-ahead for scope completion
8942 2006-04-28  Johannes Schmid <jhs@cvs.gnome.org>
8944         * manuals/C/Makefile.am:
8945         * manuals/Makefile.am:
8946         * plugins/document-manager/Makefile.am:
8947         * plugins/project-wizard/templates/anjuta-plugin/Makefile.am:
8948         * plugins/sourceview/Makefile.am:
8949         * tagmanager/c.c:
8950         
8951         Fixed distcheck
8952         
8953         * plugins/class-gen/goc_template_header: G_END_DECLS
8955 2006-05-27  Naba Kumar <naba@gnome.org>
8957         * (added) scintilla/LexSpice.cxx, scintilla/Editor.cxx,
8958         scintilla/KeyWords.cxx, scintilla/LexSQL.cxx, scintilla/LexTCL.cxx,
8959         scintilla/Makefile.am, scintilla/PlatGTK.cxx, scintilla/lexers.make,
8960         scintilla/include/HFacer.py, scintilla/include/SciLexer.h,
8961         scintilla/include/Scintilla.iface,
8962         (remove) scintilla/patches/pango-1.8.patch: Updated scintilla from
8963         cvs. Fixed compile flags. Removed outdated patches.
8965 2006-04-27  Johannes Schmid <jhs@cvs.gnome.org>
8967         * configure.in: Require libgladeui 2.91.1 (for glade3 plugin)
8969         * plugins/sourceview/anjuta-document.c:
8970         * plugins/sourceview/sourceview-args.c:
8971         * plugins/sourceview/sourceview-scope.c:
8972         
8973         Add End/Home keypresses and support completion if symbol start with '!' for example
8974         in an if statement
8976 2006-04-27 Massimo Cora' <maxcvs@email.it>
8978         * libanjuta/interfaces/libanjuta.idl:
8980         * plugins/sourceview/sourceview-scope.c:
8981         * plugins/sourceview/tag-window.c: 
8982         * plugins/sourceview/tag-window.h:
8983         * plugins/symbol-browser/an_symbol_view.c:
8984         * plugins/symbol-browser/an_symbol_view.h:
8985         * plugins/symbol-browser/plugin.c:
8986         
8987         added and implemented IAnjutaSymbolManager -> get_completions_at_position ()
8988         interface.
8989         Code and ideas for C/C++ new completion engine comes from IComplete written by
8990         Martin Stubenschrott <stubenschrott@gmx.net>.
8991         Currently the interface works only with GtkSourceView plugin.   
8992         
8993         * tagmanager/Makefile.am:
8994         * tagmanager/c.c: 
8995         * tagmanager/entry.h:
8996         * tagmanager/get.c:
8997         * tagmanager/get.h:
8998         * tagmanager/include/tm_file_entry.h:
8999         * tagmanager/include/tm_project.h:
9000         * tagmanager/include/tm_source_file.h:
9001         * tagmanager/include/tm_symbol.h:
9002         * tagmanager/include/tm_tagmanager.h:
9003         * tagmanager/include/tm_work_object.h:
9004         * tagmanager/include/tm_workspace.h:
9005         * tagmanager/parse.c:
9006         * tagmanager/read.c: 
9007         * tagmanager/read.h:
9008         * tagmanager/tm_project.c: 
9009         * tagmanager/tm_source_file.c: 
9010         * tagmanager/tm_workspace.c:
9011         
9012         Tagmanager can now parse a memory buffer and generate/update 
9013         tags into tm_workspace/tm_project on the fly, without using files.
9014         C/C++ is supported now.
9015         
9016 2006-04-26  Johannes Schmid <jhs@cvs.gnome.org>
9018         * plugins/sourceview/anjuta-document.c:
9019         * plugins/sourceview/sourceview-args.c:
9020         * plugins/sourceview/sourceview-scope.c:
9021         * plugins/sourceview/sourceview.c:
9022         
9023         Fixed some memory leaks and argument completion
9025 2006-04-25  Johannes Schmid <jhs@cvs.gnome.org>
9027         * plugins/glade/plugin.c:
9028         
9029         Fixed glade plugin build because of API changes in glade3
9031 2006-04-25  Johannes Schmid <jhs@cvs.gnome.org>
9033         * manuals/C/anjuta-faqs/anjuta-faqs.xml:
9034         Updated editor section
9035         
9036         * manuals/C/anjuta-manual/interface.xml:
9037         * manuals/C/anjuta-manual/preferences.xml:
9038         * manuals/C/anjuta-manual/projects.xml:
9039         Updated manual
9040         
9041         * plugins/editor/anjuta-editor.plugin.in:
9042         Better plugin name
9044 2006-04-23  Johannes Schmid <jhs@cvs.gnome.org>
9046         * configure.in:
9047         * plugins/editor/anjuta-editor.plugin.in:
9048         * plugins/sourceview/sourceview.plugin.in:
9050         Build both editors and let the user decide a runtime!
9051         
9052         * plugins/sourceview/sourceview-scope.c:
9053         Fixed bug in regex to allow test()-> completions
9055 2006-04-23  Johannes Schmid <jhs@cvs.gnome.org>
9057         * plugins/sourceview/anjuta-document.c:
9058         * plugins/sourceview/sourceview-args.c: 
9059         * plugins/sourceview/sourceview-scope.c:
9060         * plugins/sourceview/sourceview-tags.c:
9061         * plugins/sourceview/tag-window.c: 
9062         
9063         Improved callltip windows
9065 2006-04-22  Johannes Schmid <jhs@cvs.gnome.org>
9067         * src/anjuta-app.c: (on_session_save):
9068         Fixed bug in toolbar saving. Thanks to Ricardo Jose Ferrari
9069         <ricardo.jose.ferrari@gmail.com> for pointing this out!
9071 2006-04-22  Johannes Schmid <jhs@cvs.gnome.org>
9073         * libanjuta/anjuta-utils.c: 
9074         * plugins/cvs-plugin/cvs-execute.c:
9075         Off-by-one...
9077         * scintilla/LexInno.cxx:
9078         * scintilla/LexOpal.cxx:
9079         * scintilla/LexTCL.cxx:
9081         Added missing files from scintilla-update
9083 2006-04-22  Johannes Schmid <jhs@cvs.gnome.org>
9085         * configure.in:
9086         * manuals/C/Makefile.am:
9087         * manuals/C/anjuta-faqs/anjuta-faqs.xml:
9088         * manuals/C/anjuta-manual/Makefile.am:
9089         * manuals/C/anjuta-manual/anjuta-manual.xml:
9090         * manuals/C/anjuta-manual/build.xml:
9091         * manuals/C/anjuta-manual/debugger.xml:
9092         * manuals/C/anjuta-manual/execute.xml:
9093         * manuals/C/anjuta-manual/figures/anjuta-in-action.png:
9094         * manuals/C/anjuta-manual/figures/arguments.png:
9095         * manuals/C/anjuta-manual/figures/configure_dlg.png:
9096         * manuals/C/anjuta-manual/figures/file_menu.png:
9097         * manuals/C/anjuta-manual/figures/menu_main.png:
9098         * manuals/C/anjuta-manual/figures/menubar.png:
9099         * manuals/C/anjuta-manual/figures/new_file_wizard.png:
9100         * manuals/C/anjuta-manual/figures/project_info.png:
9101         * manuals/C/anjuta-manual/figures/scrshot.png:
9102         * manuals/C/anjuta-manual/figures/symbol_browser.png:
9103         * manuals/C/anjuta-manual/figures/tool-editor.png:
9104         * manuals/C/anjuta-manual/figures/toolbar_browser.png:
9105         * manuals/C/anjuta-manual/figures/toolbar_ext.png:
9106         * manuals/C/anjuta-manual/figures/toolbar_format.png:
9107         * manuals/C/anjuta-manual/figures/toolbar_main.png:
9108         * manuals/C/anjuta-manual/figures/toolbar_tags.png:
9109         * manuals/C/anjuta-manual/fileoperations.xml:
9110         * manuals/C/anjuta-manual/interface.xml:
9111         * manuals/C/anjuta-manual/introduction.xml:
9112         * manuals/C/anjuta-manual/preferences.xml:
9113         * manuals/C/anjuta-manual/projects.xml:
9114         * manuals/C/anjuta-manual/tools.xml:
9115         * manuals/Makefile.am:
9116         
9117         Updated manual and faq
9119         * scintilla/CallTip.cxx:
9120         * scintilla/CallTip.h:
9121         * scintilla/CellBuffer.cxx:
9122         * scintilla/CellBuffer.h:
9123         * scintilla/ContractionState.cxx:
9124         * scintilla/Document.cxx:
9125         * scintilla/Document.h:
9126         * scintilla/DocumentAccessor.cxx:
9127         * scintilla/Editor.cxx:
9128         * scintilla/Editor.h:
9129         * scintilla/ExternalLexer.cxx:
9130         * scintilla/Indicator.cxx:
9131         * scintilla/KeyMap.cxx:
9132         * scintilla/KeyWords.cxx:
9133         * scintilla/LexAU3.cxx:
9134         * scintilla/LexBash.cxx:
9135         * scintilla/LexCPP.cxx:
9136         * scintilla/LexCaml.cxx:
9137         * scintilla/LexCsound.cxx:
9138         * scintilla/LexEiffel.cxx:
9139         * scintilla/LexGui4Cli.cxx:
9140         * scintilla/LexHTML.cxx:
9141         * scintilla/LexLua.cxx:
9142         * scintilla/LexMSSQL.cxx:
9143         * scintilla/LexOthers.cxx:
9144         * scintilla/LexPOV.cxx:
9145         * scintilla/LexPython.cxx:
9146         * scintilla/LexRuby.cxx:
9147         * scintilla/LexSQL.cxx:
9148         * scintilla/LexVB.cxx:
9149         * scintilla/Makefile.am:
9150         * scintilla/PlatGTK.cxx:
9151         * scintilla/PropSet.cxx:
9152         * scintilla/RESearch.cxx:
9153         * scintilla/RESearch.h:
9154         * scintilla/ScintillaBase.cxx:
9155         * scintilla/ScintillaGTK.cxx:
9156         * scintilla/StyleContext.h:
9157         * scintilla/ViewStyle.cxx:
9158         * scintilla/ViewStyle.h:
9159         * scintilla/XPM.cxx:
9160         * scintilla/include/KeyWords.h:
9161         * scintilla/include/Platform.h:
9162         * scintilla/include/PropSet.h:
9163         * scintilla/include/SciLexer.h:
9164         * scintilla/include/Scintilla.h:
9165         * scintilla/include/Scintilla.iface:
9166         * scintilla/include/ScintillaWidget.h:
9167         * scintilla/lexers.make:
9169         Update to scintilla 1.68
9171         * src/anjuta-app.c:
9172         Only show help items which are really availible
9174         * plugins/cvs-plugin/cvs-callbacks.c
9175         * plugins/cvs-plugin/cvs-execute.c
9176         * plugins/cvs-plugin/subversion-callbacks.c:
9177         * libanjuta/anjuta-utils.c:
9178         Fixed utf-8 issues and fixed a crasher (yes, strings tend to be longer than 2048...)
9180 2005-04-22 Sebastien Granjoux <seb.sfo@free.fr>
9182         * plugins/project-wizard/install.c,
9183         * plugins/project-wizard/autogen.c:
9184         Add error messages if using a read only directory
9185         Improve fix for bug #339296
9187 2006-04-22  Johannes Schmid <jhs@cvs.gnome.org>
9189         * libanjuta/interfaces/libanjuta.idl:
9190         * plugins/document-manager/action-callbacks.c:
9191         * plugins/document-manager/plugin.c:
9192         * plugins/editor/text_editor.c:
9193         Added IAnjutaEditorGoto 
9195         * plugins/editor/aneditor.cxx:
9196         * plugins/editor/aneditor.h:
9197         * plugins/editor/text_editor.h:
9198         * plugins/editor/text_editor_prefs.c:
9199         
9200         Fixed #305076
9202 2006-04-21  Johannes Schmid <jhs@cvs.gnome.org>
9204         * libanjuta/interfaces/libanjuta.idl:
9205         * plugins/document-manager/action-callbacks.c:
9206         * plugins/document-manager/anjuta-docman.c:
9207         * plugins/document-manager/plugin.c:
9208         * plugins/editor/text_editor.c: 
9209         Added and implemented IAnjutaEditorComment and IAnjutaEditorZoom
9210         
9211         * plugins/sourceview/sourceview.c:
9212         * plugins/sourceview/sourceview.glade:
9213         Fixed some uft-8 issues and added a preference option
9214         to enable/disable gnome-vfs monitoring
9215         
9216         * scintilla/Makefile.am:
9217         * scintilla/include/Makefile.am:
9218         Fixed build
9220 2006-04-20  Massimo Cora' <maxcvs@email.it>
9222         * libanjuta/interfaces/libanjuta.idl:
9223         Remove get_current_pos () because we have get_position()
9225 2006-04-20  Johannes Schmid <jhs@cvs.gnome.org>
9227         * NEWS: Updated
9228         * plugins/sourceview/tag-window.c:
9229         Don't close window on PageUp/PageDown
9231 2006-04-20 Johannes Schmid <jhs@cvs.gnome.org>
9233         * data/Makefile.am:
9234         * manuals/reference/libanjuta/Makefile.am:
9235         
9236         Some build fixes
9237         
9238         * src/Makefile.am:
9239         * src/bacon-message-connection.c: 
9240         * src/bacon-message-connection.h: (both from gedit)
9241         * src/main.c:
9242         
9243         Fixed #312319 (Opening files when Anjuta is already open)
9245 2006-04-18  Johannes Schmid <jhs@cvs.gnome.org>
9247         * TODO.tasks: Updated
9248         * plugins/sourceview/anjuta-view.c: 
9249         * plugins/sourceview/anjuta-view.h:
9250         * plugins/sourceview/sourceview.c: 
9251         
9252         * configure.in: Fix --enable-plugin-scintilla
9253         
9254         Added char_added signal
9256 2006-04-18  Johannes Schmid <jhs@cvs.gnome.org>
9258         * libanjuta/anjuta-utils.c: (anjuta_util_diff):
9259         
9260         Fixed diff for utf8
9261         
9262         * plugins/sourceview/sourceview.c:
9263         Fixed VFS monitoring (still a bit buggy)
9264         
9265         * plugins/sourceview/sourceview-args.c:
9266         * plugins/sourceview/tag-window.c: 
9267         
9268         Better sizing for the popup-window
9270 2006-04-17  Johannes Schmid <jhs@cvs.gnome.org>
9272         * plugins/project-wizard/templates/gnome/src/main.c:
9273         * plugins/project-wizard/templates/gnome/src/project.glade:
9274         * plugins/project-wizard/templates/gtk/src/main.c: 
9275         * plugins/project-wizard/templates/gtk/src/project.glade:
9276         * plugins/project-wizard/templates/gtkmm/src/main.cc:
9277         
9278         Fixed up GLADE_FILE definition in project types and fixed bug #334546
9279         
9280 2006-04-17  Kjartan Maraas  <kmaraas@gnome.org>
9282         * configure.in: More removal of obsoleteness.
9283         * po/no.po:
9285 2006-04-12  Johannes Schmid <jhs@cvs.gnome.org>
9287         * ROADMAP:
9288         * libanjuta/anjuta-preferences.c: 
9289         * libanjuta/anjuta-utils.c: 
9290         * libanjuta/anjuta-utils.h:
9291         * plugins/message-view/message-view.c:
9292         
9293         Changed color functions and moved convert_color to anjuta-utils.h
9294         
9295         * plugins/message-view/anjuta-message-manager-plugin.glade:
9296         GnomeColorPicker -> GtkColorButton (bug #309154)
9297         
9298         * plugins/sourceview/plugin.c:
9299         * plugins/sourceview/sourceview-prefs.c:
9300         * plugins/sourceview/sourceview.glade:
9301         Added color and font preferences
9303         * plugins/sourceview/sourceview-tags.c:
9304         Only show as much choices as configured in preferences
9306 2006-04-11  Johannes Schmid <jhs@cvs.gnome.org>
9308         * ROADMAP, NEWS: Updated (we are far behind ;-)
9309         * plugins/document-manager/plugin.c: Hide Folding menu items if not supported
9311 2006-04-11  Johannes Schmid <jhs@cvs.gnome.org>
9313         * configure.in:
9314         * plugins/editor/Makefile.am:
9315         * scintilla/Makefile.am
9316         
9317         Build sourceview on 2.14, scintilla on 2.12 and make it user configurable at build time
9318         
9319         * global-tags/Makefile.am:
9320         * global-tags/create_global_tags.sh:
9321         * plugins/symbol-browser/an_symbol_prefs.c:
9322         * plugins/symbol-browser/anjuta-symbol-browser-plugin.glade:
9323         * plugins/symbol-browser/plugin.h:
9324         * tagmanager/include/tm_workspace.h:
9325         * tagmanager/tm_workspace.c:
9326         
9327         Fixed symbol-browser prefs and move global tags generation from installtion to
9328         preferences to make the life easier for distributers and to allow updates after installtion
9330         * plugins/document-manager/action-callbacks.c: 
9331         * plugins/document-manager/action-callbacks.h:
9332         * plugins/document-manager/anjuta-document-manager.ui:
9333         * plugins/document-manager/indent-util.c:
9334         * plugins/document-manager/plugin.c:
9335         * plugins/editor/text_editor.c:
9336         
9337         Moved indent stuff to document-manager
9338         
9339         * plugins/sourceview/anjuta-view.c: 
9340         * plugins/sourceview/sourceview-args.c: 
9341         * plugins/sourceview/sourceview-scope.c:
9342         * plugins/sourceview/sourceview-tags.c: 
9343         * plugins/sourceview/sourceview.c:
9344         
9345         Fixed several bugs
9346         
9347         * plugins/sourceview/sourceview.plugin (removed):
9348         * plugins/sourceview/sourceview.plugin.in:
9349         Editor is not user-activatible
9350         
9351         * plugins/sourceview/sourceview.png:
9352         Updated icon
9354 2006-04-08  Johannes Schmid <jhs@cvs.gnome.org>
9356         * src/anjuta-app.c: Fixed crasher on plugin unloading
9358 2006-04-06  Johannes Schmid <jhs@cvs.gnome.org>
9360         * plugins/sourceview/sourceview.c
9361         * plugins/sourceview/sourceview-args.c
9362         * plugins/sourceview/sourceview-args.h:
9363         
9364         Polished argument completion
9366 2006-04-05  Johannes Schmid <jhs@cvs,gnome.org>
9368         * plugins/message-view/anjuta-msgman.c:
9369         * plugins/message-view/plugin.c: (ianjuta_msgman_set_current_view):
9370         
9371         Show message pane on switch (does not work, anjuta_shell needs a fix)
9372         
9373         * plugins/sourceview/Makefile.am:
9374         * plugins/sourceview/anjuta-view.c: (find_tag_window),
9375         * plugins/sourceview/sourceview-args.c: 
9376         * plugins/sourceview/sourceview-args.h:
9377         * plugins/sourceview/sourceview-private.h:
9378         * plugins/sourceview/sourceview-scope.c: 
9379         (sourceview_scope_update), (sourceview_scope_filter_keypress):
9380         * plugins/sourceview/sourceview-tags.c:
9381         * plugins/sourceview/sourceview.c:
9382         * plugins/sourceview/tag-window.c:
9383         * plugins/sourceview/tag-window.h:
9384         
9385         Added scope and argument completion
9387 2006-04-03  Johannes Schmid <jhs@gnome.org>
9389         * TODO.tasks
9390         * src/anjuta-app.c: (on_add_merge_widget), (on_session_save),
9391         (on_widget_remove):
9392         Save toolbar state
9394         * plugins/sourceview/sourceview.c: (iselect_clear):
9395         Make "Delete"-key working
9397         * configure.in: #336389
9399 2006-04-03  Johannes Schmid <jhs@gnome.org>
9401         * plugins/sourceview/Makefile.am:
9402         * plugins/sourceview/anjuta-view.c:
9403         * plugins/sourceview/plugin.c: 
9404         * plugins/sourceview/sourceview-private.h:
9405         * plugins/sourceview/sourceview-scope.c:
9406         * plugins/sourceview/sourceview-scope.h:
9407         * plugins/sourceview/sourceview-tags.c: 
9408         * plugins/sourceview/sourceview-tags.h:
9409         * plugins/sourceview/sourceview.c:
9410         * plugins/sourceview/sourceview.h:
9411         * plugins/sourceview/tag-window.c:
9412         
9413         - fixed goto_file_line
9414         - scroll to cursor on undo/redo
9415         - show correct popup-menu
9416         - scope completion (not ready yet)
9418 2006-04-03  Johannes Schmid <jhs@gnome.org>
9420         * plugins/sourceview/plugin.c: 
9421         * plugins/sourceview/sourceview-tags.c:
9422         * plugins/sourceview/sourceview.c: 
9423         * plugins/sourceview/sourceview.h:
9424         * plugins/sourceview/tag-window.c:
9425         
9426         Fixed some GObject stuff and use proper AnjutaSymbolManager interface
9428 2006-04-03  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
9430         * plugins/sourceview/sourceview.c:
9431         Fixed next/previous bookmark.
9432         Toggled bookmark (set/unset).
9434 2006-04-03  Johannes Schmid <jhs@gnome.org>
9436         * plugins/document-manager/action-callbacks.c:
9437         Fixed Gtk-Warning in goto_line
9438         
9439         * plugins/sourceview/Makefile.am:
9440         * plugins/sourceview/anjuta-document.c:
9441         * plugins/sourceview/anjuta-view.c: 
9442         * plugins/sourceview/anjuta-view.h:
9443         * plugins/sourceview/sourceview-autocomplete.c:
9444         * plugins/sourceview/sourceview-autocomplete.h:
9445         * plugins/sourceview/sourceview-private.h:
9446         * plugins/sourceview/sourceview-tags.c:
9447         * plugins/sourceview/sourceview-tags.h:
9448         * plugins/sourceview/sourceview.c:
9449         * plugins/sourceview/tag-window.c:
9450         * plugins/sourceview/tag-window.h:
9451         Created a nice API for tag and completion windows
9452         
9453         * plugins/sourceview/sourceview-print.h:
9454         * plugins/sourceview/sourceview-print.c:
9455         Added printing
9456                 
9457 2006-04-02  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
9459         * plugins/sourceview/sourceview.c:
9460         Fixed typo (Sort bookmarks).
9461         
9462 2006-04-01  Johannes Schmid <jhs@gnome.org>
9464         * plugins/sourceview/anjuta-document.c:
9465         * plugins/sourceview/anjuta-document.h:
9466         * plugins/sourceview/anjuta-view.c:
9467         * plugins/sourceview/anjuta-view.h:
9468         * plugins/sourceview/sourceview-autocomplete.c:
9469         * plugins/sourceview/sourceview-autocomplete.h:
9470         * plugins/sourceview/sourceview-prefs.c:
9471         * plugins/sourceview/sourceview-prefs.h:
9472         * plugins/sourceview/sourceview-private.h:
9473         * plugins/sourceview/sourceview-tags.c:
9474         * plugins/sourceview/sourceview-tags.h:
9475         * plugins/sourceview/sourceview.c:
9476         * plugins/sourceview/sourceview.glade:
9477         * plugins/sourceview/tag-window.c: 
9478         * plugins/sourceview/tag-window.h:
9479         
9480         Improved code complete and autocomplete
9482 2006-04-01  Johannes Schmid <jhs@gnome.org>
9484         * plugins/sourceview/Makefile.am:
9485         * plugins/sourceview/bookmark.png:
9486         * plugins/sourceview/marker-attentive.png:
9487         * plugins/sourceview/marker-basic.png:
9488         * plugins/sourceview/marker-intense.png:
9489         * plugins/sourceview/marker-light.png:
9490         * plugins/sourceview/sourceview.c: 
9491         
9492         Added pixmaps for all marker types and show bookmarks
9493         
9494         * configure.in
9495         * plugins/sourceview/Makefile.am:
9496         Build sourceview on 2.14 only
9498 2006-03-31  Johannes Schmid <jhs@gnome.org>
9500         * plugins/sourceview/Makefile.am:
9501         * plugins/sourceview/anjuta-document.c:
9502         * plugins/sourceview/anjuta-view.c:
9503         * plugins/sourceview/anjuta-view.h:
9504         * plugins/sourceview/sourceview-autocomplete.c:
9505         * plugins/sourceview/sourceview-private.h:
9506         * plugins/sourceview/sourceview-tags.c:
9507         * plugins/sourceview/sourceview-tags.h:
9508         * plugins/sourceview/sourceview.c: 
9509         * plugins/sourceview/tag-window.c:
9510         * plugins/sourceview/tag-window.h:
9511         
9512         Added code completion with tag manager to the editor and fixed a save_as bug
9514 2006-03-31  Johannes Schmid <jhs@gnome.org>
9516         * src/main.c: Revert patch from Rob to allow building with
9517         Gnome 2.12
9518         * configure.in: Require at least 2.12 libraries
9520 2006-03-29 Yang Hong <yanghong@ccoss.com.cn>
9522         reviewed by: Johannes Schmid <jhs@gnome.org> (fixed typo)
9524         * plugins/project-wizard/templates/anjuta-plugin/Makefile.am:
9525         Improve anjuta-plugin project template: Added missed files dist tarball
9526         (make dist)
9528         * plugins/project-wizard/templates/anjuta-plugin/src/plugin.glade: Fixed
9529         typo
9531 2006-03-28  Yang Hong <yanghong@ccoss.com.cn>
9533         reviewed by: Johannes Schmid <jhs@gnome.org>
9535         * plugins/project-wizard/templates/anjuta-plugin/configure.in.tpl
9536         plugins/project-wizard/templates/anjuta-plugin/po/POTFILES.in
9537         plugins/project-wizard/templates/anjuta-plugin/src/plugin.c
9538         plugins/project-wizard/templates/anjuta-plugin/src/plugin.glade:
9539         
9540         Improve anjuta-plugin project template. Also fix for #322744
9542 2006-03-27  Johannes Schmid <jhs@gnome.org>
9544         * plugins/sourceview/sourceview-private.h:
9545         plugins/sourceview/sourceview.c:
9546         
9547         Added basic bookmark support
9549 2006-03-27  Johannes Schmid <jhs@gnome.org>
9551         * TODO.tasks:
9552         Updated
9553         
9554         Patch from Rob Bradfort <robster@debian.org>:
9555         * src/main.c: (get_command_line_args), (main):
9556         Migration from popt to GOption
9557         
9558 2006-03-26 Naba Kumar  <naba@gnome.org>
9560         * plugins/document-manager/anjuta-docman.c: Fixed close icon button
9561         size to scale itself with theme.
9563 2006-03-26 Naba Kumar  <naba@gnome.org>
9565         * plugins/file-manager/an_file_view.c,
9566         plugins/symbol-browser/an_symbol_view.c: Destroy tooltip timers
9567         when symbolview and fileview objects are destroyed to avoid crashes
9568         after the plugins are disabled.
9570 2006-03-26 Naba Kumar <naba@gnome.org>
9572         * Makefile.am,  po/POTFILES.skip, (removed) anjuta_dialogs_strings.h:
9573         Deleted unused file.
9574         
9575         * plugins/glade/plugin.c: Be able to close glade plugin when there
9576         there is no glade project loaded.
9577         
9578         * plugins/sourceview/sourceview.plugin,
9579         plugins/sourceview/sourceview.plugin.in: Give a better plugin name.
9581 2006-03-23  Naba Kumar  <naba@gnome.org>
9583         * plugins/editor/print.c: Fixed a bug where some sections of
9584         printed/previewed text is not highlighted.
9585         
9586 2006-03-20  Johannes Schmid <jhs@gnome.org>
9588         * libanjuta/interfaces/libanjuta.idl:
9589         Added IAnjutaPrint
9590         * plugins/devhelp/plugin.c: Work with any devhelp version (hopefully)
9591         as we do not use private apis. Show help window and startup because it does 
9592         not survive gdl
9593         
9594         * plugins/document-manager/action-callbacks.c:
9595         plugins/editor/Makefile.am:
9596         plugins/editor/text_editor.c:
9597         plugins/editor/print.c:
9598         plugins/editor/print.h:
9599         
9600         Fixed printing (nobody has missed it BTW ;-)
9601         
9602         * plugins/sourceview/sourceview.c:
9603         Fixed a crasher
9605 2006-03-20 Naba Kumar <naba@gnome.org>
9607         * configure.in, plugins/devhelp/plugin.c: Be able to build with
9608         devhelp >= 0.9 < 0.11 versions.
9609         
9610 2006-03-20  Johannes Schmid <jhs@gnome.org>
9612         * plugins/sourceview/anjuta-document-loader.c
9613         plugins/sourceview/sourceview.c:
9614         
9615         Fixed encoding bugs
9617 2006-03-20  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
9619         * plugins/sourceview/sourceview.c, plugins/search/search-replace_backend.c :
9620         Fixed bug (line position)
9621         Give the good line position whatever the active editor.
9623 2006-03-19  Ilkka Tuohela  <hile@iki.fi>
9625         * configure.in: Added fi to ALL_LINGUAS
9627 2006-03-19  Johannes Schmid <jhs@gnome.org>
9629         * plugins/sourceview/anjuta-document-loader.c:
9630         replace gnome_vfs_get_mime_type_for_name_and data
9632         * plugins/build-basic-autotools/build-basic-autotools.c:
9633         Fixed #335142
9635 2006-03-17  Johannes Schmid <jhs@gnome.org>
9637         * plugins/editor/editor.glade:
9638         Added style-editor again after it got lost somehow
9640 2006-03-17  Johannes Schmid <jhs@gnome.org>
9642         * plugins/devhelp/plugin.c: Updated to work with devhelp-0.11
9643         configure.in: require devhelp 0.11
9644         
9645         Post 0.11 devhelp versions (CVS) do not work because of an API change...
9647         plugins/build-basic-autotools/build-basic-autotools.c:
9648         forgot a an installtion callback for the "install as root"-feature
9650 2006-03-17  Massimo Cora' <maxcvs@email.it>
9652         reviewed by: Johannes Schmid <jhs@gnome.org>
9654         * plugins/class-gen/anjuta-class-gen-plugin.glade
9655         plugins/class-gen/class_gen.c 
9656         plugins/class-gen/goc_template_header
9657         plugins/class-gen/goc_template_source
9658         
9659         Fixed bug #334663
9661 2006-03-16  Johannes Schmid <jhs@gnome.org>
9663         * plugins/sourceview/sourceview.c:
9664         Fixed "save-point" signal for undo actions
9666 2006-03-16  Massimo Cora' <maxcvs@email.it>
9667         
9668         reviewed by: Johannes Schmid <jhs@gnome.org>
9669         
9670         * plugins/document-manager/anjuta-docman.c:
9671         Implement tab drag and drop
9673 2006-03-16  Johannes Schmid <jhs@gnome.org>
9675         * plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin.glade:
9676         plugins/build-basic-autotools/build-basic-autotools.c:
9677         
9678         Implemented "install as root"-feature (#321455)
9680 2006-03-16  Johannes Schmid <jhs@gnome.org>
9682         * mime/.cvsignore
9683         plugins/sourceview/.cvsignore
9684         plugins/tools/scripts/.cvsignore:
9685         Added/extended .cvsignore files
9686         
9687         * plugins/sourceview/sourceview-autocomplete.c:
9688         plugins/sourceview/sourceview-autocomplete.h:
9689         plugins/sourceview/sourceview-prefs.c:
9690         plugins/sourceview/sourceview-private.h:
9691         plugins/sourceview/sourceview.glade:
9692         Autcomplete just works(tm) now and respects preferences
9693         
9694         * plugins/sourceview/sourceview.c: (ieditor_get_current_word):
9695         Use better algorithm from autocomplete
9697 2006-03-15  Johannes Schmid <jhs@gnome.org>
9699         * src/anjuta-app.c:
9700         Fixed bug #304495
9702 2006-03-15  Johannes Schmid <jhs@gnome.org>
9704         * libanjuta/interfaces/libanjuta.idl:
9705         plugins/class-gen/class_gen.c:
9706         plugins/file-wizard/file.c: (on_new_file_okbutton_clicked):
9707         plugins/project-manager/plugin.c:
9708         
9709         Allow to add multiple source files (#320191)
9710         
9711         * configure.in: Require gnome-build 0.1.3
9713 2006-03-14  Johannes Schmid <jhs@gnome.org>
9715         * plugins/macro/macro-utils.c: Fixed bug #333606
9716         * plugins/file-wizard/file.c: Fixed bug #333601
9718 2006-03-13  Johannes Schmid <jhs@gnome.org>
9720         * plugins/sourceview/sourceview_autocomplete.c
9721         plugins/sourceview/sourceview_autocomplete.h
9722         plugins/sourceview/sourceview.c
9723         plugins/sourceview/sourceview-private.h
9724         plugins/sourceview/sourceview-prefs.c:
9725         
9726         Cleaned up and fixed several issues
9727         
9728 2006-03-13  Johannes Schmid <jhs@gnome.org>
9730         * plugins/sourceview/Makefile.am:
9731         plugins/sourceview/sourceview-autocomplete.c
9732         plugins/sourceview/sourceview-autocomplete.h:
9733         plugins/sourceview/sourceview-prefs.c: (sourceview_prefs_init):
9734         plugins/sourceview/sourceview-private.h:
9735         plugins/sourceview/sourceview.c:
9736         
9737         Added (buggy) autocomplete feature to sourceview
9738         
9739 2006-03-12 Naba Kumar <naba@gnome.org>
9741         * libanjuta/anjuta-preferences.c, libanjuta/anjuta-preferences.h,
9742         libanjuta/anjuta-session.c: Added API docs.
9744 2006-03-12 Naba Kumar <naba@gnome.org>
9746         * TODO.tasks: Added couple of tasks.
9747         * libanjuta/interfaces/anjuta-idl-compiler.pl: Delay type normalization,
9748         Register private class as early as possible so that members could
9749         point to self class. Code clean up.
9751 2006-03-12 Naba Kumar <naba@gnome.org>
9753         * po/POTFILES.in, po/POTFILES.skip: Updated.
9755 2006-03-11 Naba Kumar <naba@gnome.org>
9757         * libanjuta/anjuta-shell.c,
9758         plugins/document-manager/anjuta-docman.c,
9759         plugins/document-manager/plugin.c,
9760         plugins/symbol-browser/an_symbol_search.c,
9761         plugins/valgrind/vgrule-list.c: Use correct signal names while
9762         creating them.
9763         
9764         * libanjuta/interfaces/anjuta-idl-compiler.pl: Generate correct
9765         signal names and fixed enum IANJUTA_TYPE_* macro.
9767 2006-03-08  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
9769         * plugins/sourceview/sourceview.c, plugins/sourceview/sourceview-private.h,
9770         plugins/search/search-replace.c :
9771         Fixed bug (Bookmark the good line).
9772         Search & Replace (Mark all matched strings).
9773         
9774 2006-03-09  Johannes Schmid <jhs@gnome.org>
9776         * libanjuta/anjuta-encodings.c: (anjuta_encodings_init):
9777         Completed changes from yesterday
9778         
9779         * plugins/document-manager/anjuta-document-manager.glade:
9780         plugins/editor/editor.glade
9781         plugins/editor/plugin.c: (activate_plugin)
9782         plugins/editor/text_editor.c
9783     plugins/sourceview/Makefile.am
9784         plugins/sourceview/plugin.c: (sourceview_plugin_activate)
9785         plugins/sourceview/sourceview.glade:
9786         Completed preference changes
9788 2006-03-08  Johannes Schmid <jhs@gnome.org>
9790         * libanjuta/anjuta-encodings.c: (anjuta_encodings_init)
9791         plugins/search/plugin.c: (activate_plugin):
9792         
9793         Removed Gtk-Criticals
9794         
9795         * plugins/document-manager/anjuta-document-manager.glade:
9796         plugins/document-manager/plugin.c: (on_docman_auto_save),
9797         (on_gconf_notify_timer), (prefs_init):
9798     plugins/document-manager/plugin.h:
9799         plugins/editor/text_editor.c: (text_editor_instance_init),
9800         (text_editor_dispose):
9801         plugins/editor/text_editor.h:
9802         plugins/editor/text_editor_cbs.c:
9803         plugins/editor/text_editor_cbs.h:
9804         plugins/editor/text_editor_prefs.c: (text_editor_prefs_init):
9805         plugins/glade/plugin.c: (activate_plugin):
9806         plugins/sourceview/sourceview-prefs.c: (sourceview_prefs_init):
9807         plugins/sourceview/sourceview-private.h:
9808         plugins/sourceview/sourceview.c: (on_menu_popup),
9809         (sourceview_new), (ifile_open), (ifile_savable_save),
9810         (ifile_savable_save_as), (ieditor_set_popup_menu),
9811         (ieditor_get_filename), (imark_mark):
9813     Moved autosave from editor to document manager and fixed some things in 
9814     Sourceview plugin
9816 2006-03-08  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
9818         * plugins/search/anjuta-search.glade :
9819         New order's buttons - Renamed "Forward" to "Find" (bug #306970)
9820         plugins/search/search-replace_bachend.c: Fixed a crash bug.
9821         plugins/search/search-replace.c : Fixed bug.
9822         
9823 2006-03-08  Johannes Schmid <jhs@gnome.org>
9825     * plugins/search/anjuta-search.glade
9826     Fixed widget names (glade is a bit stupid on copying widgets to other files)
9828 2006-03-07  Johannes Schmid <jhs@gnome.org>
9830         * plugins/document-manager/action-callbacks.c
9831         plugins/document-manager/anjuta-document-manager.glade
9832         plugins/document-manager/plugin.c: (prefs_init),
9833         (activate_plugin):
9834         plugins/editor/Makefile.am:
9835         plugins/editor/editor.glade:
9836         plugins/editor/plugin.c: (on_style_button_clicked),
9837         (activate_plugin), (dispose):
9838         plugins/editor/style-editor.c:
9839         
9840         Startet to seperate document-manager and editor preferences
9842         * plugins/search/Makefile.am:
9843         plugins/search/anjuta-search.glade:
9844         plugins/search/search-replace.c:
9845         
9846         Moved search GUI to search-plugin
9847                 
9848         * plugins/sourceview/sourceview-prefs.c:
9849         plugins/sourceview/sourceview-prefs.h:
9850         plugins/sourceview/sourceview-private.h:
9851         plugins/sourceview/sourceview.c: 
9852         plugins/sourceview/sourceview.h:
9853         plugins/sourceview/Makefile.am:
9854         plugins/sourceview/anjuta-document.h:
9855         plugins/sourceview/anjuta-view.c: (anjuta_view_init):
9856         plugins/sourceview/plugin.c: 
9857         
9858         Added some preferences to sourceview and fixed vfs_monitor
9859         
9860         * tagmanager/c.c: (parseParens): 
9861         Removed annoying debug message
9862         
9863         * libanjuta/interfaces/libanjuta.idl: 
9864         Removed IAnjutaEditorFactory::create_style_editor()
9866 2006-03-07  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
9868         * plugins/sourceview/sourceview.c, plugins/search/search-replace.c :
9869         Search : Bookmark all matched lines.
9871 2006-03-06  Johannes Schmid <jhs@gnome.org>
9873         * plugins/class-gen/anjuta-class-gen.plugin.in
9874         plugins/file-loader/plugin.c: (sort_wizards)
9875         (on_create_submenu), (activate_plugin)
9876         plugins/file-wizard/anjuta-file-wizard.plugin.in
9877         plugins/glade/anjuta-glade.plugin.in
9878         plugins/project-import/anjuta-project-import.plugin.in
9879         plugins/project-wizard/anjuta-project-wizard.plugin.in:
9880         
9881         Changed File->Wizard to File->New and changed some wizard titles. Wizards are 
9882         sorted alphabeticly
9883         
9884         * plugins/project-wizard/templates/mkfile.wiz:
9885         Use configured project directory instead of ~/myproject
9886         
9887         * plugins/sourceview/sourceview.c: (sourceview_apply_prefs),
9888         (ifile_open):
9889         Show markers (again) and monitor uri
9891 2006-03-06  Naba Kumar  <naba@gnome.org>
9893         * libanjuta/interfaces/anjuta-idl-compiler.pl: Generate struct
9894         typedefs separately so that forward linking would work.
9895         e.g: typedef sturct _Foo Foo; struct _Foo { Foo *prev };
9897 2006-03-05  Naba Kumar  <naba@gnome.org>
9899         * libanjuta/interfaces/anjuta-idl-compiler.pl: Added support for
9900         passing Enums and Structs in signals. Define struct _Name in
9901         generated code, so that forward referencing.
9902         e.g: typedef sturct _Foo { strutct _Foo *prev } Foo;
9903         
9904         * libanjuta/interfaces/libanjuta.idl: Fixed typo.
9905         
9906 2006-03-05  Naba Kumar  <naba@gnome.org>
9908         * libanjuta/interfaces/anjuta-idl-compiler.pl: Added typedef
9909         support. Generate GType definitions for enums in generated codes
9910         so that enums could be passed as signal params.
9911         
9912 2006-03-04  Naba Kumar  <naba@gnome.org>
9914         * plugins/document-manager/*, plugins/print/*, plugins/search/*:
9915         Restored cvs-moved revision files. They were originally marked
9916         deleted at their older locations. Now they are restored at
9917         their new locations. The changeset is one that was committed
9918         as part of document-manager, editor, search and print plugins
9919         separation from editor plugin.
9920         
9921 2006-03-03  Johannes Schmid <jhs@gnome.org>
9923         * plugins/sourceview/*:
9924         Reimplemented sourceview plugin reusing much code from gedit. Thanks to Paolo Borelli & Maggi for 
9925         poiting this out!
9927 2006-03-04  Naba Kumar  <naba@gnome.org>
9929         * plugins/gdb/*: Deleted removed files (see previous changlog
9930         entry for files list).
9931         
9932 2005-03-01 Sebastien Granjoux <seb.sfo@free.fr>
9934         * plugins/debug-mananger/breakpoints.c,
9935         plugins/debug-manager/breakpoints.h,
9936         plugins/debug-manager/debug_tree.c,
9937         plugins/debug-manager/debug_tree.h,
9938         plugins/debug-manager/info.c,
9939         plugins/debug-manager/info.h,
9940         plugins/debug-manager/locals.c,
9941         plugins/debug-manager/locals.h,
9942         plugins/debug-manager/memory.c,
9943         plugins/debug-manager/memory.h,
9944         plugins/debug-manager/registers.c,
9945         plugins/debug-manager/registers.h,
9946         plugins/debug-manager/sharedlib.c,
9947         plugins/debug-manager/sharedlib.h,
9948         plugins/debug-manager/signal.c,
9949         plugins/debug-manager/signal.h,
9950         plugins/debug-manager/stack_trace.c,
9951         plugins/debug-manager/stack_trace.h,
9952         plugins/debug-manager/watch.c,
9953         plugins/debug-manager/watch.h,
9954         plugins/debug-manager/Makefile.am:
9955         Move from gdb plugin to debug manager plugin
9957         * plugins/debug-manager/anjuta-debug-manager.glade,
9958         plugins/debug-manager/anjuta-debug-manager.ui:
9959         Move all user interface from gdb to debug manager
9961         * plugins/debug-manager/utilities.c,
9962         plugins/debug-manager/utilities.h:
9963         Remove some unused code
9964         Add useful code from gdb plugin
9966         * plugins/debug-manager/start.c,
9967         plugins/debug-manager/start.h:
9968         Include code of attach_process
9969         Add more code to start the debugger
9971         * plugins/debug-manager/plugin.c,
9972         plugins/debug-manager/plugin.h,
9973         plugins/debug-manager/anjuta-debug-manager.plugin.in:
9974         Rename IAnjutaDebuggerManager to IAnjutaDebugManager
9976         * plugins/debug-manager/debugger.c,
9977         plugins/debug-manager/debugger.h:
9978         Implement a queue of debugger command
9980         * plugins/gdb/actions.c,
9981         plugins/gdb/actions.h,
9982         plugins/gdb/watch_cbs.c,
9983         plugins/gdb/watch_cbs.h,
9984         plugins/gdb/watch_gui.c,
9985         plugins/gdb/watch_gui.h:
9986         Removed 
9988         * plugins/gdb/debugger.c,
9989         plugins/gdb/debugger.h,
9990         plugins/gdb/gdbmi.c,
9991         plugins/gdb/gdbmi.h,
9992         plugins/gdb/utilities.c,
9993         plugins/gdb/utilities.h,
9994         plugins/gdb/Makefile.am,
9995         plugins/gdb/anjuta-gdb.plugin.in:
9996         Implement necessary functions
9998         * plugins/gdb/parser.c,
9999         plugins/gdb/parser.h:
10000         Code for parsing variable previously in debug_tree.c
10002         * plugins/gdb/anjuta-gdb.glade,
10003         plugins/gdb/anjuta-gdb.ui:
10004         Remove user interface
10006         * plugins/gdb/gdbmi-test.c:
10007         Need update
10009         * plugins/gdb/anjuta-gdb.plugin.png:
10010         Try an improved icon for gdb (archer fish)
10012         * libanjuta/anjuta-debugger.c,
10013         libanjuta/anjuta-debugger.h,
10014         libanjuta/interfaces/libanjuta.idl,
10015         libanjuta/interfaces/anjuta-idl-compiler.pl,
10016         libanjuta/Makefile.am:
10017         Add declaration used in new IAnjutaDebugger interface
10019         * manuals/reference/libanjuta.types,
10020         manuals/reference/libanjuta/tmpl/ianjuta-debugger.sgml
10021         manuals/referecen/libanjuta/tmpl/libanjuta-unused.sgml:
10022         Update documentation
10024 2006-03-02  Naba Kumar  <naba@gnome.org>
10026         * manuals/reference/libanjuta/Makefile.am,
10027         manuals/reference/libanjuta/libanjuta-docs.sgml,
10028         manuals/reference/libanjuta/libanjuta-sections.txt,
10029         manuals/reference/libanjuta/libanjuta.types,
10030         manuals/reference/libanjuta/tmpl/anjuta-children.sgml,
10031         manuals/reference/libanjuta/tmpl/anjuta-launcher.sgml,
10032         manuals/reference/libanjuta/tmpl/anjuta-marshal.sgml,
10033         manuals/reference/libanjuta/tmpl/anjuta-plugin.sgml,
10034         manuals/reference/libanjuta/tmpl/anjuta-preferences-dialog.sgml,
10035         manuals/reference/libanjuta/tmpl/anjuta-preferences.sgml,
10036         manuals/reference/libanjuta/tmpl/anjuta-session.sgml,
10037         manuals/reference/libanjuta/tmpl/anjuta-shell.sgml,
10038         manuals/reference/libanjuta/tmpl/anjuta-status.sgml,
10039         manuals/reference/libanjuta/tmpl/anjuta-ui.sgml,
10040         manuals/reference/libanjuta/tmpl/anjuta-utils.sgml,
10041         manuals/reference/libanjuta/tmpl/cell-renderer-captioned-image.sgml,
10042         manuals/reference/libanjuta/tmpl/e-splash.sgml,
10043         manuals/reference/libanjuta/tmpl/glue-factory.sgml,
10044         manuals/reference/libanjuta/tmpl/glue-plugin.sgml,
10045         manuals/reference/libanjuta/tmpl/ianjuta-bookmark.sgml,
10046         manuals/reference/libanjuta/tmpl/ianjuta-buildable.sgml,
10047         manuals/reference/libanjuta/tmpl/ianjuta-debugger-manager.sgml,
10048         manuals/reference/libanjuta/tmpl/ianjuta-debugger.sgml,
10049         manuals/reference/libanjuta/tmpl/ianjuta-document-manager.sgml,
10050         manuals/reference/libanjuta/tmpl/ianjuta-editor-assist.sgml,
10051         manuals/reference/libanjuta/tmpl/ianjuta-editor-convert.sgml,
10052         manuals/reference/libanjuta/tmpl/ianjuta-editor-edit.sgml,
10053         manuals/reference/libanjuta/tmpl/ianjuta-editor-factory.sgml,
10054         manuals/reference/libanjuta/tmpl/ianjuta-editor-folds.sgml,
10055         manuals/reference/libanjuta/tmpl/ianjuta-editor-line-mode.sgml,
10056         manuals/reference/libanjuta/tmpl/ianjuta-editor-selection.sgml,
10057         manuals/reference/libanjuta/tmpl/ianjuta-editor-view.sgml,
10058         manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml,
10059         manuals/reference/libanjuta/tmpl/ianjuta-file.sgml,
10060         manuals/reference/libanjuta/tmpl/ianjuta-indicable.sgml,
10061         manuals/reference/libanjuta/tmpl/ianjuta-iterable-tree.sgml,
10062         manuals/reference/libanjuta/tmpl/ianjuta-iterable.sgml,
10063         manuals/reference/libanjuta/tmpl/ianjuta-macro.sgml,
10064         manuals/reference/libanjuta/tmpl/ianjuta-markable.sgml,
10065         manuals/reference/libanjuta/tmpl/ianjuta-message-manager.sgml,
10066         manuals/reference/libanjuta/tmpl/ianjuta-message-view.sgml,
10067         manuals/reference/libanjuta/tmpl/ianjuta-project-manager.sgml,
10068         manuals/reference/libanjuta/tmpl/ianjuta-symbol-manager.sgml,
10069         manuals/reference/libanjuta/tmpl/ianjuta-symbol.sgml,
10070         manuals/reference/libanjuta/tmpl/ianjuta-vcs.sgml,
10071         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml,
10072         manuals/reference/libanjuta/tmpl/plugins.sgml,
10073         (added) manuals/reference/libanjuta/tmpl/anjuta-session.sgml,
10074         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-assist.sgml,
10075         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-convert.sgml,
10076         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-edit.sgml,
10077         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-factory.sgml,
10078         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-folds.sgml,
10079         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-line-mode.sgml,
10080         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-selection.sgml,
10081         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-view.sgml,
10082         (added) manuals/reference/libanjuta/tmpl/ianjuta-indicable.sgml,
10083         (added) manuals/reference/libanjuta/tmpl/ianjuta-macro.sgml,
10084         (added) manuals/reference/libanjuta/tmpl/ianjuta-symbol-manager.sgml,
10085         (added) manuals/reference/libanjuta/tmpl/ianjuta-symbol.sgml,
10086         (added) manuals/reference/libanjuta/tmpl/ianjuta-vcs.sgml: Updated
10087         documentation.
10089 2006-02-28  Naba Kumar <naba@gnome.org>
10091         (added) manuals/reference/libanjuta/tmpl/anjuta-session.sgml,
10092         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-assist.sgml
10093         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-convert.sgml
10094         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-edit.sgml
10095         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-factory.sgml
10096         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-folds.sgml
10097         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-line-mode.sgml
10098         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-selection.sgml
10099         (added) manuals/reference/libanjuta/tmpl/ianjuta-editor-view.sgml
10100         (added) manuals/reference/libanjuta/tmpl/ianjuta-indicable.sgml
10101         (added) manuals/reference/libanjuta/tmpl/ianjuta-macro.sgml
10102         (added) manuals/reference/libanjuta/tmpl/ianjuta-symbol-manager.sgml
10103         (added) manuals/reference/libanjuta/tmpl/ianjuta-symbol.sgml
10104         (added) manuals/reference/libanjuta/tmpl/ianjuta-vcs.sgml
10106 2006-03-02  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
10108         * plugins/sourceview/sourceview.c:
10109         Select to brace, select block.
10111 2006-02-28  Johannes Schmid <jhs@gnome.org>
10113         * plugins/file-wizard/Makefile.am
10114         plugins/file-wizard/action-callbacks.c (removed)
10115         plugins/file-wizard/action-callbacks.h (removed)
10116         plugins/file-wizard/anjuta-file-wizard.ui
10117         plugins/file-wizard/plugin.c: (activate_plugin),
10118         (deactivate_plugin)
10119         plugins/file-wizard/plugin.h:
10120         Removed Edit->Insert Text submenu (replace by macros plugin)
10121         
10122         * plugins/sourceview/sourceview.c: (sourceview_new),
10123         (ieditor_set_popup_menu):
10124         Fixed some more bugs
10125         
10126         * plugins/subversion/svn-threat.h (removed): Removed ununsed file
10128 2006-02-28  Naba Kumar <naba@gnome.org>
10130         * plugins/file-manager/an_file_view.c,
10131         plugins/symbol-browser/an_symbol_view.c: Show tooltips for unselected
10132         rows also and with delay 1 sec (the color and timout value should
10133         probably be picked up from some system wide preference key).
10135 2006-02-28  Naba Kumar <naba@gnome.org>
10137         * libanjuta/interfaces/libanjuta.idl,
10138         plugins/document-manager/action-callbacks.c,
10139         plugins/document-manager/plugin.c,
10140         plugins/editor/text_editor.c: Renamed IAnjutaEditorView to
10141         IAnjutaEditorFolds and implemented IAnjutaEditorView as editor views.
10142         Added interface checks in document manager and enable/disable
10143         menus based on supported interface.
10144         
10145         * plugins/project-import/anjuta-project-import.glade: Set some
10146         resonable size for the import dialog.
10148  2006-02-27  Naba Kumar  <naba@gnome.org>
10150         * libanjuta/interfaces/libanjuta.idl,
10151         plugins/document-manager/action-callbacks.c,
10152         plugins/editor/text_editor.c: Fixed IAnjutaEditorLineMode interface
10153         and eol conversion actions.
10155 2006-02-27  Johannes Schmid <jhs@gnome.org>
10156         
10157         * plugins/sourceview/sourceview.c: Implemented markers and fixed several crashers
10158         * plugins/file-manager/an_file_view.c
10159         plugins/file-manager/plugin.h:  Added tooltips
10160         * plugins/symbol-browser/an_symbol_view.h: Added tooltips
10162 2006-02-26  Naba Kumar  <naba@gnome.org>
10164         * plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin.glade,
10165         plugins/build-basic-autotools/build-basic-autotools.c,
10166         plugins/build-basic-autotools/build-basic-autotools.h,
10167         plugins/build-basic-autotools/executer.c,
10168         plugins/message-view/anjuta-message-manager-plugin.glade: Moved enable/
10169         disable indicator highlights preferences from message manager to
10170         build plugin. Implemented message indicator highlights in build tool.
10171         
10172         * plugins/editor/text_editor.c: Fixed indicators.
10174 2006-02-26  Johannes Schmid <jhs@gnome.org>
10176         * plugins/sourceview/sourceview.c:
10177         - Fixed some bugs
10178         - Added markers
10179         * plugins/subversion/svn_auth.c:
10180         Fixed username/password authentification but there might be a memory corruption
10182 2006-02-26  Naba Kumar  <naba@gnome.org>
10184         Patch from Anjuta Khongbantabam <k_anjuta@yahoo.com>:
10185         * libanjuta/anjuta-encodings.c, libanjuta/anjuta-launcher.c,
10186         libanjuta/anjuta-launcher.h: Added documentation.
10188 2006-02-24  Naba Kumar  <naba@gnome.org>
10190         * plugins/editor/text_editor.c: Fixed change in API in
10191         IAnjutaEditorSelection::set().
10192         
10193 2006-02-24  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
10195         * plugins/sourceview/sourceview.c, plugins/search/plugin.c,
10196         plugins/search/search-replace.c, plugins/search/search-replace_backend.c,
10197         libanjuta/interfaces/libanjuta.idl :
10198         Search in sourceview editor (Select in buffer).
10201 2006-02-23  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
10203         * plugins/sourceview/sourceview.c :
10204         Fixed Replace, to_upper, to_lower.
10205         
10206         * plugins/search/search-replace_backend.c :
10207         Renamed header name.
10209 2006-02-22  Naba Kumar  <naba@gnome.org>
10211         * libanjuta/anjuta-plugin-description.c,
10212         libanjuta/anjuta-plugin-description.h, libanjuta/anjuta-shell.c,
10213         libanjuta/anjuta-shell.h, libanjuta/interfaces/libanjuta.idl,
10214         manuals/reference/libanjuta/tmpl/anjuta-plugin-description.sgml,
10215         manuals/reference/libanjuta/tmpl/anjuta-shell.sgml,
10216         manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml: Fixed API docs.
10217         
10218         Patch from Anjuta Khongbantabam <k_anjuta@yahoo.com>:
10219         * libanjuta/interfaces/libanjuta.idl: Added more API documentation stubs.
10220         
10221 2006-02-21  Naba Kumar  <naba@gnome.org>
10223         * libanjuta/interfaces/libanjuta.idl,
10224         plugins/editor/text_editor.c, plugins/editor/text_editor.h,
10225         plugins/editor/text_editor_cbs.c: Implemanted IAnjutaIndicable
10226         interface for editor.
10228 2006-02-21  Naba Kumar  <naba@gnome.org>
10230         * plugins/editor/text_editor.c: Fixed a crash bug on copy operation.
10232         Patch from Anjuta Khongbantabam <k_anjuta@yahoo.com>:
10233         * libanjuta/interfaces/libanjuta.idl: Added API documentation stubs.
10235 2006-02-21  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
10237         * GTKSOURCEVIEW EDITOR
10238         plugins/sourceview/sourceview.c :
10239         Fixed copy and Goto Line.
10240         
10241         plugins/macro/macro-actions.c plugins/macro/macro-dialog.c
10242         plugins/macro/plugin.c :
10243         Fixed Insert key word and Insert macro.
10245 2006-02-19  Johannes Schmid <jhs@cvs.gnome.org>
10247         * plugins/document-manager/anjuta-docman.c:
10248         (on_open_filesel_response): Fixed useless g_slist statement (thanks gcc for complaining)
10249         
10250         * configure.in:
10251         plugins/Makefile.am:
10252         plugins/sourceview/.cvsignore:
10253         plugins/sourceview/Makefile.am:
10254         plugins/sourceview/plugin.c: :
10255         plugins/sourceview/plugin.h:
10256         plugins/sourceview/sourceview.c: 
10257         plugins/sourceview/sourceview.h:
10258         plugins/sourceview/sourceview.plugin:
10259         plugins/sourceview/sourceview.plugin.in:
10260         plugins/sourceview/sourceview.png:
10262         Added sourceview editor plugin
10264 2006-02-19 Naba Kumar  <naba@gnome.org>
10266         * libanjuta/interfaces/libanjuta.idl,
10267         manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml,
10268         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml,
10269         plugins/cvs-plugin/cvs-interface.c,
10270         plugins/document-manager/action-callbacks.c,
10271         plugins/document-manager/action-callbacks.h,
10272         plugins/editor/text_editor.c, plugins/macro/macro-actions.c,
10273         plugins/search/plugin.c, plugins/search/search-replace.c,
10274         plugins/search/search-replace_backend.c,
10275         plugins/subversion/subversion-actions.c,
10276         plugins/subversion/subversion-callbacks.c,
10277         plugins/tools/editor.c, plugins/tools/execute.c,
10278         plugins/tools/variable.c: Defined proper editor interfaces and fixed
10279         few fatal warnings.
10281 2006-02-15 Naba Kumar  <naba@gnome.org>
10283         * libanjuta/anjuta-shell.c: Added a warning when a session is loaded
10284         within another.
10285         
10286         * libanjuta/interfaces/libanjuta.idl,
10287         plugins/document-manager/anjuta-docman.c,
10288         plugins/document-manager/plugin.c,
10289         plugins/editor/plugin.c, plugins/editor/text_editor.c: Removed
10290         unnecessary parameters from IAnjutaEditor interface and used proper
10291         types instead of 'gpointer'. Fixed various compiler warnings.
10292         
10293         * (removed) plugins/valgrind/main.c, po/POTFILES.in: Deleted useless
10294         file
10296 2006-02-12 Naba Kumar  <naba@gnome.org>
10298         * po/POTFILES.in: Updated.
10299         
10300 2006-02-11 Naba Kumar  <naba@gnome.org>
10302         * plugins/editor/properties.[cxx,h],
10303         plugins/editor/text_editor.c, plugins/editor/style-editor.c,
10304         plugins/editor/text_editor_prefs.c: Renamed prop_*() functions
10305         to sci_prop_*(), because they were conflicting with external
10306         functions (in some ssl library).
10307         
10308 2006-02-08 Naba Kumar  <naba@gnome.org>
10310         Patch from Massimo Cora  <maxcvs@email.it>:
10311         * plugins/valgrind/anjuta-valgrind.schemas,
10312         plugins/valgrind/plugin.c, plugins/valgrind/plugin.h,
10313         plugins/valgrind/preferences.c, plugins/valgrind/vgactions.c,
10314         plugins/valgrind/vgactions.h, plugins/valgrind/vgdefaultview.c,
10315         plugins/valgrind/vgdefaultview.h, plugins/valgrind/vggeneralprefs.c,
10316         plugins/valgrind/vggeneralprefs.h, plugins/valgrind/vgmemcheckprefs.c,
10317         plugins/valgrind/vgtoolview.c,
10318         plugins/valgrind/vgtoolview.h: It checks for the valgrind binary
10319         before running the debugging session. I've added also a
10320         preference in Anjuta Preferences where you can specify
10321         the path to the valgrind binary. The default is /usr/bin/valgrind.
10322         Now it displays a dialog with the error. [it can be -program
10323         exited- or -file loaded or end of input-]. Some valgrind 3.x
10324         compatibility.
10325         
10326 2006-01-29 Naba Kumar  <naba@gnome.org>
10328         Patch from Massimo Cora  <maxcvs@email.it>:
10329         * configure.in, plugins/Makefile.am,
10330         plugins/valgrind/*: Valgrind plugin (requires
10331         binutils-dev and valgrind to be installed.
10333 2005-01-24 Johannes Schmid <jhs@gnome.org>
10335         * Patch from Eric Greveson <ejg45@cam.ac.uk>
10336         plugins/tools/variables.c:
10337         Added current directory to possible variables
10339         * Patch from Günther Brammer <gbrammer@gmx.de>
10340         plugins/document-manager/anjuta-docman.c:
10341         Fix a crash on opening a file
10343         AUTHORS: Added Günther Brammer
10345 2005-12-17 Sebastien Granjoux <seb.sfo@free.fr>
10347         * libanjuta/anjuta-launcher.c:
10348         Fix a bug in AnjutaLauncher when output is bigger than buffer
10349         Probably fix bug #315188 and #305134
10351 2005-12-28      Johannes Schmid <jhs@gnome.org>
10352         
10353         * configure: Changed required gtk to 2.6.0, bumped VERSION to 2.02cvs
10354         * src/about.c: Use new gtk about dialog
10355         * plugins/project-wizard/templates/anjuta-plugin/src/plugin.c:
10356         Updated anjuta_ui_add_action_group_entries call
10357         
10358         Patch from Jean Breford <jean.breford@normalesup.org>
10359         and Markus Habermehl <bmh1980de@yahoo.de>:
10360         
10361         * libanjuta/anjuta-encodings.c: Fix crash in a much more nice way
10362         * AUTHORS: Added Jean and Markus
10364 2005-12-23  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
10365         * plugins/search/search-replace.c :
10366         Bookmark all matched lines.
10367         * plugins/search/search-replace_backend.c :
10368         Fixed bug (Search in all project files).
10370 2005-12-21      Johannes Schmid <jhs@gnome.org>
10371         
10372         * plugins/search/plugin.c:
10373         Fixed signal names
10374         * libanjuta/anjuta-encodings.c: Don't crash if uninitialized. Further
10375         investigation needed.
10376         
10377         AUTHORS: Added Ross Goldner
10379 2005-12-19  Ross Golder  <ross@golder.org>
10381         * plugins/document-manager/anjuta-document-manager.plugin.in: Added
10382         application/xml MIME type.
10384 2005-12-18  Johannes Schmid <jhs@gnome.org>
10385         
10386         po/POTFILES.in: Updated files after directory changes
10387         HACKING: Removed outdated section 3 (anoncvs)
10389 2005-12-15  Sebastien Granjoux <seb.sfo@free.fr>
10391         * plugins/build-basic-autotools/build-basic-autotools.c:
10392         Save all files in editor before running a command
10394         * plugins/tools/execute.c:
10395         Use document manager plugin instead of each editor for
10396         saving all files
10398 2005-12-15  Johannes Schmid <jhs@gnome.org>
10400         * plugins/document-manager/action-callbacks.c:
10401         (on_save_all1_activate), (on_swap_activate)
10402         plugins/document-manager/anjuta-docman.c:
10403         (on_save_as_filesel_response), (on_notebook_switch_page):
10404         
10405         Fixed some remaining issues in document-manger
10407 2005-12-15      Johannes Schmid <jhs@gnome.org>
10409         * plugins/profile-default/default.anjuta:
10410         Load Search plugin and Message Manager by default
10412 2005-12-14  Johannes Schmid <jhs@gnome.org>
10413         
10414         * plugins/editor/text_editor.c
10415         libanjuta/anjuta-utils.c:
10416         
10417         Check if files differ when gnome-vfs monitoring is used.
10418         (Bug #309688)
10420 2005-12-13  Johannes Schmid <jhs@gnome.org>
10422         * plugins/document-manager/plugin.c:
10423         Only save modified files in ianjuta_file_savable_save() for document-manager
10424         as discussed on mailing list.
10425         
10426         * plugins/cvs-plugin/cvs-callbacks.c:
10427         Fixed dialog handling for empty log message
10429 2005-12-13  Johannes Schmid <jhs@gnome.org>
10431         * plugins/search/plugin.c: Fixed search toolbar (FIXME: Wrapping);
10432         
10433         * plugins/project-manager/* Removed ununsed files
10434         
10435         * plugins/symbol-browser/an_symbol_iter.c
10436         plugins/build-basic-autotools/build-basic-autotools.c
10437         plugins/build-basic-autotools/executer.c
10438         plugins/class-gen/class_gen.c
10439         plugins/class-inheritance/class-inherit.c
10440         plugins/cvs-plugin/cvs-actions.c
10441         plugins/cvs-plugin/cvs-interface.c
10442         plugins/debug-manager/attach_process.
10443         plugins/devhelp/plugin.c
10444         plugins/document-manager/plugin.c
10445         plugins/document-manager/indent_util.c
10446         plugins/editor/properties.cxx
10447         plugins/editor/aneditor.cxx
10448         plugins/editor/style-editor.c
10449         plugins/editor/text_editor.c
10450         plugins/macro/macro_db.c
10451         tagmanager/c.c:
10452         
10453         Use DEBUG_PRINT for debug messages
10455         libanjuta/anjuta-debug.h: Include config.h
10456         
10457         HACKING: Updated (BTW: does anyone read this?)
10458         
10459 2005-12-12  Johannes Schmid <jhs@gnome.org>
10461         Patch from Johan Ersvik <jersvik@fastmail.fm>:
10462         * plugins/gdb/debugger.c
10463         
10464         Fix a crasher in gdb plugin
10465         
10466         * plugins/gtodo/plugin.c
10467         plugins/search/plugin.c
10468         
10469         Fixed bug #305301
10470         
10471         * plugins/document-manager/anjuta-docman.c:
10472         
10473         Fixed error markers 
10474         
10475         * AUTHORS: Added Rafał Bursig <bursig@poczta.fm>
10476         
10477         Patch from Rafał Bursig <bursig@poczta.fm> (#320338 and #320341):
10478         
10479         * plugins/document-manager/anjuta-docman.c:
10480         highlight changed files in docman popup-menu
10481         * plugins/gdb/debug-tree.c:
10482         plugins/gdb/debugger.c
10483         Do not corupt entire "locals" tree when variable pointer have
10484         additional info and arrays/strucs/unions correctly.
10485         
10487 2005-12-11  Johannes Schmid <jhs@gnome.org>
10489         * plugins/document-manager/anjuta-docman.c
10490         plugins/document-manager/plugin.c
10491         plugins/editor/text_editor.c:
10492         
10493         AUTHORS: Added Johan Ersvik
10495         Fixed "is-dirty" bug and tab ordering
10497 2005-12-11  Johan Ersvik <jersvik@fastmail.fm>
10498         
10499         * plugins/editor/aneditor-autocomplete.cxx
10500         plugins/editor/aneditor-calltip.cxx
10501         plugins/editor/aneditor-priv.h
10502         plugins/symbol-browser/an_symbol.c
10503         plugins/symbol-browser/an_symbol_view.c
10504         tagmanager/entry.h
10505         tagmanager/tm_symbol.c
10506         tagmanager/tm_tag.c
10507         tagmanager/include/tm_symbol.h
10508         tagmanager/include/tm_tag.h
10509         tagmanager/c.c
10511         Better pointer recognition in tagmanager and symbol browser
10513 2005-12-11  Johannes Schmid <jhs@gnome.org>
10515         * plugins/search/*: New search plugin derived from search code in old editor
10516         plugin.
10517         
10518         * plugins/document-manager/*: new document-manger which is now seperated from
10519         editor to allow implementation of other editor widgets. Code is mostly derived
10520         from old editor plugin
10522         * plugins/print/* new print plugin which is not fully implemented in the
10523         moment
10525         * plugins/editor/text_editor.c: Added lots of interface code
10526         
10527         * libanjuta/interfaces/libanjuta.idl: Added IAnjutaEditorEdit, IAnjutaEditorView,
10528         IAnjutaEditorFactory and extended IAnjutaEditor
10529         
10530         * configure.in, plugins/Makefile.am updated build system for new
10531         plugins
10533         This is a huge commit which might still contain some bugs and also has
10534         some fixmes. Things that are not working are the search toolbar because it
10535         does not use the same backend as any other searching function and printing
10536         (easy to fix) because it did not yet implement IAnjutaPrintable.
10538 2005-11-26 Sebastien Granjoux <seb.sfo@free.fr>
10540         * plugins/project-wizard/property.c:
10541         Use newer GtkFileChooser instead of GtkFileSelection with
10542         GnomeFileEntry to avoid a bug
10544         * plugins/project-wizard/install.c:
10545         Avoid an endless loop if project directory is not writable
10546         
10547         * plugins/project-wizard/druid.c:
10548         Allow creating project in empty directory without a
10549         warning
10551 2005-11-25  Johannes Schmid <jhs@cvs.gnome.org>
10552         
10553         Patch from Massimo Cora <maxcvs@email.it>
10554         * plugins/class-inheritence/class-inherit.c
10555         plugins/class-inheritence/plugin.c
10556         plugins/class-inheritence/plugin.h
10557         configure.in
10558         
10559         Update plugin to use new API from graphviz 2.6. Version 2.2 is 
10560         no longer supported!
10562 2005-11-23  Johannes Schmid <jhs@cvs.gnome.org>
10563         
10564         Patch from Johan Ersvik <jersvik@fastmail.fm>
10565         * plugins/message-view/message-view.c
10566         plugins/build-basic-autotools/build-basic-autotools.c
10567         plugins/build-basic-autotools/automake-c.filters
10569         This patch correct regex-filters for newer automake
10570         versions
10572 2005-11-19 Sebastien Granjoux <seb.sfo@free.fr>
10574        * plugins/tools/execute.c:
10575        Detect variables inside a word
10577 2005-11-08  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
10579         * libanjuta/anjuta-status.[ch],
10580         plugins/editor/text_editor.[ch], plugins/editor/text_editor_cbs.c,
10581         plugins/editor/anjuta-docman.c :
10582         New anjuta-status procedure.
10584 2005-10-28  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
10586         *Modified Files:
10587         libanjuta/anjuta-preferences.c libanjuta/anjuta-preferences.h
10588         plugins/editor/Makefile.am
10589         plugins/editor/anjuta-document-manager.glade
10590         plugins/editor/plugin.c plugins/editor/plugin.h
10591         plugins/editor/text_editor.c plugins/editor/text_editor.h
10592         *Added Files:
10593         plugins/editor/indent-dialog.c plugins/editor/indent-dialog.h
10594         plugins/editor/indent-util.c plugins/editor/indent-util.h
10595         plugins/editor/indent_test.c :
10596         Set and Preview indent preferences parameters.
10597         Saved indent user parameters.
10599 2005-10-27  Naba Kumar  <naba@gnome.org>
10601         Patch from Flavio daCosta  <flavio.dacosta@gmail.com>
10602         * plugins/editor/anjuta-docman.c: Restore tab color to normal
10603         theme color for saved documents.
10604         
10605 2005-10-26  Naba Kumar  <naba@gnome.org>
10607         * libanjuta/anjuta-encodings.c: Save changed supported encodings
10608         list. Fixed bug #316731.
10609         
10610 2005-10-23 Sebastien Granjoux <seb.sfo@free.fr>
10612         * tagmanager/tm_symbol.c: Fixed bug #315218
10614 2005-10-23  Adam Weinberger  <adamw@gnome.org>
10616         * plugins/build/build_file.c
10617           plugins/build-basic-autotools/build-basic-autotools.c
10618           plugins/tools/execute.c
10619           plugins/build/compile.c
10620           plugins/build/configurer.c
10621           plugins/debug-manager/plugin.c
10622           plugins/editor/plugin.c
10623           plugins/editor/print.c
10624           plugins/editor/text_editor.c
10625           plugins/file-loader/plugin.c
10626           plugins/file-manager/an_file_view.c
10627           plugins/symbol-browser/an_symbol_view.c
10628           plugins/gdb/debugger.c
10629           plugins/gdb/plugin.c
10630           plugins/glade/plugin.c
10631           plugins/macro/macro-actions.c
10632           plugins/macro/plugin.c
10633           plugins/profile-default/plugin.c
10634           plugins/project-manager/plugin.c
10635           plugins/project-manager/project_import.c
10636           plugins/symbol-browser/plugin.c
10637           plugins/tools/execute.c
10638           src/anjuta.c
10639           src/anjuta-actions.h
10640           src/shell.c:
10641           Correct spacing errors before and after "...".
10643 2005-10-20  Naba Kumar  <naba@gnome.org>
10645         * plugins/gdb/debugger.c: Fixed attach/detach process to
10646         updated UI properly.
10647         
10648 2005-10-18  Naba Kumar  <naba@gnome.org>
10650         * plugins/editor/aneditor.cxx: Fixed bug #172442 (and possibly
10651         #171314 too).
10652         
10653 2005-10-13  Naba Kumar  <naba@gnome.org>
10654         
10655         * plugins/project-mkfile-import/*: Removed separate import wizard for
10656         makefile based projects (because single widzard handles all wizards).
10658         * plugins/project-import/project-import.c: Made wizard window
10659         transient to main window.
10661         Patch from: Eric Greveson  <ejg45@cam.ac.uk>
10662         
10663         * AUTHORS: Added Eric's name in contributors list.
10664         
10665         * configure.in, plugins/Makefile.am,
10666         plugins/project-import/Makefile.am,
10667         plugins/project-import/anjuta-project-import.glade,
10668         plugins/project-import/project-import.c,
10669         plugins/project-import/project-import.h: Import wizard now detects
10670         both makefile and automake projects together instead of separate wizard.
10671         
10672         * plugins/project-wizard/templates/java/project.anjuta,
10673         plugins/project-wizard/templates/mkfile/project.anjuta,
10674         plugins/project-wizard/templates/python/project.anjuta,
10675         plugins/project-wizard/templates/terminal/project.anjuta: Renamed plugin
10676         name to make it appropriate.
10678 2005-10-11  Naba Kumar  <naba@gnome.org>
10680         * configure.in: Fixed glade3 version requirement.
10682 2005-09-29  Alexander Shopov  <ash@contact.bg>
10684         * configure.in: Added "bg" (Bulgarian) to ALL_LINGUAS
10686 2005-09-26  Johannes Schmid <jhs@cvs.gnome.org>
10688         * plugins/subversion/svn_auth.c
10689         plugins/subversion/anjuta_subversion.glade:
10690         Implemented svn_auth_ssl_server_trust_prompt_func_cb (untested)
10692 2005-09-22  Naba Kumar  <naba@gnome.org>
10694         Patch from: Eric Greveson  <ejg45@cam.ac.uk>:
10696         * configure.in,  plugins/Makefile.am
10697         plugins/project-manager/anjuta-project-manager.plugin.in,
10698         plugins/project-manager/plugin.c,
10699         (added) plugins/project-mkfile-import/.cvsignore,
10700         (added) plugins/project-mkfile-import/Makefile.am,
10701         (added) plugins/project-mkfile-import/
10702             anjuta-project-mkfile-import-plugin.png,
10703         (added) plugins/project-mkfile-import/
10704             anjuta-project-mkfile-import.glade,
10705         (added) plugins/project-mkfile-import/
10706             anjuta-project-mkfile-import.plugin.in,
10707         (added) plugins/project-mkfile-import/plugin.c,
10708         (added) plugins/project-mkfile-import/plugin.h,
10709         (added) plugins/project-mkfile-import/project-mkfile-import.c,
10710         (added) plugins/project-mkfile-import/project-mkfile-import.h,
10711         plugins/project-wizard/templates/Makefile.am,
10712         (added) plugins/project-wizard/templates/mkfile-logo.png,
10713         (added) plugins/project-wizard/templates/mkfile.wiz,
10714         (added) plugins/project-wizard/templates/mkfile/.cvsignore,
10715         (added) plugins/project-wizard/templates/mkfile/Makefile.am,
10716         (added) plugins/project-wizard/templates/mkfile/project.anjuta,
10717         (added) plugins/project-wizard/templates/mkfile/po/.cvsignore,
10718         (added) plugins/project-wizard/templates/mkfile/po/ChangeLog,
10719         (added) plugins/project-wizard/templates/mkfile/po/Makefile.am,
10720         (added) plugins/project-wizard/templates/mkfile/po/POTFILES.in,
10721         (added) plugins/project-wizard/templates/mkfile/src/.cvsignore,
10722         (added) plugins/project-wizard/templates/mkfile/src/Makefile.am,
10723         (added) plugins/project-wizard/templates/mkfile/src/Makefile.tpl,
10724         (added) plugins/project-wizard/templates/mkfile/src/main.c:
10725         Added makefile based project import wizard and wizard template.
10727 2005-09-12 Johannes Schmid <jhs@cvs.gnome.org>
10729         * libanjuta/anjuta-launcher.c: Reduced false password detections
10731 2005-09-09 Johannes Schmid <jhs@cvs.gnome.org>
10733         * plugins/cvs-plugin/cvs-interface.c: Handle empty log 
10734         messages correctly.a
10736 2005-09-09 Johannes Schmid <jhs@cvs.gnome.org>
10737         
10738         * scintilla/Makefile.am: Changed scintilla library to noinst
10739         * pixmaps/Makefile.am: Install password.png
10740         * libanjuta/anjuta-launcher.c: Changed password detection
10741         to be able to access GNOME CVS with ssh.
10742         
10743 2005-08-31  Naba Kumar  <naba@gnome.org>
10745         * plugins/glade/plugin.c: Set transient window for the widget
10746         dialogs.
10747         
10748 2005-08-21  Jens Seidel  <jseidel@cvs.gnome.org>
10750         * plugins/gtodo/main.c: Typo fix: s/occured/occurred/.
10752 2005-08-10  Naba Kumar  <naba@gnome.org>
10754         * plugins/build-basic-autotools/build-basic-autotools.c: Added F3
10755         as shortcut key for execute.
10757         * src/about.c: Clean up.
10758         
10759         Patch from: Jochen Baier  Jochen.Baier@stud.uni-karlsruhe.de
10760         * plugins/editor/action-callbacks.c: Fixed edit shortcuts for
10761         entry boxes.
10762         
10763 2005-08-09  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
10765         * plugins/editor/search-replace_backend.c :
10766         Fixed search in File Patterns.
10768 2005-08-09  Philip Van Hoof  <pvanhoof@gnome.org>
10770         * plugins/gdb/Makefile.am: Fixed a make -j x bug
10771         
10772 2005-08-04  Naba Kumar  <naba@gnome.org>
10774         * scintilla/PlatGTK.cxx, patches/pango-1.8.patch: Better fix
10775         for pango-1.8 rendering bug.
10776         
10777 2005-08-03  Naba Kumar  <naba@gnome.org>
10779         * plugins/glade/plugin.c: Proper names for plugin widgets.
10780         
10781         * plugins/subversion/anjuta-subversion.glade,
10782         plugins/subversion/svn-auth.c: Fixed authentication dialog and
10783         string allocations. Use passed default values when available.
10784         Set proper focus and dialog default response. Destroy dialog after use.
10785         Return error when appropriate.
10787 2005-08-02  Naba Kumar  <naba@gnome.org>
10789         * scintilla/PlatGTK.cxx, patches/pango-1.8.patch: Better fix
10790         for pango-1.8 rendering bug.
10791         
10792 2005-08-02  Philip Van Hoof  <pvanhoof@gnome.org>
10794         * scintilla/Makefile.am: Fixed a make -j x bug
10795         
10796 2005-08-02  Johannes Schmid <jhs@gnome.org>
10797         
10798         * plugins/subversion/svn-auth.c: Added username/password 
10799         auto function.
10801 2005-08-01  Naba Kumar  <naba@gnome.org>
10803         * scintilla/PlatGTK.cxx, patches/pango-1.8.patch: Added index bound
10804         checks for character width calculations.
10805         
10806 2005-07-31  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
10808         * plugins/gdb/debug_tree.c : Inspect memory from locals window.
10810 2005-07-31  Naba Kumar  <naba@gnome.org>
10812         * scintilla/PlatGTK.cxx, patches/pango-1.8.patch: Fixed text rendering
10813         messup with pango 1.8. Fixed bug #311846.
10815 2005-07-30  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
10817         * plugins/gdb/memory.c : Fixed bug 305082.
10818         
10819         * plugins/project-wizard/templates/anjuta-plugin.wiz,
10820         plugins/project-wizard/templates/gcj.wiz,
10821         plugins/project-wizard/templates/gnome.wiz,
10822         plugins/project-wizard/templates/gtk.wiz,
10823         plugins/project-wizard/templates/java.wiz,
10824         plugins/project-wizard/templates/python.wiz,
10825         plugins/project-wizard/templates/wxwin.wiz,
10826         plugins/project-wizard/templates/xlib-dock.wiz : Spelling fixes.
10828 2005-07-27 Sebastien Granjoux <seb.sfo@free.fr>
10830         * plugins/tools/execute.c:
10831         Correct a crash if editor is closed while a tool still use it.
10833 2005-07-28  Naba Kumar  <naba@gnome.org>
10835         * scintilla/*: Updated scintilla from their latest CVS.
10837 2005-07-27  Naba Kumar  <naba@gnome.org>
10839         * libanjuta/anjuta-ui.c, libanjuta/anjuta-ui.h,
10840         plugins/build-basic-autotools/build-basic-autotools.c,
10841         plugins/cvs-plugin/plugin.c, plugins/debug-manager/plugin.c,
10842         plugins/devhelp/plugin.c, plugins/editor/plugin.c,
10843         plugins/file-loader/plugin.c, plugins/file-manager/plugin.c,
10844         plugins/file-wizard/plugin.c, plugins/gdb/plugin.c,
10845         plugins/glade/plugin.c, plugins/gtodo/plugin.c, plugins/macro/plugin.c,
10846         plugins/message-view/plugin.c, plugins/patch/plugin.c,
10847         plugins/profile-default/plugin.c, plugins/project-manager/plugin.c,
10848         plugins/sample1/plugin.c, plugins/subversion/plugin.c,
10849         plugins/symbol-browser/plugin.c, plugins/tools/plugin.c,
10850         src/anjuta-app.c, src/main.c, src/shell.c: Added 'translation_domain'
10851         argument to anjuta_ui_add_action_group_entries() and
10852         anjuta_ui_add_toggle_action_group_entries() and set the translation domain.
10853         Fixed all plugins to pass translation domain. This fixes untranslated
10854         UI bugs. 
10856 2005-07-27  Naba Kumar  <naba@gnome.org>
10858         * plugins/class-inheritance/class-callbacks.c,
10859         plugins/class-inheritance/class-inherit.c: Fixed color scheme to use
10860         proper system colors.
10862 2005-07-26  Naba Kumar  <naba@gnome.org>
10864         * ROADMAP: Updated and added more tasks.
10866 2005-07-25  Naba Kumar  <naba@gnome.org>
10868         * ROADMAP: Updated and added more tasks.
10869         
10870 2005-07-24  Naba Kumar  <naba@gnome.org>
10872         * HACKING: Fixed format.
10874 2005-07-24  Naba Kumar  <naba@gnome.org>
10876         * ROADMAP: Fixed format.
10877         * plugins/tools/scripts/prepare-changelog.pl: Fixed month figure.
10879 2005-07-24  Naba Kumar  <naba@gnome.org>
10881         * HACKING, ROADMAP: Fixed format and add some tasks to do in ROADMAP.
10882         * data/properties/cpp.properties: Added *.c++ as file extension for c++
10884 2005-07-24 Sebastien Granjoux <seb.sfo@free.fr>
10886         * plugins/tools/dialog.c, plugins/tools/dialog.h:
10887         Correct wrong sensitivity setting
10888         
10889         * plugins/tools/tool.c: Correct a crash when removing overridden tool
10890         
10891         * plugins/tools/variable.c:     Add variables for project manager
10893 2005-07-23  Naba Kumar  <naba@gnome.org>
10895         * ROADMAP: updated.
10897 2005-07-23 Naba Kumar  <naba@gnome.org>
10899         * plugins/subversion/Makefile.am,
10900         plugins/subversion/svn-auth.c,
10901         plugins/subversion/svn-auth.h: Added subversion authentication code
10902         stubs.
10903         
10904         * plugins/subversion/subversion-callbacks.c,
10905         plugins/subversion/subversion-callbacks.h,
10906         plugins/subversion/svn-backend-priv.h,
10907         plugins/subversion/svn-backend.c, plugins/subversion/svn-backend.h,
10908         plugins/subversion/svn-notify.c, plugins/subversion/svn-notify.h,
10909         plugins/subversion/svn-thread.c, plugins/subversion/svn-thread.h:
10910         Added file mode line.
10912 2005-07-22  Ignacio Casal Quinteiro  <nacho.resa@gmail.com>
10914         * configure.in: Added 'gl' to ALL_LINGUAS.
10916 2005-07-21 Naba Kumar  <naba@gnome.org>
10918         * libanjuta/anjuta-launcher.c: Fixed dispose method to neatly close
10919         the active sources and kill the running process without emitting
10920         signals (which could be fatal because the object is being destroyed).
10921         Incidentally, fixed the crash that happens when stopping an active
10922         debugger session. Disabled debug prints and code clean up.
10923         Fixed bug #305587.
10924         
10925         * plugins/cvs-plugin/cvs-execute.c: Removed signal disconnections from
10926         message view object, because that prevents many unprocessed outputs
10927         from the cvs command from being appended in view. Does not set NULL
10928         to mesg_view private member (not required) so that any pending outputs
10929         to view is processed.Fixed bug #172666.
10931         * plugins/editor/anjuta-document-manager.plugin.in: Added ruby mime
10932         type in supported list.
10933         
10934 2005-07-18  Adam Weinberger  <adamw@gnome.org>
10936         * plugins/file-manager/anjuta-file-manager-plugin.glade:
10937           grammar/spelling fixes.
10939 2005-07-17 Naba Kumar  <naba@gnome.org>
10941         * (new) plugins/project-wizard/templates/terminal/cvsignore,
10942         (new) plugins/project-wizard/templates/terminal/po/cvsignore,
10943         (new) plugins/project-wizard/templates/terminal/src/cvsignore,
10944         plugins/project-wizard/templates/anjuta-plugin.wiz,
10945         plugins/project-wizard/templates/gcj.wiz,
10946         plugins/project-wizard/templates/gnome.wiz,
10947         plugins/project-wizard/templates/gtk.wiz,
10948         plugins/project-wizard/templates/gtkmm.wiz,
10949         plugins/project-wizard/templates/java.wiz,
10950         plugins/project-wizard/templates/python.wiz,
10951         plugins/project-wizard/templates/terminal.wiz,
10952         plugins/project-wizard/templates/terminal/Makefile.am,
10953         plugins/project-wizard/templates/terminal/po/Makefile.am,
10954         plugins/project-wizard/templates/terminal/src/Makefile.am,
10955         plugins/project-wizard/templates/wxwin.wiz,
10956         plugins/project-wizard/templates/xlib-dock.wiz,
10957         plugins/project-wizard/templates/xlib.wiz: Added cvsignore files for
10958         wizards and updated .wiz files to install them in newly created
10959         projects.
10961 2005-07-16 Naba Kumar  <naba@gnome.org>
10963         * plugins/editor/anjuta-document-manager.plugin.in: Added mime types.
10964         
10965         * plugins/file-manager/an_file_view.c,
10966         plugins/file-manager/plugin.c: Added file manager preferences to
10967         show/hide files ignored by version control (e.g. cvsignore).
10968         
10969         * plugins/editor/text_editor.c: Initialize vfs info struct.
10970         
10971         * .cvsignore, global-tags/.cvsignore, libanjuta/.cvsignore,
10972         libanjuta/interfaces/.cvsignore, libegg/.cvsignore,
10973         libegg/menu/.cvsignore, libegg/recent-files/.cvsignore,
10974         libegg/treeviewutils/.cvsignore, libegg/util/.cvsignore,
10975         omf-install/.cvsignore, pixmaps/.cvsignore,
10976         plugins/file-manager/anjuta-file-manager-plugin.glade,
10977         scintilla/.cvsignore, scintilla/include/.cvsignore,
10978         scripts/.cvsignore, src/.cvsignore, tagmanager/.cvsignore,
10979         tagmanager/python.c: Updated.
10981 2005-07-16 Naba Kumar  <naba@gnome.org>
10983         * tagmanager/parse.c, tagmanager/parse.h, tagmanager/python.c:
10984         Fixed python parser to parser class methods.
10986 2005-07-15 Naba Kumar  <naba@gnome.org>
10988         * plugins/project-wizard/property.c: Used parenthesis to remove
10989         ambiguty.
10990         
10991         * plugins/project-wizard/templates/anjuta-plugin.wiz,
10992         plugins/project-wizard/templates/gcj.wiz,
10993         plugins/project-wizard/templates/gnome.wiz,
10994         plugins/project-wizard/templates/gtk.wiz,
10995         plugins/project-wizard/templates/gtkmm.wiz,
10996         plugins/project-wizard/templates/java.wiz,
10997         plugins/project-wizard/templates/python.wiz,
10998         plugins/project-wizard/templates/terminal.wiz,
10999         plugins/project-wizard/templates/wxwin.wiz,
11000         plugins/project-wizard/templates/xlib-dock.wiz,
11001         plugins/project-wizard/templates/xlib.wiz: Fixed wizard descriptions
11002         and names.
11004 2005-07-15 Naba Kumar  <naba@gnome.org>
11006         * plugins/project-wizard/templates/java.wiz,
11007         plugins/project-wizard/templates/java/Makefile.am,
11008         plugins/project-wizard/templates/java/project.anjuta,
11009         plugins/project-wizard/templates/python.wiz,
11010         plugins/project-wizard/templates/python/Makefile.am,
11011         plugins/project-wizard/templates/python/project.anjuta: Use different
11012         project files for java and python module where debugger is not
11013         included in the list of plugins.
11015 2005-07-15 Naba Kumar  <naba@gnome.org>
11017         * configure.in, plugins/project-wizard/templates/Makefile.am,
11018         plugins/project-wizard/templates/gcj-logo.png,
11019         plugins/project-wizard/templates/gcj.wiz,
11020         plugins/project-wizard/templates/gcj/.cvsignore,
11021         plugins/project-wizard/templates/gcj/Makefile.am,
11022         plugins/project-wizard/templates/gcj/configure.in.tpl,
11023         plugins/project-wizard/templates/gcj/src/.cvsignore,
11024         plugins/project-wizard/templates/gcj/src/Makefile.am,
11025         plugins/project-wizard/templates/gcj/src/Makefile.am.tpl,
11026         plugins/project-wizard/templates/java-logo.png,
11027         plugins/project-wizard/templates/java.wiz,
11028         plugins/project-wizard/templates/java/configure.in.tpl,
11029         plugins/project-wizard/templates/java/po/Makefile.am,
11030         plugins/project-wizard/templates/java/po/POTFILES.in,
11031         plugins/project-wizard/templates/java/src/Makefile.am.tpl,
11032         plugins/project-wizard/templates/java/src/main.java,
11033         plugins/project-wizard/templates/python-logo.png,
11034         plugins/project-wizard/templates/python.wiz,
11035         plugins/project-wizard/templates/python/.cvsignore,
11036         plugins/project-wizard/templates/python/Makefile.am,
11037         plugins/project-wizard/templates/python/configure.in.tpl,
11038         plugins/project-wizard/templates/python/po/.cvsignore,
11039         plugins/project-wizard/templates/python/po/Makefile.am,
11040         plugins/project-wizard/templates/python/po/POTFILES.in,
11041         plugins/project-wizard/templates/python/src/.cvsignore,
11042         plugins/project-wizard/templates/python/src/Makefile.am,
11043         plugins/project-wizard/templates/python/src/Makefile.am.tpl,
11044         plugins/project-wizard/templates/python/src/main.py: Added Generic
11045         gcj and python project wizards. Fixed Generic java project to
11046         use _JAVA primary. Update gnome-build from cvs for them to work
11047         correctly.
11049 2005-07-12 Naba Kumar  <naba@gnome.org>
11051         * plugins/project-manager/plugin.c: Automatically determine
11052         project backend by probing.
11053         
11054 2005-07-04 Naba Kumar  <naba@gnome.org>
11056         * Makefile.am: Do not install old anjuta.glade file which conflicts
11057         with newer src/anjuta.glade.
11059 2005-07-03 Johannes Schmid <jhs@cvs.gnome.org>
11061         * plugins/an_symbol_prefs.c:
11062         Sort list of available symbol files
11064 2005-07-02 Johannes Schmid <jhs@cvs.gnome.org>
11066         * plugins/build-basic-autotools.c:
11067         Fixed #307810
11068         
11069         * plugins/gtodo/libgtodo.c:
11070         Possible fix for #307800
11072         * libanjuta/anjuta-encodings.c
11073         libanjuta/anjuta-launcher.c
11074         libanjuta/anjuta-preference-dialog.c
11075         libanjuta/anjuta-preferences.c
11076         libanjuta/anjuta-ui.c
11077         libanjuta/anjuta-util.c
11078         libanjuta/cell-renderer-captioned-image.c
11079         libanjuta/plugin.c:
11080         
11081         Patch from de_lupus@pandora.be (Kristof Vansant):
11082         Replaced deprecated gnome-i18n.h
11083         Closed #309153
11085 2005-07-01 Johannes Schmid <jhs@cvs.gnome.org>
11086         
11087         * plugins/subversion/anjuta-subversion.glade
11088         plugins/subversion/anjuta-subversion.ui
11089         plugins/subversion/plugin.c
11090         plugins/subversion/subversion-actions.c
11091         plugins/subversion/subversion-callbacks.h
11092         plugins/subversion/subversion-callbacks.c
11093         plugins/subversion/svn-backend-priv.h
11094         plugins/subversion/svn-backend.h
11095         plugins/subversion/svn-backend.c
11096         plugins/subversion/svn-thread.h
11097         plugins/subversion/svn-thread.c:
11098         
11099         Implemented Subversion diff
11100         
11101 2005-06-30 Johannes Schmid <jhs@cvs.gnome.org>
11102         
11103         * plugins/build-basic-autotools/build-basic-autotools.c:
11104         Fixed crash bug! Might be useful to release 2.0.2 soon
11105         because this bug will crash any build which produces errors
11106         or warnings
11108 === Anjuta 2.0.1 ===
11110 2005-06-27 Naba Kumar  <naba@gnome.org>
11112         * plugins/tools/execute.c: Formated code.
11113         
11114 2005-06-26 Sebastien Granjoux <seb.sfo@free.fr>
11116         * plugins/build-basic-autotools/build-basic-autotools.c:
11117         Remove two memory leaks
11118         Check command output versus untranslated strings too
11120         * plugins/tools/execute.c:
11121         Remove two memory leaks
11122         Check command output versus untranslated strings too
11123         Remove description message
11125         * plugins/tools/fileop.c:
11126         Escape tool name in xml configuration file
11128 2005-05-26 Naba Kumar  <naba@gnome.org>
11130         * configure.in: Bumped version to 2.0.1
11131         * plugins/tools/scripts/Makefile.am: Fixed make checkdist bugs.
11133         * plugins/tools/execute.c: Fixed clickable messages.
11134         * NEWS: Updated.
11136         * plugins/glade/plugin.c, src/layout.xml: Added glade stock icon.
11137         Deactivate glade plugin when last glade project is closed. Reorder
11138         glade widgets in layout. Change glade project when user selects a
11139         new project. Removed project from the list when user closes it. Fixed
11140         glade project file loading from URI. Save and restored loaded glade
11141         projects in/from session.
11143         * plugins/class-gen/action-callbacks.c,
11144         plugins/class-gen/anjuta-class-gen-plugin.glade,
11145         plugins/class-gen/class_gen.c, plugins/class-gen/plugin.c,
11146         plugins/file-wizard/anjuta-file-wizard.glade,
11147         plugins/file-wizard/file.c, plugins/file-wizard/file.h,
11148         plugins/file-wizard/plugin.c, plugins/file-wizard/plugin.h: Implemented
11149         "Add to project" correctly. Use the source file path returned after
11150         adding to project. Fixed memory leaks. Deactivate wizard plugins
11151         after use.
11152         
11153         * plugins/project-manager/plugin.c,
11154         plugins/project-wizard/anjuta-project-wizard.glade,
11155         plugins/project-wizard/druid.c, plugins/project-wizard/install.c,
11156         plugins/project-wizard/plugin.c, plugins/project-wizard/plugin.h,
11157         src/Makefile.am, src/anjuta-app.c, src/anjuta.glade: Moved
11158         project-wizard preference page to anjuta app, because they are
11159         more appropriated as general preferences. Renamed username and
11160         useremail properties keys.
11161         
11162         * po/POTFILES.in: Updated.
11164         * plugins/editor/action-callbacks.c: Fixed a crash bug when a file is
11165         saved at closing.
11166         
11167         * plugins/file-loader/plugin.c: Do not use static variable to store
11168         created submenu in factory. Fixed crash in anjuta exit.
11169         
11170 2005-05-24 Naba Kumar  <naba@gnome.org>
11172         * manuals/reference/libanjuta/tmpl/anjuta-utils.sgml,
11173         manuals/reference/libanjuta/tmpl/ianjuta-context-list.sgml,
11174         manuals/reference/libanjuta/tmpl/ianjuta-context-text.sgml,
11175         manuals/reference/libanjuta/tmpl/ianjuta-context-tree.sgml,
11176         manuals/reference/libanjuta/tmpl/ianjuta-context.sgml,
11177         manuals/reference/libanjuta/tmpl/ianjuta-renderable.sgml,
11178         manuals/reference/libanjuta/tmpl/ianjuta-sand-box.sgml,
11179         manuals/reference/libanjuta/tmpl/ianjuta-transformable.sgml,
11180         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml: Updated.
11181         
11182         * libanjuta/anjuta-utils.c, libanjuta/anjuta-utils.h,
11183         plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin.glade,
11184         plugins/build-basic-autotools/build-basic-autotools.c,
11185         plugins/build-basic-autotools/build-basic-autotools.h,
11186         plugins/build-basic-autotools/executer.c,
11187         plugins/build-basic-autotools/executer.h,
11188         plugins/devhelp/plugin.c, plugins/gdb/debugger.c,
11189         plugins/tools/variable.c: Added an extra argument to
11190         anuta_util_dialog_input() to pass default value. Save/load project
11191         configure and execution parameters in/from session.
11193         * plugins/editor/aneditor-autocomplete.cxx: Fixed crash bug when no
11194         symbol browser is loaded.
11195         
11196         * plugins/profile-default/plugin.c: Fixed an unbalanced shell
11197         freeze/thaw.
11199         * plugins/terminal/terminal.c: Fixed bug where repeated activate and
11200         deactivate would not start shell.
11202 2005-05-24 Naba Kumar  <naba@gnome.org>
11204         * libanjuta/anjuta-ui.c, libanjuta/plugins.c,
11205         libegg/egg-combo-action.c, libegg/egg-recent-action.c,
11206         libegg/egg-submenu-action.c, libegg/test-actions.c,
11207         plugins/build-basic-autotools/build-basic-autotools.c,
11208         plugins/cvs-plugin/plugin.c, plugins/editor/aneditor-autocomplete.cxx,
11209         plugins/editor/search-replace.c, plugins/editor/text_editor.c,
11210         plugins/file-wizard/plugin.c, plugins/gdb/debugger.c,
11211         plugins/gtodo/plugin.c, plugins/macro/macro-db.c,
11212         plugins/macro/plugin.c, plugins/message-view/plugin.c,
11213         plugins/profile-default/plugin.c, plugins/project-import/plugin.c,
11214         plugins/project-manager/plugin.c, plugins/project-wizard/plugin.c,
11215         plugins/project-wizard/templates/anjuta-plugin/src/plugin.c,
11216         plugins/sample1/plugin.c, plugins/subversion/plugin.c,
11217         plugins/tools/plugin.c: Used DEBUG_PRINT() instead of g_message().
11219 2005-05-24 Naba Kumar  <naba@gnome.org>
11221         * data/properties/styles.properties: Fixed defalt font.
11223         * plugins/editor/search-replace.c,
11224         plugins/editor/search-replace_backend.c: Fixed message outputs. Identify
11225         project openness wihtout activating project-manager plugin (i.e.
11226         using anjuta_shell_get()).
11227         
11228         * libanjuta/interfaces/libanjuta.idl, plugins/project-manager/plugin.c:
11229         - Completed add_source(), add_group() and add_target() methods of
11230         IAnjutaProjectManager.
11231         - Change their definition to return the added element (or NULL).
11232         - Used interface API for project main menus and 'add to project'
11233         from file-manager context menu.
11234         - Select proper default target/group when prompting for adding
11235         source/target/group.
11236         - Do not expand all nodes in selection tree when default selection
11237         are given (eases navigation in big projects).
11238         - Code clean ups.
11239         - Marked strings for translation.
11241 2005-05-23 Naba Kumar  <naba@gnome.org>
11243         * src/anjuta-app.c: Save menu accelerators on change.
11244         * NEWS: Updated.
11245         * plugins/editor/anjuta-docman.c: Fixed premature destruction of
11246         save-as dialog (leading to crash later).
11248 2005-05-22 Naba Kumar  <naba@gnome.org>
11250         * NEWS: Updated.
11251         * AUTHORS: Added developers for other projects. Updated.
11252         * TODO.tasks: Updated.
11253         * ChangeLog: Added past changelogs from anjuta-0.1.5.
11254         
11255 2005-05-22 Naba Kumar  <naba@gnome.org>
11257         * plugins/tools/execute.c: Make parsable lines distinct by adding
11258         a "Click me" description in the message. Allow tools to open arbibrary
11259         file in editory using gdb-styled annotation (The line starts with two
11260         \032 characters followed by the file:line).
11261         
11262         * plugins/tools/scripts/prepare-changelog.pl,
11263         plugins/tools/scripts/tools-2.xml.in: Fixed to add changelog entry in
11264         ChangeLog file itself and open it.
11266 2005-06-21 Sebastien Granjoux <seb.sfo@free.fr>
11268         * plugins/tools/execute.c:
11269         Parse output in message pane
11270         Correct a crash on plugin deactivation
11272         * plugins/tools/fileop.c,
11273         plugins/tools/tool.c,
11274         plugins/tools/tool.h:
11275         Load only valid tools
11277 2005-06-21  Naba Kumar  <naba@gnome.org>
11279         * anjuta.spec.in: Fixed devel package requirement.
11281         * plugins/message-view/message-view.c: Scroll message on next/previous.
11283         * TODO.tasks: Updated.
11285         * manuals/reference/libanjuta/tmpl/ianjuta-context-list.sgml,
11286         manuals/reference/libanjuta/tmpl/ianjuta-context-text.sgml,
11287         manuals/reference/libanjuta/tmpl/ianjuta-context-tree.sgml,
11288         manuals/reference/libanjuta/tmpl/ianjuta-context.sgml,
11289         manuals/reference/libanjuta/tmpl/ianjuta-renderable.sgml,
11290         manuals/reference/libanjuta/tmpl/ianjuta-sand-box.sgml,
11291         manuals/reference/libanjuta/tmpl/ianjuta-transformable.sgml,
11292         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml: Updated.
11294         * libanjuta/anjuta-preferences.c,
11295         plugins/build-basic-autotools/build-basic-autotools.c,
11296         plugins/build-basic-autotools/executer.c,
11297         plugins/class-gen/action-callbacks.c,
11298         plugins/class-gen/action-callbacks.h,
11299         plugins/class-gen/class_gen.c,
11300         plugins/cvs-plugin/cvs-interface.c,
11301         plugins/debug-manager/attach_process.c,
11302         plugins/debug-manager/plugin.c,
11303         plugins/debug-manager/utilities.c,
11304         plugins/debug-manager/utilities.h,
11305         plugins/editor/aneditor-autocomplete.cxx,
11306         plugins/editor/aneditor.cxx,
11307         plugins/editor/search-replace.c,
11308         plugins/editor/search-replace_backend.c,
11309         plugins/gdb/breakpoints.c,
11310         plugins/gdb/registers.c,
11311         plugins/patch/plugin.c,
11312         plugins/project-wizard/druid.c,
11313         plugins/project-wizard/install.c,
11314         plugins/subversion/plugin.c,
11315         tagmanager/tm_file_entry.c: Fixed compiler warnings and deleted dead
11316         codes.
11318         * plugins/class-gen/action-callbacks.c,
11319         plugins/project-wizard/parser.c,
11320         plugins/project-wizard/property.c,
11321         plugins/project-wizard/values.c,
11322         plugins/symbol-browser/an_symbol.c: Fixed compiler warnings.
11324         * plugins/tools/scripts/prepare-changelog.pl: Order filenames
11325         alphabetically
11327 2005-06-20  Naba Kumar  <naba@gnome.org>
11329         * manuals/reference/libanjuta/tmpl/ianjuta-profile.sgml,
11330         manuals/reference/libanjuta/tmpl/e-splash.sgml,
11331         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml: Updated.
11332         
11333         * libanjuta/anjuta-launcher.c: Fixed possible double call of child
11334         exit idle function.
11335         
11336         * plugins/file-wizard/file.c, plugins/file-manager/an_file_view.c:
11337         Fixed possible memory corruption.
11339         * plugins/profile-default/plugin.c, plugins/symbol-browser/plugin.c,
11340         plugins/symbol-browser/an_symbol_view.c, libanjuta/e-splash.c,
11341         libanjuta/anjuta-status.c, plugins/project-manager/plugin.c: Fixed
11342         progress bar increment and added progress status for symbol refresh
11343         and project loading.
11344         
11345         * plugins/profile-default/plugin.c, libanjuta/interfaces/libanjuta.idl,
11346         libanjuta/e-splash.h, libanjuta/anjuta-status.c, src/main.c,
11347         plugins/file-loader/plugin.c, libanjuta/e-splash.c, src/anjuta.h,
11348         libanjuta/anjuta-status.h, src/anjuta.c: Implemented progress
11349         bar.
11351         * TODO.tasks: Updated.
11353 2005-06-19  Naba Kumar  <naba@gnome.org>
11355         * global_tags/create_global_tags.sh: Fixed sh incompatibility bug.
11356         Fixed warning.
11357         
11358         * plugins/project-import/project-import.c: Deactivate plugin when done.
11359         
11360 2005-06-18  Naba Kumar  <naba@gnome.org>
11362         * plugins/profile-default/plugin.c: Fixed error when loading another
11363         project while a project is still loaded.
11364         
11365         * plugins/project-manager/plugin.c: Used (newly added) group-activated
11366         signal from gnome-build to popup group properties.
11367         
11368         * src/anjuta.c: Load default session by default.
11370         * po/POTFILES.in: Added missing files.
11371         
11372         * libanjuta/anjuta-plugin.[ch], libanjuta/plugins.[ch]: Do not
11373         activate plugin on load (activate it separately). Connect to activate
11374         and deactivate signals for housekeeping, so that if plugins are
11375         activated or deactivate externally, they are properly recorded.
11376         
11377         * plugins/profile-default/plugin.c: Save profile before a project
11378         is loaded so that it could be restored when project is closed.
11379         
11380         * plugins/file-loader/plugin.c: Fixed ok/cancel buttons order.
11382 2005-06-17  Naba Kumar  <naba@gnome.org>
11384         * plugins/profile-default/plugin.h, plugins/profile-default/plugin.c,
11385         libanjuta/plugins.c, libanjuta/plugins.h: Implmented profile saving
11386         for project. The plugins loaded for the project is restored when project
11387         is loaded next time.
11388         
11389         * TODO.tasks: Updated.
11390         
11391 2005-06-15  Naba Kumar  <naba@gnome.org>
11393         * plugins/tools/scripts/find-fixmes.pl,
11394         (new) plugins/tools/scripts/translation-status.pl,
11395         plugins/tools/scripts/tools-2.xml.in,
11396         plugins/tools/scripts/Makefile.am,
11397         plugins/tools/scripts/prepare-changelog.pl: Added translation
11398         status script. Completed find-fixmes.pl script. Fixed bugs.
11400         * plugins/tools/scripts/tools-2.xml.in: Fixed prepare-changelog
11401         tool path.
11403 2005-06-14  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
11405         * plugins/message-view/anjuta-message-manager-plugin.glade :
11406         renamed "messages.tag.position" to "messages.tab.position".
11407         plugins/message-view/anjuta-msgman.c : 
11408         Messages tab position prefrences.
11409         
11410 2005-06-14  Naba Kumar  <naba@gnome.org>
11412         * (new) plugins/tools/scripts/find-fixmes.pl,
11413         (new) plugins/tools/scripts/tools-2.xml.in,
11414         (new) plugins/tools/scripts/Makefile.am,
11415         (new) plugins/tools/scripts/prepare-changelog.pl,
11416         plugins/tools/plugin.h, plugins/tools/fileop.c,
11417         plugins/tools/Makefile.am, configure.in: Added system tools.
11419 2005-06-11  Sebastien Granjoux  <seb.sfo@free.fr>
11421         * plugins/tools/editor.c:
11422         Take care of creating .anjuta directory if missing
11424 2005-06-10  Naba Kumar  <naba@gnome.org>
11426         * configure.in: Increased gnome-build required to version 0.1.2.
11427         
11428         * plugins/project-manager/plugin.c: Fixed target/group removal.
11429         Fixed memory leaks.
11430         
11431 2005-06-10  Naba Kumar  <naba@gnome.org>
11433         * plugins/project-manager/plugin.c: Implemented target/group
11434         configuration (update gnome-build module from cvs).
11435         
11436 2005-06-07  Naba Kumar  <naba@gnome.org>
11438         Patch from: Massimo Cora'  <maxcvs@email.it>:
11439         * plugins/class-inheritance/Makefile.am,
11440         plugins/class-inheritance/class-inherit.c,
11441         plugins/class-inheritance/class-inherit.h,
11442         plugins/class-inheritance/plugin.c,
11443         plugins/class-inheritance/plugin.h,
11444         (added) plugins/class-inheritance/class-callbacks.[ch]: Implemented
11445         expanded view of classes in hierarchy canvas (collapsable again).
11446         
11447 2005-06-05  Johannes Schmid <jhs@cvs.gnome.org>
11449         * scintilla/patches/scintilla-64-bit.diff (added)
11450         * plugins/patch/patch-plugin.c:
11451         Conditional build for GTK 2.4 and GTK 2.6
11453 2005-06-04  Sebastien Granjoux  <seb.sfo@free.fr>
11455         * plugins/tools/anjuta-tools.glade,
11456         plugins/tools/editor.c,
11457         plugins/tools/plugin.h,
11458         plugins/tools/fileop.c:
11459         Add a check box to edit an user script
11460         Correct a few memory leak
11462         * plugins/tools/execute.c,
11463         plugins/tools/tool.c,
11464         plugins/tools/tool.h:
11465         Move utility remove_mnemonic function in tool.c
11466         Small fix
11468 2005-06-04  Johannes Schmid <jhs@cvs.gnome.org>
11470         Patch from sbrabec@suse.cz:
11471         * configure.in
11472         scintilla/include/Scintilla.h:
11473         
11474         Fix 64-Bit warnings in gcc 4
11476 2005-06-03  Johannes Schmid <jhs@cvs.gnome.org>
11477         
11478         * plugins/patch/patch_plugin.c
11479         plugins/patch/patch.h
11480         plugin/patch/patch-plugin.glade
11481         plugin/patch/Makefile.am:
11482         
11483         Changed patch plugin to use libglade and new gtk 2.6 widgets
11485 2005-05-31  Naba Kumar  <naba@gnome.org>
11487         Patch from Jason Bayman  <JBayman@HobbitHell.com>:
11488         * plugins/editor/text_editor.c: Don't show error
11489         for empty files.
11490         
11491 2005-05-28  Sebastien Granjoux  <seb.sfo@free.fr>
11492         
11493         * plugins/message-view/anjuta-message-manager.ui,
11494         plugins/message-view/anjuta-msgman.c,
11495         plugins/message-view/anjuta-msgman.h,
11496         plugins/message-view/message-view.c,
11497         plugins/message-view/message-view.h,
11498         plugins/message-view/plugin.c:
11499         Add a popup menu in messages panes
11500         Move save message pane option in it
11502 2005-05-28  Naba Kumar  <naba@gnome.org>
11504         * data/properties/styles.properties: Fixed default font
11505         names and sizes.
11507         * plugins/editor/style-editor.c: cleanup.
11508         
11509 2005-05-25  Naba Kumar  <naba@gnome.org>
11511         * plugin/gdb/plugin.c: Start gdb even if the program does
11512         not exists. Fixes bug #305074
11513         
11514 2005-05-24  Naba Kumar  <naba@gnome.org>
11516         Patch from: Saleem Abdulrasool  <compnerd@gentoo.org>
11517         * configure.in: graphviz pkgconfig path.
11519 2005-05-24  Naba Kumar  <naba@gnome.org>
11521         * configure.in, anjuta.desktop.in.in: Fixed Icon path.
11522         * TODO.tasks: Updated.
11523         
11524 2005-05-22  Naba Kumar  <naba@gnome.org>
11526         * anjuta.spec.in: Fixed spec file
11527         * plugins/editor/text_editor.c: Fixed gnome-vfs monitor.
11529 2005-05-21  Sebastien Granjoux  <seb.sfo@free.fr>
11530         
11531         * TODO.tasks: Updated.
11533         * plugins/message-view/anjuta-message-manager.ui,
11534         plugins/message-view/message-view.c,
11535         plugins/message-view/message-view.h,
11536         plugins/message-view/plugin.c:
11537         Add shortcut for next and previous message
11538         Add a save message menu item
11539         Fix a bug in previous message
11541 2005-05-21  Naba Kumar  <naba@gnome.org>
11543         * Makefile.am, anjuta.spec.in, configure.in, data/properties/Makefile.am,
11544         doc/Makefile.am, global-tags/create_global_tags.sh,
11545         libanjuta/interfaces/Makefile.am.iface: Fixed 64bit arch related bugs
11546         and rpm package creation. Fixed installation paths.
11547         
11548         * plugins/editor/anjuta-document-manager.glade,
11549         plugins/editor/text_editor.c: Fixed autoformat settings in preferences
11550         and indent options.
11551         
11552         * tagmanager/tm_workspace.c: Fixed code format and compiler warning.
11554 2005-05-21  Naba Kumar  <naba@gnome.org>
11556         * Makefile.am, configure.in, data/Makefile.am, doc/Makefile.am,
11557         global-tags/Makefile.am, launcher/Makefile.am, libegg/Makefile.am,
11558         pixmaps/Makefile.am, scripts/Makefile.am, src/Makefile.am,
11559         tagmanager/Makefile.am: Fixed paths configure variables to take
11560         automake configure variables instead of hardcoding.
11562         * global-tags/tm_global_tags.c: Formated code.
11564         * manuals/reference/libanjuta/tmpl/e-splash.sgml,
11565         manuals/reference/libanjuta/tmpl/ianjuta-context-list.sgml,
11566         manuals/reference/libanjuta/tmpl/ianjuta-context-text.sgml,
11567         manuals/reference/libanjuta/tmpl/ianjuta-context-tree.sgml,
11568         manuals/reference/libanjuta/tmpl/ianjuta-context.sgml,
11569         manuals/reference/libanjuta/tmpl/ianjuta-renderable.sgml,
11570         manuals/reference/libanjuta/tmpl/ianjuta-sand-box.sgml,
11571         manuals/reference/libanjuta/tmpl/ianjuta-transformable.sgml,
11572         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml: Updated.
11574 2005-05-20  Naba Kumar  <naba@gnome.org>
11576         * README, anjuta.spec.in, configure.in: Updated Anjuta Descriptions
11577         and fixed rpm spec file (more testing required).
11578         
11579         * data/gdb.init: Don't set gdb prompt.
11580         
11581         * mime/Makefile.am: run update-mime-data only on system-wide install.
11582         
11583         * plugins/gdb/Makefile.am: Install plugin at correct paths.
11585 2005-05-19  Naba Kumar  <naba@gnome.org>
11587         * plugins/terminal/terminal.c: Fixed crash bug when terminal is used
11588         while it's not visible.
11590         Patch from: Jason Bayman  <JBayman@HobbitHell.com>
11591         * plugins/editor/aneditor-autocomplete.cxx: Fixed crash bugs.
11592         
11593 2005-05-19  Naba Kumar <naba@gnome.org>
11595         * configure.in: Fixed subversion checks. Added
11596         --disable-plugin-subversion and --disable-plugin-glade
11597         configure flags to manually turn off their plugin builds.
11599         * plugins/editor/plugin.c: Save and restore current editor line
11600         positions in session.
11602 2005-05-18  Naba Kumar  <naba@gnome.org>
11604         * AUTHORS: Fixed email address.
11605         
11606         * libanjuta/anjuta-utils.c,
11607         plugins/project-manager/plugin.c: Take plugin shell as dialog parents
11608         when the projectmanager toplevel is not a window. Check for valid
11609         gtkwindow type before using the passed window as parent for anjuta
11610         dialogs.
11612 2005-05-17  Naba Kumar  <naba@gnome.org>
11614         * libanjuta/interfaces/libanjuta.idl: Fixed compiler warnings.
11615         
11616         * plugins/cvs-plugin/Makefile.am,
11617         plugins/devhelp/plugin.c,
11618         plugins/file-loader/Makefile.am,
11619         plugins/macro/Makefile.am,
11620         plugins/message-view/Makefile.am,
11621         plugins/patch/Makefile.am,
11622         plugins/project-manager/Makefile.am,
11623         plugins/subversion/Makefile.am,
11624         plugins/symbol-browser/Makefile.am: Removed -module flags
11625         from libtool flags
11627         * MAINTAINERS: Added file so that I could recieve bugzilla
11628         reports.
11630         * plugins/glade/plugin.c: Fixed compile error.
11632 === Anjuta 2.0.0 ===
11634 2005-05-15  Naba Kumar  <naba@gnome.org>
11636         * configure.in: Adjusted gdl version requirement. Bumped anjuta
11637         version to 2.0.0.
11639         * plugins/symbol-browser/an_symbol_view.c,
11640         plugins/symbol-browser/plugin.c,
11641         tagmanager/tm_workspace.c: Fixed symbol-browser crash when
11642         symbols have been updated. Reset file symbols when update
11643         occurs. Fixed memory leaks.
11645         Patch from Jason Bayman  <JBayman@HobbitHell.com>:
11646         * plugins/file-wizard/action-callbacks.c: Fixed crash bug.
11647         
11648 2005-05-14  Sebastien Granjoux  <seb.sfo@free.fr>
11650         * plugins/tools/anjuta-tools.glade:
11651         Remove unused parameter dialog
11653         * plugins/tools/dialog.c,
11654         plugins/tools/fileop.c,
11655         plugins/tools/fileop.h,
11656         plugins/tools/tool.c,
11657         plugins/tools/tool.h,
11658         plugins/tools/variable.c:
11659         Add a few comments and cleanups
11661         * plugins/tools/editor.c,
11662         plugins/tools/editor.h:
11663         Remove code from previous plugin and add comments
11664         Use main window as parent (instead of tool list)
11666         * plugins/tools/execute.c,
11667         plugins/tools/execute.h:
11668         Remove code from previous plugin and add comments
11669         Fix warnings
11671 2005-05-14  Naba Kumar  <naba@gnome.org>
11673         * AUTHORS, FUTURE, NEWS, README, ROADMAP: Updated and prepared for
11674         release.
11675         
11676         * configure.in: Fixed
11677         
11678         * plugins/class-inheritance/class-inheritance.png: New icon.
11679         
11680         * plugins/devhelp/plugin.c: Fixed docking bug where browser widget
11681         screws up when reparented.
11683 2005-02-24  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
11685         * plugins/editor/search-replace.c,
11686         plugins/editor/search-replace_backend.c
11687         plugins/project-manager/plugin.c : Clear find pane if searching same 
11688         expression. Clean code.
11690 2005-05-14  Pawan Chitrakar  <pawan@nplinux.org>
11692         * configure.in: Added ne in ALL_LINGUAS
11693         
11694 2005-05-13  Naba Kumar  <naba@gnome.org>
11696         * configure.in: Fixed glade-3 version.
11697         
11698         * plugins/gdb/debugger.c, plugins/gdb/debugger.h,
11699         plugins/gdb/locals.c, plugins/gdb/stack_trace.c,
11700         plugins/gdb/watch.c: Update locals, watch and frame document on
11701         frame change.
11703 2005-05-12  Naba Kumar  <naba@gnome.org>
11705         * plugins/editor/aneditor-autocomplete.cxx: Fixed infinite loop in
11706         scope autocompletion when the function definition is incomplete.
11707         
11708         * plugins/class-gen/anjuta-class-gen.plugin.in,
11709         plugins/file-wizard/anjuta-file-wizard.plugin.in,
11710         plugins/gdb/plugin.c,
11711         plugins/glade/anjuta-glade.plugin.in,
11712         plugins/project-import/anjuta-project-import.plugin.in,
11713         plugins/project-wizard/anjuta-project-wizard.plugin.in: Give a proper
11714         titles for the wizards.
11716 2005-05-11  Naba Kumar  <naba@gnome.org>
11718         * configure.in, plugins/debug-manager/Makefile.am,
11719         plugins/debug-manager/plugin.c,
11720         (added) plugins/debug-manager/images/.cvsignore,
11721         (added) plugins/debug-manager/images/Makefile.am,
11722         (added) plugins/debug-manager/images/detach-16.png,
11723         (added) plugins/debug-manager/images/detach.png,
11724         (added) plugins/debug-manager/images/step-into-16.png,
11725         (added) plugins/debug-manager/images/step-into.png,
11726         (added) plugins/debug-manager/images/step-out-16.png,
11727         (added) plugins/debug-manager/images/step-out.png,
11728         (added) plugins/debug-manager/images/step-over-16.png,
11729         (added) plugins/debug-manager/images/step-over.png,
11730         plugins/gdb/Makefile.am,
11731         plugins/gdb/breakpoints.c,
11732         plugins/gdb/plugin.c,
11733         (added) plugins/gdb/images/.cvsignore,
11734         (added) plugins/gdb/images/Makefile.am,
11735         (added) plugins/gdb/images/breakpoint.png,
11736         (added) plugins/gdb/images/locals.png,
11737         (added) plugins/gdb/images/stack.png,
11738         (added) plugins/gdb/images/watch.png: Fixed breakpoints
11739         'remove all'. Added debugger icons.
11741         * plugins/editor/text_editor.c: Fixed file monitor.
11743         Patch from: Massimo Cora'  <maxcvs@email.it>
11744         * plugins/patch/anjuta-patch-plugin.png,
11745         plugins/class-gen/Makefile.am,
11746         plugins/class-gen/action-callbacks.c,
11747         plugins/class-gen/class_gen.c,
11748         plugins/class-gen/class_logo.xpm: Implemented vcs
11749         file addions. New icons by Fabio Zecchini
11751 2005-02-24  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
11753         * libanjuta/interfaces/libanjuta.idl
11754         plugins/editor/anjuta-docman.c plugins/editor/search-replace.c
11755         plugins/editor/search-replace_backend.c
11756         plugins/project-manager/plugin.c : Search & Replace in all Project Files.
11758 2005-05-11  Naba Kumar  <naba@gnome.org>
11759         
11760         * plugins/gdb/actions.c, plugins/gdb/breakpoints.c,
11761         plugins/gdb/breakpoints.h, plugins/gdb/debug_tree.c,
11762         plugins/gdb/plugin.c, plugins/gdb/plugin.h,
11763         plugins/gdb/registers.c, plugins/gdb/stack_trace.c,
11764         plugins/gdb/watch.c: Completed breakpoints implementation. Fixed
11765         memory leaks.
11766         
11767         * plugins/symbol-browser/an_symbol_prefs.c,
11768         plugins/symbol-browser/an_symbol_search.c,
11769         plugins/symbol-browser/an_symbol_view.c,
11770         plugins/symbol-browser/an_symbol_view.h,
11771         plugins/symbol-browser/plugin.c: Fixed memory leaks.
11773 2005-05-11  Naba Kumar  <naba@gnome.org>
11775         * libanjuta/anjuta-shell.c: Fixed runtime warning.
11776         
11777         * libanjuta/e-splash.c, libanjuta/e-splash.h, src/main.c: Pass the
11778         progress bar location at create time, instead of hardcoding.
11779         
11780         * pixmaps/Makefile.am, (added) pixmaps/anjuta_splash_mini.png:
11781         Added mini splash screen.
11782         
11783         * plugins/editor/text_editor.c: Do not produce warning when file
11784         monitor could not be created.
11785         
11786         * plugins/profile-default/plugin.c: Save project session on exit.
11787         Show mini splash with progress bar at profile load.
11789 2005-05-10  Naba Kumar  <naba@gnome.org>
11791         * configure.in, manuals/Makefile.am: Fixed compile flags.
11792         Disable outdated manuals builds.
11793         
11794         * global-tags/Makefile.am: Uninstall tags files on
11795         'make uninstall'
11796         
11797         * libegg/Makefile.am: Use configured deprecated flags.
11798         
11799         * manuals/reference/libanjuta/tmpl/ianjuta-iterable-tree.sgml,
11800         manuals/reference/libanjuta/tmpl/ianjuta-iterable.sgml,
11801         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml:
11802         Updated.
11803         
11804         * mime/Makefile.am: Take DESTDIR into account.
11805         
11806         * plugins/class-gen/Makefile.am: Fixed 'make distcheck' errors.
11807         
11808         * plugins/editor/aneditor-autocomplete.cxx: Fixed crash bug
11809         on scope autocompletion.
11810         
11811         * plugins/debug-manager/plugin.c, plugins/gdb/debugger.c,
11812         plugins/gdb/debugger.h, plugins/gdb/plugin.c: Use project
11813         shared libs and static libs paths for debugging. Order them
11814         correctly.
11815         
11816         * po/POTFILES.in: Updated.
11818 2005-05-09  Naba Kumar  <naba@gnome.org>
11820         * libanjuta/interfaces/libanjuta.idl,
11821         plugins/gdb/debugger.[ch], plugins/gdb/plugin.c,
11822         plugins/gdb/breakpoints.ch, plugins/gdb/gdbmi-test.c,
11823         plugins/debug-manager/plugin.c, plugins/gdb/anjuta-gdb-plugin.ui:
11824         Implemented debugger source directory search and emits location changed
11825         signal with absolute path of the file.
11827         * plugins/tools/tool.c: Fixed compile errors.
11828         
11829 2005-05-08  Sebastien Granjoux  <seb.sfo@free.fr>
11831         * plugins/tools/anjuta-tools.glade,
11832         plugins/tools/dialog.h,
11833         plugins/tools/dialog.c,
11834         plugins/tools/plugin.c,
11835         plugins/tools/editor.c:
11836         Improve graphical user interface
11837         Remove old code
11838         Correct an error on close
11839         Some cleanups
11841         * plugins/tools/fileop.c,
11842         plugins/tools/tool.h,
11843         plugins/tools/tool.c:
11844         Change the tool internal structure
11845         Support having tools configuration in several places
11847 2005-05-08  Naba Kumar  <naba@gnome.org>
11849         * plugins/gdb/actions.c,
11850         (removed) plugins/gdb/registers_cbs.c,
11851         (removed) plugins/gdb/registers_cbs.h,
11852         (removed) plugins/gdb/registers_gui.c,
11853         (removed) plugins/gdb/sharedlib_cbs.c,
11854         (removed) plugins/gdb/sharedlib_cbs.h,
11855         (removed) plugins/gdb/sharedlib_gui.c,
11856         (removed) plugins/gdb/signals_cbs.c,
11857         (removed) plugins/gdb/signals_cbs.h,
11858         (removed) plugins/gdb/signals_gui.c: Removed dead files.
11860 2005-05-08  Naba Kumar  <naba@gnome.org>
11862         * plugins/build-basic-autotools/executer.c: Fixed programs
11863         listing dialog.
11864         
11865         * plugins/debug-manager/Makefile.am,
11866         plugins/debug-manager/anjuta-debug-manager.glade,
11867         plugins/debug-manager/plugin.c,
11868         plugins/gdb/Makefile.am: Used libglade for programs listing
11869         dialog.
11870         
11871         * (added) plugins/gdb/pointer.png: Stack pointer image.
11872         
11873         * libanjuta/anjuta-marshal.list,
11874         pixmaps/Makefile.am,
11875         plugins/gdb/actions.c,
11876         plugins/gdb/actions.h,
11877         plugins/gdb/anjuta-gdb-plugin.ui,
11878         plugins/gdb/anjuta-gdb.glade,
11879         plugins/gdb/breakpoints.c,
11880         plugins/gdb/breakpoints.h,
11881         plugins/gdb/debug_tree.c,
11882         plugins/gdb/debug_tree.h,
11883         plugins/gdb/debugger.c,
11884         plugins/gdb/debugger.h,
11885         plugins/gdb/gdbmi-test.c,
11886         plugins/gdb/gdbmi.c,
11887         plugins/gdb/gdbmi.h,
11888         plugins/gdb/info.c,
11889         plugins/gdb/info.h,
11890         plugins/gdb/locals.c,
11891         plugins/gdb/locals.h,
11892         plugins/gdb/memory.c,
11893         plugins/gdb/memory.h,
11894         plugins/gdb/plugin.c,
11895         plugins/gdb/plugin.h,
11896         plugins/gdb/registers.c,
11897         plugins/gdb/registers.h,
11898         plugins/gdb/registers_cbs.c,
11899         plugins/gdb/registers_cbs.h,
11900         plugins/gdb/registers_gui.c,
11901         plugins/gdb/sharedlib.c,
11902         plugins/gdb/sharedlib.h,
11903         plugins/gdb/sharedlib_cbs.c,
11904         plugins/gdb/sharedlib_cbs.h,
11905         plugins/gdb/sharedlib_gui.c,
11906         plugins/gdb/signals.c,
11907         plugins/gdb/signals.h,
11908         plugins/gdb/signals_cbs.c,
11909         plugins/gdb/signals_cbs.h,
11910         plugins/gdb/signals_gui.c,
11911         plugins/gdb/stack_trace.c,
11912         plugins/gdb/stack_trace.h,
11913         plugins/gdb/utilities.c,
11914         plugins/gdb/utilities.h,
11915         plugins/gdb/watch.c,
11916         plugins/gdb/watch.h,
11917         plugins/gdb/watch_cbs.c,
11918         plugins/gdb/watch_cbs.h,
11919         plugins/gdb/watch_gui.c: Implemented gdb MI interface and used
11920         it for all debugger component updates and listing. Implemented
11921         user custom debugger command window. Fixed all debugger components
11922         to work correctly. Implemented debugger as GObject. Removed
11923         deprecated codes.
11924         
11925 2005-05-06  Naba Kumar  <naba@gnome.org>
11926         
11927         * TODO.tasks: Updated.
11928         
11929         * plugins/build-basic-autotools/Makefile.am,
11930         plugins/file-loader/Makefile.am,
11931         plugins/profile-default/Makefile.am,
11932         plugins/sample1/Makefile.am,
11933         plugins/symbol-browser/images/Makefile.am,
11934         src/Makefile.am: Fixed 'make distcheck' errors.
11936         * plugins/symbol-browser/an_symbol_view.c: Removed unnecessary
11937         updates.
11939         * tagmanager/tm_workspace.c: Include prototypes in getting
11940         scope members.
11942 2005-05-06  Naba Kumar  <naba@gnome.org>
11944         * TODO.tasks: Updated.
11945         
11946         * configure.in, plugins/cvs-plugin/Makefile.am,
11947         plugins/debug-manager/Makefile.am,
11948         plugins/devhelp/Makefile.am,
11949         plugins/editor/Makefile.am,
11950         plugins/gdb/Makefile.am: Fixed 'make distcheck' errors.
11951         
11952         * libanjuta/interfaces/libanjuta.idl: Defined IAnjutaSymbol,
11953         IAnjutaSymbolManager, IAnjutaIterable and IAnjutaIterableTree
11954         interfaces.
11955         
11956         * tagmanager/tm_workspace.c,
11957         tagmanager/include/tm_workspace.h,
11958         plugins/editor/aneditor-autocomplete.cxx,
11959         plugins/editor/aneditor-calltip.cxx: Fixed fill_find_tags_array()
11960         to return all matching tag types when no name is given instead of
11961         returning empty array.
11962         
11963         * plugins/symbol-browser/Makefile.am,
11964         (added) plugins/symbol-browser/an_symbol.c,
11965         (added) plugins/symbol-browser/an_symbol.h,
11966         plugins/symbol-browser/an_symbol_info.c,
11967         plugins/symbol-browser/an_symbol_info.h,
11968         (added) plugins/symbol-browser/an_symbol_iter.c,
11969         (added) plugins/symbol-browser/an_symbol_iter.h,
11970         plugins/symbol-browser/an_symbol_search.c,
11971         plugins/symbol-browser/an_symbol_view.c,
11972         plugins/symbol-browser/an_symbol_view.h,
11973         plugins/symbol-browser/anjuta-symbol-browser.plugin.in,
11974         plugins/symbol-browser/plugin.c,
11975         plugins/symbol-browser/plugin.h: Implemented IAnjutaSymbol wrapper
11976         for tags. Implemented IAnjutaSymbolManager interface in symbol-browser
11977         plugin and implemented IAnjutaIterable interface for symbol search
11978         and iteration.
11980         * plugins/class-inheritance/Makefile.am,
11981         plugins/class-inheritance/class-inherit.c,
11982         plugins/class-inheritance/class-inherit.h,
11983         plugins/class-inheritance/plugin.h: Use the newly added
11984         IAnjutaSymbolManager/IAnjutaSymbol/IAnjutaIterable intefaces and
11985         get rid of libanjuta-ctags.la dependencies.
11987 2005-05-02  Naba Kumar  <naba@gnome.org>
11989         * plugins/class-inheritance/class-inherit.c,
11990         plugins/class-inheritance/plugin.c,
11991         plugins/class-inheritance/plugin.h: Fixed crash bug when no symbols could
11992         be found for a class. Formated code.
11994         Patch from: Curtis Magyar  <curtm4n@gmail.com>:
11995         * plugins/editor/anjuta-docman.c: Fixed alpabetical ordering
11996         of editor tabs.
11997         
11998 2005-05-01  Sebastien Granjoux  <seb.sfo@free.fr>
12000         * libanjuta/anjuta-launcher.c:
12001         Keep trying sending data until all bytes have been written
12003         * plugins/tools/anjuta-tools.glade,
12004         plugins/tools/editor.c:
12005         Add a combo box to defined data from stdin
12007         * plugins/tools/execute.c:
12008         Send data in stdin if needed
12009         Code cleanups
12011         * plugins/tools/fileop.c,
12012         plugins/tools/tool.h,
12013         plugins/tools/tool.c:
12014         Store, load and save stdin data
12015         Use tools-2.xml instead of tools.xml
12017         * plugins/tools/plugin.c,
12018         plugins/tools/plugin.h:
12019         Code cleanups
12021         * plugins/tools/dialog.c,
12022         plugins/tools/dialog.h:
12023         Few code cleanups
12025         * plugins/tools/variable.c,
12026         plugins/tools/variable.h:
12027         Add editor related variables
12028         Code cleanups
12030 2005-04-29  Naba Kumar  <naba@gnome.org>
12032         * libanjuta/Makefile.am, src/Makefile.am: Include libutil in libanjuta.
12034         * plugins/editor/text_editor.c: Fixed line marker interpretation.
12035         
12036         * data/gdb.init, plugins/gdb/Makefile.am, plugins/gdb/breakpoints.c,
12037         plugins/gdb/breakpoints.h, plugins/gdb/debugger.c,
12038         plugins/gdb/debugger.h, (added) plugins/gdb/gdbmi-test.c,
12039         (added) plugins/gdb/gdbmi.c, (added) plugins/gdb/gdbmi.h: Started
12040         working on gdb MI interface. Completed MI parser interface.
12042         Patch from  Massimo Cora <maxcvs@email.it>:
12043         * plugins/class-inheritance/Makefile.am,
12044         plugins/class-inheritance/class-inherit.c,
12045         plugins/class-inheritance/class-inherit.h,
12046         plugins/class-inheritance/plugin.c,
12047         plugins/class-inheritance/plugin.h: Update to class inheritance plugin.
12048         Used system theme for colors. Display class members on mouse click.
12049         
12050 2005-04-28  Naba Kumar  <naba@gnome.org>
12052         * plugins/symbol-browser/an_symbol_prefs.c
12053         plugins/symbol-browser/anjuta-symbol-browser-plugin.glade: Added
12054         implementation to create/add/remove custom tags files in symbol
12055         brower preferences.
12057         * global-tags/Makefile.am: Exclude bin target anjuta-tags from
12058         EXTRA_DIST.
12060         * plugins/project-import/project-import.c: Fixed memory leaks and
12061         use correct debug prints.
12062         
12063         * TODO.tasks: Updated.
12064         
12065 2005-04-27  Naba Kumar  <naba@gnome.org>
12067         * libanjuta/Makefile.am, libanjuta/interfaces/Makefile.am.iface,
12068         libegg/Makefile.am,     libegg/treeviewutils/Makefile.am,
12069         scintilla/Makefile.am: Fixed 'make distcheck' errors.
12071         * plugins/editor/anjuta-docman.c,
12072         plugins/editor/anjuta-docman.h,
12073         plugins/editor/plugin.c: Emit editor-added signal from docman
12074         and connect signals to new editor correctly.
12076         * plugins/class-inheritance/plugin.c,
12077         plugins/symbol-browser/plugin.c: Added stock icons.
12078         
12079         * plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin.glade,
12080         plugins/build-basic-autotools/executer.c,
12081         plugins/build-basic-autotools/executer.h: Added missing files
12082         for the execute programs implementation.
12084 2005-04-26  Naba Kumar  <naba@gnome.org>
12085         
12086         * TODO.tasks: Updated.
12088         * plugins/file-loader/plugin.c,
12089         plugins/project-import/anjuta-project-import.plugin.in,
12090         plugins/project-import/plugin.c,
12091         plugins/project-import/project-import.c,
12092         plugins/project-import/project-import.h: Be able to import older
12093         anjuta projects.
12095 2005-04-26  Naba Kumar  <naba@gnome.org>
12097         * libanjuta/anjuta-shell.c: Remove widget from the queue also when
12098         removing it from the shell.
12100         * libanjuta/anjuta-shell.c,
12101         libanjuta/anjuta-shell.h,
12102         plugins/profile-default/plugin.c: Implemented freeze/thaw for shell
12103         so that widget additions are freezed or thaw using a pending queue.
12104         Fixded UI flicker while loading projects.
12106 2005-04-26  Naba Kumar  <naba@gnome.org>
12108         * TODO.tasks: Updated.
12109         
12110         * libanjuta/interfaces/libanjuta.idl: Added execute method for
12111         IAnjutaBuildable interface.
12112         
12113         * plugins/build-basic-autotools/Makefile.am,
12114         plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin.ui,
12115         plugins/build-basic-autotools/anjuta-build-basic-autotools.plugin.in,
12116         plugins/build-basic-autotools/build-basic-autotools.c,
12117         plugins/build-basic-autotools/build-basic-autotools.h: Added "Execute"
12118         interface and UI for executing project/file programs. Implemented
12119         IAnjutaFile interface so that executables could be opened directly.
12120         
12121         * plugins/class-inheritance/anjuta-class-inheritance.plugin.in: Removed
12122         Authors line (Reserved for external plugins, which do not have a way to
12123         show their credits).
12124         
12125         * plugins/file-loader/plugin.c: Read "Title" from [Wizard] and
12126         [File Loader] group for menu labels (default to "Name" if it is not
12127         defined.
12128         
12129         * plugins/terminal/terminal.c: Implemented IAnjutaTerminal interface
12130         for executing external commands.
12132 2005-04-25  Sebastien Granjoux  <seb.sfo@free.fr>
12134         * plugins/project-wizard/property.c:
12135         Correct a memory leak
12137         * libanjuta/interfaces/libanjuta.idl,
12138         plugins/editor/text_editor.c:
12139         Add erase_all and replace_selection function to IAnjutaEditor
12141         * plugins/tools/anjuta-tools.glade,
12142         plugins/tools/fileop.c,
12143         plugins/tools/editor.c,
12144         plugins/tools/tool.c
12145         plugins/tools/tool.h:
12146         Add shortcut and icon 
12148         * plugins/tools/variable.c,
12149         plugins/tools/variable.h:
12150         Add a variable asking parameters at run time
12152         * plugins/tools/execute.c:
12153         Add a warning message for missing document manager
12154         Add replace buffer and replace selection output
12155         Correct an error in popup output
12157         * plugins/tools/plugin.c,
12158         plugins/tools/plugin.h,
12159         plugins/tools/anjuta-tools.ui,
12160         src/anjuta.ui:
12161         Few clean up
12162         Attach tools menu to a new place
12164 2005-04-25  Naba Kumar  <naba@gnome.org>
12166         * libanjuta/plugins.c, src/about.c, src/about.h,
12167         src/anjuta-actions.h, src/anjuta-app.c, src/anjuta.ui,
12168         plugins/class-gen/anjuta-class-gen.plugin.in: Added about
12169         plugins (about box for plugins) menu.
12171 2005-04-24  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
12173         *  plugins/editor/search-replace.c :
12174         Displayed full path in Search pane window. 
12175         Bug 300231 : Selected line in Search pane window .
12176                 
12177 2005-04-23  Naba Kumar  <naba@gnome.org>
12179         * plugins/terminal/terminal.c: Fixed crash on terminal docking.
12181 2005-04-22  Naba Kumar  <naba@gnome.org>
12183         * plugins/project-wizard/templates/java-logo.png: Smaller icons.
12184         
12185         * plugins/project-wizard/templates/java.wiz,
12186         plugins/project-wizard/templates/java/src/Makefile.am.tpl: Add option
12187         to create bytecodes (.class) files.
12188         
12189         * plugins/symbol-browser/an_symbol_info.c,
12190         plugins/symbol-browser/an_symbol_info.h,
12191         plugins/symbol-browser/an_symbol_search.c,
12192         plugins/symbol-browser/an_symbol_view.c,
12193         plugins/symbol-browser/plugin.c,
12194         tagmanager/tm_workspace.c: Fixed java symbols view. Fixed icon types
12195         in file symbol list.
12197 2005-04-22  Naba Kumar  <naba@gnome.org>
12199         * TODO.tasks: Updated.
12200         
12201         * plugins/class-inheritance/Makefile.am,
12202         plugins/subversion/Makefile.am: Do not install plugin files when
12203         plugin build condition is false.
12204         
12205         * plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin.ui,
12206         plugins/build-basic-autotools/build-basic-autotools.c,
12207         plugins/build-basic-autotools/build-basic-autotools.h,
12208         plugins/file-loader/anjuta-loader-plugin.ui,
12209         plugins/file-loader/dnd.c,
12210         plugins/file-loader/plugin.c,
12211         plugins/file-loader/plugin.h,
12212         plugins/project-manager/anjuta-project-manager.ui,
12213         plugins/project-manager/plugin.c: Added open file and build context
12214         menu in project manager context menu.
12216 2005-04-22  Naba Kumar  <naba@gnome.org>
12218         * configure.in: Added message output showing conditional plugins to
12219         build or not.
12220         
12221         * src/layout.xml: Added layout for class-inheritance plugin widget.
12222         
12223         * plugins/class-inheritance/anjuta-class-inheritance.plugin.in: Fixed
12224         plugin name to remove redundant terms.
12225         
12226         * TODO.tasks: Updated.
12227         
12228         * configure.in,
12229         plugins/symbol-browser/Makefile.am,
12230         plugins/symbol-browser/an_symbol_view.c,
12231         (removed) plugins/symbol-browser/sv_class.xpm,
12232         (removed) plugins/symbol-browser/sv_function.xpm,
12233         (removed) plugins/symbol-browser/sv_macro.xpm,
12234         (removed) plugins/symbol-browser/sv_private_fun.xpm,
12235         (removed) plugins/symbol-browser/sv_private_var.xpm,
12236         (removed) plugins/symbol-browser/sv_protected_fun.xpm,
12237         (removed) plugins/symbol-browser/sv_protected_var.xpm,
12238         (removed) plugins/symbol-browser/sv_public_fun.xpm,
12239         (removed) plugins/symbol-browser/sv_public_var.xpm,
12240         (removed) plugins/symbol-browser/sv_static_fun.xpm,
12241         (removed) plugins/symbol-browser/sv_static_var.xpm,
12242         (removed) plugins/symbol-browser/sv_struct.xpm,
12243         (removed) plugins/symbol-browser/sv_unknown.xpm,
12244         (removed) plugins/symbol-browser/sv_variable.xpm,
12245         (added) plugins/symbol-browser/images/.cvsignore,
12246         (added) plugins/symbol-browser/images/Icons.16x16.Class,
12247         (added) plugins/symbol-browser/images/Icons.16x16.Enum,
12248         (added) plugins/symbol-browser/images/Icons.16x16.Field,
12249         (added) plugins/symbol-browser/images/Icons.16x16.FormsDesigner.BringToFront,
12250         (added) plugins/symbol-browser/images/Icons.16x16.FormsDesigner.SendToBack,
12251         (added) plugins/symbol-browser/images/Icons.16x16.Interface,
12252         (added) plugins/symbol-browser/images/Icons.16x16.InternalClass,
12253         (added) plugins/symbol-browser/images/Icons.16x16.InternalDelegate,
12254         (added) plugins/symbol-browser/images/Icons.16x16.InternalEnum,
12255         (added) plugins/symbol-browser/images/Icons.16x16.InternalEvent,
12256         (added) plugins/symbol-browser/images/Icons.16x16.InternalField,
12257         (added) plugins/symbol-browser/images/Icons.16x16.InternalInterface,
12258         (added) plugins/symbol-browser/images/Icons.16x16.InternalMethod,
12259         (added) plugins/symbol-browser/images/Icons.16x16.InternalProperty,
12260         (added) plugins/symbol-browser/images/Icons.16x16.InternalStruct,
12261         (added) plugins/symbol-browser/images/Icons.16x16.Literal,
12262         (added) plugins/symbol-browser/images/Icons.16x16.Method,
12263         (added) plugins/symbol-browser/images/Icons.16x16.NameSpace,
12264         (added) plugins/symbol-browser/images/Icons.16x16.PrivateClass,
12265         (added) plugins/symbol-browser/images/Icons.16x16.PrivateDelegate,
12266         (added) plugins/symbol-browser/images/Icons.16x16.PrivateEnum,
12267         (added) plugins/symbol-browser/images/Icons.16x16.PrivateEvent,
12268         (added) plugins/symbol-browser/images/Icons.16x16.PrivateField,
12269         (added) plugins/symbol-browser/images/Icons.16x16.PrivateInterface,
12270         (added) plugins/symbol-browser/images/Icons.16x16.PrivateMethod,
12271         (added) plugins/symbol-browser/images/Icons.16x16.PrivateProperty,
12272         (added) plugins/symbol-browser/images/Icons.16x16.PrivateStruct,
12273         (added) plugins/symbol-browser/images/Icons.16x16.ProtectedClass,
12274         (added) plugins/symbol-browser/images/Icons.16x16.ProtectedDelegate,
12275         (added) plugins/symbol-browser/images/Icons.16x16.ProtectedEnum,
12276         (added) plugins/symbol-browser/images/Icons.16x16.ProtectedEvent,
12277         (added) plugins/symbol-browser/images/Icons.16x16.ProtectedField,
12278         (added) plugins/symbol-browser/images/Icons.16x16.ProtectedInterface,
12279         (added) plugins/symbol-browser/images/Icons.16x16.ProtectedMethod,
12280         (added) plugins/symbol-browser/images/Icons.16x16.ProtectedProperty,
12281         (added) plugins/symbol-browser/images/Icons.16x16.ProtectedStruct,
12282         (added) plugins/symbol-browser/images/Icons.16x16.Reference,
12283         (added) plugins/symbol-browser/images/Makefile.am: Removed old symbol
12284         pixmaps and added new icons (taken from monodevelop).
12286 2005-04-21  Naba Kumar  <naba@gnome.org>
12288         Patch from  Massimo Cora <maxcvs@email.it>:
12290         * configure.in, plugins/Makefile.am
12291         (new) plugins/class-inheritance/.cvsignore,
12292         (new) plugins/class-inheritance/Makefile.am,
12293         (new) plugins/class-inheritance/anjuta-class-inheritance.plugin.in,
12294         (new) plugins/class-inheritance/class-inherit.c,
12295         (new) plugins/class-inheritance/class-inherit.h,
12296         (new) plugins/class-inheritance/plugin.c,
12297         (new) plugins/class-inheritance/plugin.h,
12298         (new) plugins/class-inheritance/class-inheritance.png: Added class
12299         inheritance plugin.
12300         
12301         Changes by naba: Added pkgconfig check for graphviz and conditionally
12302         build graphviz.
12303         
12304         * plugins/patch/.cvsignore, plugins/tools/.cvsignore: Updated.
12306 2005-04-20  Naba Kumar  <naba@gnome.org>
12308         * manuals/reference/libanjuta/tmpl/anjuta-children.sgml,
12309         manuals/reference/libanjuta/tmpl/ianjuta-context-list.sgml,
12310         manuals/reference/libanjuta/tmpl/ianjuta-context-text.sgml,
12311         manuals/reference/libanjuta/tmpl/ianjuta-context-tree.sgml,
12312         manuals/reference/libanjuta/tmpl/ianjuta-context.sgml,
12313         manuals/reference/libanjuta/tmpl/ianjuta-iterable-tree.sgml,
12314         manuals/reference/libanjuta/tmpl/ianjuta-iterable.sgml,
12315         manuals/reference/libanjuta/tmpl/ianjuta-renderable.sgml,
12316         manuals/reference/libanjuta/tmpl/ianjuta-sand-box.sgml,
12317         manuals/reference/libanjuta/tmpl/ianjuta-transformable.sgml,
12318         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml: Updated.
12319         
12320         * plugins/gdb/plugin.[ch], plugins/gdb/utilities.[ch]: Fixed gdb
12321         message view management.
12323         * libanjuta/anjuta-children.[ch],
12324         plugins/build-basic-autotools/build-basic-autotools.c,
12325         libanjuta/anjuta-launcher.c, plugins/terminal/terminal.c:
12326         Removed anjuta_children_init() function,
12327         because it is done automatically when first invoked. Introduced
12328         anjuta_children_recover() to recover the child signalling. Fixed
12329         child exit management to correctly recover the exit status.
12330         
12331         * libanjuta/anjuta-launcher.c: Fixed anjuta_launcher_dispose()
12332         to properly shutdown the launcher and to kill the running process
12333         (without emitting any signal).
12334         
12335         * plugins/gdb/debugger.c, plugins/gdb/debugger.h, plugins/gdb/plugin.c,
12336         plugins/gdb/plugin.h: Fixed debugger to properly shutdown, kill both
12337         gdb and program instance.
12339 2005-04-19  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
12341         * plugins/editor/search-replace.c :
12342         Fixed bug 300229 (Search dialog unsensitive freezed Search button).
12344 2005-04-18  Naba Kumar  <naba@gnome.org>
12346         * TODO.tasks: Marked completed items.
12347         
12348         * plugins/debug-manager/plugin.c, plugins/gdb/debugger.c,
12349         plugins/gdb/debugger.h, plugins/gdb/plugin.c,
12350         plugins/project-manager/plugin.c: Prompt user for the debugging
12351         target (select from a list of project's executable targets) and
12352         correctly start debugger. Take care of libtool wrapping when the
12353         target selected is libtool target. Fixed debugger menu items
12354         sensitivity.
12356 2005-04-17  Sebastien Granjoux  <seb.sfo@free.fr>
12358         * plugins/tools/execute.c,
12359         plugins/tools/execute.h:
12360         Implement save all files before running a command
12361         Implement all options for stdout and stderr except replace buffer
12362         Allow running several tools
12364         * plugins/tools/plugin.c:
12365         Move anjuta launcher in execute.c
12367         * plugins/tools/tools.h,
12368         plugins/tools/variable.c:
12369         Small changes
12371 2005-04-13  Sebastien Granjoux  <seb.sfo@free.fr>
12373         * plugins/tools/anjuta-tools.glade:
12374         Add new properties in tool editor dialog
12375         Cosmetic improvements
12376         
12377         * plugins/tools/anjuta-tools.ui:
12378         Attach tool menu as a build menu
12380         * plugins/tools/dialog.c:
12381         Set tool menu item sensitivity in tool list
12382         Fix bugs
12384         * plugins/tools/editor.c,
12385         plugins/tools/editor.h,
12386         plugins/tools/fileop.c,
12387         plugins/tools/tool.c,
12388         plugins/tools/tool.h:
12389         Add new properties (active, save file...)
12390         Most of them are still not implemented
12392         * plugins/tools/execute.c,
12393         plugins/tools/execute.h:
12394         Reorganize code to support multiple run
12395         Support run in terminal
12396         
12397         * plugins/tools/plugin.c
12398         plugins/tools/plugin.h:
12399         Move message handling in execute.c
12401         * plugins/tools/variable.h,
12402         plugins/tools/variable.c:
12403         Add useful variables
12404         
12405 2005-04-13  Naba Kumar  <naba@gnome.org>
12407         * plugins/editor/text_editor.c: Fixed file monitoring condition.
12408         * plugins/editor/Makefile.am: Added gnome-vfs flags.
12409         
12410 2005-04-12  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
12412         * plugins/tools/dialog.c plugins/tools/tool.c :
12413         Fixed bugs.
12415 2005-04-06  Naba Kumar  <naba@gnome.org>
12417         * src/anjuta.c: Load default session only when
12418         "anjuta.session.load.last" preference is enabled.
12419         
12420 2005-04-07  Sebastien Granjoux  <seb.sfo@free.fr>
12422         * plugins/tools/Makefile.am,
12423         plugins/tools/variable.c,
12424         plugins/tools/variable.h:
12425         Add new code for handling variables
12427         * plugins/tools/anjuta-tools.glade:
12428         Improve tool editor dialog
12429         Add variable selection dialog
12431         * plugins/tools/dialog.c,
12432         plugins/tools/dialog.h,
12433         plugins/tools/plugin.c,
12434         plugins/tools/plugin.h:
12435         Add variable object
12436         Add a function to get it
12438         * plugins/tools/editor.c:
12439         Add gui code for variable selection dialog
12441         * plugins/tools/execute.c:
12442         Use variables for executing command
12443         
12444         * Naba: Compile warning fixes.
12446 2005-04-06  Naba Kumar  <naba@gnome.org>
12448         * TODO.tasks: Marked completed items.
12449         
12450 2005-04-06  Naba Kumar  <naba@gnome.org>
12452         * plugins/subversion/svn-backend.c: Fixed subversion plugin
12453         compile error.
12454         
12455         * plugins/tools/anjuta-tools.glade: Improved dialog layout.
12457 2005-04-04  Naba Kumar  <naba@gnome.org>
12459         * src/layout.xml, plugins/glade/plugin.c: Dock glade widgets
12460         inside Main window.
12461         
12462 2005-03-31  Sebastien Granjoux  <seb.sfo@free.fr>
12464         * plugins/tools/Makefile.am,
12465         plugins/tools/anjuta-tools.plugin.in,
12466         plugins/tools/anjuta-tools.ui,
12467         plugins/tools/anjuta-tools.gladei,
12468         plugins/tools/anjuta-tools-plugin.png,
12469         plugins/tools/plugin.c,
12470         plugins/tools/plugin.h,
12471         plugins/tools/dialog.c,
12472         plugins/tools/dialog.h,
12473         plugins/tools/fileop.c,
12474         plugins/tools/fileop.h,
12475         plugins/tools/tool.c,
12476         plugins/tools/tool.h,
12477         plugins/tools/editor.c,
12478         plugins/tools/editor.h,
12479         plugins/tools/execute.c,
12480         plugins/tools/execute.h, configure.in, plugins/Makefile.am:
12481         Port tool plugin from anjuta 1.2 (split anjuta-tools.c)
12482         Not fully working
12484         * anjuta-tools.[ch]: Removed old tools code.
12485         
12486 2005-04-01  Steve Murphy  <murf@e-tools.com>
12488         * configure.in: Added "rw" to ALL_LINGUAS.
12490 2005-03-29  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
12492         * Modified Files:
12493         manuals/C/anjuta-manual/fileoperations.xml
12494         Added Files:
12495         manuals/C/anjuta-manual/figures/search_expr.png
12496         manuals/C/anjuta-manual/figures/search_expr_basic.png
12497         manuals/C/anjuta-manual/figures/search_file_list.png
12498         manuals/C/anjuta-manual/figures/search_file_pattern.png
12499         manuals/C/anjuta-manual/figures/search_replace.png
12500         manuals/C/anjuta-manual/figures/search_setting.png
12501         manuals/C/anjuta-manual/figures/search_target.png
12502         manuals/C/anjuta-manual/figures/search_target_action.png
12503         manuals/C/anjuta-manual/figures/search_target_in.png
12504         Removed Files:
12505         manuals/C/anjuta-manual/figures/find_files.png
12506         manuals/C/anjuta-manual/figures/find_replace.png
12507         manuals/C/anjuta-manual/figures/find_text.png :
12508         Updated Anjuta manual (File Operations)
12510 2005-03-26  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
12512         * manuals/C/anjuta-manual/fileoperations.xml,
12513         manuals/C/anjuta-manual/figures/open_file.png,
12514         manuals/C/anjuta-manual/figures/open_file_multiple.png,
12515         manuals/C/anjuta-manual/figures/prefs_print.png,
12516         manuals/C/anjuta-manual/figures/print_dlg.png,
12517         manuals/C/anjuta-manual/figures/print_preview.png.
12518         * Added Files:
12519         manuals/C/anjuta-manual/figures/add_edit_macro.png,
12520         manuals/C/anjuta-manual/figures/display_macro.png,
12521         manuals/C/anjuta-manual/figures/insert_text.png,
12522         manuals/C/anjuta-manual/figures/keyword_macro.png,
12523         manuals/C/anjuta-manual/figures/new_file_wizard.png,
12524         manuals/C/anjuta-manual/figures/save_as_file.png :
12525         Updated Anjuta Manual (File Operations)
12527 2005-03-23  Adam Weinberger  <adamw@gnome.org>
12529         * plugins/editor/action-callbacks.c,
12530           plugins/file-loader/plugin.c,
12531           plugins/gtodo/main.c,
12532           plugins/project-wizard/druid.c:
12533           Fix spelling/grammar errors. Fixes bugs
12534           169068, 169137, 169138, and 169139.
12536 2005-03-21  Naba Kumar  <naba@gnome.org>
12538         Patch from: Massimo Cora' <maxcvs@email.it>:
12539         
12540         * plugins/editor/Makefile.am
12541         plugins/editor/anjuta-docman.c,
12542         (added) plugins/editor/editor-tooltips.c,
12543         (added) plugins/editor/editor-tooltips.h: Added tooltips to
12544         editor tabs to show full path.
12546 2005-03-19  Johannes Schmid <jhs@cvs.gnome.org>
12547         
12548         * plugins/subversion/svn-backend.c:
12549         Removed "apr-0/" from include because this is 
12550         already included in SVN_INCLUDE and broke building if
12551         apr >= 1.0 was installed.
12553 2005-03-18  Naba Kumar  <naba@gnome.org>
12555         Patch from: Massimo Cora' <maxcvs@email.it>:
12557         * plugins/editor/action-callbacks.c,
12558         plugins/editor/aneditor-calltip.cxx,
12559         plugins/editor/aneditor-priv.h,
12560         plugins/editor/aneditor.cxx,
12561         plugins/editor/aneditor.h,
12562         plugins/editor/anjuta-document-manager.ui: Added calltip
12563         activation from menu.
12565 2005-03-16  Naba Kumar  <naba@gnome.org>
12567         Patch from: Massimo Cora' <maxcvs@email.it>:
12568         
12569         * plugins/class-gen/action-callbacks.c,
12570         plugins/class-gen/anjuta-class-gen-plugin.glade,
12571         plugins/class-gen/class_gen.c,
12572         plugins/class-gen/class_gen.h,
12573         plugins/class-gen/class_logo.xpm,
12574         plugins/class-gen/plugin.c: Create files without project
12575         being open. Add to project support. And other enhancements.
12577 2005-03-15  Adam Weinberger  <adamw@gnome.org>
12579         * anjuta.glade,
12580           plugins/debug-manager/utilities.c,
12581           plugins/file-loader/plugin.c,
12582           plugins/gdb/utilities.c,
12583           plugins/profile-default/plugin.c,
12584           plugins/project-import/project-import.c,
12585           src/anjuta-actions.h:
12586           Spelling/grammar fixes.
12588 2005-03-13  Naba Kumar  <naba@gnome.org>
12589         
12590         * plugins/editor/action-callbacks.c,
12591         plugins/editor/action-callbacks.h,
12592         plugins/editor/anjuta-document-manager.ui,
12593         plugins/editor/plugin.c: Cleaned up editor UI and get rid of 'Format'
12594         submenu. Moved menuitems from Format to View->Editor.
12595         
12596         * src/action-callbacks.c, src/action-callbacks.h,
12597         src/anjuta-actions.h, src/anjuta-app.c, src/anjuta.ui: Created Reset
12598         layout and lock layout menus in View submenu. Get rid of
12599         Settings->Layout Manager menu.
12600         
12601         * plugins/project-import/anjuta-project-import.plugin.in:
12602         Fixed icon name
12604         * global-tags/Makefile.am,
12605         global-tags/create_global_tags.sh,
12606         plugins/editor/aneditor-autocomplete.cxx,
12607         plugins/editor/aneditor-priv.h,
12608         plugins/editor/aneditor.cxx,
12609         tagmanager/tm_workspace.c: Fixed scope members autocompletion
12610         in editor and made it work in global symbols also.
12611         
12612         * src/anjuta-app.c: Always use priority texts besides icons style
12613         for toolbars, because other styles look horible for Anjuta (fixme).
12615 2005-03-11  Naba Kumar  <naba@gnome.org>
12617         * configure.in: Removed test for iconv.
12619         * scintilla/ScintillaGTK.cxx: Fixed crash bug when focus in occurs
12620         before scintilla widget is realized.
12621         
12622         * plugins/cvs-plugin/plugin.c: Aligned comments and added a shortcut
12623         for Update menuitem.
12624         
12625         * scintilla/patches/set-cursor-warning-fix.diff: Removed because
12626         already applied in scintilla main stream.
12627         
12628         * scintilla/patches/preedit-window-crash-fix.diff: Added new fix
12629         and notified scintilla developer.
12630         
12631 2005-03-10  Naba Kumar  <naba@gnome.org>
12633         * src/action-callbacks.c: Removed reference to src/help.h (dead
12634         file).
12636         * plugins/editor/text_editor.c: Removed reference to
12637         src/launcher.h (a dead file).
12639         * src/anjuta_dirs.c, src/anjuta_dirs.h, src/anjuta_gui.c,
12640         src/controls.c, src/controls.h, src/fileselection.c,
12641         src/fileselection.h, src/glade_iface.c, src/glade_iface.h,
12642         src/global.h, src/help.c, src/help.h, src/launcher.c, src/launcher.h,
12643         src/main.cpp, src/main_menubar.c, src/main_menubar.h,
12644         src/mainmenu_callbacks.c, src/mainmenu_callbacks.h, src/session.c,
12645         src/session.h, src/support.c, src/support.h, src/toolbar.c,
12646         src/toolbar.h, src/toolbar_callbacks.c, src/toolbar_callbacks.h:
12647         Removed these dead files from CVS.
12650 2005-03-10  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
12652         * plugins/file-wizard/action-callbacks.c : Added error message.
12653         plugins/project-import/project-import.c : Closed Import wizard with Esc key.
12656 2005-03-09      Johannes Schmid <jhs@cvs.gnome.org>
12657         
12658         * plugins/cvs-plugin/cvs-callbacks.c
12659         plugins/cvs-plugin/plugin.c:
12660         Fixed preferences page init and busy handling
12661         
12662         * plugins/subversion/plugin.c:
12663         Fixed preferences page init
12665 2005-03-09  Naba Kumar  <naba@gnome.org>
12667         * plugins/Makefile.am, plugins/glade/Makefile.am,
12668         plugins/glade/plugin.c: Now that glade3 cvs head has been fixed,
12669         enabled glade plugin in Anjuta. The plugin is built only when
12670         glade3 is installed.
12671         
12672 2005-03-09  Johannes Schmid <jhs@cvs.gnome.org>
12674         * plugins/project-wizard/templates/java.wiz
12675         plugins/project-wizard/templates/java-logo.png (*)
12676         plugins/project-wizard/templates/java/*
12677         plugins/project-wizard/templates/Makefile.am
12678         configure.in:
12679         
12680         Add Java project type. It generates a autoconf/automake
12681         project which is compiled using gcj. It requires automake 
12682         > 1.4 (1.9 is known to work) to work!
12683         
12684         (*) still awaiting response from the gcj team if we
12685         may use their logo.
12686         
12687 2005-03-09  Johannes Schmid <jhs@cvs.gnome.org>
12688         
12689         * plugins/project-import/*
12690         plugins/Makefile.am
12691         configure.in:
12692         Added project import plugin. Might be a bit buggy and limited
12693         but works for now.
12694         * plugins/cvs-plugin/anjuta-cvs-plugin.png:
12695         Icon from old pixmaps dir
12697 2005-02-20  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
12699         * plugins/file-wizard/plugin.c, plugins/macro/macro-dialog.c
12700         plugins/macro/macro-util.c, plugins/macro/macros.xml :
12701         Added C Custom_Indent line macro.
12702         Cleaned macros.xml
12704 2005-03-09  Naba Kumar  <naba@gnome.org>
12706         * TODO.tasks: Added new message-manager tasks.
12707         
12708         * manuals/reference/libanjuta/tmpl/ianjuta-context-list.sgml,
12709         manuals/reference/libanjuta/tmpl/ianjuta-context-text.sgml,
12710         manuals/reference/libanjuta/tmpl/ianjuta-context-tree.sgml,
12711         manuals/reference/libanjuta/tmpl/ianjuta-context.sgml,
12712         manuals/reference/libanjuta/tmpl/ianjuta-iterable-tree.sgml,
12713         manuals/reference/libanjuta/tmpl/ianjuta-iterable.sgml,
12714         manuals/reference/libanjuta/tmpl/ianjuta-renderable.sgml,
12715         manuals/reference/libanjuta/tmpl/ianjuta-sand-box.sgml,
12716         manuals/reference/libanjuta/tmpl/ianjuta-transformable.sgml,
12717         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml: Updated.
12718         
12719         * plugins/gdb/debug_tree.c, plugins/gdb/debugger.c,
12720         plugins/gdb/locals.c, plugins/gdb/memory.c, plugins/gdb/plugin.c,
12721         plugins/gdb/registers.c, plugins/gdb/registers_gui.c,
12722         plugins/gdb/sharedlib.c, plugins/gdb/sharedlib_gui.c,
12723         plugins/gdb/signals.c, plugins/gdb/signals_gui.c,
12724         plugins/gdb/stack_trace.c, plugins/gdb/stack_trace.h,
12725         plugins/gdb/watch.c, plugins/gdb/watch.h, plugins/gdb/watch_gui.c:
12726         Removed debugger widgets from shell on debugger shutdown. Added
12727         scrolled windows for docked widgets. Removed unnecessary widget refs
12728         and unrefs. Destroy widgets correctly on debugger shutdown.
12729         
12730         * plugins/project-wizard/anjuta-project-wizard.glade: Added frame
12731         with project description title. Removed frame shadow.
12732         
12733         * plugins/project-wizard/druid.c: Initializes tooltips.
12734         
12735         * scintilla/Makefile.am: Fixed comiple error.
12737 2005-03-08  Adam Weinberger  <adamw@gnome.org>
12739         * plugins/class-gen/anjuta-class-gen-plugin.glade,
12740           plugins/class-gen/class_gen.c: Fix grammar/spelling errors
12742 2005-03-08  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
12744         * plugins/macro/macro-actions.c, plugins/macro/macro-db.[ch],
12745         plugins/macro/macro-dialog.c, plugins/macro/macro-util.[ch],
12746         plugins/macro/macro-util.c, plugins/macro/macro-util.h
12747         plugins/macro/macros.xml, plugins/macro/plugin.c :
12748         Moved cursor at the '|' position defined in macros.
12750 2005-03-07  Naba Kumar  <naba@gnome.org>
12752         * plugins/subversion/Makefile.am: Fixed build error.
12754         * plugins/editor/anjuta-document-manager-plugin.in: Added some mime
12755         types (perl, python, shellscript).
12756         
12757         * plugins/editor/plugin.c: Fixed to show all highlight options.
12758         
12759 2005-03-07  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
12761         * TODO.tasks : updated tasks.
12762         * plugins/gtodo/interface.c : Implemented column sorting (TASK MANAGER)
12764 2005-03-07  Naba Kumar  <naba@gnome.org>
12766         * plugins/subvesion/plugin.c: Detect ".svn" directory to enable
12767         or disable subversion file-manager submenu. If "Subvesion" is also
12768         valid directory, we should also check for it.
12770         * configure.in: Disable cygwin macro until someone fixes the
12771         autoconf warnings.
12772         
12773         * plugins/subvesion/svn-thread.c: Use older API svn_client_add() for
12774         backward compatibility.
12775         
12776 2005-03-06  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
12778         * src/about.c : Cleaned code.
12779         * plugins/macro/macros.xml : Added "do_while" C macro.
12780         * plugins/gdb/registers_cbs.[ch], plugins/gdb/registers_gui.c,
12781         plugins/gdb/sharedlib_cbs.[ch], plugins/gdb/sharedlib_gui.c, 
12782         plugins/gdb/signals_cbs.[ch], plugins/gdb/signals_gui.c :
12783         Closed registers, shared libraries, kernel signals dialogs with ESC key.
12784         
12785 2005-03-06      Johannes Schmid <jhs@cvs.gnome.org>
12787         * plugins/class-gen/plugin.c:
12788         Removed "return" to activate project_root_uri watching.
12790 2005-03-06      Johannes Schmid <jhs@cvs.gnome.org>
12792         * plugins/Makefile.am
12793         plugins/subversion/*:
12794         Added subversion plugin. Add, Remove, Commit and Update work
12795         everything else needs work.
12796         
12797         * plugins/terminal/terminal.c
12798         Applied old 1.2.2 patch to fix Ctrl-C in terminal but
12799         we still have focus problems with the editor.
12801 2005-03-05  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
12803         * AUTHORS, src/about.c : Updated about dialog by AUTHORS file.
12804         
12805 2005-03-04  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
12807         * Makefile.am, src/about.c : Updated about dialog by AUTHORS.xml file.
12809 2005-03-04  Naba Kumar  <naba@gnome.org>
12811         Patch from Massimo Cora' <maxcvs@email.it>:
12813         * plugins/class-gen/Makefile.am,
12814         plugins/class-gen/action-callbacks.c,
12815         plugins/class-gen/action-callbacks.h,
12816         (added) plugins/class-gen/anjuta-class-gen-plugin.glade,
12817         plugins/class-gen/anjuta-class-gen.plugin.in,
12818         plugins/class-gen/class_gen.c,
12819         plugins/class-gen/class_gen.h,
12820         (removed) plugins/class-gen/clsGen.c,
12821         (added) plugins/class-gen/goc_template_header,
12822         (added) plugins/class-gen/goc_template_source,
12823         plugins/class-gen/plugin.c,
12824         plugins/class-gen/plugin.h: Refactored class gen code.
12825         Added GOCBuilder code. Fixed UI. Implemented plugin.
12827 2005-03-03  Johannes Schmid <jhs@cvs.gnome.org>
12829         * plugins/project-wizard/property.c
12830         plugins/project-wizard/install.c
12831         plugins/project-wizard/druid.c
12832         plugins/editor/goto_line.c
12833         plugins/editor/plugin.c
12834         plugins/gtodo/add_edit_item.c
12835         plugins/gtodo/ligtodo.c
12836         plugins/gtodo/main.c
12837         plugins/gtodo/preferences.c:
12838         Fixed #167559, #167534, #167266, #167357
12839         (Bad English in strings...)
12840         
12841         Thanks to Adam Weinberger and Thierry Moisan for
12842         reporting!
12844 2005-03-03  Naba Kumar  <naba@gnome.org>
12846         * libegg/Makefile.am, libegg/menu/Makefile.am,
12847         (added) libegg/egg-submenu-action.c,
12848         (added) libegg/menu/egg-submenu-action.h: Created a new action for
12849         submenu (used for wizard listing).
12850         
12851         * plugins/file-loader/anjuta-loader-plugin.ui
12852         plugins/file-loader/plugin.c: Implemented wizards submenu in menu
12853         and toolbar.
12854         
12855         * plugins/editor/action-callbacks.c,
12856         plugins/editor/aneditor.cxx, plugins/editor/plugin.c: Disabled
12857         ctrl+tabbing because it was interfaring with focus navigation.
12858         Focus editor on "Esc" in incremental search entry. Cleanups.
12859         
12860         * plugins/file-manager/an_file_view.c,
12861         plugins/symbol-browser/plugin.c,
12862         plugins/symbol-browser/an_symbol_view.c: Fixed key shortcuts.
12863         Cleanups.
12864         
12865         * plugins/profile-default/plugin.c,
12866         scintilla/PlatGTK.cxx: Fixed compiler warnings. Added splash icon
12867         for sesssion load.
12868         
12869         * (removed) scintilla/patches/a64-crash-fix.patch,
12870         (added) scintilla/patches/set-cursor-warning-fix.diff: Updated
12871         scintilla patches.
12873 2005-03-03  Naba Kumar  <naba@gnome.org>
12875         * HACKING: Fixed typos.
12876         
12877         * plugins/editor/aneditor-indent.cxx: Clean up.
12878         
12879         * plugins/editor/plugin.c, plugins/editor/text_editor.[h]:
12880         Enable/disable save, undo and redo actions depending on state
12881         of the editor.
12882         
12883 2005-03-02  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
12885         * libanjuta/anjuta-status.h plugins/editor/Makefile.am
12886         plugins/editor/action-callbacks.c, plugins/editor/search-replace.c :
12887         Displayed search_incremental status.
12889         * Removed plugins/editor/search_incremental.[ch]
12891 2005-02-26  Johannes Schmid <jhs@cvs.gnome.org>
12892         
12893         * plugins/cvs-plugin/cvs-execute.c
12894         plugins/cvs-plugin/cvs-callbacks.c:
12895         - Use weak reference on mesg_view and reuse tab if
12896         it still exists to avoid cluttering message manager.
12897         - Fixed bug in cvs remove
12898         
12899         README, HACKING: Updated
12900         
12901         configure.in: Added check for libsvn
12903 2005-02-29  Naba Kumar  <naba@gnome.org>
12904         
12905         * plugins/file-manager/an_file_view.c,
12906         plugins/symbol-browser/an_symbol_view.c,
12907         plugins/symbol-browser/plugin.c: Hide column headers (they
12908         are redundant).
12910 2005-02-29  Naba Kumar  <naba@gnome.org>
12912         * manuals/reference/libanjuta/tmpl/ianjuta-context-list.sgml,
12913         manuals/reference/libanjuta/tmpl/ianjuta-context-text.sgml,
12914         manuals/reference/libanjuta/tmpl/ianjuta-context-tree.sgml,
12915         manuals/reference/libanjuta/tmpl/ianjuta-context.sgml,
12916         manuals/reference/libanjuta/tmpl/ianjuta-iterable-tree.sgml,
12917         manuals/reference/libanjuta/tmpl/ianjuta-iterable.sgml,
12918         manuals/reference/libanjuta/tmpl/ianjuta-renderable.sgml,
12919         manuals/reference/libanjuta/tmpl/ianjuta-sand-box.sgml,
12920         manuals/reference/libanjuta/tmpl/ianjuta-transformable.sgml,
12921         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml: Updated.
12923         * libanjuta/Makefile.am, libanjuta/anjuta-marshal.list,
12924         libanjuta/anjuta-shell.c, libanjuta/anjuta-shell.h,
12925         (added) libanjuta/anjuta-session.[hc],
12926         plugins/editor/plugin.c, plugins/file-loader/plugin.c,
12927         plugins/profile-default/plugin.c, plugins/profile-default/plugin.h,
12928         src/anjuta-app.c, src/anjuta-app.h, src/anjuta.c, src/anjuta.h,
12929         src/main.c:
12930         
12931         Implemented session management. Implemented session
12932         container class. Added session notifications from shell. Implemented
12933         session save/load in editor, file-loader, default-profile-plugin
12934         and anjuta-app. Fixed window sizing and restoration. Cleaned up
12935         code in anjuta-app.[ch], anjuta.[ch], main.c. Added fullscreen
12936         and maximized states in session. Implemented project session
12937         management.
12939 2005-02-27  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
12941         * plugins/class-gen/action-callbacks.[ch],
12942         plugins/class-gen/class_gen.c plugins/project-wizard/druid.c,
12943         plugins/gdb/breakpoints.c plugins/gdb/memory.c:
12944         Closed Wizard project, Class gen, Inspect memory, Breakpoints dialogs 
12945         with Escape key.
12947 2005-02-26  Sebastien Granjoux  <seb.sfo@free.fr>
12948         
12949         * plugins/project-wizard/anjuta-project-wizard.glade,
12950         plugins/project-wizard/druid.c:
12951         Add some padding in tab label in project selection page
12952         
12953         * plugins/project-wizard/druid.c,
12954         plugins/project-wizard/parser.c:
12955         Search for project template recursively
12956         Add ~/.anjuta/project to the search paths
12958 2005-02-26  Naba Kumar  <naba@gnome.org>
12960         * plugins/file-wizard/action-callbacks.c: Fixed memory curruption.
12961         * plugins/file-loader/plugin.c: Fixed crash bug.
12962         * libanjuta/plugins.c: Fixed memory leak.
12963         
12964 2005-02-26  Naba Kumar  <naba@gnome.org>
12965         
12966         * libanjuta/plugins.c, libanjuta/plugins.h: Implemented
12967         "UserActivatable" attribute for plugins. This attribute if set to
12968         "no" will prevent users from activating/deactivating it from
12969         plugins dialog. Added a toggle button in plugins dialog to toggle
12970         the plugins list between list of activatable plugins (default) to
12971         list of all plugins. anjuta_plugin_select() now only selects the
12972         plugin. Added anjuta_plugins_select_and_activate() method that will
12973         select and activate it.
12974         
12975         * plugins/profile-default/Makefile.am,
12976         plugins/profile-default/anjuta-default-profile.ui,
12977         plugins/profile-default/plugin.c,
12978         plugins/profile-default/plugin.h,
12979         plugins/project-manager/anjuta-project-manager.ui,
12980         plugins/project-manager/plugin.c,
12981         plugins/project-manager/plugin.h:
12982         
12983         Anjuta projects (*.anjuta) files define the profile of respective
12984         projects. Profile is a set of related plugins required for the
12985         project to open. Moved "close project" action from Project Manager
12986         to Profile Manager plugin. Implemented loading and unloading of
12987         project profiles in DefaultProfilePlugin. DefaultProfilePlugin
12988         (instead of Project Manager) now handles opening of *.anjuta files.
12989         Close Project menuitem is now moved to File submenu (being
12990         consistent with Anjuta 1.x versions and avoiding creating Project
12991         submenu when project manager is not loaded).
12992         
12993         * src/anjuta-actions.h: Fixed short-cut key for Help content.
12994         
12995         * src/anjuta.ui: Fixed place holder for projects.
12996         
12997         * (new) plugins/profile-default/default.anjuta: default startup
12998         profile. Removed the hardcoded plugins loading in
12999         DefaultProfilePlugin.
13001         * anjuta.anjuta,
13002         plugins/project-wizard/templates/terminal/project.anjuta:
13003         Implemented project format in newly created projects.
13005         * plugins/build-basic-autotools/anjuta-build-basic-autotools.plugin.in:
13006         plugins/class-gen/anjuta-class-gen.plugin.in,
13007         plugins/cvs-plugin/anjuta-cvs.plugin.in,
13008         plugins/editor/anjuta-document-manager.plugin.in,
13009         plugins/file-loader/anjuta-loader.plugin.in,
13010         plugins/file-wizard/anjuta-file-wizard.plugin.in,
13011         plugins/gdb/anjuta-gdb.plugin.in,
13012         plugins/glade/anjuta-glade.plugin.in,
13013         plugins/message-view/anjuta-message-manager.plugin.in,
13014         plugins/profile-default/anjuta-default-profile.plugin.in,
13015         plugins/project-manager/anjuta-project-manager.plugin.in,
13016         plugins/project-wizard/anjuta-project-wizard.plugin.in:
13017         Defined UserActivatable attributes. Added supported types attribute.
13019         * plugins/project-wizard/anjuta-project-wizard.glade
13020         plugins/project-wizard/plugin.c: Changed "New Project Wizard" to
13021         "Project Wizard" in preferences title.
13023         * TODO.tasks: Updated.
13024         
13025         * manuals/reference/libanjuta/tmpl/ianjuta-message-manager.sgml:
13026         Updated.
13027         
13028 2005-02-25  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13030         * plugins/file-wizard/anjuta-file-wizard.glade
13031         plugins/file-wizard/file.[ch], plugins/macro/macros.xml :
13032         
13033         Integrated License macros, cleaned file.c.
13034         
13035 2005-02-24      Johannes Schmid <jhs@cvs.gnome.org>
13036         
13037         * plugins/macor/macro-util.c: Fixed crash bugs if email or
13038         username can not be found correctly.
13040 2005-02-24  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13042         * plugins/file-wizard/file.[ch], plugins/macro/macro-util.c,
13043         plugins/macro/macros.xml :
13044         
13045         Added Headers macros. Cleaned file.c
13047 2005-02-24  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13049         * plugins/file-wizard/action-callbacks.c, plugins/macro/macro-util.c, 
13050         plugins/macro/macros.xml :
13051         
13052         Fixed a bug. Added Header macro.
13054         
13055 2005-02-24  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13057         * plugins/file-wizard/action-callbacks.c, 
13058         plugins/file-wizard/file.c, plugins/macro/macro-util.c
13059         plugins/macro/macros.xml :
13060         
13061         Added FileName, Header template macros.
13062         
13063 2005-02-24  Naba Kumar  <naba@gnome.org>
13064         
13065         * plugins/patch/patch-plugin.c: Fixed a function call.
13066         
13067         * src/anjuta.c, src/main.c: Save and load default session.
13068         
13069 2005-02-24  Naba Kumar  <naba@gnome.org>
13071         * libanjuta/interfaces/libanjuta.idl,
13072         plugins/message-view/anjuta-msgman.c,
13073         plugins/message-view/anjuta-msgman.h,
13074         plugins/message-view/plugin.c: Added and implemented
13075         set_view_title() method.
13076         
13077         * plugins/build-basic-autotools/build-basic-autotools.c,
13078         plugins/build-basic-autotools/build-basic-autotools.h: Implemented
13079         build context pooling. Maximum 3 contexts are reused. Additional
13080         contexts are created when all are busy.
13082 2005-02-23  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13084         * plugins/macro/macro-actions.c, plugins/macro/macro-db.[ch],
13085         plugins/macro/macro-dialog.c, plugins/macro/macro-util.[ch],
13086         plugins/macro/macros.xml, plugins/macro/plugin.[ch],
13087         plugins/file-wizard/action-callbacks.c, plugins/file-wizard/file.c :
13089         Added Copyright, Changelog macros.
13090                 
13091 2005-02-23  Naba Kumar  <naba@gnome.org>
13093         Patch from Massimo Cora' <maxcvs@email.it>:
13094         * plugins/Makefile.am,
13095         plugins/patch/Makefile.am,
13096         (added) plugins/patch/anjuta-patch-plugin.png,
13097         (added) plugins/patch/anjuta-patch.plugin.in,
13098         (added) plugins/patch/anjuta-patch.ui,
13099         plugins/patch/patch-plugin.c,
13100         (added) plugins/patch/patch-plugin.h,
13101         (added) plugins/patch/plugin.c,
13102         (added) plugins/patch/plugin.h: Ported patch plugin to Anjuta 2.0
13103         architecture.
13105 2005-02-23  Naba Kumar  <naba@gnome.org>
13107         * libanjuta/anjuta-marshal.list, libanjuta/anjuta-plugin.[ch],
13108         file-loader/plugin.c, profile-default/plugin.c:
13109         Implemented "activated" and "deactivated" signals for plugin class.
13110         Renamed *_location() functions to *_id(), because location is
13111         ambiguous. Implemented anjuta_plugins_unload_plugin_by_id() and
13112         anjuta_plugins_unload_plugin().
13113         
13114         * class-gen/plugin.c: Fixed complier warning and utility function call.
13115         
13116         * debug-manager/plugin.c: Unload debugger plugin correctly.
13117         
13118         * project-manager/plugin.c:     Fixed compiler warnings.
13119         
13120         * plugins/project-wizard/templates/gnome/.cvsignore,
13121         plugins/project-wizard/templates/gnome/po/.cvsignore,
13122         plugins/project-wizard/templates/gnome/src/.cvsignore,
13123         plugins/project-wizard/templates/gtk/po/.cvsignore,
13124         plugins/project-wizard/templates/gtkmm/po/.cvsignore,
13125         plugins/project-wizard/templates/xlib/.cvsignore: Added cvsignores.
13126         
13127         * manuals/reference/libanjuta/tmpl/*: Unnecessary changes from the
13128         build (we need to fix this thing).
13129         
13130 2005-02-23  Johannes Schmid <jhs@cvs.gnome.org>
13132         * plugins/macro/macro-action.[ch]
13133         plugins/macro/macro-edit.c
13134         plugins/macro/macro-dialog.c
13135         plugins/macro/macro-db.[ch]
13136         plugins/macro/plugin.[ch]
13137         plugins/macro/macro-util.[ch] (added)
13138         
13139         Cleaned up macro plugin and preview expanded macros.
13141 2005-02-21  Ryan Garver <rgarvage@yahoo.com>
13143         * plugins/cvs-plugin/cvs-interface.c:
13145         Fixed option setting when using no compression and not 
13146         ignoring .cvsrc
13148 2005-02-23  Naba Kumar  <naba@gnome.org>
13149         
13150         * src/anjuta.c, src/anjuta.h, src/main.c: Save and restore window
13151         geometry on exit and startup (only if there is no geometry from the
13152         session).
13154         * TODO.tasks: Updated.
13155         
13156         Patch from Sebastien Granjoux <seb.sfo@free.fr>:
13157         
13158         * manuals/reference/libanjuta/Makefile.am,
13159         manuals/reference/libanjuta/libanjuta-docs.sgml,
13160         (new) manuals/reference/libanjuta/project-wizard-format.sgml: Added
13161         documentation for writing project templates.
13163 2005-02-22  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13165         * plugins/macro/macro-actions.c, plugins/macro/macro-actions.h
13166         plugins/macro/macro-dialog.c, plugins/macro/macros.xml :
13167         
13168         Expansion keywords in macros. 
13170 2005-02-22  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13172         * plugins/file-wizard/action-callbacks.c,
13173         plugins/file-wizard/file.[ch], plugins/macro/macro-actions.c,
13174         plugins/macro/macros.xml :
13175         
13176         Inserting text by macro plugin
13177         In progress ...
13179 2005-02-22  Johannes Schmid <jhs@cvs.gnome.org>
13181         * plugins/macro/plugin.c
13182         plugins/cvs-plugin/plugin.c:
13183         
13184         Fixed interfaces (use static)
13186 2005-02-21  Johannes Schmid <jhs@cvs.gnome.org>
13187         
13188         * plugins/macro/macro-actions.[ch]
13189         plugins/macro/plugin.c
13190         libanjuta/interfaces/libanjuta.idl:
13191         
13192         Implemented IAnjutaMacro interface to be used by file-wizard
13193         
13194         * plugins/cvs-plugin/plugin.c
13195         libanjuta/interfaces/libanjuta.idl:
13196         
13197         Reworked IAnjutaCvs to IAnjutaVCS to be used as an interface
13198         for all version control systems and not only for cvs.
13200 2005-02-20  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13202         * plugins/macro/macro-actions.[ch], plugins/macro/macros.xml : Added 
13203         insert_macro.
13204         
13205         * plugins/file-wizard/anjuta-file-wizard.glade : Add project & CVS.
13208 2005-02-21  Naba Kumar  <naba@gnome.org>
13210         * libanjuta/interfaces/libanjuta.idl: Fixed IAnjutaDebugManager and
13211         IAnjutaDebugger interface.
13212         
13213         * plugins/debug-manager/anjuta-debug-manager.ui,
13214         plugins/debug-manager/attach_process.c,
13215         plugins/debug-manager/attach_process.h,
13216         plugins/debug-manager/plugin.c,
13217         plugins/debug-manager/plugin.h,
13218         plugins/gdb/actions.c,
13219         plugins/gdb/actions.h,
13220         plugins/gdb/anjuta-gdb-plugin.ui,
13221         plugins/gdb/breakpoints.c,
13222         plugins/gdb/breakpoints.h,
13223         plugins/gdb/debugger.c,
13224         plugins/gdb/debugger.h,
13225         plugins/gdb/memory.c,
13226         plugins/gdb/plugin.c,
13227         plugins/gdb/plugin.h,
13228         plugins/gdb/sharedlib.h,
13229         plugins/gdb/sharedlib_cbs.c,
13230         plugins/gdb/watch.c: Fixed debugger plugin. Split debug operations
13231         correctly between debug-manager and debugger. Implemented debugger
13232         interface in gdb plugin. Fixed action names. Added UI updating.
13233         Start and stop debugger (does not work yet). Fixed UI merging.
13234         Fixed debugger plugin handling in debug-manager.
13236 2005-02-20  Johannes Schmid <jhs@cvs.gnome.org>
13238         * plugins/editor/aneditor-autocomplete.cxx:
13239         
13240         Patch from Jason Bayman <JBayman@HobbitHell.com> avoids
13241         crash with C++ "template" keyword.
13243 2005-02-20  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13245         * plugins/macro/macro-dialog.c, plugins/macro/macro-edit.c :
13246         Fixed bug (Closed macro dialogs with Esc key).
13247         
13248 2005-02-19  Sebastien Granjoux  <seb.sfo@free.fr>
13249         
13250         * plugins/project-wizard/xlib.wiz,
13251         plugins/project-wizard/xlib-logo.png,
13252         plugins/project-wizard/xlib/*:
13253         Port old xlib anjuta project on new project wizard
13254         
13255         * plugins/project-wizard/xlib-dock.wiz,
13256         plugins/project-wizard/xlib-dock/*:
13257         Port old xlib dock anjuta project on new project wizard
13258         
13259         * plugins/project-wizard/wxwin.wiz,
13260         plugins/project-wizard/wxwin-logo.png,
13261         plugins/project-wizard/wxwin/*:
13262         Port old wxwin anjuta project on new project wizard
13263         
13264         * configure.in, plugins/project-wizard/templates/Makefile.am: Other
13265         necessary changes for the new templates.
13266         
13267 2005-02-18  Naba Kumar  <naba@gnome.org>
13269         * plugins/Makefile.am: Added class-gen
13270         
13271 2005-02-17  Sebastien Granjoux  <seb.sfo@free.fr>
13273         * plugins/project-wizard/header.c:
13274         Fix a bug in sorting of project categories
13276 2005-02-18  Naba Kumar  <naba@gnome.org>
13278         Patch from Massimo Cora  <maxcvs@email.it>:
13279         
13280         * plugins/class-gen/.cvsignore,
13281         plugins/class-gen/Makefile.am,
13282         (added) plugins/class-gen/action-callbacks.c,
13283         (added) plugins/class-gen/action-callbacks.h,
13284         (added) plugins/class-gen/anjuta-class-gen.plugin.in,
13285         (added) plugins/class-gen/class_gen.c,
13286         (added) plugins/class-gen/class_gen.h,
13287         (added) plugins/class-gen/plugin.c,
13288         (added) plugins/class-gen/plugin.h: Ported class wizard to the
13289         new architecture.
13290         
13291         * plugins/project-manager/plugin.c: implemented add_source().
13293 2005-02-17  Naba Kumar  <naba@gnome.org>
13295         * plugins/file-loader/plugin.c: Fixed possible crash.
13296         
13297         * src/action-callbacks.c, src/action-callbacks.h,
13298         src/anjuta-actions.h, src/anjuta.ui: Fixed help menuitems.
13300 2005-02-17  Naba Kumar  <naba@gnome.org>
13301         
13302         * plugins/project-wizard/templates/anjuta-plugin.wiz,
13303         plugins/project-wizard/templates/gnome.wiz,
13304         plugins/project-wizard/templates/gtk.wiz,
13305         plugins/project-wizard/templates/gtkmm.wiz,
13306         plugins/project-wizard/templates/terminal.wiz,
13307         plugins/project-wizard/templates/anjuta-plugin/src/plugin.c,
13308         plugins/project-wizard/templates/anjuta-plugin/src/plugin.h,
13309         plugins/project-wizard/templates/gnome/src/callbacks.c,
13310         plugins/project-wizard/templates/gnome/src/callbacks.h,
13311         plugins/project-wizard/templates/gnome/src/main.c,
13312         plugins/project-wizard/templates/gtk/src/callbacks.c,
13313         plugins/project-wizard/templates/gtk/src/callbacks.h,
13314         plugins/project-wizard/templates/gtk/src/main.c,
13315         plugins/project-wizard/templates/gtkmm/src/main.cc,
13316         plugins/project-wizard/templates/terminal/src/main.c: Fixed templates
13317         to generate licence correctly (without any extra newlines). Removed
13318         IncludeGNUHeader macro definition and added proper licence property.
13319         Fixed project directory paths in file contents.
13321 2005-02-17  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13323         * plugins/macro/macro-dialog.c, plugins/macro/macro-edit.c :
13324         Closed macro dialogs with Esc key.
13326 2005-02-16  Naba Kumar  <naba@gnome.org>
13328         * plugins/project-wizard/templates/anjuta-plugin/src/plugin.c,
13329         plugins/project-wizard/templates/anjuta-plugin/src/plugin.h,
13330         plugins/project-wizard/templates/gnome/src/callbacks.c,
13331         plugins/project-wizard/templates/gnome/src/callbacks.h,
13332         plugins/project-wizard/templates/gnome/src/main.c,
13333         plugins/project-wizard/templates/gtk/src/main.c,
13334         plugins/project-wizard/templates/gtkmm/src/main.cc,
13335         plugins/project-wizard/templates/terminal/src/main.c: Fixed licence
13336         macros to avoid blank newlines.
13338 2005-02-16  Sebastien Granjoux  <seb.sfo@free.fr>
13340         * plugins/project-wizard/autogen.c:
13341         Correct a problem when having property value in UTF-8
13343         * plugins/project-wizard/druid.c:
13344         Correct a bug when reselecting a new project (all pages
13345         must be removed)
13347         * plugins/project-wizard/property.c:
13348         Avoid having default invalid properties
13350         * plugins/project-wizard/templates/terminal.wiz,
13351         plugins/project-wizard/templates/terminal/po/ChangeLog,
13352         plugins/project-wizard/templates/terminal/src/main.c:
13353         Remove command for testing run function
13354         Move destination directory to second page and include
13355         project name. Add exist tag. Remove unused properties.
13357 2005-02-16  Naba Kumar  <naba@gnome.org>
13359         * Makefile.am, libanjuta/interfaces/libanjuta.idl,
13360         plugins/debug-manager/anjuta-debug-manager.ui,
13361         plugins/debug-manager/plugin.c,
13362         plugins/gdb/Makefile.am, plugins/gdb/breakpoints.c,
13363         plugins/gdb/debugger.c, plugins/gdb/plugin.c,
13364         plugins/gdb/plugin.h, plugins/gdb/registers.c,
13365         plugins/gdb/sharedlib.c, plugins/gdb/signals.c,
13366         plugins/gdb/stack_trace.c, plugins/gdb/utilities.c,
13367         plugins/gdb/utilities.h, plugins/gdb/watch_cbs.c,
13368         (removed) src/anjuta_info.c,
13369         (removed) src/anjuta_info.h,
13370         (added) plugins/gdb/info.c (added) plugins/gdb/info.h,
13371         (added) plugins/gdb/anjuta-gdb-plugin.ui,
13372         (added) plugins/gdb/actions.c,
13373         (added) plugins/gdb/actions.h: Completed initial
13374         porting of debugger to new architecture. Fixed many of the debugger
13375         functions.
13377         * plugins/file-loader/plugin.c: Detect some important mime ourself
13378         to avoid inconsistencies when mime system isn't working.
13379         
13380 2005-02-16  Naba Kumar  <naba@gnome.org>
13382         * plugins/editor/Makefile.am,
13383         (added) plugins/editor/aneditor-autocomplete.cxx,
13384         (added) plugins/editor/aneditor-calltip.cxx,
13385         (added) plugins/editor/aneditor-indent.cxx,
13386         (added) plugins/editor/aneditor-priv.h,
13387         plugins/editor/aneditor.cxx: Split aneditor.cxx file into
13388         different smaller chunks to make it easy to maintain.
13390 2005-02-16  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13392         * plugins/project-wizard/druid.c :
13393         
13394         Found system Email address if not defined in Preferences.
13396 2005-02-16      Johannes Schmid <jhs@cvs.gnome.org>
13397         
13398         * plugins/project-wizard/gtkmm.wiz
13399         plugins/project-wizard/gtkmm-logo.png (from pixmaps/)
13400         plugins/project-wizard/gtkmm/*
13401         
13402         Added GTKmm (C++) project type
13404 2005-02-15  Johannes Schmid <jhs@cvs.gnome.org>
13406         * plugins/message-view/plugin.c
13407         plugins/message-view/message-view.c
13408         TODO.gtodo:
13409         Implemented next/prev action
13411 2005-02-15  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13413         * plugins/project-wizard/templates/libglade2.* :
13414         Removed libglade2 project.
13415         
13416         * plugins/project-wizard/templates/gtk* :
13417         Removed interface.[ch] & support.[ch].
13418         
13419 2005-02-15  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13421         * plugins/project-wizard/anjuta-project-wizard.glade,
13422         plugins/project-wizard/property.[ch],
13423         plugins/project-wizard/templates/anjuta-plugin.wiz :
13424         Added a new property ("iconfile").
13426 2005-02-14  Naba Kumar  <naba@gnome.org>
13428         * plugins/project-wizard/install.c,
13429         plugins/project-wizard/plugin.c,
13430         plugins/project-wizard/templates/anjuta-plugin.wiz,
13431         plugins/project-wizard/templates/gnome.wiz,
13432         plugins/project-wizard/templates/gtk.wiz,
13433         plugins/project-wizard/templates/libglade2.wiz,
13434         plugins/project-wizard/templates/terminal.wiz: Added actions to autogen
13435         newly created projects and open them. Fixed message buffering in
13436         wizard.
13438 2005-02-14  Naba Kumar  <naba@gnome.org>
13440         * src/about.c, pixmaps/Makefile.am,
13441         (new) pixmaps/anjuta_logo2.png: New about page splash screen.
13442         
13443         * mime/gnome-mime-application-x-anjuta.png,
13444         pixmaps/anjuta_icon.png,
13445         (new) pixmaps/anjuta_icon.svg: New svg icon and derived png icons
13446         done by 9-speed at:
13447         http://cvs.freedesktop.org/svg-icons/lila/gnome/scalable/apps/anjuta_icon.svg?rev=1.2&view=log
13448         
13449 2005-02-14  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13451         * configure.in,
13452         plugins/project-wizard/templates/libglade2-logo.png,
13453         plugins/project-wizard/templates/libglade2.wiz,
13454         plugins/project-wizard/templates/libglade2/* :
13455         Add Glade2 project
13458 2005-02-14  Naba Kumar  <naba@gnome.org>
13460         * TODO.tasks: Updated.
13461         
13462         * plugins/editor/anjuta-docman.c,
13463         plugins/editor/text_editor.c,
13464         plugins/editor/text_editor.h,
13465         plugins/editor/text_editor_cbs.c: Added gnome-vfs monitor
13466         for file modification, but it is still not functioning.
13468 2005-02-13  Sebastien Granjoux  <seb.sfo@free.fr>
13470         * plugins/project-wizard/values.c,
13471         plugins/project-wizard/values.h,
13472         plugins/project-wizard/property.c,
13473         plugins/project-wizard/property.h,
13474         plugins/project-wizard/druid.c:
13475         Rewrite mandatory property check
13476         Add check of exist property
13477         Rewrite handling of cached property page
13479 2005-02-13  Naba Kumar  <naba@gnome.org>
13481         Patch from Igor Kovalenko  <garrison@mail.ru>:
13482         * tagmanager/tm_workspace.c: Improved performance.
13484 2005-02-13  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13486         *plugins/project-wizard/templates/*.wiz,
13487         plugins/project-wizard/druid.c,
13488         plugins/project-wizard/templates/terminal/src/main.c,
13489         plugins/project-wizard/templates/gtk/src/*.[ch],
13490         plugins/project-wizard/templates/gtk/src/Makefile.am,
13491         plugins/project-wizard/templates/gnome/src/*.[ch],
13492         plugins/project-wizard/templates/anjuta-plugin/src/*.[ch] :
13493         Add Copyright date & Email address,
13494         Correct terminal project.
13495         
13496 2005-02-12  Naba Kumar  <naba@gnome.org>
13498         * plugins/project-wizard/property.c: Fixed hidden
13499         properties to take values.
13501         * plugins/project-wizard/file.[ch]: Renamed
13502         true/false enum values to fix compile error
13503         (conflict with other definition).
13504         
13505         * plugins/file-loader/plugin.c: Detect anjuta projects correctly
13506         even when mime type detection fails (for example, when Anjuta is
13507         installed in non-system prefix).
13509 2005-02-12  Sebastien Granjoux  <seb.sfo@free.fr>
13511         * plugins/project-wizard/values.c,
13512         plugins/project-wizard/values.h:
13513         Rewrite file with more comments
13515         * plugins/project-wizard/druid.c,
13516         plugins/project-wizard/druid.h,
13517         plugins/project-wizard/autogen.c,
13518         plugins/project-wizard/autogen.h,
13519         plugins/project-wizard/druid.c,
13520         plugins/project-wizard/druid.h:
13521         Add more comments
13522         Use values instead of properties
13523         Move default properties to druid.c
13525         * plugins/project-wizard/install.c,
13526         plugins/project-wizard/install.h:
13527         Use values instead of properties
13528         Add a check to avoid overwriting files
13530         * plugins/project-wizard/parser.c,
13531         plugins/project-wizard/property.c,
13532         plugins/project-wizard/property.h:
13533         Update to use new values
13534         Add an "exist" attribute to check if a directory already exist
13536         * plugins/project-wizard/anjuta-project-wizard.glade:
13537         Change project selection page (GtkTextView => GtkLabel,
13538         GtkTable => GtkVBox)
13540         * plugins/project-wizard/templates/terminal.wiz:
13541         Move destination directory on second page
13542         
13543         * plugins/project-wizard/action.c:
13544         Add a few comments
13546 2005-02-12  Naba Kumar  <naba@gnome.org>
13548         * plugins/file-manager/an_file_view.c,
13549         plugins/symbol-browsers/an_symbol_view.c: Removed rules hint from the
13550         views. Created dynamic update date of view depending on project
13551         changes -- similar to file-manager view.
13552         
13553         * plugins/devhelp/plugin.c: Load help on idle.
13554         
13555         * plugins/editor/anjuta-document-manager.glade: Moved 'disable
13556         autoformat' to proper location in preferences.
13557         
13558         * mime/anjuta.mime: Added .prj extension in the mime type for backward
13559         compatibility.
13560         
13561         * plugins/editor/plugin.c: Fixed accel name.
13563 2005-02-12  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13565         *plugins/project-wizard/templates/anjuta-plugin.wiz,
13566         plugins/project-wizard/templates/gnome.wiz,
13567         plugins/project-wizard/templates/gtk.wiz,
13568         plugins/project-wizard/anjuta-project-wizard.glade,
13569         plugins/project-wizard/autogen.c:
13570         Add Username & Email address in Project preferences.
13572 2005-02-11  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13574         *plugins/project-wizard/templates/gnome-logo.png,
13575         plugins/project-wizard/templates/gnome.wiz,
13576         plugins/project-wizard/templates/gnome/* :
13577         Add Gnome project
13579 2005-02-11  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13581         * plugins/project-wizard/templates/terminal/src/main.c, 
13582         plugins/project-wizard/templates/terminal/src/main.c,
13583         plugins/project-wizard/templates/terminal/src/main.[ch] :
13584         Insert License in projects
13585         
13586 2005-02-11  Naba Kumar  <naba@gnome.org>
13588         * TODO.tasks: Added message manager task.
13589         
13590         * plugins/devhelp/plugin.c: Show busy while initializing devhelp.
13591         
13592         * plugins/editor/plugin.c: Use bookmark stock icons.
13593         
13594         * plugins/message-view/anjuta-message-manager.ui,
13595         plugins/message-view/plugin.c: Added toolbar buttons for next/prev.
13597 2005-02-10  Naba Kumar  <naba@gnome.org>
13599         * libanjuta/interfaces/libanjuta.idl: fixed build error.
13600         
13601 2005-02-09  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13603         * global-tags/Makefile.am
13604         Error during 'make install'
13606 2005-02-09  Naba Kumar  <naba@gnome.org>
13608         * plugins/symbol-browser/anjuta-symbol-browser-pluing.glade: Added
13609         missing file.
13610         
13611 2005-02-08  Naba Kumar  <naba@gnome.org>
13613         * plugins/symbol-browser/an_symbol_prefs.[ch]: Added missing files.
13614         
13615         * plugins/symbol-browser/an_symbol_prefs.c, src/anjuta-app.c:
13616         Show busy cursur when updating global tags in preferences.
13618         * configure.in: Fixed.
13619         
13620 2005-02-08  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
13622         * plugins/project-wizard/templates/anjuta-plugin/src/Makefile.am.tpl
13623           plugins/project-wizard/templates/anjuta-plugin/src/plugin.c
13624          
13625         - Fixed anjuta-plugin project (glade)
13627 2005-02-08  Naba Kumar  <naba@gnome.org>
13629         * plugins/editor/aneditor.cxx: Implemented auto-indent on 'tab' press.
13630         Fixed automatic indentations.
13632         * global-tags/Makefile.am, global-tags/create_global_tags.sh:
13633         Global tags are now segregated into smaller api tags, which can be
13634         selectively loaded from symbol browser preferences.
13636         * plugins/project-manager/plugin.c, plugins/project-manager/plugin.h:
13637         Implemented IProjectManager interface in project-manager. Mostly getter
13638         methods for now, but need to add add() and remove() methods to add
13639         or remove project elements.
13641         * plugins/gdb/debug_tree.c: Small fix.
13643         * plugins/editor/aneditor.cxx, plugins/symbol-browser/Makefile.am,
13644         plugins/symbol-browser/an_symbol_info.c,
13645         plugins/symbol-browser/an_symbol_info.h,
13646         plugins/symbol-browser/an_symbol_search.c,
13647         plugins/symbol-browser/an_symbol_search.h,
13648         plugins/symbol-browser/an_symbol_view.c,
13649         plugins/symbol-browser/an_symbol_view.h,
13650         plugins/symbol-browser/plugin.c,
13651         plugins/symbol-browser/plugin.h,
13652         tagmanager/c.c,
13653         tagmanager/entry.h,
13654         tagmanager/tm_project.c,
13655         tagmanager/tm_symbol.c,
13656         tagmanager/tm_tag.c,
13657         tagmanager/tm_workspace.c,
13658         tagmanager/vstring.c,
13659         tagmanager/include/tm_tag.h,
13660         tagmanager/include/tm_workspace.h:
13661         
13662         - Fixed tagmanager parsing of source files to parse for typedefines and
13663         properly record element scopes. Implemented scope autocompletion
13664         (autocompletion on '.', '->', '::' and ':'. The functionality is not
13665         fully working. It was based on older patch for Anjuta 1.2.2 in SF
13666         patch list (author is unknown).
13667         - Implemented symbol-browser preferences for dynamically loading and
13668         saving tags API segments.
13669         - Fixed symbol-search to use tagmanager directly instead of depending
13670         on symbol-view for tags list.
13671         - Fixed symbol-view to create the tree using TMSymbol tree directly.
13672         - Fixed TMSymbol to create the complete tags tree instead of letting the
13673         symbol-view created the root nodes.
13674         - Changed project tags cache name to .tm_project2.cache because the
13675         newer format records additional scope information.
13676         
13677 2005-02-07  Naba Kumar  <naba@gnome.org>
13679         * plugins/editor/style-editor.c,
13680         plugins/editor/anjuta-document-manager.glade: Used GtkColorButton
13681         and GtkFontButton instead of deprecated widgets in
13682         style editor.
13683         
13684 2005-02-07  Sebastien Granjoux  <seb.sfo@free.fr>
13686         * plugins/project-wizard/action.c,
13687         plugins/project-wizard/action.h,
13688         plugins/project-wizard/autogen.c,
13689         plugins/project-wizard/autogen.h,
13690         plugins/project-wizard/file.c,
13691         plugins/project-wizard/file.h,
13692         plugins/project-wizard/install.c,
13693         plugins/project-wizard/install.h,
13694         plugins/project-wizard/parser.h,
13695         plugins/project-wizard/parser.c,
13696         plugins/project-wizard/property.c,
13697         plugins/project-wizard/property.h,
13698         plugins/project-wizard/plugin.h,
13699         plugins/project-wizard/plugin.c,
13700         plugins/project-wizard/values.c,
13701         plugins/project-wizard/values.h:
13702         Replace C++ comments by C comments
13704         * plugins/project-wizard/autogen.c,
13705         plugins/project-wizard/autogen.h:
13706         Add a run time check of autogen version.
13707         Add UserName variable.
13709         * plugins/project-wizard/anjuta-project-wizard.glade,
13710         plugins/project-wizard/header.c,
13711         plugins/project-wizard/druid.c,
13712         plugins/project-wizard/druid.h:
13713         Sort project in alphabetic order.
13714         Correct selection troubles in notebooks.
13716         * plugins/project-wizard/parser.c:
13717         Add some check when reading the project header block.
13719 2005-02-05  Sebastien Granjoux  <seb.sfo@free.fr>
13721         * plugins/project-wizard/action.c,
13722         plugins/project-wizard/action.h,
13723         plugins/project-wizard/autogen.c,
13724         plugins/project-wizard/autogen.h,
13725         plugins/project-wizard/file.c,
13726         plugins/project-wizard/file.h,
13727         plugins/project-wizard/install.c,
13728         plugins/project-wizard/parser.h,
13729         plugins/project-wizard/parser.c,
13730         plugins/project-wizard/property.c,
13731         plugins/project-wizard/property.h,
13732         plugins/project-wizard/values.c,
13733         plugins/project-wizard/values.h,
13734         Add a space between function name and open.
13736         * plugins/project-wizard/plugin.h,
13737         plugins/project-wizard/plugin.c,
13738         plugins/project-wizard/install.c,
13739         Avoid a crash if the user close the message view used by the .
13741         * plugins/project-wizard/anjuta-project-wizard,
13742         plugins/project-wizard/druid.c,
13743         plugins/project-wizard/druid.h,
13744         plugins/project-wizard/header.h,
13745         plugins/project-wizard/header.c,
13746         Add a text view with the description of each.
13747         Add a tab for each project.
13748         Replace some C++ comments to C comments.
13750 2005-02-05  Naba Kumar  <naba@gnome.org>
13752         * plugins/project-wizard/anjuta-project-wizard-plugin.png:
13753         New icon from Sebastien Granjoux .
13754         
13755 2005-02-05  Sebastien Granjoux  <seb.sfo@free.fr>
13757         * libanjuta/anjuta-preferences.c:
13758         Set file property even without a focus out event (file selected 
13759         the browse dialog)
13761 2005-02-04  Naba Kumar  <naba@gnome.org>
13763         * plugins/glade/plugin.c: Fixed glade function calls.
13764         * configure.in: Fixed a typo.
13765         * TODO.tasks: Updated.
13767 2005-02-03  Naba Kumar  <naba@gnome.org>
13769         * plugins/project-manager/plugin.c: Fixed memory corruption.
13771         * plugins/build-basic-autotools/build-basic-autotools.c: Fixed
13772         build error.
13773         
13774         * manuals/reference/libanjuta/tmpl/ianjuta-buildable.sgml,
13775         manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml,
13776         manuals/reference/libanjuta/tmpl/ianjuta-project-manager.sgml,
13777         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml: Updated.
13779         * libanjuta/interfaces/libanjuta.idl,
13780         plugins/project-manager/plugin.c: Implemented IAnjutaProjectManager
13781         interface.
13782         
13783         * plugins/symbol-browser/an_symbol_view.c: Fixed memory leaks.
13785         Patch from Massimo Cora <maxcvs@email.it>:
13786         * plugins/editor/plugin.c: Fixed update UI for created buffers.
13787         
13788 2005-02-01  Naba Kumar  <naba@gnome.org>
13790         * libanjuta/anjuta-launcher.c, libanjuta/anjuta-launcher.h,
13791         libanjuta/anjuta-utils.c, libanjuta/anjuta-utils.h,
13792         plugins/editor/goto_line.c, plugins/editor/goto_line.h,
13793         scintilla/ScintillaGTK.cxx, scintilla/include/ScintillaWidget.h,
13794         (new) scintilla/patches/a64-crash-fix.patch: Applied old patches
13795         from sourceforge -- a64 crash fixes (correct typing for GType)
13796         and fixes compile errors in sun.
13798         * plugins/terminal/terminal.c: Patch from sourceforge -- Fixes
13799         paste (shift+insert) in terminal.
13801 2005-02-01  Kjartan Maraas  <kmaraas@gnome.org>
13803         * configure.in: Add «nb» to ALL_LINGUAS.
13805 2005-02-01  Naba Kumar  <naba@gnome.org>
13807         * TODO.tasks, TODO: Updated todo tasks.
13808         
13809         * plugins/editor/anjuta-document-manager.glade: Improved search
13810         relace dialog.
13811         
13812         * TODO.tasks: Fixed xml format.
13813         
13814         * plugins/editor/aneditor.cxx: Added code to trap 'tab' key (does not
13815         work yet).
13816         
13817         * plugins/editor/text_editor.c, plugins/editor/text_editor.h: Code
13818         cleanups.
13819         
13820         * plugins/gtodo/interface.c, plugins/gtodo/libgtodo.c: Fixed xml
13821         format during save (removed unwanted text nodes). Fixed scrollbars.
13823 2005-01-31  Naba Kumar  <naba@gnome.org>
13825         * libanjuta/interfaces/libanjuta.idl,
13826         plugins/cvs-plugin/cvs-execute.c, plugins/macro/macro-actions.c:
13827         Implemented append() method for IAnjutaEditor interface and fixed
13828         various bugs with text insertions (cvs diff and macro insertions).
13829         
13830         * plugins/editor/aneditor.cxx: Implemented mulilevel calltips, fixed
13831         automatic indentation.
13832         
13833         * plugins/editor/action-callbacks.c,
13834         plugins/editor/action-callbacks.h,
13835         plugins/editor/anjuta-docman.c,
13836         plugins/editor/anjuta-document-manager.ui,
13837         plugins/editor/plugin.c,
13838         plugins/editor/text_editor.c,
13839         plugins/editor/text_editor.h,
13840         plugins/editor/text_editor_prefs.c: Create highlight menu dynamically.
13841         Fixed highlight issues.
13843         * plugins/macro/plugin.c: Added keyboard shortcuts for insert and add
13844         macro.
13845         
13846         * plugins/symbol-browser/an_symbol_view.c: Force update project.
13848         * data/properties/*: Updated properties files from scite. Created
13849         styles.properties to override the scite styles.
13850         
13851         * plugins/editor/aneditor.cxx: Fixed automatic indentation.
13853         * manuals/reference/libanjuta/libanjuta.types: Fixed build error.
13854         
13855 2005-01-30  Naba Kumar  <naba@gnome.org>
13857         * libanjuta/interfaces/libanjuta.idl: Added documentations and removed
13858         unused definitions.
13859         
13860         * plugins/cvs-plugin/anjuta-cvs-plugin.glade: Fixed typo.
13861         
13862         * plugins/editor/aneditor.cxx, plugins/editor/aneditor.h,
13863         plugins/editor/text_editor.c,
13864         plugins/editor/text_editor_prefs.c: Added new aneditor commands,
13865         fixed linuwidth preference setting, fixed insert text interface
13866         implementation. Improved automatice-indentation for cpp lexer.
13867         
13868         * plugins/symbol-browser/an_symbol_view.c: Code cleanup.
13870 2005-01-29  Naba Kumar  <naba@gnome.org>
13872         * plugins/cvs-plugin/anjuta-cvs-plugin.glade: Disabled "Remove sticky"
13873         option in update dialog as default. Improved import dialog. Sized
13874         log dialog.
13876         * configure.in: Fixed underquoted warning from autoconf.
13877         
13878         * plugins/editor/action-callbacks.c,
13879         plugins/editor/aneditor.cxx,
13880         plugins/editor/aneditor.h,
13881         plugins/editor/anjuta-document-manager.glade,
13882         plugins/editor/plugin.c,
13883         plugins/editor/plugin.h,
13884         plugins/editor/text_editor.c,
13885         plugins/editor/text_editor.h,
13886         plugins/editor/text_editor_prefs.c: Implemented prefernces commands
13887         for Editor and fixed all preferences syncronization and notifys for
13888         visible prefs (in editor preferences page).
13889         
13890         * plugins/file-loader/plugin.c: Load recent files on idle.
13892 2005-01-28  Naba Kumar  <naba@gnome.org>
13894         * plugins/editor/text_editor.c, plugins/editor/text_editor.h,
13895         plugins/editor/text_editor_prefs.c: Fixed linenumbers width bug.
13897         * plugins/editor/action-callbacks.c,
13898         plugins/editor/action-callbacks.h,
13899         plugins/editor/aneditor.cxx,
13900         plugins/editor/aneditor.h,
13901         plugins/editor/anjuta-document-manager.ui,
13902         plugins/editor/plugin.c,
13903         plugins/editor/text_editor.c,
13904         plugins/editor/text_editor.h,
13905         plugins/editor/text_editor_cbs.c,
13906         plugins/editor/text_editor_cbs.h,
13907         plugins/editor/text_editor_prefs.c: Implemented Multiple view of
13908         Text editor.
13910         Patch from Massimo Cora <maxcvs@email.it>:
13911         * plugins/editor/an_symbol_search.c,
13912         plugins/editor/an_symbol_search.c: Fixed crash bugs.
13913         
13914 2005-01-27  Naba Kumar  <naba@gnome.org>
13915         
13916         *libegg/eggcomboselect.c: Fix crash bug during popup close and fixed
13917         minimum size request to 200.
13919         * plugins/symbol-browser/an_symbol_info.c,
13920         plugins/symbol-browser/an_symbol_info.h,
13921         plugins/symbol-browser/an_symbol_search.c,
13922         plugins/symbol-browser/an_symbol_search.h,
13923         plugins/symbol-browser/an_symbol_view.c,
13924         plugins/symbol-browser/an_symbol_view.h,
13925         plugins/symbol-browser/plugin.c: Fixed object disposition. Fixed
13926         pixbuf retrieval. Fixed runtime warning. Code clean up.
13928 2005-01-27  Naba Kumar  <naba@gnome.org>
13930         * configure.in, plugins/Makefile.am, src/anjuta-app.c,
13931         src/anjuta.ui, (new) plugins/glade/.cvsignore,
13932         (new) plugins/glade/Makefile.am,
13933         (new) plugins/glade/anjuta-glade-plugin.png,
13934         (new) plugins/glade/anjuta-glade.plugin.in,
13935         (new) plugins/glade/anjuta-glade.ui,
13936         (new) plugins/glade/plugin.c,
13937         (new) plugins/glade/plugin.h,
13938         (new) plugins/profile-default/plugin.c:  Glade plugin. Disabled for
13939         now until glade3 works properly.
13941         * libanjuta/anjuta-marshal.[c,h]: Removed from cvs, because
13942         they are generated.
13943         
13944 2005-01-26  Naba Kumar  <naba@gnome.org>
13946         * mime/Makefile.am, (new)gnome-mime-application-x-anjuta.png:
13947         Added mime icon for anjuta projects.
13948         
13949         patch from Massimo Cora <maxcvs@email.it>:
13950         * an_symbol_info.c, an_symbol_info.h, an_symbol_search.c,
13951         an_symbol_search.h, an_symbol_view.c, plugin.c:
13952         Fix/implement objects destroying/freeing.
13954 2005-01-26  Johannes Schmid <jhs@cvs.gnome.org>
13955         
13956         * src/action-callback.[ch], src/anjuta-actions.h:
13957         Changed bug and feature request urls to bugzilla.gnome.org and removed LIDN
13958         because it has not been updated for years and we know have a devhelp plugin
13959         which can do the job much better.
13960         * TODO.tasks: Updated done items
13962 2005-01-25  Naba Kumar  <naba@gnome.org>
13964         * autogen.sh: Fixed to generate interface files.
13966         * plugins/editor/plugin.c, plugins/project-manager/plugin.c: Fixed
13967         session save filenames.
13968         
13969         * plugins/editor/anjuta-docman.c: Lazy create fileselection dialogs.
13970         
13971 2005-01-24  Sebastien Granjoux <seb.sfo@free.fr>
13973         * plugins/project-wizard/Makefile.am,
13974         plugins/project-wizard/install.c,
13975         plugins/project-wizard/install.h,
13976         plugins/project-wizard/parser.c,
13977         plugins/project-wizard/parser.h,
13978         plugins/project-wizard/templates/terminal.wiz:
13979         Add action list block in wizard template
13980         * plugins/project-wizard/file.c,
13981         plugins/project-wizard/autogen.c:
13982         Small fixes
13984 2005-01-23  Naba Kumar  <naba@gnome.org>
13986         * configure.in: Fixed build error.
13988 2005-01-22  Sebastien Granjoux <seb.sfo@free.fr>
13990         * plugins/project-wizard/druid.c,
13991         plugins/project-wizard/parser.c,
13992         plugins/project-wizard/property.c: Rewrite parser with
13993         better error handling
13995 2005-01-22  Naba Kumar  <naba@gnome.org>
13997         * plugins/symbol-browser/plugin.c: Changed c++ coments
13998         to c commnets and formated code to anjuta coding styles.
13999         
14000 2005-01-21  Naba Kumar  <naba@gnome.org>
14002         * configure.in, autogen.sh: Fixed build errors in newer automake.
14003         
14004         * plugins/editor/anjuta-docman.c: Do not emit change editor
14005         signal while in dispose.
14007         Patch from: Massimo Corà <maxcvs@email.it>
14008         * plugins/symbol-browser/Makefile.am,
14009         plugins/symbol-browser/an_symbol_view.c,
14010         plugins/symbol-browser/an_symbol_view.h,
14011         plugins/symbol-browser/plugin.c,
14012         plugins/symbol-browser/plugin.h,
14013         plugins/symbol-browser/test-symbol-browser.c,
14014         (new) plugins/symbol-browser/an_symbol_info.c,
14015         (new) plugins/symbol-browser/an_symbol_info.h,
14016         (new) plugins/symbol-browser/an_symbol_search.c,
14017         (new) plugins/symbol-browser/an_symbol_search.h:
14018         Added a cool real-time symbol-search-view in symbol browser.
14020 2005-01-21  Johannes Schmid <jhs@cvs.gnome.org>
14021         
14022         * plugin/macro/plugin.c
14023         plugin/macro/anjuta-macro-plugin.ui
14024         plugin/macro/macro-db.[ch]
14025         plugin/macro/macro-dialog.[ch]
14026         plugin/macro/macro-actions.[ch]
14027         plugin/macro/macro-edit.[ch]
14028         plugin/macro/plugin.[ch]:
14029         
14030         Implemented three menu items as Naba proposed:
14031         Edit->Macro->
14032                 Insert Macro: Pops of a border-less window to enter a shortcut
14033                 Add Macro: Same as Manage Macro => New
14034                 Manage Macros: Full-features macro dialog
14036 2005-01-20  Naba Kumar  <naba@gnome.org>
14038         * libanjuta/anjuta-marshal.c, libanjuta/anjuta-marshal.h,
14039         libanjuta/anjuta-marshal.list, libanjuta/anjuta-shell.c,
14040         libanjuta/anjuta-shell.h,
14041         manuals/reference/libanjuta/tmpl/anjuta-shell.sgml,
14042         plugins/editor/plugin.c, plugins/file-loader/plugin.c,
14043         plugins/project-manager/plugin.c, plugins/project-manager/plugin.h,
14044         src/anjuta-app.c, src/anjuta-app.h, src/anjuta.c,
14045         src/main.c, src/shell.c: Implemented command line args processing
14046         and session management. Fixed geometry restoration.
14048 2005-01-19  Johannes Schmid <jhs@cvs.gnome.org>
14049         
14050         * plugins/macro/macro-db.c,
14051         plugins/macros.xml:
14052         Cleaned up XML interface and use attributes now for name, category and 
14053         shortcut. CDATA is used to avoid xml errors inside of macros.
14055 2005-01-19  Naba Kumar  <naba@gnome.org>
14057         * libanjuta/anjuta-launcher.[c,h]: Fixed bugs.
14059 2005-01-18  Naba Kumar  <naba@gnome.org>
14060         
14061         * plugins/cvs-plugin/cvs-actions.c: Fixed "whole project" toggle button
14062         to work.
14064         * scintilla/*: Updated scintilla to current cvs and updated
14065         scintilla patches.
14066         
14067 2005-01-18  Johannes Schmid <jhs@cvs.gnome.org>
14068         
14069         * plugins/cvs-plugin/anjuta-cvs-plugin.glade
14070         plugins/cvs-plugin/cvs-actions.c:
14071         Added "Whole project" infrastructure but it does not
14072         work because I did not find a way to get the current project's
14073         root dir.
14075 2005-01-18  Johannes Schmid <jhs@cvs.gnome.org>
14077         * plugins/cvs-plugin/Makefile.am
14078         plugins/cvs-plugin/anjuta-cvs.plugin.in
14079         plugins/cvs-plugin/cvs-actions.c
14080         plugins/cvs-plugin/cvs-callbacks.c
14081         plugins/cvs-plugin/cvs-interface.[ch] (added)
14082         plugins/cvs-plugin/plugin.c:
14083         
14084         Added IAnjutaCVS interface and improved cvs plugin. There
14085         is still some work to do on cvs import and to add a current
14086         project toggle.
14088 2005-01-17  Naba Kumar  <naba@gnome.org>
14090         * plugins/editor/aneditor.cxx: Fixed auto indentation.
14091         
14092         * configure.in: Fixed build errors.
14094         * data/Makefile.am,     (removed) data/README.stock_libs,
14095         (removed) data/anjuta.mime, (removed) data/autogen.sh*,
14096         (removed) data/header.c, (removed) data/stock_libs.anj,
14097         (removed) data/x-anjuta-project.desktop,
14098         (removed) data/macros/*, (removed) data/macros2/*: Removed old files.
14100         * libanjuta/anjuta-plugin-description.c,
14101         libanjuta/anjuta-shell.c: Updated documentations.
14103         Patch from: Hamish Mackenzie  <hamish@firestream.co.uk>
14104         
14105         * libanjuta/anjuta-launcher.c,
14106         plugins/build-basic-autotools/build-basic-autotools.c: Fixed errors in
14107         x86_64 systems.
14109 2005-01-17  Naba Kumar  <naba@gnome.org>
14110         
14111         * plugins/project-wizard/templates/anjuta-plugin.wiz,
14112         plugins/project-wizard/templates/gtk.wiz,
14113         plugins/project-wizard/templates/anjuta-plugin/src/plugin.glade:
14114         Updated templates to new format.
14115         
14116         Patch from Sébastien Granjoux <seb.sfo@free.fr>:
14117         * plugins/project-wizard/druid.c,
14118         plugins/project-wizard/parser.c,
14119         plugins/project-wizard/property.c,
14120         plugins/project-wizard/property.h,
14121         plugins/project-wizard/templates/terminal.wiz,
14122         plugins/project-wizard/templates/terminal/AUTHORS,
14123         plugins/project-wizard/templates/terminal/ChangeLog,
14124         plugins/project-wizard/templates/terminal/NEWS,
14125         plugins/project-wizard/templates/terminal/README,
14126         plugins/project-wizard/templates/terminal/project.anjuta,
14127         plugins/project-wizard/templates/terminal/src/main.c:
14128         Moveed code related to property types from druid.c and parser.c to 
14129         property.c. Changed tag from "<string ..." to
14130         "<property type="string..."     and so on. Rewrite parser
14131         (warning still in progress). Added list property. Changed
14132         terminal project to avoid using autogen on some file (much 
14133         faster) using the autogen attribute. Add a license list box in
14134         terminal project (just as an example). _label in item list is
14135         optional now.
14137 2005-01-16  Naba Kumar  <naba@gnome.org>
14139         * plugins/edtior/text_editor_menu.c, src/anjuta-actions.h,
14140         plugins/edtior/anjuta-docman.c: Fixed build errors.
14141         
14142         * libanjuta/Makefile.am, libanjuta/anjuta-debug.h,
14143         libanjuta/anjuta-launcher.c, libanjuta/anjuta-plugin-description.c,
14144         libanjuta/anjuta-plugin.c, libanjuta/anjuta-preferences.c,
14145         (removed) libanjuta/anjuta-stock.h, libanjuta/anjuta-ui.c,
14146         (removed) libanjuta/defaults.c, libanjuta/defaults.h,
14147         (removed) libanjuta/pixmaps.h, libanjuta/resources.c,
14148         libanjuta/resources.h,
14149         plugins/build-basic-autotools/build-basic-autotools.c,
14150         plugins/editor/plugin.c, plugins/editor/text_editor.c,
14151         plugins/file-manager/an_file_view.c, plugins/gdb/stack_trace.c,
14152         plugins/gtodo/plugin.c, src/Makefile.am,
14153         src/about.c, src/anjuta-app.c, src/anjuta-app.h, src/anjuta.c,
14154         src/main.c, (removed) src/preferences.c, (removed) src/preferences.h:
14155         Removed deprecated APIs; pixmaps, stock icons, defaults etc. They
14156         should be handled in respective plugins. Added API documentations.
14158         * libanjuta-docs.sgml, libanjuta-sections.txt,
14159         libanjuta.types,
14160         (added) tmpl/anjuta-debug.sgml,
14161         (added) tmpl/anjuta-launcher.sgml,
14162         tmpl/anjuta-plugin.sgml,
14163         tmpl/anjuta-preferences.sgml,
14164         tmpl/anjuta-shell.sgml,
14165         (added) tmpl/anjuta-status.sgml,
14166         (removed) tmpl/anjuta-stock.sgml,
14167         tmpl/anjuta-utils.sgml,
14168         (removed) tmpl/defaults.sgml,
14169         (removed) tmpl/fileselection.sgml,
14170         (removed) tmpl/gnomefilelist.sgml,
14171         tmpl/ianjuta-buildable.sgml,
14172         (added) tmpl/ianjuta-debugger-manager.sgml,
14173         (added) tmpl/ianjuta-debugger.sgml,
14174         tmpl/ianjuta-document-manager.sgml,
14175         tmpl/ianjuta-editor.sgml,
14176         tmpl/ianjuta-file.sgml,
14177         tmpl/ianjuta-loader.sgml,
14178         tmpl/ianjuta-markable.sgml,
14179         tmpl/ianjuta-message-view.sgml,
14180         (added) tmpl/ianjuta-project-manager.sgml,
14181         (added) tmpl/ianjuta-todo.sgml,
14182         (added) tmpl/ianjuta-wizard.sgml,
14183         tmpl/libanjuta-iface-marshallers.sgml,
14184         tmpl/libanjuta-unused.sgml,
14185         (removed) tmpl/pixmaps.sgml,
14186         tmpl/plugins.sgml,
14187         (removed) tmpl/properties.sgml,
14188         tmpl/resources.sgml: Updated API documentations.
14190 2005-01-15  Naba Kumar  <naba@gnome.org>
14192         * libanjuta/anjuta-launcher.c: Added API docs.
14193         
14194         * plugins/project-wizard/templates/anjuta-plugin.wiz,
14195         plugins/project-wizard/templates/gtk.wiz,
14196         plugins/project-wizard/templates/terminal.wiz,
14197         plugins/project-wizard/templates/anjuta-plugin/src/Makefile.am.tpl,
14198         plugins/project-wizard/templates/gtk/src/Makefile.am.tpl,
14199         plugins/project-wizard/templates/gtk/src/main.c,
14200         plugins/project-wizard/templates/terminal/Makefile.am.tpl,
14201         plugins/project-wizard/templates/terminal/src/Makefile.am.tpl: Fixed
14202         template files.
14204         Patch from: Sébastien Granjoux <seb.sfo@free.fr>
14205         * plugins/project-wizard/anjuta-project-wizard.glade,
14206         plugins/project-wizard/autogen.c,
14207         plugins/project-wizard/druid.c,
14208         plugins/project-wizard/druid.h,
14209         plugins/project-wizard/file.c,
14210         plugins/project-wizard/file.h,
14211         plugins/project-wizard/install.c,
14212         plugins/project-wizard/parser.c,
14213         plugins/project-wizard/plugin.c,
14214         plugins/project-wizard/plugin.h: Add a preferences dialog: used for
14215         setting the default project directory. Fix HIDDEN property, it's
14216         working but I think we could make this cleaner. Removed the
14217         copy of the string in mandatory_property. Add an optional autogen
14218         attribute, to force or avoid using autogen on some files, default
14219         without any attribute is autodetect.+ Replace the script tag with
14220         a normal file tag and an attribute execute.
14221         
14222 2005-01-14  Naba Kumar  <naba@gnome.org>
14224         * plugins/editor/action-callbacks.c,
14225         plugins/editor/search_incremental.c,
14226         plugins/editor/search_incremental.h: Fixed incremental search, ctrl-e
14227         works now.
14228         
14229         * plugins/editor/plugin.c, plugins/editor/plugin.h,
14230         src/anjuta-callbacks.c: Added ctrl-tabbing and alt-switching of editor
14231         tabs.
14233 2005-01-12  Naba Kumar  <naba@gnome.org>
14235         * configure.in,
14236         plugins/project-wizard/templates/Makefile.am,
14237         (added) plugins/project-wizard/templates/anjuta-plugin-logo.png,
14238         plugins/project-wizard/templates/anjuta-plugin.wiz,
14239         (added) plugins/project-wizard/templates/gtk-logo.png,
14240         (added) plugins/project-wizard/templates/gtk.wiz,
14241         (added) plugins/project-wizard/templates/terminal-logo.png,
14242         plugins/project-wizard/templates/terminal.wiz,
14243         plugins/project-wizard/templates/anjuta-plugin/src/Makefile.am.tpl,
14244         plugins/project-wizard/templates/anjuta-plugin/src/plugin.c,
14245         (added) plugins/project-wizard/templates/gtk/.cvsignore,
14246         (added) plugins/project-wizard/templates/gtk/Makefile.am,
14247         (added) plugins/project-wizard/templates/gtk/src/.cvsignore,
14248         (added) plugins/project-wizard/templates/gtk/src/Makefile.am,
14249         (added) plugins/project-wizard/templates/gtk/src/Makefile.am.tpl,
14250         (added) plugins/project-wizard/templates/gtk/src/main.c,
14251         (added) plugins/project-wizard/templates/gtk/src/project.glade,
14252         plugins/project-wizard/templates/terminal/src/Makefile.am.tpl: Added
14253         GTK+ project templated and fixed other templates. Updated template
14254         logos.
14256 2005-01-12  Naba Kumar  <naba@gnome.org>
14258         * plugins/macro/anjuta-macro.glade: Improved GUI.
14259         
14260 2005-01-10  Johannes Schmid <jhs@cvs.gnome.org>
14262         * plugins/cvs-plugin/cvs_gui.[ch] (removed)
14263         * plugins/cvs-plugin/cvs_cbs.[ch] (removed)
14264         * plugins/cvs-plugin/cvs.[ch] (removed)
14265         Removed old unused files
14266         
14267         * plugins/cvs-plugin/cvs-callbacks.[ch] (added)
14268         * plugins/cvs-plugin/cvs-actions.c
14269         * plugins/cvs-plugin/Makefile.am:
14270         Seperate callback functions for better error
14271         handling. Cleaned up code.
14272         
14273         * plugins/macro/macros.xml: removed corrupt cvs
14274         macros for now.
14276 2005-01-10  Naba Kumar  <naba@gnome.org>
14278         * plugins/message-view/message-view.c, libanjuta/anjuta-ui.c,
14279         plugins/symbol-browser/an_symbol_view.c: Fixed memory curruption
14280         and leaks.
14282 2005-01-09  Naba Kumar  <naba@gnome.org>
14284         * libegg/egg-recent-action.c, libegg/test-actions.c,
14285         libegg/menu/egg-recent-action.h: Recent Action now takes multiple
14286         recent files models.
14287         
14288         * plugins/file-loader/plugin.c, plugins/file-loader/plugin.h: Have
14289         two models -- one for projects and other for regular files and show
14290         both in recent files menu. Changed recent files group from "anjuta"
14291         to "anjuta-projects" and "anjuta-files" respectively. Set mime types
14292         when adding the URI in recent files.
14293         
14294         * plugins/macro/anjuta-macro.glade: Beautified insert macro dialog.
14295         * plugins/macro/anjuta-macro.plugin.in: Proper plugin name.
14296         * plugins/macro/macro-dialog.c: Fixed dispose() method.
14297         * plugins/macro/macros.xml: Fixed xml errors.
14299 2005-01-08  Naba Kumar  <naba@gnome.org>
14300         
14301         * libegg/Makefile.am, (added) libegg/egg-recent-action.c,
14302         libegg/test-actions.c, libegg/menu/Makefile.am,
14303         libegg/menu/egg-recent-action.h: Added a new action for
14304         recent files.
14306         * libegg/egg-combo-action.c, libegg/egg-entry-action.c:
14307         Fixed dispose. Cleanup.
14308         
14309         * plugins/file-loader/anjuta-loader-plugin.ui,
14310         plugins/file-loader/plugin.c, plugins/file-loader/plugin.h:
14311         Use the new action for recent files. Added recent files in
14312         toolbar.
14314         * plugins/project-wizard/druid.c: Show busy cursor and
14315         de-sensitize druid buttons during page change.
14316         
14317         Patch from Sébastien Granjoux  <seb.sfo@free.fr>:
14318         * plugins/project-wizard/Makefile.am,
14319         plugins/project-wizard/druid.c,
14320         plugins/project-wizard/druid.h,
14321         plugins/project-wizard/install.c,
14322         plugins/project-wizard/plugin.c,
14323         plugins/project-wizard/plugin.h,
14324         plugins/project-wizard/property.c,
14325         plugins/project-wizard/property.h,
14326         (added) plugins/project-wizard/values.c,
14327         (added) plugins/project-wizard/values.h: Added a new NPWPropertyValues
14328         objects (in values.c and values.h) containing the values of all
14329         properties. The NPWProperty objects now keep their values in this
14330         object which is persistant for one activation of the plugin, so the
14331         user keeps all the values even if he goes backward. Used an anjuta
14332         message view to list all files copied by the project wizard.
14334 2005-01-08  Johannes Schmid <jhs@cvs.gnome.org>
14336         * plugins/macro/plugin.[ch],
14337         plugins/macro/macro-dialog.[ch]
14338         plugins/macro/macro-edit.[ch]
14339         plugins/macro/macro-db.[ch]
14340         plugins/macro/macro-actions.[ch]
14341         plugins/macro/anjuta-macro.plugin.in
14342         plugins/macro/anjuta-macro.glade
14343         plugins/macro/anjuta-macro.png
14344         plugins/macro/Makefile.am
14345         plugins/macro/macros.xml
14346         plugins/macro/anjuta-macro.ui (all added)
14347         configure.in
14348         plugins/Makefile.am:
14349         Added new macro plugins
14350         
14351         * plugins/cvs-plugin/anjuta-cvs-plugin.png:
14352         New icon
14353         
14354         * manuals/reference/template (removed)
14355         Removed old api reference
14356         
14357         * plugins/message-view/message-view.c:
14358         "Fixed" crash in on_row_deleted and added a
14359         comment that I cannot work this way. We will
14360         have to change everything a bit to avoid losing
14361         memory there.
14362         
14363         * plugins/text-editor/text_editor.c:
14364         Update line number width on file save
14367 2005-01-07  Naba Kumar  <naba@gnome.org>
14369         * plugins/project-wizard/anjuta-project-wizard.glade,
14370         plugins/project-wizard/druid.c,
14371         plugins/project-wizard/templates/anjuta-plugin.wiz,
14372         plugins/project-wizard/templates/terminal.wiz: Fixed project templates.
14373         Display page description in bold. Fixed mandatory field check.
14375         * configure.in,
14376         libanjuta/libanjuta-1.0.pc.in,
14377         plugins/project-wizard/druid.c,
14378         plugins/project-wizard/parser.c,
14379         plugins/project-wizard/property.h,
14380         plugins/project-wizard/templates/anjuta-plugin.wiz,
14381         plugins/project-wizard/templates/terminal.wiz,
14382         plugins/project-wizard/templates/anjuta-plugin/Makefile.am,
14383         (added) plugins/project-wizard/templates/anjuta-plugin/configure.in.tpl,
14384         (added) plugins/project-wizard/templates/anjuta-plugin/po/.cvsignore,
14385         (added) plugins/project-wizard/templates/anjuta-plugin/po/Makefile.am,
14386         (added) plugins/project-wizard/templates/anjuta-plugin/po/POTFILES.in,
14387         plugins/project-wizard/templates/anjuta-plugin/src/Makefile.am.tpl,
14388         plugins/project-wizard/templates/anjuta-plugin/src/plugin.c,
14389         plugins/project-wizard/templates/anjuta-plugin/src/plugin.h,
14390         plugins/project-wizard/templates/anjuta-plugin/src/plugin.plugin.in,
14391         plugins/project-wizard/templates/terminal/configure.in.tpl,
14392         plugins/project-wizard/templates/terminal/src/Makefile.am.tpl,
14393         plugins/project-wizard/templates/terminal/src/main.c: Implemented
14394         a new property type -- hidden. Fixed terminal and anjuta-plugin
14395         project templates.
14397 2005-01-07  Naba Kumar  <naba@gnome.org>
14399         * templates/anjuta-plugin.wiz,
14400         templates/terminal.wiz,
14401         templates/terminal/Makefile.am.tpl,
14402         templates/terminal/autogen.sh,
14403         (Removed) templates/terminal/configure.ac.tpl,
14404         (Added) templates/.cvsignore,
14405         (Added) templates/Makefile.am,
14406         (Added) templates/anjuta-plugin/.cvsignore,
14407         (Added) templates/anjuta-plugin/Makefile.am,
14408         (Added) templates/anjuta-plugin/src/.cvsignore,
14409         (Added) templates/anjuta-plugin/src/Makefile.am.tpl,
14410         (Added) templates/terminal/.cvsignore,
14411         (Added) templates/terminal/Makefile.am,
14412         (Added) templates/terminal/configure.in.tpl,
14413         (Added) templates/terminal/po/.cvsignore,
14414         (Added) templates/terminal/po/ChangeLog,
14415         (Added) templates/terminal/po/Makefile.am,
14416         (Added) templates/terminal/po/POTFILES.in,
14417         (Added) templates/terminal/src/.cvsignore,
14418         (Added) templates/terminal/src/Makefile.am,
14419         (Added) templates/terminal/src/Makefile.am.tpl: Completed terminal
14420         project wizard. Fixed configure/po/Makefile template errors.
14422 2005-01-06  Naba Kumar  <naba@gnome.org>
14424         * configure.in: Added project templates.
14425         * plugins/project-wizard/templates/*: Added to project and renamed
14426         Makefile.am and configure.in to Makefile.am and configure.ac respectively
14427         for the project templates (so that they do not conflict with autotools
14428         build. Created proper configure.ac.tpl and autogen.sh for project
14429         templates.
14430         
14431 2005-01-06  Naba Kumar  <naba@gnome.org>
14433         * plugins/project-wizard/anjuta-project-wizard.glade,
14434         plugins/project-wizard/druid.c, plugins/project-wizard/parser.c:
14435         Fixed file list parsing and to take absolute file paths (for example,
14436         from an icon selected previously). Used toggle buttons for boolean
14437         properties. Check if all mandatory fields are given before going
14438         forward in the wizard. Use scrollable viewport for listing property
14439         widgets incase the list goes out of wizard's size. Added tooltips
14440         as descriptions of the property widgets. And other fixes.
14442         * (Removed) plugins/project-wizard/templates/anjuta-plugin/plugin.c,
14443         (Removed) plugins/project-wizard/templates/anjuta-plugin/plugin.glade,
14444         (Removed) plugins/project-wizard/templates/anjuta-plugin/plugin.h,
14445         (Removed) plugins/project-wizard/templates/anjuta-plugin/plugin.plugin.in,
14446         (Removed) plugins/project-wizard/templates/anjuta-plugin/plugin.ui,
14447         (Added) plugins/project-wizard/templates/anjuta-plugin/configure.in,
14448         (Added) plugins/project-wizard/templates/anjuta-plugin/src/Makefile.am,
14449         (Added)plugins/project-wizard/templates/anjuta-plugin/src/plugin.c,
14450         (Added) plugins/project-wizard/templates/anjuta-plugin/src/plugin.glade,
14451         (Added) plugins/project-wizard/templates/anjuta-plugin/src/plugin.h,
14452         (Added) plugins/project-wizard/templates/anjuta-plugin/src/plugin.plugin.in,
14453         (Added) plugins/project-wizard/templates/anjuta-plugin/src/plugin.ui:
14454         Restructured template files.
14456 2005-01-06  Naba Kumar  <naba@gnome.org>
14458         * configure.in: Added check for autogen.
14459         
14460         * libanjuta/anjuta-status.c: (Weak) unref all the remaining widgets
14461         in dispose.
14462         
14463         * plugins/editor/anjuta-docman.c, plugins/editor/plugin.c:
14464         Do not emit changed signal when in dispose.
14466         * plugins/symbol-browser/plugin.c: Don't updated symbols when
14467         symbol-view widget has been destroyed.
14468         
14469         * src/anjuta-app.c: Set null to preference, status and ui object
14470         pointers when they are destroyed.
14472         * plugins/project-wizard/druid.c, plugins/project-wizard/parser.c,
14473         plugins/project-wizard/property.h: Fixed multipage .wiz file parsing.
14474         Added boolean, integer and file property types.
14475         
14476         * plugins/project-wizard/Makefile.am,
14477         plugins/project-wizard/templates/*: Added terminal and anjuta-plugin
14478         project wizard templates.
14480 2005-01-04  Naba Kumar  <naba@gnome.org>
14482         * libanjuta/anjuta-status.c: Use weak ref instead of hard ref on
14483         added widgets.
14484         
14485         * plugins/editor/aneditor.cxx,
14486         plugins/editor/anjuta-docman.c,
14487         plugins/editor/plugin.c,
14488         plugins/editor/text_editor.c:
14489         Removed unnecessary ref/unref of scintilla.
14490         
14491         * plugins/message-view/anjuta-msgman.c,
14492         plugins/message-view/message-view.c: Removed unnecessary refs/unrefs and
14493         make close button similar to document manager.
14494         
14495         * plugins/project-manager/plugin.c,
14496         plugins/project-manager/plugin.h: Removed dead codes. Removed
14497         unnecessary ref/unref.
14498         
14499         * plugins/symbol-browser/plugin.c: Use weak refs on AnjutaEditor objects
14500         instead of hard refs.
14502 2005-01-03  Naba Kumar  <naba@gnome.org>
14504         * libanjuta/interfaces/libanjuta.idl: Added configure() and
14505         generate() methods for IAnjutaBuildable interface.
14507         * plugins/build-basic-autotools/build-basic-autotools.c: Implemented
14508         IAnjutaBuildable inteface.
14510         * plugins/build-basic-autotools/build-basic-autotools.c: Use weak ref
14511         to destroy build context when message view is destroyed.
14512         
14513         * plugins/editor/aneditor.cxx: Sink scintilla widget in aneditor, hold
14514         a ref to it and unref in destructor. AnEditor class wants to be the
14515         owner of scintilla widget. Fixed compile warnings with signed/unsigned
14516         comparisions.
14517         
14518         * plugins/editor/anjuta-docman.c: Removed unnecessary refs/unrefs. They
14519         complicate the scene. Removed editor widget from AnjutaDocman when
14520         the widget is destroyed.
14521         
14522         * plugins/editor/plugin.c: Destroy docman widget instead of just removing
14523         from shell. It will be removed from shell when the widget is destroyed.
14524         
14525         * plugins/editor/text_editor.c: Added debug codes to track object
14526         finalizations.
14528         * plugins/message-view/anjuta-msgman.c: Remove message view on
14529         widget destroy. Destroy message view on remove. Removed all views
14530         correctly.
14531         
14532         * anjuta/src/anjuta-app.c: Removed widgets correctly when they are removed
14533         from container.
14535 2005-01-02  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
14537         * plugins/file-wizard/action-callbacks.c,
14538         plugins/file-wizard/anjuta-file-wizard.glade,
14539         plugins/file-wizard/file.c, plugins/file-wizard/file.h :
14540         Insert Licence, copyright, header template ...
14541         
14542 2005-01-02  Naba Kumar  <naba@gnome.org>
14544         * libanjuta/anjuta-status.c, libanjuta/anjuta-status.h,
14545         libanjuta/plugins.c: Added "busy" signal in AnjutaStatus. Added
14546         anjuta_status_add_widget() to allow setting busy cursor on non
14547         toplevel windows.
14549         * plugins/cvs-plugin/plugin.c: Fixed memory leaks.
14551         * plugins/editor/anjuta-document-manager.plugin.in: Updated accepted
14552         mime types to take text/source also.
14553         
14554         * plugins/editor/anjuta-docman.c,
14555         plugins/editor/anjuta-docman.h,
14556         plugins/editor/plugin.c,
14557         plugins/editor/text_editor.c,
14558         plugins/editor/text_editor.h,
14559         plugins/editor/text_editor_cbs.c: Listen for busy signal from
14560         AnjutaStatus and set busy cursor on editors.
14562         * plugins/file-loader/Makefile.am,
14563         plugins/file-loader/plugin.c,
14564         (added) plugins/file-loader/dnd.c,
14565         (added) plugins/file-loader/dnd.h, Added drag and drop file receives.
14567         * src/anjuta.c: Hide anjuta window before destruction.
14569         Patch from Sébastien Granjoux  <seb.sfo@free.fr>:
14570         * configure.in, plugins/Makefile.am,
14571         (removed) plugins/project-wizard/appwiz_page1.c,
14572         (removed) plugins/project-wizard/appwiz_page2.c,
14573         (removed) plugins/project-wizard/appwiz_page3.c,
14574         (removed) plugins/project-wizard/appwiz_page4.c,
14575         (removed) plugins/project-wizard/appwizard.c,
14576         (removed) plugins/project-wizard/appwizard.h,
14577         (removed) plugins/project-wizard/appwizard_cbs.c,
14578         (removed) plugins/project-wizard/appwizard_cbs.h,
14579         (removed) plugins/project-wizard/appwizard_gui.c,
14580         (removed) plugins/project-wizard/gnome_project.c,
14581         (removed) plugins/project-wizard/gnome_project.h,
14582         (removed) plugins/project-wizard/wizard_gui.c,
14583         (removed) plugins/project-wizard/wizard_gui.h,
14584         (added) plugins/project-wizard/.cvsignore,
14585         (added) plugins/project-wizard/Makefile.am,
14586         (added) plugins/project-wizard/anjuta-project-wizard-plugin.png,
14587         (added) plugins/project-wizard/anjuta-project-wizard.glade,
14588         (added) plugins/project-wizard/anjuta-project-wizard.plugin.in,
14589         (added) plugins/project-wizard/applogo.png,
14590         (added) plugins/project-wizard/appwizard.png,
14591         (added) plugins/project-wizard/autogen.c,
14592         (added) plugins/project-wizard/autogen.h,
14593         (added) plugins/project-wizard/druid.c,
14594         (added) plugins/project-wizard/druid.h,
14595         (added) plugins/project-wizard/file.c,
14596         (added) plugins/project-wizard/file.h,
14597         (added) plugins/project-wizard/header.c,
14598         (added) plugins/project-wizard/header.h,
14599         (added) plugins/project-wizard/install.c,
14600         (added) plugins/project-wizard/install.h,
14601         (added) plugins/project-wizard/parser.c,
14602         (added) plugins/project-wizard/parser.h,
14603         (added) plugins/project-wizard/plugin.c,
14604         (added) plugins/project-wizard/plugin.h,
14605         (added) plugins/project-wizard/property.c,
14606         (added) plugins/project-wizard/property.h: Removed old application-wizard
14607         codes and added new template based (autogen based) project wizard
14608         implemented by Sébastien Granjoux  <seb.sfo@free.fr>
14610 2005-01-01  Johannes Schmid <jhs@cvs.gnome.org>
14612         * plugins/cvs-plugin/plugin.c: Fixed crash bug
14613         * plugins/cvs-plugin/cvs-execute.c:
14614         Fix cvs_log which did not work because of some
14615         glade problem
14616         Patch from Mark R. Pariente <markpariente@cmu.edu>
14617         - Fix message highlighting
14619 2004-12-30  Johannes Schmid <jhs@cvs.gnome.org>
14620         
14621         * template/*,
14622         date/template/*,
14623         configure.in:
14624         Removed template stuff completly because we dicussed to implement
14625         a macro system for Edit->Insert Text
14627 2004-12-30  Johannes Schmid <jhs@cvs.gnome.org>
14628         
14629         * plugins/editor/aneditor.cxx,
14630         plugins/editor/text_editor.c:
14631         Set line number width dynamically
14632         * src/about.c:
14633         Prepered new GTK 2.6 about dialog
14635 2004-12-30  Naba Kumar  <naba@gnome.org>
14637         patch from: Massimo Corà  <maxcvs@email.it>
14638         * plugins/editor/aneditor.cxx: Highlights correct function
14639         argument in recursive calltips.
14641 2004-12-30  Naba Kumar  <naba@gnome.org>
14643         * plugins/symbol-browser/plugin.c,
14644         libanjuta/interfaces/libanjuta.idl,
14645         plugins/editor/text_editor.c: Fixed editor markers and added a new
14646         marker (BASIC) to indicate line numbers. Fixed symbol browser to
14647         mark the line visited.
14648         
14649         * libegg/menu/eggcomboselect.h, libegg/menu/Makefile.am,
14650         libegg/Makefile.am, libegg/eggcomboselect.c,
14651         libegg/gtkcellview.h, libegg/egg-combo-action.c: Created a new combo
14652         widget for use with symbol view in toolbar.
14653         
14654         * plugins/cvs-plugin/anjuta-cvs.ui,
14655         plugins/file-manager/anjuta-file-manager.ui: Added appropriate
14656         placeholder for cvs plugin context menu in filemanager.
14657         
14658 2004-12-28  Johannes Schmid <jhs@cvs.gnome.org>
14659         
14660         * plugins/cvs-plugin/plugin.c:
14661         Show popup menu only if the file is contained in
14662         a directory containing a "CVS" directory
14664 2004-12-28  Johannes Schmid <jhs@cvs.gnome.org>
14665         
14666         * plugins/cvs-plugin/cvs-action.[ch],
14667         * plugins/cvs-plugin/anjuta-cvs-plugin.glade,
14668         * plugins/cvs-plugin/anjuta-cvs.ui,
14669         * plugins/cvs-plugin/plugin.c:
14670         Implemented "Import"
14671         
14672         Patch from Mark R. Pariente <markpariente@cmu.edu>:
14673         Added right-click-menu for file-manager
14675 2004-12-26  Naba Kumar  <naba@gnome.org>
14677         * src/action-callbacks.c, src/action-callbacks.h,
14678         src/anjuta-actions.h, src/anjuta-app.c,
14679         src/anjuta.ui: Added fullscreen action.
14681         * plugins/cvs-plugin/cvs-actions.c,
14682         plugins/cvs-plugin/plugin.c,
14683         plugins/cvs-plugin/plugin.h: Watches current editor,
14684         project and file manager selection in plugin
14685         implementation.
14686         
14687 2004-12-26  Naba Kumar  <naba@gnome.org>
14689         * src/anjuta-app.c, src/anjuta.c, src/main.c,
14690         src/action-callbacks.c: Fixed app finalization. Added a
14691         command line arg --proper-shutdown (-p), which when set
14692         will release all plugins and their resources (this option
14693         is mainly for debugging).
14694         
14695         * plugins/file-loader/plugin.c: Fixed filename duplications
14696         in recent files history.
14697         
14698         * plugins/profile-default/plugin.c: Disabled problematic
14699         plugins for now to load at startup.
14700         
14701         * libanjuta/anjuta-ui.c, libanjuta/plugins.c: Disabled 
14702         annoying debug prints.
14703         
14704 2004-12-23  Naba Kumar  <naba@gnome.org>
14706         Patch from: Mark R. Pariente  <markpariente@cmu.edu>
14707         * plugins/cvs-plugin/anjuta-cvs-plugin.glade,
14708         plugins/cvs-plugin/anjuta-cvs.ui,
14709         plugins/cvs-plugin/cvs-actions.c,
14710         plugins/cvs-plugin/cvs-actions.h,
14711         plugins/cvs-plugin/cvs-execute.c,
14712         plugins/cvs-plugin/cvs-execute.h,
14713         plugins/cvs-plugin/Makefile.am,
14714         plugins/cvs-plugin/plugin.c: Added cvs message highlighting.
14715         Added cvs log command.
14717 2004-12-20  Johannes Schmid <jhs@cvs.gnome.org>
14718         
14719         * plugins/cvs-plugin/cvs-actions.c: Use current editor filename as 
14720         default
14722 2004-12-20  Naba Kumar  <naba@gnome.org>
14724         patch from: Massimo Corà  <maxcvs@email.it>
14725         * plugins/editor/aneditor.cxx: Added recursive calltips.
14727 2004-12-20  Naba Kumar  <naba@gnome.org>
14728         
14729         * libanjuta/plugins.c, plugins/file-loader/plugin.c:
14730         Show busy cursor during loading and unloading.
14731         
14732 2004-12-19  Naba Kumar  <naba@gnome.org>
14734         * libanjuta/anjuta-plugin.c, libanjuta/anjuta-ui.c: Fixed
14735         memory leaks. Disabled debug print.
14737         * plugins/symbol-browser/an_symbol_view.c,
14738         plugins/symbol-browser/plugin.c,
14739         plugins/symbol-browser/plugin.h: Fixed loading and unloading
14740         problems. Creates SymbolView object every time when the
14741         plugin is activated.
14743         * plugins/project-manager/plugin.c: Close project when
14744         deactivating.
14745         
14746 2004-12-18  Naba Kumar  <naba@gnome.org>
14748         * po/POTFILES.in: Removed commented lines.
14749         * configure.in: Commented dupilcate call to AC_PROG_INTLTOOL.
14750         * plugins/devhelp/plugin.c: Fixed loading/unloading bug.
14751         * plugins/gdb/plugin.c: Fixed compile error.
14752         
14753         Patch from: Mark R. Pariente  <mark@demar.com.tr>
14754         * libegg/eggcellrendererkeys.c: Fixed compile error.
14755         
14756 2004-12-18  Naba Kumar  <naba@gnome.org>
14758         * plugins/file-loader/plugin.c: Fixed loading bug.
14759         
14760         *plugins/debug-manager/plugin.c, plugins/debug-manager/plugin.h,
14761         plugins/devhelp/plugin.c, plugins/editor/plugin.c,
14762         plugins/file-manager/an_file_view.c, plugins/file-manager/plugin.c,
14763         plugins/gdb/plugin.c, src/shell.c, src/shell.h: Fixed memory leaks
14764         and corruptions. Fixed loading and unloading of plugins.
14765         
14766 2004-12-17  Naba Kumar  <naba@gnome.org>
14767         
14768         * plugins/file-loader/Makefile.am,
14769         plugins/file-loader/plugin.c,
14770         plugins/project-manager/plugin.c: Fixed memory corruption
14771         and disposition codes. Added missing plugin.h in Makefile.am.
14773 2004-12-16  Naba Kumar  <naba@gnome.org>
14775         * plugins/symbol-browser/an_symbol_view.c,
14776         plugins/symbol-browser/plugin.c: Fixed finalization and disposition
14777         codes. Fixed memory leaks and corruptions.
14779         * plugins/build-basic-autotools/build-basic-autotools.c
14780         plugins/editor/anjuta-docman.c,
14781         plugins/editor/text_editor.c,
14782         plugins/file-loader/plugin.c,
14783         plugins/file-manager/plugin.c,
14784         plugins/file-wizard/plugin.c,
14785         plugins/message-view/anjuta-msgman.c,
14786         plugins/message-view/anjuta-msgman.h,
14787         plugins/message-view/message-view.c,
14788         plugins/message-view/plugin.c,
14789         plugins/message-view/plugin.h,
14790         plugins/terminal/terminal.c: Fixed finalization and disposition codes.
14792         * src/about.c, src/about.h, src/action-callbacks.c,
14793         src/action-callbacks.h, src/anjuta-actions.h,
14794         src/anjuta-app.c, src/anjuta-app.h,
14795         src/anjuta-callbacks.c, src/anjuta-callbacks.h,
14796         src/anjuta.c, src/anjuta.h, src/getline.c, 
14797         src/main.c, src/main.cpp, src/shell.c, src/shell.h, 
14798         src/start-with.c, src/start-with.h: Fixed emacs modes.
14800         * src/layout.xml: Brought document manager in front.
14801         
14802 2004-12-15  Naba Kumar  <naba@gnome.org>
14804         * libanjuta/anjuta-plugin.c: Fixed crash bug where watches were not
14805         properly removed.
14806         
14807         * libanjuta/plugins.c, libanjuta/plugins.h: Proper clean up on
14808         finalization. Added a method to unload all plugins and destroy them.
14809         Fixed memory leaks.
14810         
14811         * plugins/sample1/plugin.c: Proper finalization code and renamed
14812         functions to proper names.
14813         
14814         * plugins/build-basic-autotools/build-basic-autotools.c,
14815         plugins/cvs-plugin/plugin.c: Proper     finalization and disposition code.
14817         * src/shell.c: Unload all plugins on exit, so that memory profilers
14818         can detect memory leaks in plugins.
14820 2004-12-13  Naba Kumar  <naba@gnome.org>
14822         * plugins/devhelp/plugin.c: Delay widget initialization, now that
14823         docking is working.
14824         * plugins/sample1/plugin.c: Dock at bottom, mostly for testing.
14825         * src/anjuta-app.c, src/layout.xml: Fixed dynamic docking.
14827 2004-12-11  Naba Kumar  <naba@gnome.org>
14829         * data/properties/anjuta.properties: Fixed font size.
14830         * plugin/build-basic-autotools/build-basic-autotools: Added initial
14831         compile file function. There are some fixmes there.
14832         * plugins/message-view/anjuta-msgman.c,
14833         * plugins/message-view/message-view.c: Fixed bugs and clean up.
14834         
14835 2004-12-08  Naba Kumar  <naba@gnome.org>
14837         * libanjuta/anjuta-launcher.c, libanjuta/anjuta-utils.c,
14838         src/utilities.c, libanjuta/anjuta-utils.h: Added a function
14839         to escape quotes in a string.
14840         
14841         * plugins/cvs-plugin/cvs-actions.c,
14842         plugins/cvs-plugin/cvs-execute.c: Escaped commit message. Corrected
14843         cvs diff command.
14845         * plugins/build-basic-autotools/build-basic-autotools.c,
14846         plugins/build-basic-autotools/automake-c.filters: Fixed bugs with
14847         filters.
14848         
14849 2004-12-07  Naba Kumar  <naba@gnome.org>
14851         * plugins/build-basic-autotools/build-basic-autotools.c,
14852         plugins/build-basic-autotools/automake-c.filters: Completed directory
14853         tracking. Double click on Errors and warnings now work as expected.
14855         * plugins/build-basic-autotools.c: Added codes to track build directory
14856         so that absolute path of the files could be determined.
14858 2004-12-06  Naba Kumar  <naba@gnome.org>
14860         * plugins/cvs-plugin/cvs-execute.c: Show completion message.
14861         * plugins/cvs-plugin/cvs-execute.c: Fixed command completion bug.
14862         * plugins/cvs-plugin/anjuta-cvs-plugin.glade: UI beautification.
14863         
14864 2004-12-05  Naba Kumar  <naba@gnome.org>
14866         * plugins/editor/anjuta-docman.c: Fixed save-as, Fixed updating
14867         tab label, Fixed mem leaks. Fixed uri handling. Fixed other minor bugs.
14868         
14869         * plugins/cvs-plugin/plugin.c,
14870         plugins/cvs-plugin/cvs-execute.c: Fixed message output appending.
14871         
14872 2004-13-05  Johannes Schmid <jhs@cvs.gnome.org>
14873         
14874         * plugins/cvs-plugin/anjuta-cvs-plugin.glade,
14875         * plugins/cvs-plugin/plugin.[ch], plugins/cvs-plugin/cvs-action.[ch],
14876         plugins/cvs-plugin/cvs-execute.[ch]:
14877         Implemented cvs status and cvs diff
14878         Known bugs:
14879         - rdiff command is not correct
14880         - Must find a way to allow selection of directies AND files 
14881         in GtkFileChooser
14883 2004-12-03  Naba Kumar  <naba@gnome.org>
14885         * plugins/editor/anjuta-docman.c, plugins/editor/style-editor.c,
14886         plugins/editor/style-editor.h, plugins/editor/text_editor.c,
14887         plugins/editor/text_editor_cbs.c: Save/load editor styles. Use old
14888         session.properties file if it is for the first time.
14889         
14890 2004-12-02  Johannes Schmid <jhs@cvs.gnome.org>
14891         
14892         * plugins/cvs-plugin/anjuta-cvs-plugin.glade: Added cvs update and
14893         commit.
14894         
14895         * plugins/cvs-plugin/plugin.c, plugins/cvs-plugin/cvs-action.[ch],
14896         plugins/cvs-plugin/anjuta-cvs.ui:
14897         Implemented update/commit and changed menu layout 
14899 2004-12-02  Naba Kumar  <naba@gnome.org>
14901         * plugins/cvs-plugin/anjuta-cvs-plugin.glade: Fixed prefernce
14902         property name (for cvs path property). Beautified dialogs.
14904 2004-11-30      Johannes Schmid <jhs@cvs.gnome.org>
14905         
14906         * plugins/message-view/anjuta-msgman.c: Changed callback name
14907         and changed switch-page handling.
14908         
14909         * plugins/cvs-plugin/cvs-actions.c:
14910         * plugins/cvs-plugin/cvs-execute.c:
14911         * plugins/cvs-plugin/anjuta-cvs-plugin.glade:
14912         - Implemented cvs add and cvs removed - both working now
14913         - Created a useful preferences page
14914         
14916 2004-11-30  Naba Kumar  <naba@gnome.org>
14918         * libanjuta/anjuta-status.c: Fixed runtime warning.
14919         
14920         * plugins/editor/Makefile.am:
14921         plugins/editor/anjuta-document-manager.glade,
14922         plugins/editor/plugin.c
14923         plugins/editor/plugin.h
14924         plugins/editor/style-editor.c (new, moved from src/),
14925         plugins/editor/style-editor.h (new, moved from src/),
14926         plugins/editor/text_editor_prefs.c: Implemented "Font and colours"
14927         settings in preferences.
14929         * plugins/editor/text_editor.c,
14930         plugins/editor/text_editor.h: Do not take unused args in
14931         text_editor_get_props().
14933         * src/style-editor.c, src/style-editor.h: Removed, moved to
14934         plugins/editor/ directory.
14936 2004-11-29  Naba Kumar  <naba@gnome.org>
14938         * plugins/editor/text_editor_cbs.c: Emit click signal in
14939         IAnjutaMarkable.
14940         * libanjuta/anjuta-status.c: More spacing between items.
14941         
14942 2004-11-29  Naba Kumar  <naba@gnome.org>
14944         Patch from: Pavol Bosik  <pavol.bosik@radiantsystems.com>:
14945         
14946         * libanjuta/interfaces/libanjuta.idl,
14947         plugins/debug-manager/anjuta-debug-manager.plugin.in,
14948         plugins/debug-manager/plugin.c,
14949         plugins/gdb/breakpoints.c,
14950         plugins/gdb/breakpoints.h,
14951         plugins/gdb/debugger.c,
14952         plugins/gdb/debugger.h,
14953         plugins/gdb/plugin.c,
14954         plugins/gdb/plugin.h,
14955         plugins/gdb/utilities.c,
14956         plugins/gdb/utilities.h: Code cleanups and partial implementation of
14957         toggle breakpoint margin clicks.
14959 2004-11-28  Naba Kumar  <naba@gnome.org>
14961         * TODO.tasks: Fixed indentations.
14962         * plugins/gtodo/libgtodo.c: Save with indentation.
14963         * plugins/file-manager/an_file_view.c: Sorts the files alphabatically.
14964         * plugins/project-manager/plugin.c: Fixed runtime warnings.
14965         * libanjuta/anjuta-status.c: Fixed busy cursors.
14966         * manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml: Updated.
14967         * po/POTFILES.in: Updated.
14968         
14969 2004-11-28  Jean-Noel GUIHENEUF <guiheneuf.jean-noel@wanadoo.fr>
14970         
14971         * plugins/editor/anjuta-document-manager.glade,
14972           plugins/editor/search-replace.[c,h], 
14973           plugins/editor/search-replace_backend.h
14974           plugins/editor/search-preferences.[c,h] :
14975           Saved Search-Preferences (gconf),
14976           Basic search by default.
14978 2004-11-22  Naba Kumar  <naba@gnome.org>
14980         * configure.in: Fixed build error.
14982 2004-11-21  Naba Kumar  <naba@gnome.org>
14984         * libanjuta/Makefile.am, libanjuta/anjuta-shell.c,
14985         libanjuta/anjuta-shell.h, src/anjuta-app.c, src/anjuta-app.h:
14986         Added AnjutaStatus class to libanjuta.
14987         Added anjuta_shell_get_status() method.
14988         
14989         * libanjuta/interfaces/anjuta-idl-compiler.pl: Added gchar type
14990         and fixed marshaller generation.
14991         
14992         * libanjuta/interfaces/libanjuta.idl: Added "char_added" and
14993         "updade_ui" signals to IAnjutaEditor interface.
14994         
14995         * manuals/reference/libanjuta/tmpl/anjuta-shell.sgml: Updated.
14996         
14997         * plugins/build-basic-autotools/automake-c.filters: Fixed filter
14998         regexes.
14999         
15000         * plugins/class-gen/clsGen.c: Intial port.
15001         
15002         * plugins/debug-manager/anjuta-debug-manager.plugin.in: Fixed attribute
15003         name.
15004         
15005         * plugins/editor/action-callbacks.c, plugins/editor/plugin.c,
15006         plugins/editor/text_editor.c, plugins/editor/text_editor.h,
15007         plugins/editor/text_editor_cbs.c, plugins/editor/text_editor_prefs.c:
15008         Implemented status update. Emits "update_ui" and "char_added" signals.
15009         Added view preferences.
15010         
15011         * plugins/file-loader/plugin.c: Added open with plugins in open with
15012         menus.
15013         
15014         * plugins/gdb/plugin.c: Do not add widgets to shell as floating.
15015         
15016         * plugins/message-view/anjuta-msgman.c,
15017         plugins/message-view/message-view.c: Fixed finalize and dispose. Fixed
15018         to close correct message view rather than current view.
15020 2004-11-20  Johannes Schmid <jhs@cvs.gnome.org>
15021         
15022         * plugins/cvs-plugin/cvs-actions.c
15023         plugins/cvs-plugin/plugin.[ch]
15024         plugins/cvs-plugin/anjuta-cvs-plugin.glade:
15025         Implemented cvs add but ran into a launcher/message_view
15026         problem because of a limitation of the idl compiler
15028 2004-11-19  Naba Kumar  <naba@gnome.org>
15030         * plugins/project-manager/plugin.c: Displays a progress window during
15031         project load.
15032         
15033         * plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin.ui:
15034         Fixed UI separators.
15035         
15036         * plugins/file-manager/anjuta-file-manager.ui: Added project manager
15037         UI placeholder.
15038         
15039         * plugins/project-manager/anjuta-project-manager.ui,
15040         plugins/project-manager/plugin.[c,h]: Added add/remove context
15041         menus and implemented them. Added file manager merge menu.
15043 2004-11-18  Naba Kumar  <naba@gnome.org>
15045         * TODO.tasks: Updated.
15046         * plugins/editor/anjuta-docman.c, plugins/message-view/anjuta-msgman.c,
15047         plugins/message-view/message-view.c: Fixed finalize and dispose
15048         methods.
15049         * plugins/debugger/*: Removed from cvs (development now in
15050         debug-manager).
15052 2004-11-17  Pavol Bosik  <pavol.bosik@radiantsystems.com>
15054         Reviewed by Naba Kumar  <naba@gnome.org>:
15055         
15056         * libanjuta/interfaces/libanjuta.idl, plugins/Makefile.am,
15057         plugins/editor/plugin.c, plugins/editor/text_editor.c,
15058         plugins/gdb/breakpoints.c: all marker related stuff moved from
15059         editor and docman interfaces to IAnjutaMarkable
15061 2004-11-17  Naba Kumar  <naba@gnome.org>
15063         * TODO.tasks: Updated.
15064         
15065         * libanjuta/interfaces/libanjuta.idl: Added "saved" signal.
15066         
15067         * libegg/egg-combo-action.c: Block changed signal when changing model.
15068         
15069         * plugins/editor/text_editor.c, plugins/editor/text_editor_cbs.c:
15070         Emit changed signal. Removed dead codes.
15071         
15072         * plugins/file-loader/plugin.c: Remove file fragments from uris, so
15073         that recent files history do not duplicate.
15074         
15075         * plugins/symbol-browser/an_symbol_view.c,
15076         plugins/symbol-browser/an_symbol_view.h,
15077         plugins/symbol-browser/plugin.c: Refreshes symbols on editor save.
15078         Fixed a bug.
15080 2004-11-15  Naba Kumar  <naba@gnome.org>
15082         * plugins/project-manager/plugin.c: Opens targets on double click.
15083         
15084         * plugins/message-view/message-view.c,
15085         plugins/file-manager/anjuta-file-manager-plugin.glade,
15086         plugins/file-manager/plugin.[c,h], plugins/terminal/terminal.c:
15087         Added proper class finalization
15088         and disposition. Added preferences notifications and callbacks to
15089         change info/warning/error colors.
15090         
15091         * plugins/editor/anjuta-docman.c, plugins/editor/plugin.c,
15092         plugins/editor/text_editor.[h,c], src/action-callbacks.c,
15093         src/anjuta-app.c, src/anjuta.c: Fixed crash bug on exit.
15094         Implemented finalize method for AnjutaApp. Code cleanups.
15095         
15096         * plugins/message-view/plugin.c: Static parent_class.
15097         
15098 2004-11-12  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
15099         * plugins/editor/search-replace.[c,h], 
15100           plugins/editor/search-replace_backend.c
15101           Update search entry in main toolbar.
15102           Clean code.
15104 2004-11-11  Naba Kumar  <naba@gnome.org>
15106         * TODO.tasks: Updated.
15108         * libanjuta/anjuta-preferences.[c,h]: Added keys notification API.
15109         and completed on-the-fly-change preferences. Removed "changed"
15110         signal as it is no longer necessary (use notify for similar
15111         purpose to monitor individual preferences).
15113         
15114         * plugins/editor/anjuta-document-manager.glade: Added view menu
15115         preferences so that they are registered.
15116         
15117         * plugins/editor/Makefile.am, plugins/editor/text_editor.[c,h],
15118         (added) plugins/editor/text_editor_prefs.[c,h]: Removed
15119         connection to "changed" signal of preferences and implemented
15120         notifications for some editor preferences. More to implement.
15122 2004-11-10  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
15123         * plugins/editor/print.c
15124         Fixed bug 1047624 : Add line number every X lines.
15126 2004-11-10  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
15127         * plugins/editor/search-replace.c
15128         Fixed a crash bug (995755) when searching "%n"
15130 2004-11-09  Naba Kumar  <naba@gnome.org>
15132         * plugins/gtodo/interface.c, plugins/gtodo/libgtodo.c:
15133         Fixed to refresh categories list on file load.
15135 2004-11-08  Naba Kumar  <naba@gnome.org>
15136         
15137         * configure.in, plugins/Makefile.am,
15138         plugins/profile-default/plugin.c: Added cvs plugin in build.
15139         
15140         * plugins/cvs-plugin/*: Restored johannes files from cvs attic.
15141         
15142         * plugins/debug-manager/.cvsignore: Added file to ignore.
15143         
15144         * plugins/debug-manager/Makefile.am: Removed dead codes.
15145         
15146         * src/anjuta.ui: Added placeholder for version control UI.
15148 2004-11-08  Naba Kumar  <naba@gnome.org>
15150         * manuals/reference/libanjuta/tmpl/anjuta-plugin.sgml,
15151         manuals/reference/libanjuta/tmpl/anjuta-preferences.sgml,
15152         manuals/reference/libanjuta/tmpl/ianjuta-iterable.sgml:
15153         Updated.
15155         * global-tags/Makefile.am: Fixed make error.
15157         * plugins/profile-default/plugin.c: Added debug-manager
15158         and gdb plugins to load at startup so that debugger
15159         windows are docked properly. They will be removed
15160         later when we figure out runtime docking.
15162         * plugins/sample1/*: Restored to last working state.
15164         * plugins/gdb/debugger.c, src/layout.xml: Added debugger
15165         windows in lower pane. Named the windows appropriately.
15167         * ChangeLog: Fixed format.
15168         
15169 2004-11-07  Pavol Bosik <pavol.bosik@radiantsystems.com>
15171         * libanjuta/interfaces/libanjuta.idl,
15172         libanjuta/anjuta-marshal.c,
15173         plugins/Makefile.am,
15174         plugins/debug-manager/plugin.c,
15175         plugins/editor/plugin.c,
15176         plugins/editor/text_editor.c,
15177         plugins/gdb/breakpoints.c,
15178         plugins/gdb/debugger.c,
15179         plugins/gdb/plugin.c,
15180         plugins/gdb/plugin.h: fixed "Toggle breakpoint" feature
15182 2004-11-06  Jean-NoelGuiheneuf <guiheneuf.jean-noel@wanadoo.fr>
15183         * plugins/editor/anjuta-docman.h plugins/editor/plugin.c,
15184         plugins/editor/search-replace.c,
15185         plugins/message-view/anjuta-msgman.c plugins/message-view/plugin.c:
15186         Search and Replace; Show result in find pane
15187           
15188 2004-11-03  Johannes Schmid <jhs@cvs.gnome.org>
15189         
15190         * plugins/gdb, plugins/debug-manager: Applied debugger patch
15191         from Bosik, Pavol <pavol.bosik@radiantsystems.com>
15192         (added features: starting debugger and loading of core/executable,
15193         StepIn, StepOut, StepOver and Execute, toggling breakpoint
15194         partially works)
15196 2004-11-03  Johannes Schmid <jhs@cvs.gnome.org>
15197         
15198         * plugins/cvs-plugin/*: Mess up with cvs and lost some of 
15199         my cvs-plugin files...
15200         I hope I have rescued everything possible.
15201         
15202         * Naba: Could you please fix sample1 because I messed it up to 
15203         but there should be a histroy of this directory we should commit
15205 2004-10-22  Johannes Schmid <jhs@cvs.gnome.org>
15206         
15207         * plugins/cvs-plugin/cvs-execute.[ch]: Add basic command execute
15208         infrastructure
15209         * plugins/cvs-plugin/plugin.c,
15210         /plugins/cvs-plugin/anjuta-cvs-plugin.glade:
15211         Added preferences dialog (not yet complete)
15213 2004-10-22  Johannes Schmid <jhs@cvs.gnome.org>
15214         
15215         * global-tags/Makefile.am, mime/Makefile.am:
15216         Some fixes in build process from Alexey Rusakov <ktirf@users.sf.net>
15217         
15218         * template/xmltemplate.[ch],
15219         template/xmlstrings.[ch],
15220         template/autotools.[ch] removed,
15221         template/prj_template.[ch] removed,
15222         template/lang_template.[ch] removed,
15223         template/lib_template.[ch] removed,
15224         template/Makefile.am adjusted,
15225         template/dtds/lang.dtd removed, 
15226         template/dtds/lib.dtd removed,
15227         template/dtds/prj.dtd removed,
15228         template/dtds/autotools.dtd removed,
15229         data/template/lib/* removed,
15230         data/template/language/* removed,
15231         data/template/library/* removed,
15232         data/template/project/* removed,
15233         date/template/Makefile.am adjusted:
15234         Remove everything except text-templates to replace hardcoded 
15235         Edit->Insert texts with dynamic loaded.
15237         * plugins/cvs-plugin/plugin.[ch],
15238         plugins/cvs-actions.[ch],
15239         plugins/Makefile.am,
15240         plugins/cvs-plugin/Makefile.am,
15241         plugins/cvs-plugin/anjuta-cvs-plugin.ui,
15242         plugins/cvs-plugin/anjuta-cvs-plugin.glade,
15243         plugins/cvs-plugin/anjuta-cvs.plugin.in:
15244         Added initial cvs-plugin code
15246 2004-10-21  Naba Kumar  <naba@gnome.org>
15247         
15248         * libanjuta/anjuta-plugin.c,
15249         plugins/build-basic-autotools/build-basic-autotools.c,
15250         plugins/debugger/plugin.c,
15251         plugins/devhelp/plugin.c,
15252         plugins/editor/anjuta-docman.c,
15253         plugins/editor/goto_line.c,
15254         plugins/editor/plugin.c,
15255         plugins/editor/search-replace.c,
15256         plugins/editor/text_editor.c,
15257         plugins/file-loader/plugin.c,
15258         plugins/file-manager/plugin.c,
15259         plugins/file-wizard/file.c,
15260         plugins/file-wizard/plugin.c,
15261         plugins/gdb/plugin.c,
15262         plugins/gtodo/plugin.c,
15263         plugins/message-view/anjuta-msgman.c,
15264         plugins/profile-default/plugin.c,
15265         plugins/project-manager/plugin.c,
15266         plugins/sample1/plugin.c,
15267         plugins/terminal/terminal.c: Defined all global variables static,
15268         particularly class parent_class variables. They were getting
15269         confused at link time.
15271         * libanjuta/plugins.c: Do not unload plugins when they are
15272         deactivated. Simply cache them for later activation. Unloading
15273         modules have some problem with shared libs using static class
15274         registration. Fixed hash type for installed plugins. Eventually,
15275         we want to add "CanUnload" attribute for .plugin files (in
15276         "Anjuta Plugin" group) to let plugin loader know if the plugin can
15277         be unloaded from memory. Those plugins declaring CanUnload=false
15278         will not be unloaded from memory and will be put in the cache. Those
15279         not declaring anything or declaring CanUnload=true, will be unloaded
15280         from memory when they are deactivated.
15282         * plugins/editor/action-callbacks.c, plugins/editor/anjuta-docman.c,
15283         plugins/editor/plugin.c, plugins/editor/text_editor.c,
15284         plugins/editor/text_editor.h, plugins/file-manager/an_file_view.c,
15285         plugins/file-manager/plugin.c, plugins/file-wizard/plugin.c,
15286         plugins/project-manager/plugin.c: Fixed object finalization, dispose,
15287         activation, deactivation. Fixed memory leaks.
15289 2004-10-20  Naba Kumar  <naba@gnome.org>
15291         * TODO.tasks: Updated.
15292         
15293         * libanjuta/anjuta-plugin.c, libanjuta/anjuta-plugin.h,
15294         libanjuta/anjuta-utils.h, libanjuta/plugins.c: Defined separate
15295         macro for adding interfaces to plugin types. Code cleanup.
15296         
15297         * manuals/reference/libanjuta/tmpl/anjuta-utils.sgml,
15298         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml: Updated.
15299         
15300         * plugins/build-basic-autotools/build-basic-autotools.c,
15301         plugins/debugger/plugin.c, plugins/devhelp/plugin.c,
15302         plugins/editor/plugin.c, plugins/editor/text_editor.c,
15303         plugins/file-loader/plugin.c, plugins/file-manager/plugin.c,
15304         plugins/file-wizard/plugin.c, plugins/gdb/plugin.c,
15305         plugins/gtodo/plugin.c, plugins/message-view/message-view.c,
15306         plugins/message-view/plugin.c, plugins/profile-default/plugin.c,
15307         plugins/project-manager/plugin.c,
15308         plugins/symbol-browser/an_symbol_view.c,
15309         plugins/symbol-browser/plugin.c, plugins/terminal/terminal.c: Used
15310         newly defined macro to add interfaces to plugin types.
15312         * src/anjuta-app.c, src/shell.c: Do not add value for widgets.
15314 2004-10-20  Naba Kumar  <naba@gnome.org>
15316         * TODO.tasks: Added task list.
15317         * plugins/file-manager/anjuta-file-manager-plugin.glade: Set
15318         default values.
15320 2004-10-19  Naba Kumar  <naba@gnome.org>
15322         * plugins/build-basic-autotools/build-basic-autotools.c: Fixed bugs.
15323         
15324         * plugins/editor/action-callbacks.c,
15325         plugins/editor/action-callbacks.h,
15326         plugins/editor/anjuta-docman.c,
15327         plugins/editor/anjuta-docman.h,
15328         plugins/editor/anjuta-document-manager.ui,
15329         plugins/editor/file_history.c,
15330         plugins/editor/file_history.h,
15331         plugins/editor/plugin.c: Added file history browsing.
15332         
15333         * plugins/gtodo/libgtodo.c, plugins/gtodo/plugin.c: Fixed refresh.
15334         
15335         * plugins/message-view/anjuta-message-manager.ui,
15336         plugins/message-view/plugin.c: Added document manager context menu.
15337         
15338         * plugins/symbol-browser/an_symbol_view.c,
15339         plugins/symbol-browser/an_symbol_view.h,
15340         plugins/symbol-browser/anjuta-symbol-browser-plugin.ui,
15341         plugins/symbol-browser/plugin.c: Added goto tag def/decl. Added
15342         document manager context menu.
15343         
15344         * scintilla/*, scintilla/include/*: Updated to current cvs.
15345         
15346 2004-10-19  Naba Kumar  <naba@gnome.org>
15348         *plugins/debugger/anjuta-debugger.ui, src/anjuta.ui: Added
15349         placeholder for debugger UI.
15350         
15351         * plugins/devhelp/plugin.c, plugins/editor/plugin.c: Fixed shortcuts.
15352         * plugins/file-manager/plugin.c: Fixed loading bug.
15353         
15354         * libanjuta/anjuta-encodings.c, libanjuta/anjuta-encodings.h,
15355         libanjuta/anjuta-preferences.c, libanjuta/anjuta-preferences.h:
15356         Initializes gconf database with default values when the
15357         values are not defined. Use bool and int prefs separately.
15359         * plugins/editor/plugin.c: Added encoding preferences.
15360         * plugins/project-manager/plugin.c: Cleanup and debug messages.
15362         * manuals/reference/libanjuta/tmpl/anjuta-encodings.sgml,
15363         manuals/reference/libanjuta/tmpl/anjuta-preferences.sgml,
15364         manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml,
15365         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml: Updated.
15367 2004-10-18  Naba Kumar  <naba@gnome.org>
15369         * po/POTFILES.in: Updated.
15370         
15371         * libanjuta/anjuta-ui.c: Corrected debug messages.
15372         
15373         * libegg/egg-combo-action.c, libegg/test-actions.c,
15374         libegg/menu/egg-combo-action.h: Fixed combo action.
15375         
15376         * plugins/debugger/Makefile.am, plugins/gdb/Makefile.am:
15377         Fixed format.
15378         
15379         * plugins/editor/action-callbacks.[c,h],
15380         plugins/editor/anjuta-document-manager.ui, plugins/editor/plugin.c:
15381         Implemented file swap. Removed dead codes.
15382         
15383         * plugins/editor/text_editor.[c,h]: Fixed crash bug. Removed
15384         dead codes.
15385         
15386         * plugins/symbol-browser/an_symbol_view.[c,h],
15387         plugins/symbol-browser/anjuta-symbol-browser-plugin.ui,
15388         plugins/symbol-browser/plugin.[c,h]: Completed symbol browser plugin.
15389         Implemented file symbols. Implemented goto file line when symbol is
15390         selected.
15391         
15392         * src/utilities.[c,h]: Moved code to plugins/editor/action-callbacks.c.
15393         
15394 2004-10-10  Naba Kumar  <naba@gnome.org>
15396         Patch from Bosik, Pavol  <pavol.bosik@radiantsystems.com>:
15397         
15398         * libanjuta/interfaces/libanjuta.idl: Added debugger interface.
15399         
15400         * plugins/debugger/.cvsignore,
15401         (added) plugins/debugger/Makefile.am,
15402         (added) plugins/debugger/anjuta-debugger.glade,
15403         (added) plugins/debugger/anjuta-debugger.plugin.in,
15404         (added) plugins/debugger/anjuta-debugger.plugin.png,
15405         (added) plugins/debugger/anjuta-debugger.ui,
15406         plugins/debugger/attach_process.c,
15407         (removed) plugins/debugger/attach_process_cbs.c,
15408         (removed) plugins/debugger/attach_process_cbs.h,
15409         (removed) plugins/debugger/breakpoints.c,
15410         (removed) plugins/debugger/breakpoints.h,
15411         (removed) plugins/debugger/debug_tree.c,
15412         (removed) plugins/debugger/debug_tree.h,
15413         (removed) plugins/debugger/debugger.c,
15414         (removed) plugins/debugger/debugger.h,
15415         (removed) plugins/debugger/memory.c,
15416         (removed) plugins/debugger/memory.h,
15417         (added) plugins/debugger/plugin.c,
15418         (added) plugins/debugger/plugin.h,
15419         (removed) plugins/debugger/registers.c,
15420         (removed) plugins/debugger/registers.h,
15421         (removed) plugins/debugger/registers_cbs.c,
15422         (removed) plugins/debugger/registers_cbs.h,
15423         (removed) plugins/debugger/registers_gui.c,
15424         (removed) plugins/debugger/sharedlib.c,
15425         (removed) plugins/debugger/sharedlib.h,
15426         (removed) plugins/debugger/sharedlib_cbs.c,
15427         (removed) plugins/debugger/sharedlib_cbs.h,
15428         (removed) plugins/debugger/sharedlib_gui.c,
15429         (removed) plugins/debugger/signals.c,
15430         (removed) plugins/debugger/signals.h,
15431         (removed) plugins/debugger/signals_cbs.c,
15432         (removed) plugins/debugger/signals_cbs.h,
15433         (removed) plugins/debugger/signals_gui.c,
15434         (removed) plugins/debugger/stack_trace.c,
15435         (removed) plugins/debugger/stack_trace.h,
15436         (added) plugins/debugger/utilities.c,
15437         (added) plugins/debugger/utilities.h,
15438         (removed) plugins/debugger/watch.c,
15439         (removed) plugins/debugger/watch.h,
15440         (removed) plugins/debugger/watch_cbs.c,
15441         (removed) plugins/debugger/watch_cbs.h,
15442         (removed) plugins/debugger/watch_gui.c,
15443         (removed) plugins/debugger/watch_gui.h: Moved files to gdb backend plugin.
15444         
15445         * configure.in, plugins/Makefile.am, (added) plugins/gdb/*:
15446         Added debugger gdb backend plugin.
15447         
15448         * plugins/message-view/plugin.c: Registered all message stock icons.
15449         
15450         * plugins/profile-default/plugin.c: Loads debugger plugin.
15451         
15452         * src/Makefile.am, libegg/Makefile.am: Fixed build errors.
15454 2004-10-08  Naba Kumar  <naba@gnome.org>
15456         * libanjuta/libanjuta-1.0.pc.in: changed .pc file to have version
15457         information.
15458         
15459         * plugins/symbol-browser/.cvsignore,
15460         plugins/symbol-browser/Makefile.am,
15461         plugins/symbol-browser/an_symbol_view.c,
15462         plugins/symbol-browser/an_symbol_view.h,
15463         plugins/symbol-browser/anjuta-symbol-browser-plugin.png,
15464         plugins/symbol-browser/anjuta-symbol-browser-plugin.ui,
15465         plugins/symbol-browser/anjuta-symbol-browser.plugin.in,
15466         plugins/symbol-browser/plugin.c,
15467         plugins/symbol-browser/plugin.h,
15468         plugins/symbol-browser/sv_class.xpm,
15469         plugins/symbol-browser/sv_function.xpm,
15470         plugins/symbol-browser/sv_macro.xpm,
15471         plugins/symbol-browser/sv_private_fun.xpm,
15472         plugins/symbol-browser/sv_private_var.xpm,
15473         plugins/symbol-browser/sv_protected_fun.xpm,
15474         plugins/symbol-browser/sv_protected_var.xpm,
15475         plugins/symbol-browser/sv_public_fun.xpm,
15476         plugins/symbol-browser/sv_public_var.xpm,
15477         plugins/symbol-browser/sv_static_fun.xpm,
15478         plugins/symbol-browser/sv_static_var.xpm,
15479         plugins/symbol-browser/sv_struct.xpm,
15480         plugins/symbol-browser/sv_unknown.xpm,
15481         plugins/symbol-browser/sv_variable.xpm,
15482         plugins/symbol-browser/test-symbol-browser.c,
15483         plugins/Makefile.am: Implemented Symbol
15484         browser plugin.
15485         
15486         * pixmaps/sv_*.xpm: Moved to plugins/symbol-browser/ dir.
15487         
15488         * plugins/build-basic-autotools/Makefile.am,
15489         plugins/devhelp/Makefile.am,
15490         plugins/editor/Makefile.am,
15491         plugins/file-loader/Makefile.am,
15492         plugins/file-manager/Makefile.am,
15493         plugins/file-wizard/Makefile.am,
15494         plugins/gtodo/Makefile.am,
15495         plugins/message-view/Makefile.am,
15496         plugins/profile-default/Makefile.am,
15497         plugins/project-manager/Makefile.am
15498         plugins/sample1/Makefile.am,
15499         plugins/terminal/Makefile.am,
15500         scintilla/Makefile.am,
15501         libegg/Makefile.am,
15502         launcher/Makefile.am,
15503         libanjuta/Makefile.am,
15504         src/Makefile.am,
15505         tagmanager/Makefile.am,
15506         configure.in: Defined anjuta_plugin_dir, anjuta_image_dir,
15507         anjuta_data_dir in configure.in and used them in plugins Makefile.am
15508         files. Also fixed library dependencies.
15509         
15510         * plugins/editor/aneditor.cxx: Disabled unused codes.
15511         * plugins/file-manager/an_file_view.c: Added copyright.
15512         * plugins/gtodo/tray-icon.c: Fixed pixmap path.
15513         
15514         * plugins/profile-default/plugin.c: Can load plugins by location.
15515         * plugins/project-manager/plugin.c: Remove project_root_uri value
15516         when project is closed.
15517         
15518 2004-10-06  Naba Kumar  <naba@gnome.org>
15520         * libanjuta/plugins.c: Shows plugins in a nicer dialog.
15521         
15522         * libanjuta/interfaces/libanjuta.idl,
15523         plugins/editor/text_editor.c: Added get_length()
15524         and get_current_word() methods in IAnjutaEditor interface.
15525         
15526         * libegg/Makefile.am: Added test_actions target.
15527         
15528         * libegg/egg-combo-action.c: Fixed combo-action and made it usable.
15529         
15530         * plugins/build-basic-autotools/build-basic-autotools.c,
15531         plugins/file-loader/plugin.c,
15532         plugins/message-view/message-view.c: Added code to go to file and
15533         line number,
15534         
15535         * plugins/devhelp/plugin.c: Context sensitive help now works.
15536         * plugins/editor/anjuta-docman.c: Reads the fragment id from file
15537         uri as line number and goes to that line number.
15538         
15539         * plugins/gtodo/interface.c, plugins/gtodo/libgtodo.c,
15540         plugins/gtodo/plugin.c: Creates a default gtodo client and implemented
15541         gtodo_client_load() method to load from a diffrent file. Watched 
15542         project root directory in plugin to open TODO.tasks of the project.
15543         
15544         * plugins/project-manager/plugin.c: Updates project UI
15545         sensitive/insensitive.
15547         * src/Makefile.am, src/shell.[c,h], src/anjuta-shell.ui: Added
15548         anjuta-shell program to test plugins.
15549         
15550         * src/anjuta-app.c: Registered UI accels.
15551         
15552 2004-09-28  Naba Kumar  <naba@gnome.org>
15554         * libanjuta/anjuta-shell.[c,h]: Added anjuta_shell_present_widget()
15555         method.
15556         
15557         * src/anjuta-app.c: Implemented present widget method.
15558         
15559         * plugins/devhelp/plugin.c, plugins/editor/plugin.c,
15560         plugins/message-view/plugin.c, plugins/project-manager/plugin.c,
15561         
15562         * plugins/editor/anjuta-docman.c: Code cleanup and selects newly
15563         added editor.
15564         
15565         * plugins/editor/text_editor.c: Connects to preferences changed signal
15566         correctly.
15567         
15568 2004-09-28  Naba Kumar  <naba@gnome.org>
15569         
15570         * libanjuta/anjuta-debug.h, libanjuta/Makefile.am: Added debug
15571         print code.
15572         
15573         * libanjuta/e-splash.c, Fixed compiler error and reduced progress bar
15574         size to 5 pix.
15575         
15576         * libegg/egg-entry-action.c: Takes GtkEditable rather than GtkEntry
15577         in changed signal callback.
15578         
15579         * plugins/editor/action-callbacks.c: Implemented save_all action
15580         callback. Removed dead code. Do save_as when saving a new file.
15581         Implemented incremental search.
15582         
15583         * plugins/editor/anjuta-docman.c: Removed dead code and formated code.
15584         
15585         * plugins/editor/plugin.c, plugins/editor/print.c: Used debug prints.
15586         
15587         * src/anjuta-app.c: Registers UI accelerators.
15588         
15589 2004-09-27  Naba Kumar  <naba@gnome.org>
15591         * libanjuta/anjuta-utils.c: Added a border in input dialog entry box.
15592         
15593         * plugins/build-basic-autotools/anjuta-build-basic-autotools.plugin.in,
15594         plugins/devhelp/anjuta-devhelp.plugin.in,
15595         plugins/file-loader/anjuta-loader.plugin.in,
15596         plugins/file-manager/anjuta-file-manager.plugin.in,
15597         plugins/gtodo/anjuta-gtodo.plugin.in,
15598         plugins/project-manager/anjuta-project-manager.plugin.in,
15599         plugins/terminal/anjuta-terminal.plugin.in:
15600         Gave proper plugin names.
15602         * plugins/build-basic-autotools/build-basic-autotools.c: Detailed
15603         error when regex fail.
15604         
15605         * plugins/devhelp/anjuta-devhelp.ui, plugins/devhelp/plugin.[c,h]:
15606         Added help and context search. Watches current editor. More menus
15607         in Help submenu. Update UI (sensitive when required) properly.
15608         
15609         * plugins/editor/anjuta-document-manager.ui,
15610         plugins/devhelp/anjuta-devhelp.ui,
15611         plugins/message-view/anjuta-message-manager.ui,
15612         src/anjuta.ui: Goto menu actions are in separate submenu.
15613         
15614         * src/anjuta.ui, src/action-callbacks.[c,h], src/anjuta-actions.h:
15615         Removed unimplemented UI elements.
15616         
15617         * src/anjuta-app.c: Larger (and normal) icon size.
15618         
15619         * src/layout.xml: Task manager plugin along with document (in middle).
15620         
15621         * plugins/editor/plugin.c, plugins/file-loader.c,
15622         plugins/devhelp/plugin.c: Gives short-labels and is-important flag
15623         in gtkactions. Enable/disable UI properly.
15624         
15625 2004-09-26  Naba Kumar  <naba@gnome.org>
15627         * po/POTFILES.in: Updated, added missing files.
15629         * .cvsignore: Updated.
15630         
15631         * libanjuta/anjuta-utils.[h,c]: Functions take constant parameters. Added
15632         a new function to get User input text.
15633         
15634         * libanjuta/resources.[c,h]: Added a function to created sized image.
15635         
15636         * libanjuta/interfaces/libanjuta.idl: Changed parameter name to uri
15637         from filename, as thats the correct representation.
15638         
15639         * plugins/build-basic-autotools/Makefile.am,
15640         (added) plugins/build-basic-autotools/automake-c.filters,
15641         plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin.ui,
15642         plugins/build-basic-autotools/build-basic-autotools.[c,h]:
15643         Rearragned UI elements in the build menu. Added codes to read build
15644         filter rules from external file. Implemented all build, configure,
15645         autogen commands. Watches current editor and project.
15646         
15647         * plugins/editor/anjuta-docman.[c,h], plugins/editor/plugin.c:
15648         Added editor changed signal and exports current editor value.
15649         Fixed parameter names. Fixed get_uri() interface implementation to
15650         return correct uri.
15651         
15652         * plugins/editor/anjuta-document-manager.ui: Removed unnecessary UI
15653         elements.
15654         
15655         * plugins/file-loader/anjuta-loader-plugin.ui: Added New UI element.
15656         
15657         * plugins/file-manager/an_file_view.c,
15658         plugins/file-manager/an_file_view.c: Exports file uri correctly.
15659         
15660         * plugins/file-wizard/file.c: Reads uri correctly.
15661         
15662         * plugins/message-view/anjuta-msgman.c: Sizes tab images properly and
15663         sets the page to the new view.
15664         
15665         * plugins/message-view/message-view.c: Unrefs the tree model when done.
15666         Fixed signal connecting.
15667         
15668         * plugins/project-manager/plugin.c: Changed "project_root_directory"
15669         to "project_root_uri" and exports as uri.
15670         
15671 2004-09-24  Naba Kumar  <naba@gnome.org>
15673         * libanjuta/anjuta-ui.c: Fixed a crash bug.
15674         * libanjuta/anjuta-plugin.c, libanjuta/plugins.c: Activates plugin
15675         in correct way.
15676         * plugins/file-manager/plugin.c: Fixed crash in unloading.
15677         * plugins/file-loader/plugin.c: Added comments.
15678         * plugins/build-basic-autotools/plugin.c: Added comments.
15679         * plugins/devhelp/plugin.c: Fixed crash bug. Added comments.
15680         
15681         * libanjuta/interfaces/libanjuta.idl,
15682         plugins/message-view/anjuta-msgman.c,
15683         plugins/message-view/message-view.c,
15684         plugins/message-view/message-view.h,
15685         plugins/message-view/plugin.c: Buffering and appending messages have
15686         been separated. message-view implementations cleaned up. Signals
15687         Emissions fixed. Messages now displayed in summary and details show
15688         as tooltip. Message color highlights fixed. Updated IAnjutaMessageView
15689         API.
15690         
15691         * plugins/message-view/anjuta-message-manager-plugin.glade: Organized
15692         preferences.
15693         
15694         * plugins/build-basic-autotools/Makefile.am,
15695         plugins/build-basic-autotools/build-basic-autotools.c: Added regex
15696         parsing of output to create message summaries. Uses new message view
15697         API.
15698         
15699         * plugins/editor/anjuta-document-manager.glade: Hidden unnecessary
15700         preferences to make dialog box smaller.
15701         
15702         * plugins/editor/search-replace.c: Fixed compile error with change
15703         in IAnjutaMessageView API.
15704         
15705 2004-09-21  Naba Kumar  <naba@gnome.org>
15707         * plugins/Makefile.am: Deletes old (installed) plugins before
15708         installing new ones.
15709         
15710         * plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin.ui,
15711         plugins/build-basic-autotools/build-basic-autotools.c,
15712         plugins/build-basic-autotools/build-basic-autotools.h: Uses exported
15713         file URI from filemanager. Only disables/enables build submenu in file
15714         manager, instead of merging/unmerging.
15715         
15716         * plugins/editor/anjuta-docman.c: Fixed a crash bug when opening
15717         non-text files.
15718         
15719         * plugins/file-loader/anjuta-loader-plugin.ui,
15720         plugins/file-loader/plugin.c, plugins/file-loader/plugin.h:
15721         Implemented "Open with" file manager submenu. Displays error message
15722         when file can not be opened.
15723         
15724         * plugins/file-manager/an_file_view.c: Renamed
15725         file_manager_current_filename value name to file_manager_current_uri
15726         and exports proper URI.
15727         
15728         * plugins/gtodo/plugin.c: Display name changed to "Tasks".
15730 2004-09-19  Naba Kumar  <naba@gnome.org>
15732         * plugins/editor/anjuta-docman.c, plugins/editor/plugin.c,
15733         plugins/editor/text_editor.c, plugins/editor/text_editor_cbs.c: Added
15734         save point signal to change editor tabs. Fixed accels.
15735         
15736         * plugins/file-loader/plugin.c: Fixed accels.
15738         * plugins/project-manager/plugin.c: Added target selection callback.
15739         
15740         * plugins/project-manager/plugin.c: Added URI activation.
15741         * plugins/editor/goto-line.c, plugin/editor/action_callbacks.c:
15742         Fixed dialog and closed it on ok. Fixed a crash bug.
15743         * plugins/editor/anjuta-docman.c: Set notebook scrollable.
15745         * (added) libegg/egg-recent-*.c, (added) libegg/recent-files/*,
15746         configure.in, libegg/Makefile.am, plugins/file-loader/Makefile.am,
15747         plugins/file-loader/anjuta-loader-plugin.ui,
15748         plugins/file-loader/plugin.c, plugins/file-loader/plugin.h:
15749         Added recent files in file loade plugin.
15750         
15751         * ChangeLog: Fixed entry dates.
15752         
15753 2004-09-18  Naba Kumar  <naba@gnome.org>
15755         * plugins/devhelp/plugin.c: Added UI sensitization and removed
15756         an unnecessary GtkFrame.
15757         
15758 2004-09-17  Naba Kumar  <naba@gnome.org>
15760         * mime/anjuta.xml, mime/Makefile.am: Added mime definition xml.
15762         * TODO: Updated.
15763         
15764         * data/Makefile.am: Disabled installing old mime info.
15765         
15766         * mime/anjuta.applications, mime/anjuta.keys: Updated.
15767         
15768         * plugins/editor/anjuta-docman.c, plugins/editor/anjuta-docman.h,
15769         plugins/editor/anjuta-document-manager.ui,
15770         plugins/editor/plugin.c, plugins/editor/text_editor.c,
15771         plugins/editor/text_editor.h, plugins/editor/text_editor_cbs.c:
15772         Added Editor context popup menu.
15773         
15774         * plugins/project-manager/anjuta-project-manager-plugin.png:
15775         Update image.
15776         
15777         * plugins/project-manager/anjuta-project-manager.plugin.in:
15778         Support .anjuta mime type.
15779         
15780         * plugins/project-manager/plugin.c: Exports "project_root_directory"
15781         value.
15782         
15783         * plugins/file-manager/plugin.c: Watches "project_root_directory"
15784         value.
15785         
15786         * src/layout.xml, plugins/profile-default/plugin.c:
15787         Added project manager plugin for startup.
15789 2004-09-16  Naba Kumar  <naba@gnome.org>
15790         
15791         * anjuta.prj: Updated.
15792         
15793         * pixmaps/Makefile.am, plugins/build-basic-autotools/Makefile.am,
15794         plugins/devhelp/Makefile.am, plugins/editor/Makefile.am,
15795         plugins/file-loader/Makefile.am, plugins/file-manager/Makefile.am,
15796         plugins/file-wizard/Makefile.am, plugins/message-view/Makefile.am,
15797         plugins/profile-default/Makefile.am, plugins/sample1/Makefile.am,
15798         plugins/terinal/Makefile.am, src/Makefile.am,
15799         plugins/gtodo/Makefile.am, plugins/project-manager/Makefile.am:
15800         Fixed makefile syntax errors.
15802 2004-09-16  Naba Kumar  <naba@gnome.org>
15804         * configure.in, src/layout.xml,
15805         plugins/profile-default/plugin.c,
15806         libanjuta/interfaces/libanjuta.idl,
15807         plugins/Makefile.am, (added) plugins/gtodo/*: Added Todo plugin.
15808         
15809         * configure.in, plugins/Makefile.am,
15810         plugins/project-manager/.cvsignore, 
15811         plugins/project-manager/Makefile.am,
15812         plugins/project-manager/anjuta-project-manager-plugin.png,
15813         plugins/project-manager/anjuta-project-manager.plugin.in,
15814         plugins/project-manager/anjuta-project-manager.ui,
15815         plugins/project-manager/plugin.c,
15816         plugins/project-manager/plugin.h: Added project manager plugin
15817         based on gnome-build.
15818         
15819         * Makefile.am, mime/Makefile.am, mime/anjuta.applications,
15820         mime/anjuta.keys, mime/anjuta.mime: Added anjuta files mime types.
15821         
15822         * manuals/reference/libanjuta/tmpl/e-splash.sgml,
15823         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml,
15824         manuals/reference/libanjuta/tmpl/properties.sgml: Updated.
15825     
15826 2004-09-16  Naba Kumar  <naba@gnome.org>
15828         * plugins/editor/action-callbacks.c: Fixed compile error.
15829         
15830 2004-09-15  Naba Kumar  <naba@gnome.org>
15832         * plugins/devhelp/plugin.[c,h]: Fixed a start-up warning.
15833         
15834         * libanjuta/e-splash.c, plugins/profile-default/plugin.c:
15835         New improved splace with nicer progress.
15836         
15837         * configure.in, plugins/Makefile.am,
15838         (added) file-wizard/.cvsignore,
15839         (added) file-wizard/Makefile.am,
15840         (added) file-wizard/action-callbacks.c,
15841         (added) file-wizard/action-callbacks.h,
15842         (added) file-wizard/anjuta-file-wizard-plugin.png,
15843         (added) file-wizard/anjuta-file-wizard.glade,
15844         (added) file-wizard/anjuta-file-wizard.plugin.in,
15845         (added) file-wizard/anjuta-file-wizard.ui,
15846         (added) file-wizard/file.c,
15847         (added) file-wizard/file.h,
15848         (added) file-wizard/plugin.c,
15849         (added) file-wizard/plugin.h:
15850         Created new file wizard and added it. The wizard takes care of text
15851         bit insertions and new files creation.
15853         * plugins/editor/Makefile.am, plugins/editor/action-callbacks.c,
15854         plugins/editor/action-callbacks.h,
15855         plugins/editor/anjuta-document-manager.glade,
15856         plugins/editor/anjuta-document-manager.ui,
15857         plugins/editor/plugin.c, plugins/editor/text_editor.c,
15858         (removed) plugins/editor/file.[c,h]: Removed text insertions and
15859         new files code and moved into a new plugin (file wizard).
15860         
15861         * libanjuta/plugins.[c,h]: Added plugins selection function.
15862         
15863         * libanjuta/interfaces/libanjuta.idl: Added goto_position(),
15864         get_position(), insert() in IAnjutaEditor interface. Added
15865         add_buffer() in IAnjutaDocumentManager interface. Added IAnjutaWizard
15866         interface (for wizard plugins).
15868         * plugins/file-loader/anjuta-loader-plugin.ui,
15869         plugins/file-loader/plugin.c: Added wizard launcher interface which
15870         scans for plugins implement IAnjutaWizard interface and presents the
15871         list to user for selection. The selected plugin is then activated
15872         for the wizard.
15874         * libanjuta/interfaces/.cvsignore: Updated.
15875         * plugins/message-view/.cvsignore: Updated.
15876         * plugins/launcher/*: Removed as launcher has already been moved to
15877         libanjuta as class.
15879         * manuals/reference/libanjuta/tmpl/anjuta-stock.sgml,
15880         manuals/reference/libanjuta/tmpl/ianjuta-document-manager.sgml,
15881         manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml,
15882         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml,
15883         manuals/reference/libanjuta/tmpl/pixmaps.sgml:
15884         Updated API documentations.
15886 2004-09-01  Amanpreet Singh Alam  <aalam@redhat.com>
15888         * configure.in: Added Punjabi to ALL_LINGUAS
15890 2004-07-29  Naba Kumar  <naba@gnome.org>
15892         * configure.in: Added file-loader plugin Makefile path and
15893         fixed devhelp version requirement.
15895 2004-07-28  Naba Kumar  <naba@gnome.org>
15897         * src/anjuta-app.c, libanjuta/pixmaps.h, libanjuta/anjuta-stock.h,
15898         terminal/preferences-terminal.png (added), message-view/*.png (added),
15899         message-view/*.xpm (added), editor/*.png (added),
15900         editor/*.xpm (added), plugins/editor/Makefile.am,
15901         plugins/editor/plugin.c, plugins/message-view/Makefile.am,
15902         plugins/message-view/plugin.c, plugins/terminal/Makefile.am,
15903         src/anjuta-app.c, pixmaps/Makefile.am: Moved pixmap files to
15904         respective plugins directories.
15906         * pixmaps/autocomplete-16.png, pixmaps/autocomplete.png,
15907         pixmaps/block-end-16.png, pixmaps/block-end.png
15908         pixmaps/block-start-16.png, pixmaps/block-start.png
15909         pixmaps/block_select.xpm, pixmaps/bookmark-first-16.png
15910         pixmaps/bookmark-first.png, pixmaps/bookmark-last-16.png
15911         pixmaps/bookmark-last.png, pixmaps/bookmark-next-16.png
15912         pixmaps/bookmark-next.png, pixmaps/bookmark-prev-16.png
15913         pixmaps/bookmark-prev.png, pixmaps/bookmark_toggle.xpm
15914         pixmaps/fold_close.xpm, pixmaps/fold_open.xpm
15915         pixmaps/fold_toggle.xpm, pixmaps/indent.xpm
15916         pixmaps/indent_auto.xpm, pixmaps/indent_dcr.xpm
15917         pixmaps/indent_inc.xpm, pixmaps/indent_set.xpm
15918         pixmaps/preferences-editor.png, pixmaps/undock.png
15919         pixmaps/error-next-16.png, pixmaps/error-next.png
15920         pixmaps/error-prev-16.png, pixmaps/error-prev.png
15921         pixmaps/messages.xpm, pixmaps/preferences-messages.png,
15922         pixmaps/preferences-terminal.png: Deleted
15924         * libanjuta/properties* (removed), plugins/editor/properties* (added),
15925         plugins/editor/Makefile.am, plugins/editor/action-callbacks.c,
15926         plugins/editor/aneditor.cxx, plugins/editor/anjuta-docman.c,
15927         plugins/editor/anjuta-document-manager.plugin.in,
15928         plugins/editor/anjuta-document-manager.ui,
15929         plugins/editor/plugin.c, plugins/editor/print.c,
15930         plugins/editor/search-replace_backend.c,
15931         plugins/editor/search_preferences.h,
15932         plugins/editor/text_editor.c, plugins/editor/text_editor.h:
15933         Moved properties souce files to editor plugin as it not required in
15934         libanjuta. Other editor fixes.
15936         * configure.in, libegg/Makefile.am, libegg/egg-dock* (removed),
15937         libegg/dock/* (removed)
15938         : Restored GDL external dependencies and removed libegg dock
15939         sources, because gdl is being developed.
15940         
15941         * libanjuta/Makefile.am, libanjuta/anjuta-preferences.c,
15942         libanjuta/anjuta-preferences.h, libanjuta/anjuta-shell.c,
15943         libanjuta/anjuta-shell.h, libanjuta/anjuta-utils.c,
15944         libanjuta/anjuta-utils.h, libanjuta/libanjuta.h,
15945         libanjuta/plugins.c, libanjuta/plugins.h,
15946         libanjuta/resources.c, libanjuta/resources.h: Preferences now use
15947         gconf system. Shell now takes docking positions. Added more utility
15948         functions. Added plugins query function. And other fixes.
15950         * libanjuta/interfaces/libanjuta.idl: Added File loader interface.
15951         
15952         * plugins/Makefile.am, plugins/file-loader/*: Implemented file loader
15953         plugin to load files based on mime type.
15954         
15955         * configure.in, plugins/devhelp/plugin.c: Fixed to use devhelp >= 0.9.
15956         
15957         * plugins/file-manager/Makefile.am, plugins/file-manager/an_file_view.c,
15958         plugins/file-manager/plugin.c: File manager now uses file loader to
15959         open files.
15961         * plugins/message-view/anjuta-msgman.c,,
15962         plugins/message-view/message-view.c,
15963         plugins/message-view/plugin.c: Implemented launcher in libanjuta.
15965         * plugins/profile-default/plugin.c, plugins/sample1/plugin.c,
15966         plugins/terminal/terminal.c, src/Makefile.am,
15967         src/action-callbacks.c, src/anjuta-app.c, src/anjuta-app.h,
15968         src/anjuta.c, src/layout.xml, src/preferences.c: Bug fixes.
15969         
15970         * libegg/dock/*: Removed directory.
15971         
15972 2004-07-28  Naba Kumar  <naba@gnome.org>
15974         * configure.in: Reduced gnome-print version requirement.
15975         * plugins/devhelp/plugin.c: Fixed changes wrt develop >= 0.9.0.
15977 2004-07-21  Ray Strode  <rstrode@redhat.com>
15978         * anjuta/anjuta.desktop.in.in: Add MimeType line to desktop file
15979         new mime sytem.
15981 2004-06-29  Johannes Schmid <jhs@cvs.gnome.org>
15982         
15983         * plugins/editor/search-replace.c: Some fixes
15984         * plugins/terminal/Makefile.am:
15985         Patch from: Alexey Rusakov <ktirf@users.sf.net>
15987 2004-05-19  Naba Kumar  <naba@gnome.org>
15989         * libanjuta/e-splash.c: Set 'type' at construct time. Fixed
15990         compiler warning.
15992 2004-05-17  Johannes Schmid <jhs@cvs.gnome.org>
15994         * plugins/editor/text_editor.c: Implemented IAnjutaFile correctly.
15995         Implemented IAnjutaSavable
15996         * plugins/editor/plugin.c: Implemented IAnjutaFile and IAnjutaSavable.
15998 2004-05-17  Naba Kumar  <naba@gnome.org>
16000         * configure.in, plugins/Makefile.am, plugins/profile-default/plugin.c,
16001         plugins/build-basic-autotools/.cvsignore,
16002         plugins/build-basic-autotools/Makefile.am,
16003         plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin.png,
16004         plugins/build-basic-autotools/anjuta-build-basic-autotools-plugin.ui,
16005         plugins/build-basic-autotools/anjuta-build-basic-autotools.plugin.in,
16006         plugins/build-basic-autotools/build-basic-autotools.c,
16007         plugins/build-basic-autotools/build-basic-autotools.h: Added basic autotools
16008         build plugin.
16009         
16010         * libanjuta/interfaces/libanjuta.idl: Added IAnjutaProject interface
16011         definition.
16012         
16013         * plugins/file-manager/an_file_view.c,
16014         plugins/file-manager/anjuta-file-manager.ui,
16015         plugins/file-manager/plugin.c, plugins/file-manager/plugin.h:
16016         Added context menu UI.
16017         
16018         * src/anjuta-app.c, src/anjuta-app.h, src/anjuta.c: Added widgets show/hide
16019         in view menu.
16021 2004-05-16      Johannes Schmid <jhs@cvs.gnome.org>
16022         
16023         * libanjuta/anjuta-preferences.[ch]: 
16024         Added save/load_gconf functions
16025         * src/action_callbacks.[ch], src/preferences.c: 
16026         Load global prefs from gconf at startup and save them
16027         on exit. Prefs load and save correctly but something resets
16028         them to default after loading...
16029         * src/Makefile.am: Hack: Add anjuta-preferences.o to LD_ADD.
16030         Somehow the linker does not find save/load_gconf functions
16031         in libanjuta. Must be a stupid mistake, I would be glad
16032         if someone could fix that.
16033         * manuals/reference/libanjuta-sections.txt: Added new
16034         preferences functions and removed gnome-filelist
16035         * plugins/file-manager/anjuta-file-manager-plugin.glade:
16036         * plugins/file-manager/plugin.c:
16037         Added root-path property
16039 2004-05-14      Johannes Schmid <jhs@cvs.gnome.org>
16040         
16041         * libanjuta/fileselection.[ch], gnomefilelist.[ch]: Removed,
16042         they are not longer needed.
16043         * manuals/reference/libanjuta/Makefile.am, anjuta-docs.sgml,
16044         anjuta-sections.txt: Remove references to the files
16045         * libanjuta/pixmaps.h, pixmaps/directory(-accept).png:
16046         Use new nautilus icons for file-manager, looks incredible
16047         cool!
16049 2004-05-14  Johannes Schmid <jhs@cvs.gnome.org>
16050         
16051         * plugins/editor/anjuta-docman.c: gchar* to 
16052         const gchar* in arguments
16053         * plugins/editor/text_editor.c: Implemented IAnjutaFile
16054         Interface
16055         * plugins/file-manager/an_file_view.c: Open files on
16056         double-click. Does not work yet because it does not
16057         find IAnjutaFile interface in document manager
16059 2004-05-14  Johannes Schmid <jhs@cvs.gnome.org>
16060         
16061         * plugins/editor/anjuta-docman.c
16062         * plugins/editor/text_editor.c:
16063         Made close button working, made multiple selection in
16064         File/Open dialog possble, fixed crash bug if file cannot
16065         be opened.
16067 2004-05-13  Johannes Schmid <jhs@cvs.gnome.org>
16068         
16069         * plugins/editor/action-callbacks.c
16070         * plugins/editor/anjuta-docman.c
16071         * plugins/editor/anjuta-docman.h
16072         * plugins/editor/search-replace.c
16073         * plugins/editor/search-replace_backend.c
16074         * plugins/editor/text_editor.c
16075         * plugins/editor/text_editor.h:
16076         Moved to new GtkFileChooserDialog, use gnome-vfs everywhere to be
16077         able to open all files, use uri instead of full_filename, fixed
16078         many bugs.
16081 2004-05-13  Naba Kumar  <naba@gnome.org>
16083         * plugins/message-view/anjuta-message-manager-plugin.glade:
16084         HIG compliant.
16086         * src/anjuta-actions.h, src/anjuta-app.c, src/anjuta.ui: Fixed toolbar
16087         management.
16089         * pixmaps/anjuta_splash.png: Added border.
16090         
16091         * plugins/editor/anjuta-document-manager.png: New icon.
16092         
16093         * anjuta.glade, plugins/editor/anjuta-document-manager.glade,
16094         plugins/editor/.cvsignore: Moved search dialogs from anjuta.glade.
16095         
16096         plugins/editor/Makefile.am,
16097         plugins/editor/search-replace.c,
16098         plugins/editor/search-replace.h,
16099         plugins/editor/search-replace_backend.c,
16100         plugins/editor/search-replace_backend.h,
16101         plugins/editor/search_preferences.h,
16102         plugins/editor/search_preferences.c: Merged changes from
16103         ANJUTA_1_2_0 branch.
16104         
16105         * plugins/editor/anjuta-docman.c, plugins/editor/file.c,
16106         plugins/editor/plugin.c: Fixed crash bugs. Made toggle editor items
16107         operational.
16109         * plugins/terminal/Makefile.am,
16110         plugins/terminal/anjuta-terminal-plugin.glade: Fixed terminal preferences
16111         dialog.
16112         
16113         * src/anjuta-actions.h, src/anjuta-app.c, src/anjuta.ui: Added toolbar
16114         submenu.
16116 2004-05-13  Johannes Schmid <jhs@cvs.gnome.org>
16117         * plugins/message-view/plugin.c: Fixed glade file loading
16118         Removed "Show messages" menu item
16119         * src/anjuta-app.c: Fixed crash bug, g_free(filename was called
16120         twice because of this load system layout hack.
16121         * libanjuta/anjuta-ui.h: Removed #include config.h
16122         * libanjuta/libanjuta.pc: Fixed path and depencies
16123         * libanjuta/Makefile.am: Install properties.h and glue-plugin.h
16124         * libanjuta/properties.h: Moved C++ stuff to properties_cxx.h (file added)
16125         * libanjuta/properties.cxx : #include "properties_cxx.h"
16126         * plugins/editor/aneditor.cxx: #include "properties_cxx.h"
16128 2004-05-12  Johannes Schmid <jhs@cvs.gnome.org>
16129         * plugins/message-view/*: Fixed message view preferences
16130         * plugins/message-view/message_prefs.glade: unmerged from anjuta.glade
16131         * anjuta.glade: Removed messages stuff
16133 2004-05-12  Johannes Schmid <jhs@cvs.gnome.org>
16134         
16135         * Removed libanjutamm, it is now hosted on SF.net:
16136         cvs.sf.net/cvsroot/anjuta/libanjutamm
16138 2004-05-11  Johannes Schmid  <jhs@cvs.gnome.org>
16139         
16140         * libanjutamm/*
16141         Added some experimental code to add support for C++ plugins.
16142         Nothing works yet and it is likely that it will disappear but
16143         I have some questions to murrayc and he wants to see the code.
16145 2004-05-11  Naba Kumar  <naba@gnome.org>
16147         * plugins/terminal/terminal.c: Fixed prefs loading bug.
16149         * plugins/editor/action-callbacks.c: Fixed a crash bug in
16150         hightlight style menu actions.
16152         * manuals/reference/libanjuta/libanjuta-docs.sgml,
16153         manuals/reference/libanjuta/plugin-description-file.sgml,
16154         manuals/reference/libanjuta/writing-plugins.sgml,
16155         manuals/reference/libanjuta/tmpl/anjuta-plugin.sgml,
16156         manuals/reference/libanjuta/tmpl/anjuta-preferences.sgml,
16157         manuals/reference/libanjuta/tmpl/ianjuta-iterable.sgml: Updated docs.
16159         * src/anjuta-app.c: Always load system layout for now.
16161         * libanjuta/anjuta-shell.h, libanjuta/gnomefilelist.h: Fixed format.
16162         
16163         * manuals/reference/libanjuta/libanjuta-docs.sgml,
16164         manuals/reference/libanjuta/libanjuta-sections.txt,
16165         manuals/reference/libanjuta/libanjuta.types,
16166         manuals/reference/libanjuta/tmpl/anjuta-plugin.sgml,
16167         manuals/reference/libanjuta/tmpl/anjuta-preferences.sgml,
16168         manuals/reference/libanjuta/tmpl/anjuta-utils.sgml,
16169         manuals/reference/libanjuta/tmpl/fileselection.sgml,
16170         manuals/reference/libanjuta/tmpl/ianjuta-iterable.sgml,
16171         (added) manuals/reference/libanjuta/tmpl/ianjuta-terminal.sgml:
16172         Updated documentation.
16174         * (new) plugins/terminal/*, plugins/Makefile.am, configure.in,
16175         plugins/profile-default/plugin.c, src/layout.xml:
16176         Created terminal plugin.
16177          
16178         * (new) plugins/file-manager/anjuta-file-manager-plugin.glade,
16179         (new) plugins/file-manager/.cvsignore,
16180         plugins/file-manager/an_file_view.c,
16181         plugins/file-manager/plugin.c,
16182         plugins/file-manager/plugin.h: Moved preferences to separate
16183         glade file and added cvsignore file.
16184         
16185         * (new) po/ko.po, (new) po/sq.po, po/ChangeLog: Brought missing po files
16186         from ANJUTA_1_2_0 branch. Please note that other po files need merging
16187         from the branch. I tried it     but there were way too many conflicts.
16188         
16189         * anjuta.glade: Merged with ANJUTA_1_2_0 branch.
16190         
16191         * libanjuta/anjuta-utils.c, libanjuta/anjuta-utils.h: Added more
16192         util functions required during the merge.
16193         
16194         * libanjuta/interfaces/libanjuta.idl: Defined IAnjutaTerminal
16195         interface.
16196         
16197         * plugins/editor/aneditor.cxx, plugins/editor/aneditor.h,
16198         plugins/editor/anjuta-docman.c, plugins/editor/goto_line.c,
16199         plugins/editor/text_editor.c, plugins/editor/text_editor.h,
16200         plugins/editor/text_editor_menu.c, plugins/file-manager/Makefile.am:
16201         Merged with ANJUTA_1_2_0 branch.
16203 2004-05-09  Johannes Schmid <jhs@cvs.gnome.org>
16205         * configure.in: Changed GNOME_COMPILE_WARNIGS from error to maximum
16207 2004-05-07  Naba Kumar  <naba@gnome.org>
16209         * libanjuta/anjuta-ui.c: Reads action labels and icons correctly.
16211         * plugins/file-manager/an_file_view.c, plugins/file-manager/plugin.c:
16212         Added preferences reading and loading.
16213         
16214         * anjuta.glade, anjuta_dialogs_strings.c, ChangeLog,
16215         libanjuta/anjuta-preferences.c, libanjuta/defaults.c,
16216         libanjuta/fileselection.c, libanjuta/fileselection.h,
16217         libanjuta/resources.c: Merged with ANJUTA_1_2_0 branch.
16218         
16219         * manuals/reference/libanjuta/anjuta-architecture.sgml: Added some docs.
16221         * AUTHORS, HACKING, NEWS, README, anjuta.desktop.in.in,
16222         anjuta.spec.in, configure.in, data/autogen.sh.generic,
16223         data/autogen.sh.gtk, data/autogen.sh.gtkmm, data/autogen.sh.wxwin,
16224         data/macros/autogen.sh, data/macros2/autogen.sh
16225         data/properties/ada.properties, data/properties/anjuta.properties,
16226         launcher/Makefile.am, launcher/anjuta_launcher.c, libanjuta/gnomefilelist.c,
16227         libanjuta/gnomefilelist.h, manuals/C/Makefile.am,
16228         (added) manuals/C/anjuta-advanced-tutorial/.cvsignore,
16229         (added) manuals/C/anjuta-advanced-tutorial/Makefile.am,
16230         (added) manuals/C/anjuta-advanced-tutorial/anjuta-advanced-tutorial-C.omf,
16231         (added) manuals/C/anjuta-advanced-tutorial/anjuta-advanced-tutorial.xml,
16232         (added) manuals/C/anjuta-advanced-tutorial/figures/aat_additional_options.png,
16233         (added) manuals/C/anjuta-advanced-tutorial/figures/aat_config_libraries_lib3ds.png,
16234         (added) manuals/C/anjuta-advanced-tutorial/figures/aat_config_libraries_libxml2.png,
16235         (added) manuals/C/anjuta-advanced-tutorial/figures/aat_include_paths.png,
16236         (added) manuals/C/anjuta-advanced-tutorial/figures/aat_libraries.png,
16237         (added) manuals/C/anjuta-advanced-tutorial/figures/aat_options_lib3ds.png,
16238         (added) manuals/C/anjuta-advanced-tutorial/figures/aat_options_libxml2.png,
16239         (added) manuals/C/anjuta-advanced-tutorial/figures/aat_project_type.png,
16240         manuals/C/anjuta-manual/authors.xml, manuals/C/anjuta-manual/build.xml,
16241         manuals/C/anjuta-tutorial/anjuta-tutorial.xml,
16242         plugins/class-gen/clsGen.c, plugins/editor/print.c,
16243         plugins/patch/patch-plugin.c, scintilla/Document.cxx,
16244         scintilla/Editor.cxx, scintilla/KeyWords.cxx, scintilla/LexCPP.cxx
16245         scintilla/LexMatlab.cxx, scintilla/LexOthers.cxx, scintilla/LexRuby.cxx,
16246         scintilla/LexVB.cxx, scintilla/Makefile.am, scintilla/PlatGTK.cxx,
16247         (added) scintilla/README.sync, scintilla/ScintillaBase.cxx,
16248         scintilla/ScintillaBase.h, scintilla/ScintillaGTK.cxx,
16249         (added) scintilla/scintilla-marshal.c,
16250         (added) scintilla/scintilla-marshal.h,
16251         (added) scintilla/scintilla-marshal.list,
16252         scintilla/include/SString.h, scintilla/include/SciLexer.h,
16253         scintilla/include/Scintilla.h, scintilla/include/Scintilla.iface,
16254         (added) scintilla/patches/scintilla-calltip-align.patch,
16255         (added) scintilla/patches/scintilla-minor.patch,
16256         tagmanager/Makefile.am: Merge (level 4) with ANJUTA_1_2_0 branch.
16258 2004-05-06  Naba Kumar  <naba@gnome.org>
16260         * (added) plugins/file-manager/Makefile.am,
16261         (added) plugins/file-manager/anjuta-file-manager-plugin.png,
16262         (added) plugins/file-manager/anjuta-file-manager.plugin.in,
16263         (added) plugins/file-manager/anjuta-file-manager.ui,
16264         (added) plugins/file-manager/plugin.c,
16265         (added) plugins/file-manager/plugin.h,
16266         (removed) plugins/file-manager/an_file_view.h,
16267         plugins/Makefile.am, configure.in,
16268         plugins/file-manager/an_file_view.c: Created file manager plugin.
16269         
16270         * plugins/profile-default/plugin.c: Added file manager plugin in default
16271         profile.
16272         
16273         * libanjuta/Makefile.am: Fixed dependencies.
16274         * pixmaps/anjuta_splash.png: New splash screen.
16276 2004-05-05  Johannes Schmid <jhs@cvs.gnome.org>
16277         
16278         * template/template.c/h: Added in-line doc
16279         * manuals/reference/template/*: Added template documentation
16280         * configure.in: Build template docs
16282 2004-05-05  Naba Kumar  <naba@gnome.org>
16284         * autogen.sh: Added commands to generate initial interfaces.
16285         
16286         * libanjuta/Makefile.am,
16287         (removed)libanjuta/anjuta-plugin-parser.c,
16288         (removed)libanjuta/anjuta-plugin-parser.h,
16289         (added)libanjuta/anjuta-plugin-description.c,
16290         (added)libanjuta/anjuta-plugin-description.h: Renamed plugin-parser to
16291         plugin description.
16292         
16293         * libanjuta/anjuta-plugin.c,
16294         libanjuta/anjuta-plugin.h: Added activation and deactivation methods.
16295         
16296         * libanjuta/anjuta-shell.c, libanjuta/anjuta-shell.h: Fixed documentation
16297         and added AnjutaShellPlacement enum for widgeds placement (passed to 
16298         widget add_widget() method.
16299         
16300         * libanjuta/plugins.c, libanjuta/plugins.h: Added plugin query routines
16301         and moved plugin sets loading in profile plugins.
16302         
16303         * libanjuta/interfaces/.cvsignore,
16304         (removed)libanjuta/interfaces/Makefile.am,
16305         libanjuta/interfaces/libanjuta.idl,
16306         libanjuta/interfaces/anjuta-idl-compiler.pl,
16307         (removed)libanjuta/interfaces/ianjuta-document-manager.c,
16308         (removed)libanjuta/interfaces/ianjuta-document-manager.h,
16309         (removed)libanjuta/interfaces/ianjuta-editor.c,
16310         (removed)libanjuta/interfaces/ianjuta-editor.h,
16311         (removed)libanjuta/interfaces/ianjuta-file.c,
16312         (removed)libanjuta/interfaces/ianjuta-file.h,
16313         (removed)libanjuta/interfaces/ianjuta-message-manager.c,
16314         (removed)libanjuta/interfaces/ianjuta-message-manager.h,
16315         (removed)libanjuta/interfaces/ianjuta-message-view.c,
16316         (removed)libanjuta/interfaces/ianjuta-message-view.h: Removed all *.c,
16317         *.h and Makefile.am files. They are autogenerated. Interfaces are
16318         by anjuta-idl-compiler.pl from libanjuta.idl file.
16319         
16320         * manuals/reference/libanjuta/Makefile.am,
16321         manuals/reference/libanjuta/anjuta-architecture.sgml,
16322         manuals/reference/libanjuta/libanjuta-docs.sgml,
16323         manuals/reference/libanjuta/libanjuta-sections.txt,
16324         manuals/reference/libanjuta/libanjuta.types,
16325         manuals/reference/libanjuta/plugin-description-file.sgml,
16326         manuals/reference/libanjuta/writing-plugins.sgml,
16327         (added)manuals/reference/libanjuta/tmpl/.cvsignore,
16328         (added)manuals/reference/libanjuta/tmpl/anjuta-plugin-description.sgml,
16329         (removed)manuals/reference/libanjuta/tmpl/anjuta-plugin-parser.sgml,
16330         manuals/reference/libanjuta/tmpl/anjuta-plugin.sgml,
16331         manuals/reference/libanjuta/tmpl/anjuta-shell.sgml,
16332         (added)manuals/reference/libanjuta/tmpl/ianjuta-buildable.sgml,
16333         (added)manuals/reference/libanjuta/tmpl/ianjuta-context-list.sgml,
16334         (added)manuals/reference/libanjuta/tmpl/ianjuta-context-text.sgml,
16335         (added)manuals/reference/libanjuta/tmpl/ianjuta-context-tree.sgml,
16336         (added)manuals/reference/libanjuta/tmpl/ianjuta-context.sgml,
16337         manuals/reference/libanjuta/tmpl/ianjuta-document-manager.sgml,
16338         manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml,
16339         (added)manuals/reference/libanjuta/tmpl/ianjuta-file-loader.sgml,
16340         (added)manuals/reference/libanjuta/tmpl/ianjuta-file-manager.sgml,
16341         (added)manuals/reference/libanjuta/tmpl/ianjuta-file-savable.sgml,
16342         (added)manuals/reference/libanjuta/tmpl/ianjuta-file.sgml,
16343         (added)manuals/reference/libanjuta/tmpl/ianjuta-help.sgml,
16344         (added)manuals/reference/libanjuta/tmpl/ianjuta-iterable-tree.sgml,
16345         (added)manuals/reference/libanjuta/tmpl/ianjuta-iterable.sgml,
16346         (added)manuals/reference/libanjuta/tmpl/ianjuta-loader.sgml,
16347         (added)manuals/reference/libanjuta/tmpl/ianjuta-markable.sgml,
16348         manuals/reference/libanjuta/tmpl/ianjuta-message-manager.sgml,
16349         manuals/reference/libanjuta/tmpl/ianjuta-message-view.sgml,
16350         (added)manuals/reference/libanjuta/tmpl/ianjuta-profile.sgml,
16351         (added)manuals/reference/libanjuta/tmpl/ianjuta-renderable.sgml,
16352         (added)manuals/reference/libanjuta/tmpl/ianjuta-sand-box.sgml,
16353         (added)manuals/reference/libanjuta/tmpl/ianjuta-stream-loader.sgml,
16354         (added)manuals/reference/libanjuta/tmpl/ianjuta-stream-savable.sgml,
16355         (added)manuals/reference/libanjuta/tmpl/ianjuta-stream.sgml,
16356         (added)manuals/reference/libanjuta/tmpl/ianjuta-transformable.sgml,
16357         (added)manuals/reference/libanjuta/tmpl/libanjuta-iface-marshallers.sgml,
16358         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml,
16359         manuals/reference/libanjuta/tmpl/plugins.sgml: Updated documentation.
16360         Wrote writing-plugins.sgml documentation. Fixed cross links. Added
16361         interfaces template sgmls.
16362         
16363         * plugins/Makefile.am,
16364         plugins/devhelp/anjuta-devhelp.plugin.in,
16365         plugins/devhelp/plugin.c,
16366         plugins/editor/action-callbacks.c,
16367         plugins/editor/anjuta-document-manager.plugin.in,
16368         plugins/editor/plugin.c,
16369         plugins/editor/plugin.h,
16370         plugins/editor/text_editor.c,
16371         plugins/sample1/plugin.c,
16372         plugins/message-view/anjuta-message-manager.plugin.in,
16373         plugins/message-view/plugin.c: Fixed shell add_widget method to take
16374         placement. Fixed other errors.
16375         
16376         * (added)plugins/profile-default/.cvsignore,
16377         (added)plugins/profile-default/Makefile.am,
16378         (added)plugins/profile-default/anjuta-default-profile-plugin.png,
16379         (added)plugins/profile-default/anjuta-default-profile.plugin.in,
16380         (added)plugins/profile-default/anjuta-default-profile.ui,
16381         (added)plugins/profile-default/plugin.c,
16382         (added)plugins/profile-default/plugin.h: Added a default new
16383         profile plugin.
16384         
16385         * src/Makefile.am,
16386         src/action-callbacks.c,
16387         src/anjuta-app.c,
16388         src/anjuta.c,
16389         src/main.cpp: Fixed necessary changes for libanjuta
16391 2004-05-04  Naba Kumar  <naba@gnome.org>
16393         * libanjuta/anjuta-shell.[h,c], src/anjuta-app.c,
16394         plugins/sample1/plugin.c, plugins/devhelp/plugin.c,
16395         plugins/message-view/plugin.c, plugins/editor/plugin.c: Added shell
16396         placement for default widgets placements.
16398 2004-05-03  Naba Kumar  <naba@gnome.org>
16400         * manuals/reference/libanjuta/anjuta-architecture.sgml,
16401         manuals/reference/libanjuta/libanjuta-docs.sgml,
16402         manuals/reference/libanjuta/plugin-description-file.sgml,
16403         manuals/reference/libanjuta/writing-plugins.sgml:
16404         Wrote more sections in writing-plugins document and fixed errors.
16406 2004-05-03  Naba Kumar  <naba@gnome.org>
16408         * libanjuta/interfaces/libanjuta.idl: Added interface
16409         IAnjutaFileManager.
16410         
16411         * manuals/reference/libanjuta/anjuta-architecture.dia,
16412         manuals/reference/libanjuta/anjuta-architecture.png: Updated
16413         architecture diagram.
16414         
16415         * (added) manuals/reference/libanjuta/anjuta-architecture.sgml,
16416          manuals/reference/libanjuta/libanjuta-docs.sgml,
16417         (added) manuals/reference/libanjuta/plugin-description-file.sgml,
16418         (added) manuals/reference/libanjuta/writing-plugins.sgml:
16419         Wrote writing-plugins document and separated chapters into
16420         separate sgml files.
16421         
16422         * plugins/file-manager/an_file_view.c,
16423         plugins/file-manager/an_file_view.h: New and improved directory
16424         rendering.
16426 2004-05-02  Sven Herzberg  <herzi@abi02.de>
16428         * anjuta.glade: re-designed the new file dialog
16429         * anjuta_dialogs_strings.c: new strings from the new file dialog
16431 2004-04-30  Naba Kumar  <naba@gnome.org>
16433         * libanjuta/interfaces/Makefile.am.iface,
16434         libanjuta/interfaces/anjuta-idl-compiler.pl: Fixed errors.
16435         
16436         * libanjuta/interfaces/libanjuta.idl: Updated.
16438         * libanjuta/interfaces/Makefile.am.iface,
16439         libanjuta/interfaces/libanjuta.idl: Updated.
16441 2004-04-29  Naba Kumar  <naba@gnome.org>
16442         
16443         * libanjuta/interfaces/Makefile.am.iface,
16444         libanjuta/interfaces/libanjuta.idl: Updated.
16446 2004-04-29  Naba Kumar  <naba@gnome.org>
16448         * libanjuta/interfaces/giface-idlc-c.pl,
16449         libanjuta/interfaces/libanjuta.idl: Upgraded.
16450         * libanjuta/interfaces/Makefile.am.iface: Added.
16451         
16452 2004-04-28  Naba kumar  <naba@gnome.org>
16454         * libanjuta/interfaces/giface-idlc-c.pl,
16455         libanjuta/interfaces/libanjuta.idl: Added anjuta interface
16456         definitions and wrote a compiler.
16457         
16458 2004-04-28  Naba Kumar  <naba@gnome.org>
16460         * libanjuta/anjuta-shell.c: Fixed docs.
16461         * libanjuta/interfaces/Makefile.am,
16462         libanjuta/interfaces/ianjuta-file.c,
16463         libanjuta/interfaces/ianjuta-file.h: Added ianjuta-file.{c,h}
16464         
16465         * libanjuta/interfaces/ianjuta-editor.c: Fixed bug.
16466         
16467         * manuals/reference/libanjuta/tmpl/anjuta-children.sgml
16469         * manuals/reference/libanjuta/tmpl/anjuta-plugin.sgml,
16470         manuals/reference/libanjuta/tmpl/anjuta-preferences-dialog.sgml,
16471         manuals/reference/libanjuta/tmpl/anjuta-preferences.sgml,
16472         manuals/reference/libanjuta/tmpl/anjuta-shell.sgml,
16473         manuals/reference/libanjuta/tmpl/anjuta-ui.sgml: Updated docs.
16474         * src/anjuta-app.c: Fixed bug.
16476 2004-04-27  Naba Kumar  <naba@gnome.org>
16478         * libanjuta/anjuta-preferences-dialog.c,
16479         manuals/Makefile.am: Fixed document bugs and enabled docs
16480         building.
16482         * libanjuta/anjuta-preferences-dialog.c,
16483         manuals/reference/libanjuta/tmpl/anjuta-preferences-dialog.sgml:
16484         More documentation.
16485         
16486         * libanjuta/anjuta-preferences.c,
16487         manuals/reference/libanjuta/libanjuta-docs.sgml,
16488         manuals/reference/libanjuta/tmpl/anjuta-children.sgml,
16489         manuals/reference/libanjuta/tmpl/anjuta-plugin.sgml,
16490         manuals/reference/libanjuta/tmpl/anjuta-preferences.sgml,
16491         manuals/reference/libanjuta/tmpl/anjuta-shell.sgml,
16492         manuals/reference/libanjuta/tmpl/anjuta-ui.sgml:
16493         Wrote more documentations.
16495         * (removed) plugins/message-view/imessage-view.c,
16496         (removed) plugins/message-view/ianjuta-msgman.c,
16497         plugins/message-view/Makefile.am,
16498         plugins/message-view/anjuta-msgman.c,
16499         plugins/message-view/anjuta-msgman.h,
16500         plugins/message-view/message-view.c,
16501         plugins/message-view/message-view.h,
16502         plugins/message-view/plugin.c,
16503         plugins/message-view/plugin.h: Moved interface implementations
16504         in their respective classes and used correct macros to
16505         defined class types.
16507         * libanjuta/anjuta-ui.c, libanjuta/anjuta-ui.h,
16508         src/action-callbacks.c, src/anjuta-app.c: Subclassed
16509         AnjutaUI from GtkUIManager instead of GtkDialog.
16511         * manuals/reference/libanjuta/Makefile.am,
16512         manuals/reference/libanjuta/libanjuta-docs.sgml,
16513         manuals/reference/libanjuta/libanjuta-sections.txt,
16514         manuals/reference/libanjuta/libanjuta.types,
16515         (added) manuals/reference/libanjuta/anjuta-architecture.dia,
16516         (added) manuals/reference/libanjuta/anjuta-architecture.png,
16517         manuals/reference/libanjuta/tmpl/anjuta-plugin.sgml,
16518         manuals/reference/libanjuta/tmpl/anjuta-shell.sgml,
16519         manuals/reference/libanjuta/tmpl/anjuta-ui.sgml,
16520         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml:
16521         Wrote more documentation, fixed typos, added architecture
16522         diagram, updated object types etc.
16524         * plugins/editor/text_editor.c: Fixed interface implementation.
16526 2004-04-26  Naba Kumar  <naba@gnome.org>
16528         * (added) manuals/reference/libanjuta/anjuta-architecture.dia,
16529         (added) manuals/reference/libanjuta/anjuta-architecture.png,
16530         manuals/reference/libanjuta/libanjuta-docs.sgml: Added
16531         architecture diagram and a new chapter on plugins description file.
16533 2004-04-25  Naba Kumar  <naba@gnome.org>
16535         *  libanjuta/anjuta-children.h,
16536         libanjuta/anjuta-plugin.c,
16537         libanjuta/anjuta-plugin.h,
16538         libanjuta/anjuta-preferences.c,
16539         libanjuta/anjuta-shell.c,
16540         libanjuta/anjuta-shell.h,
16541         libanjuta/e-splash.c,
16542         libanjuta/e-splash.h,
16543         manuals/reference/libanjuta/Makefile.am,
16544         manuals/reference/libanjuta/libanjuta-docs.sgml,
16545         manuals/reference/libanjuta/libanjuta-sections.txt,
16546         manuals/reference/libanjuta/tmpl/anjuta-children.sgml,
16547         manuals/reference/libanjuta/tmpl/anjuta-encodings.sgml,
16548         manuals/reference/libanjuta/tmpl/anjuta-marshal.sgml,
16549         manuals/reference/libanjuta/tmpl/anjuta-plugin-parser.sgml,
16550         manuals/reference/libanjuta/tmpl/anjuta-plugin.sgml,
16551         manuals/reference/libanjuta/tmpl/anjuta-preferences-dialog.sgml,
16552         manuals/reference/libanjuta/tmpl/anjuta-preferences.sgml,
16553         manuals/reference/libanjuta/tmpl/anjuta-shell.sgml,
16554         manuals/reference/libanjuta/tmpl/anjuta-stock.sgml,
16555         manuals/reference/libanjuta/tmpl/anjuta-ui.sgml,
16556         manuals/reference/libanjuta/tmpl/anjuta-utils.sgml,
16557         manuals/reference/libanjuta/tmpl/defaults.sgml,
16558         manuals/reference/libanjuta/tmpl/fileselection.sgml,
16559         manuals/reference/libanjuta/tmpl/glue-factory.sgml,
16560         manuals/reference/libanjuta/tmpl/glue-plugin.sgml,
16561         manuals/reference/libanjuta/tmpl/gnomefilelist.sgml,
16562         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml,
16563         manuals/reference/libanjuta/tmpl/pixmaps.sgml,
16564         manuals/reference/libanjuta/tmpl/plugins.sgml,
16565         manuals/reference/libanjuta/tmpl/properties.sgml,
16566         manuals/reference/libanjuta/tmpl/resources.sgml,
16567         manuals/reference/libanjuta/tmpl/cell-renderer-captioned-image.sgml,
16568         manuals/reference/libanjuta/tmpl/e-splash.sgml,
16569         manuals/reference/libanjuta/tmpl/ianjuta-document-manager.sgml,
16570         manuals/reference/libanjuta/tmpl/ianjuta-editor.sgml,
16571         manuals/reference/libanjuta/tmpl/ianjuta-message-manager.sgml,
16572         manuals/reference/libanjuta/tmpl/ianjuta-message-view.sgml:
16574         Added more template files and wrote more documentation.
16576 2004-04-24  Andras Timar  <timar@gnome.hu>
16578         * configure.in: Added hu to ALL_LINGUAS.
16580 2004-04-23  Naba Kumar  <naba@gnome.org>
16581         
16582         * configure.in: Fixed compile error.
16583         
16584         * libanjuta/anjuta-children.c,
16585         libanjuta/anjuta-children.h,
16586         libanjuta/anjuta-preferences.c,
16587         libanjuta/anjuta-preferences.h,
16588         libanjuta/anjuta-shell.c,
16589         libanjuta/anjuta-ui.c,
16590         libanjuta/anjuta-ui.h,
16591         manuals/reference/libanjuta/Makefile.am,
16592         manuals/reference/libanjuta/libanjuta-docs.sgml,
16593         manuals/reference/libanjuta/libanjuta.types,
16594         manuals/reference/libanjuta/tmpl/anjuta-children.sgml,
16595         manuals/reference/libanjuta/tmpl/anjuta-encodings.sgml,
16596         manuals/reference/libanjuta/tmpl/anjuta-marshal.sgml,
16597         manuals/reference/libanjuta/tmpl/anjuta-plugin-parser.sgml,
16598         manuals/reference/libanjuta/tmpl/anjuta-plugin.sgml,
16599         manuals/reference/libanjuta/tmpl/anjuta-preferences-dialog.sgml,
16600         manuals/reference/libanjuta/tmpl/anjuta-preferences.sgml,
16601         manuals/reference/libanjuta/tmpl/anjuta-shell.sgml,
16602         manuals/reference/libanjuta/tmpl/anjuta-stock.sgml,
16603         manuals/reference/libanjuta/tmpl/anjuta-ui.sgml,
16604         manuals/reference/libanjuta/tmpl/anjuta-utils.sgml,
16605         manuals/reference/libanjuta/tmpl/defaults.sgml,
16606         manuals/reference/libanjuta/tmpl/fileselection.sgml,
16607         manuals/reference/libanjuta/tmpl/glue-factory.sgml,
16608         manuals/reference/libanjuta/tmpl/glue-plugin.sgml,
16609         manuals/reference/libanjuta/tmpl/gnomefilelist.sgml,
16610         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml,
16611         manuals/reference/libanjuta/tmpl/pixmaps.sgml,
16612         manuals/reference/libanjuta/tmpl/plugins.sgml,
16613         manuals/reference/libanjuta/tmpl/properties.sgml,
16614         manuals/reference/libanjuta/tmpl/resources.sgml,
16615         plugins/sample1/plugin.c: Added libanjuta API documentation.
16617 2004-04-22  Naba Kumar  <naba@gnome.org>
16619         * libanjuta/anjuta-preferences.c, libanjuta/anjuta-preferences.h,
16620         libanjuta/anjuta-shell.c, libanjuta/anjuta-shell.h,
16621         libanjuta/anjuta-ui.c, libanjuta/anjuta-ui.h,
16622         libegg/Makefile.am, (removed) libegg/egg-accel-dialog.c,
16623         (removed) libegg/egg-action-group.c, (removed) libegg/egg-action.c,
16624         libegg/egg-combo-action.c, libegg/egg-entry-action.c,
16625         (removed) libegg/egg-markup.c, (removed) libegg/egg-menu-merge.c,
16626         (removed) libegg/egg-radio-action.c, (removed) libegg/egg-toggle-action.c,
16627         (removed) libegg/eggradiotoolbutton.c,
16628         (removed) libegg/eggseparatortoolitem.c,
16629         (removed) libegg/eggtoggletoolbutton.c,
16630         (removed) libegg/eggtoolbar.c,
16631         (removed) libegg/eggtoolbutton.c,
16632         (removed) libegg/eggtoolitem.c,
16633         (removed) libegg/prop-editor.c,
16634         (removed) libegg/test-actions.c,
16635         (removed) libegg/test-drag.c,
16636         (removed) libegg/test-merge.c,
16637         (removed) libegg/test-toolbar.c,
16638         libegg/menu/Makefile.am,
16639         (removed) libegg/menu/egg-accel-dialog.h,
16640         (removed) libegg/menu/egg-action-group.h,
16641         (removed) libegg/menu/egg-action.h,
16642         libegg/menu/egg-entry-action.h,
16643         (removed) libegg/menu/egg-markup.h,
16644         (removed) libegg/menu/egg-menu-merge.h,
16645         (removed) libegg/menu/egg-menu.h,
16646         (removed) libegg/menu/egg-radio-action.h,
16647         (removed) libegg/menu/egg-toggle-action.h,
16648         (removed) libegg/menu/howitshouldwork.txt,
16649         (removed) libegg/toolbar/.cvsignore,
16650         (removed) libegg/toolbar/Makefile.am,
16651         (removed) libegg/toolbar/TODO,
16652         (removed) libegg/toolbar/eggradiotoolbutton.h,
16653         (removed) libegg/toolbar/eggseparatortoolitem.h,
16654         (removed) libegg/toolbar/eggtoggletoolbutton.h,
16655         (removed) libegg/toolbar/eggtoolbar.h,
16656         (removed) libegg/toolbar/eggtoolbutton.h,
16657         (removed) libegg/toolbar/eggtoolitem.h,
16658         (removed) libegg/toolbar/prop-editor.h,
16659         (removed) libegg/toolbar/toolbar-api.txt,
16660         (removed) libegg/toolbar/toolbar-ideas.txt,
16661         plugins/devhelp/anjuta-devhelp.ui,
16662         plugins/devhelp/plugin.c,
16663         plugins/editor/action-callbacks.c,
16664         plugins/editor/action-callbacks.h,
16665         plugins/editor/anjuta-docman.c,
16666         plugins/editor/anjuta-document-manager.ui,
16667         plugins/editor/plugin.c,
16668         P plugins/message-view/Makefile.am,
16669         plugins/message-view/anjuta-message-manager.ui,
16670         plugins/message-view/plugin.c,
16671         plugins/sample1/anjuta-sample.ui,
16672         plugins/sample1/plugin.c,
16673         src/action-callbacks.c,
16674         src/action-callbacks.h,
16675         src/anjuta-actions.h,
16676         src/anjuta-app.c,
16677         src/anjuta.ui: Removed libegg code for menu/toolbar action-merge and used
16678         Gtk actions and UIManager. Fixed all plugins to use this.
16679         
16680         * manuals/reference/gtkdoc-scangobj.diff,
16681         manuals/reference/libanjuta/Makefile.am,
16682         manuals/reference/libanjuta/tmpl/anjuta-plugin.sgml,
16683         manuals/reference/libanjuta/tmpl/anjuta-preferences.sgml,
16684         manuals/reference/libanjuta/tmpl/anjuta-shell.sgml,
16685         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml,
16686         manuals/reference/libanjuta/tmpl/plugins.sgml: Fixed document generation.
16688         * configure.in: Updated to require gtk-2.4 and gnome-2.6.
16689         
16690 2004-04-20  Johannes Schmid <jhs@cvs.gnome.org>
16691         
16692         * plugins/message-view/imessage-view.c
16693         * plugins/message-view/ianjuta-msgman.c:
16694         Added interfaces
16696 2004-04-17  Adam Weinberger  <adamw@gnome.org>
16698         * configure.in: Added en_CA to ALL_LINGUAS.
16700 2004-04-08  Naba Kumar  <naba@gnome.org>
16702         * libanjuta/interfaces/ianjuta-message-view.[c,h], 
16703         libanjuta/interfaces/Makefile.am,
16704         libanjuta/interfaces/ianjuta-message-manager.[c,h]: Implemented
16705         message manager and message view interfaces.
16707         * libanjuta/anjuta-children.h, libanjuta/anjuta-plugin-parser.h,
16708         libanjuta/anjuta-plugin.c, libanjuta/anjuta-plugin.h,
16709         libanjuta/anjuta-shell.c, libanjuta/anjuta-shell.h,
16710         libanjuta/plugins.c, libanjuta/plugins.h, src/action-callbacks.c,
16711         src/anjuta-app.c: Used 'activate' and
16712         'deactivate' virtual methods for plugins. Fixed installed plugins
16713         dialogs. Added remove_widget() method for AnjutaShell.
16715         * libanjuta/interfaces/Makefile.am,
16716         libanjuta/interfaces/ianjuta-document-manager.c,
16717         libanjuta/interfaces/ianjuta-document-manager.h,
16718         libanjuta/interfaces/ianjuta-editor.c,
16719         libanjuta/interfaces/ianjuta-editor.h: Fixed document manager
16720         and editor interfaces.
16722         * plugins/devhelp/plugin.c,
16723         plugins/message-view/anjuta-message-manager.plugin.in,
16724         plugins/message-view/anjuta-msgman.h, plugins/message-view/plugin.c,
16725         plugins/sample1/plugin.c: Updated plugins implementation to
16726         reflect the changes.
16728 2004-04-07  Naba Kumar  <naba@gnome.org>
16730         * libanjuta/anjuta-plugin.h, libanjuta/anjuta-shell.[c,h],
16731         libanjuta/plugins.[c,h], libanjuta/interfaces/Makefile.am,
16732         libanjuta/interfaces/ianjuta-editor.h,
16733         (added) libanjuta/interfaces/ianjuta-document-manager.[c,h],
16734         plugins/editor/anjuta-docman.c,
16735         plugins/editor/anjuta-document-manager.plugin.in,
16736         plugins/editor/plugin.c, plugins/sample1/plugin.c,
16737         src/anjuta-app.c: Implemented IAnjutaDocumentManager interface.
16738         Added supported interfaces for plugins. Tested plugin interfaces
16739         through sample plugin.
16740         
16741 2004-02-29  Johannes Schmid <jhs@cvs.gnome.org>
16742         
16743         * template/Makefile.am, data/templates/library/Makefile.am
16744         Fixed some automake-1.7 incompatibilities
16745         * template/xmltemplate.c: Small fix
16747 2004-02-23  Naba Kumar  <naba@gnome.org>
16749         * src/actions-callbacks.[c,h], src/anjuta-actions.h, src/anjuta.ui:
16750         Added plugins manager dialog.
16751         
16752         * plugins/editor/Makefile.am: Added libanjuta-interface.la to the
16753         library dependencies.
16754         
16755         * src/Makefile.am, src/action-callbacks.c, src/action-callbacks.h,
16756         src/anjuta-actions.h, src/anjuta-app.c, src/anjuta-app.h,
16757         src/anjuta-callbacks.c, src/anjuta_cbs.c, src/main.c.
16758         (new) src/anjuta.[c,h]: Organized session and winodw callbacks. Added
16759         geometry command line option.
16760         
16761 2004-02-16  Naba Kumar  <naba@gnome.org>
16763         * configure.in, libanjuta/Makefile.am, libanjuta/interface/*:
16764         Added interfaces and IAnjutaEditor editor interface.
16765         * plugins/editor/text_editor.c: Implemented IAnjutaEditor
16766         interface.
16767         * libanjuta/anjuta-shell.h: Fixed bug.
16768         
16769 2004-02-13  Naba Kumar  <naba@gnome.org>
16771         * configure.in: Requires devhelp 0.8.1 (0.8 is broken).
16772         
16773 2004-02-13  Johannes Schmid <jhs@cvs.gnome.org>
16774         
16775         * data/template/*/.cvsignore:
16776         Avoid all these ? in cvs output
16778 2004-02-13  Naba Kumar  <naba@gnome.org>
16780         * configure.in, plugins/devhelp/plugin.c: Fixed devhelp library
16781         includes and linking.
16783         * configure.in, plugins/Makefile.am: Enabled devhelp plugin
16784         and set required version to devhelp 0.8. This devhelp version
16785         can be acquired from gnome cvs branch devhelp branch
16786         devhelp-gtk-2-2 or devhelp-0.8.tar.gz to be released soon.
16788         * src/anjuta.ui, src/actions.h, src/actions-callbacks.h,
16789         src/actions-callbacks.c: Added Dock Manager settings menu item.
16791         * configure.in, plugins/Makefile.am: Disabled devhelp creation.
16792         * plugins/devhelp/plugin.c: Fixed a linking bug.
16793         
16794         * configure.in, (added) libegg/gdl-*, libegg/Makefile.am,
16795         libanjuta/gnomefilelist.c, src/anjuta-app.c, src/anjuta-app.h: Removed
16796         external GDL dependency and used libegg codes.
16797         
16798 2004-02-12  Naba Kumar  <naba@gnome.org>
16800         * configure.in, plugins/Makefile.am, plugins/devhelp/*:
16801         Added devhelp plugin, but it can't be used without a
16802         patch in devhelp. So it's disabled for now.
16804         * libanjuta/.cvsignore, libegg/toolbar/.cvsignore,
16805         libegg/treeviewutils/.cvsignore, plugins/editor/.cvsignore,
16806         plugins/message-view/.cvsignore, plugins/sample1/.cvsignore:
16807         Update cvsignore files.
16809         * libanjuta/plugins.c, widgets/e-splash.c:
16810         Fixed plugins loading to show splash icons.
16811         
16812         * plugins/message-view/anjuta-message-manager.plugin.in,
16813         plugins/message-view/plugin.c: Fixed plugin registered name.
16815         * plugins/message-view/anjuta-message-view.png,
16816         plugins/sample1/anjuta-sample-plugin.png: Update images.
16818         * src/Makefile.am, src/anjuta-app.c, src/layout.xml,
16819         src/main.c: Fixed layout loading.
16821         * plugins/devhelp/Makefile.am: Fixed error.
16823         * (removed) widgets/*, libanjuta/plugins.h,
16824         src/main.c: Transfered widgets to libanjuta/.
16825         
16826         * libegg/Makefile.am, libegg/*.c: Moved souce files in libegg
16827         toplevel directory to created only one library as libanjuta-egg.
16829         * data/Makefile.am: Fixed build error.
16831         * configure.in, libegg/egg-dock*.c, libegg/layout.glade,
16832         libegg/test-dock.c, libegg/dock/*, libegg/Makefile.am,
16833         libegg/.cvsignore: Added egg dock widget.
16835         * gdl/*: Removed as they are now available in libegg.
16836         
16837 2004-02-11  Franco Catrin <fcatrin@tuxpan.com>
16839         * plugins/editor/anjuta-docman.c:
16840         Use stock close icon on tab close button
16842 2004-02-11  Johannes Schmid <jhs@cvs.gnome.org>
16843         
16844         * data/template/Makefile.am
16845         data/template/language/Makefile.am
16846         data/template/library/Makefile.am
16847         data/template/text/Makefile.am
16848         data/template/project/Makefile.am
16849         data/template/project/terminal/Makefile.am
16850         configure.in: Created Makefile to install templates
16852 2004-02-11  Naba Kumar  <naba@gnome.org>
16854         * plugins/editor/action-callbacks.c,
16855         plugins/editor/anjuta-document-manager.ui,
16856         plugins/editor/plugin.c
16857         plugins/message-view/anjuta-message-manager.ui,
16858         src/anjuta-actions.h, src/anjuta.ui: Fixed Edit->Goto submenu merging.
16859         
16860 2004-02-09  Johannes Schmid <jhs@cvs.gnome.org>
16861         
16862         * plugins/message-view/*: MessageView plugin is now loaded
16863         The menu items are still dummies.
16865 2004-02-09  Naba Kumar  <naba@gnome.org>
16867         * Makefile.am, autogen.sh, configure.in: Added proper gtkdoc
16868         generation.
16869         
16870         * libanjuta/anjuta-preferences.h: Added some documentation.
16871         
16872         * libanjuta/anjuta-shell.h: Removed dead codes.
16873         
16874         * (removed) manuals/reference/gtkdoc-scangobj,
16875         manuals/reference/gtkdoc-scangobj.diff,
16876         manuals/reference/libanjuta/.cvsignore,
16877         manuals/reference/libanjuta/Makefile.am,
16878         manuals/reference/libanjuta/README.inline-doc,
16879         manuals/reference/libanjuta/README.sections,
16880         manuals/reference/libanjuta/libanjuta-docs.sgml,
16881         manuals/reference/libanjuta/libanjuta-sections.txt,
16882         manuals/reference/libanjuta/tmpl/anjuta-children.sgml,
16883         manuals/reference/libanjuta/tmpl/anjuta-encodings.sgml,
16884         manuals/reference/libanjuta/tmpl/anjuta-marshal.sgml,
16885         manuals/reference/libanjuta/tmpl/anjuta-plugin-parser.sgml,
16886         manuals/reference/libanjuta/tmpl/anjuta-plugin.sgml,
16887         manuals/reference/libanjuta/tmpl/anjuta-preferences.sgml,
16888         manuals/reference/libanjuta/tmpl/anjuta-shell.sgml,
16889         manuals/reference/libanjuta/tmpl/anjuta-stock.sgml,
16890         manuals/reference/libanjuta/tmpl/anjuta-ui.sgml,
16891         manuals/reference/libanjuta/tmpl/anjuta-utils.sgml,
16892         manuals/reference/libanjuta/tmpl/defaults.sgml,
16893         manuals/reference/libanjuta/tmpl/fileselection.sgml,
16894         manuals/reference/libanjuta/tmpl/glue-factory.sgml,
16895         manuals/reference/libanjuta/tmpl/libanjuta-unused.sgml,
16896         manuals/reference/libanjuta/tmpl/pixmaps.sgml,
16897         manuals/reference/libanjuta/tmpl/plugins.sgml,
16898         manuals/reference/libanjuta/tmpl/properties.sgml,
16899         manuals/reference/libanjuta/tmpl/resources.sgml: Fixed c++ compilation
16900         of scan program. Updated templates.
16902         plugins/editor/action-callbacks.c, plugins/editor/plugin.c: Fixed
16903         editor action callbacks data.
16904         
16905         plugins/editor/text_editor.c: Fixed scintilla height problem. Added
16906         scintilla object ref/unref.
16908 2004-02-08  Johannes Schmid <jhs@cvs.gnome.org>
16909         
16910         * template/*: Added new xml based template system
16911         * template/dtds/*: Dtds to validate xml files of the template systems
16912         * data/template/*: Some sample template files
16913         Still needs some work but builds fine!
16915 2004-02-06  Naba Kumar  <naba@gnome.org>
16917         * cofigure.in, manuals/Makefile.am,
16918         (added) manuals/reference/*: Added API documentation
16919         structure (gtk-doc based).
16921         * libanjuta/libanjuta.h: Updated
16922         
16923 2004-02-05  Naba Kumar  <naba@gnome.org>
16924         
16925         * configure.in: Sets correct dependencies and
16926         uses gdl external library.
16928         * libanjuta/Makefile.am, libanjuta/anjuta-plugin.c,
16929         libanjuta/anjuta-plugin.h, libanjuta/anjuta-utils.c,
16930         libanjuta/anjuta-utils.h, libanjuta/fileselection.c
16931         libanjuta/fileselection.h, libanjuta/glue-factory.c,
16932         libanjuta/gnomefilelist.c, libanjuta/gnomefilelist.h,
16933         libanjuta/plugins.c, libanjuta/plugins.h: Fixed plugin system
16934         and added file dialogs.
16936         * libegg/menu/Makefile.am, libegg/toolbar/Makefile.am,
16937         libegg/treeviewutils/Makefile.am, libegg/util/Makefile.am:
16938         Build dynamic libraries for libegg.
16940         * plugins/Makefile.am, plugins/editor/Makefile.am,
16941         plugins/editor/action-callbacks.c, 
16942         plugins/editor/action-callbacks.h,
16943         plugins/editor/anjuta-docman.c,
16944         plugins/editor/anjuta-docman.h
16945         plugins/editor/anjuta-document-manager.plugin.in
16946         plugins/editor/anjuta-document-manager.png
16947         plugins/editor/anjuta-document-manager.ui
16948         plugins/editor/file.c
16949         plugins/editor/file.h
16950         plugins/editor/plugin.c
16951         plugins/editor/print.c
16952         plugins/editor/print.h
16953         plugins/editor/search-replace.c
16954         plugins/editor/search_incremental.c
16955         plugins/editor/search_incremental.h
16956         plugins/editor/text_editor.c
16957         plugins/editor/text_editor.h
16958         plugins/editor/text_editor_cbs.c
16959         plugins/editor/text_editor_menu.h
16960         plugins/sample1/Makefile.am
16961         plugins/sample1/anjuta-sample-plugin.png
16962         plugins/sample1/anjuta-sample.plugin.in
16963         plugins/sample1/anjuta-sample.ui
16964         plugins/sample1/plugin-sample1.c
16965         plugins/sample1/plugin.c
16966         plugins/sample1/plugin.h: Created sample
16967         plugin and fixed editor plugin.
16969         * printing/*: Removed.
16971         * scintilla/Makefile.am: Builds dynamic library.
16973         * src/Makefile.am, src/action-callbacks.c,
16974         src/action-callbacks.h, (removed) src/an_symbol_view.c,
16975         src/anjuta-actions.h, src/anjuta-app.c,
16976         src/anjuta-app.h, src/anjuta-callbacks.c,
16977         src/anjuta-callbacks.h, (removed) src/anjuta.c,
16978         (removed) src/anjuta.h, src/anjuta.ui,
16979         src/layout.xml, src/main.c, src/preferences.h,
16980         src/utilities.c: Debuggged and finally made plugins
16981         loadable.
16983         * global-tags/Makefile.am: Fixed build error.
16985 2004-02-03  Naba Kumar  <naba@gnome.org>
16987         * configure.in: Users GDL from external package.
16988         * plugins/*: Added many new plugins (not ready though).
16989         * src/*: Removed many files (which have been transfered in plugins/).
16990         
16991 2004-02-01  Robert Sedak  <robert.sedak@sk.htnet.hr>
16993         * configure.in: Added "hr" (Croatian) to ALL_LINGUAS.
16995 2004-01-10  Jean-Noel Guiheneuf <jnoel@lotuscompounds.com>
16997         * configure.in: Added editor plugins
16998         
16999         * plugins/Makefile.am, src/search-replace_backend.h,
17000         plugins/editor/Makefile.am, plugins/editor/ action-callbacks.c,
17001         plugins/editor/search-replace.c, plugins/editor/search-replace_backend.h
17002         
17003         * Added: plugins/editor/search_incremental.c, 
17004         plugins/editor/search_incremental.h
17006         * Update search-replace in plugins/editor
17007         
17008 2004-01-09  Johannes Schmid <jhs@cvs.gnome.org>
17009         
17010         * plugins/message-view/message-view.c: Some code clean-up
17012 2004-01-09  Jean-Noel Guiheneuf <jnoel@lotuscompounds.com>
17014         * Added: search_incremental[ch]
17015         
17016         * anjuta.glade, src/search-replace.c, src/search-replace_backend.h,
17017         src/mainmenu_callbacks.c, src/toolbar.c
17018         src/toolbar_callbacks.c, src/toolbar_callbacks.h, src/Makefile.am
17019         
17020         * Incremental Search
17022 2004-01-03  Johannes Schmid <jhs@cvs.gnome.org>
17023         
17024         * plugins/message-view/anjuta-msgman.[c/h]:
17025         Added message manager for easier message handling with a
17026         similar interface as docman. Of course you can still use
17027         MessageView standalone.
17028         * plugins/Makefile.am: Added message-view because it compiles
17029         without errors.
17031 2004-01-03  Johannes Schmid <jhs@cvs.gnome.org>
17032         
17033         * plugins/message-view/*: Added message-view plugin 
17034         (still incomplete) 
17035         * configure.in: Added plugins/message-view/Makefile
17037 2004-01-03  Naba Kumar  <naba@gnome.org>
17039         * libanjuta/*.c: Added new files and updated old ones.
17040         * plugins/editor/*: Added editor plugin.
17041         * configure.in: Added editor plugin and moved editor related
17042         files into it.
17044 2004-01-02  Jean-Noel Guiheneuf  <jnoel@lotuscompounds.com>
17046         * src/Makefile.am: Added search-replace_backend.[ch]
17047         Removed: find_text.[ch], find_in_files.[ch], find_in_files_cbs.[ch],
17048         find_replace.[ch]
17049         * anjuta.glade, src/search-replace.c, src/search-replace.h,
17050         src/search-replace_backend.c, src/search-replace_backend.h,
17051         src/mainmenu_callbacks.c, src/mainmenu_callbacks.h,
17052         src/anjuta.c, src/anjuta.h, src/project_dbase.c, src/project_dbase.h,
17053         src/toolbar_callbacks.c
17054         * The advanced Search/Replace functionality now replaces the older
17055         Find/Replace stuff.
17056         * The Search/Replace functionality can be interrupted during a long
17057         Search/Replace;
17058         
17059 2003-12-11  Naba Kumar  <naba@gnome.org>
17061         * configure.in: Removed libegg flags from ANJUTA_FLAGS.
17062         * libegg/toolbar/Makefile.am, libegg/menu/Makefile.am: Fixed linking
17063         errors.
17064         * Makefile.am, libanjuta/*: Added new module.
17065         * src/Makefile.am: Fixed linking error.
17066         * src/watch_cbs.c: Debugger clean up.
17067         * configure.in: Added libanjuta-2.0.pc
17069         * configure.in, libanjuta/Makefile.am,
17070         (new) libanjuta/libanjuta.pc.in, (rm) libanjuta-2.0.pc.in: Used
17071         libanjuta instead.
17073 2003-12-11  Naba Kumar  <naba@gnome.org>
17075         Patch from: Jean-Noel Guiheneuf   <jnoel@saudionline.com.sa>
17077         * anjuta.glade, src/Makefile.am, src/aneditor.cxx, src/aneditor.h,
17078         src/anjuta-tools.c, src/anjuta.c, src/anjuta.h, src/cvs.c,
17079         src/mainmenu_callbacks.c, src/memory.c, src/search-replace.c,
17080         src/text_editor.c, src/text_editor.h, (new) src/file.[c,h]:
17081         The user can now give a name at the creation of a new file and
17082         insert automatically (user choice) header, gpl notice, header
17083         template. The file extension is added automatically according
17084         to the selected type of file. The various insert functions have
17085         been moved from mainmenu-callback.c to file.c. The cursor is now
17086         moved after an insert operation. Removes also useless code in
17087         memory.c and search-replace.c
17088         
17089 2003-12-11  Pavol Bosik  <Pavol.Bosik@siemens.com>
17091         * src/attach_process.c, src/attach_process.h, anjuta/anjuta.glade:
17092         sortable headers, process tree, removal of path and process params
17093         * src/debugger.c, src/debugger.h, anjuta/src/aneditor.cxx,
17094         anjuta/src/mainmenu_callbacks.c, anjuta/src/watch_cbs.c:
17095         code cleanup
17097 2003-12-10  Naba Kumar  <naba@gnome.org>
17099         * Merged changes from cvs branch ANJUTA_1_2_0 (tag: MERGE_LEVEL_3)
17100         
17101 2003-11-30  Abel Cheung  <maddog@linux.org.hk>
17103         * configure.in: Added "cs" "mk" "sr" "sr@Latn" to ALL_LINGUAS.
17105 2003-11-28  Naba Kumar  <naba@gnome.org>
17107         * Merged changes from cvs branch ANJUTA_1_2_0 (tag: MERGE_LEVEL_2)
17108         
17109         * manuals/de/*: Added german translation docs.
17110         
17111         * configure.in, Makefile.am, src/Makefile.am,
17112         libegg/*/*: Added libegg library.
17113         
17114         * src/anjuta.ui, src/Makefile.am: Fixed UI file and its
17115         installation directory.
17116         
17117         * src/text_editor_cbs.c: Fixed closing of file.
17119 2003-09-14  Hasbullah Bin Pit <sebol@ikhlas.com>
17120                                                                                 
17121         * configure.in: Added 'ms' (Malay) to ALL_LINGUAS.
17123 2003-09-05  Naba Kumar  <naba@gnome.org>
17125         * src/Makefile.am, src/anjuta.c, src/anjuta.h, src/anjuta_gui.c,
17126         src/controls.c, src/controls.h, src/mainmenu_callbacks.c,
17127         src/mainmenu_callbacks.h, src/preferences.c, src/preferences.h,
17128         src/project_dbase.c, src/resources.c, src/toolbar_callbacks.c,
17129         src/toolbar_callbacks.h, configure.in, anjuta.glade, anjuta.prj,
17130         anjuta_dialogs_strings.c, (new) src/anjuta-actions.h,
17131         (new)src/anjuta-stock.h, (new) src/anjuta-ui.[c,h],
17132         (new) src/anjuta.ui: Implemented UI (menus and toolbars) merging
17133         using libegg. Initial commit -- compiles but is not complete.
17135 2003-08-08  Abel Cheung  <maddog@linux.org.hk>
17137         * anjuta.glade, anjuta_dialog_strings.c: Fix typo. (#107513)
17139 2003-06-04  Abel Cheung  <maddog@linux.org.hk>
17141         * configure.in: Removed "ta" from ALL_LINGUAS.
17143 2003-05-16  Jordi Mallach  <jordi@sindominio.net>
17145         * configure.in (ALL_LINGUAS): Added "ca" (Catalan).
17147 2003-05-16  Danilo Šegan  <dsegan@gmx.net>
17149         * configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.
17151 2004-04-24  Andras Timar  <tmar@gnome.hu>
17153         * configure.in: Added hu to ALL_LINGUAS.
17155 2004-04-14  Naba Kumar  <naba@gnome.org>
17157         * src/Makefile.am, printing/Makefile.am,
17158         tagmanager/Makefile.am, launcher/Makefile.am: Enabled deprecated code
17159         because we are still using GtkCombo and build breaks with gtk-2.4.
17160         
17161 2004-04-13  Naba Kumar  <naba@gnome.org>
17163         * NEWS: Updated.
17164         * anjuta.spec.in: Fixed build error.
17165         * po/POTFILES.in: Updated.
17166         * manuals/C/anjuta-advanced-tutorial/Makefile.am: Fixed build error.
17168 2004-04-11  Naba Kumar  <naba@gnome.org>
17170         * NEWS: Updated.
17171         * AUTHORS: Updated.
17172         * configure.in: Added ga in ALL_LINGUAS.
17173         * ChangeLog: Fixed dates.
17174         
17175 2004-04-09  Naba Kumar  <naba@gnome.org>
17177         * src/print.c: Fixed buffer styling bug when printing with
17178         selection.
17180         * data/properties/anjuta.properties: Defined only one base font and
17181         used courier instead of lucidatypewriter, because most newer systems are
17182         unlikely to have it (bug #885023, #925956, #890473).
17183         
17184         * configure.in, src/getline.c, src/compiler_options.c: Fixed compiler
17185         warning.
17186         
17187         * src/an_file_view.c: Fixed possible crash bug.
17189 2004-04-07  Naba Kumar  <naba@gnome.org>
17191         * src/anjuta.c: Use _exit() instead of exit() (or gtk_quit() or
17192         gtk_main_quit() etc..), so that atexit() functions are not called
17193         (which is apparently done to free up memory and we don't need to
17194         do that at this point). Incidentally, something also happens in the
17195         atexit call which freezes the UI for far too long when the application
17196         exits and we want to avoid that..
17197         * src/glade_iface.c: Fixed compiler warning.
17198         
17199 2004-04-06  Naba Kumar  <naba@gnome.org>
17201         * src/project_dbase_gui.c: Fixed errors.
17203         * src/registers_gui.c: Fixed possible crash bug.
17204         * src/signals_cbs.[c,h], src/signals_gui.c: Removed.
17205         * src/signals.[c,h]: Used tree view and glade file for dialog.
17206         * src/Makefile.am, src/about.c, src/an_file_view.c,
17207         src/an_symbol_view.c, src/anjuta-plugins.c, src/anjuta-tools.c,
17208         src/anjuta.c, src/anjuta_cbs.c, src/anjuta_gui.c, src/anjuta_info.c,
17209         src/appwiz_page1.c, src/appwiz_page2.c, src/appwiz_page3.c,
17210         src/appwiz_page4.c, src/appwizard_gui.c, src/breakpoints.c,
17211         src/commands.c, src/compatibility_0.c, src/compiler_options.c,
17212         src/cvs.c, src/cvs_cbs.c, src/cvs_gui.c, src/debug_tree.c,
17213         src/debugger.c, src/dnd.c, src/file.c, src/fileselection.c,
17214         src/glade_iface.c, src/goto_line.c, src/help.c, src/launcher.c,
17215         src/launcher.h, src/main.c, src/main_menubar.c,
17216         src/mainmenu_callbacks.c, src/memory.c, src/message-manager-dock.c,
17217         src/message-manager-private.cc, src/message-manager.cc,
17218         src/preferences.c, src/project_config.c, src/project_dbase.c,
17219         src/project_dbase_gui.c, src/project_import.c, src/project_import_cbs.c,
17220         src/project_import_gui.c, src/registers.c, src/registers_cbs.c,
17221         src/registers_cbs.h, src/registers_gui.c, src/resources.c,
17222         src/search-replace.c, src/search-replace_backend.c,
17223         src/search_incremental.c, src/search_preferences.c,
17224         src/sharedlib.c, src/sharedlib_gui.c, src/signals.c,
17225         src/signals.h, src/signals_cbs.c, src/signals_cbs.h,
17226         src/signals_gui.c, src/source.c, src/src_paths.c,
17227         src/stack_trace.c, src/start-with.c, src/style-editor.c,
17228         src/support.c, src/text_editor.c, src/text_editor_cbs.c,
17229         src/text_editor_gui.c, src/text_editor_menu.c, src/toolbar.c,
17230         src/toolbar_callbacks.c, src/watch_cbs.c, src/watch_cbs.h,
17231         src/watch_gui.c, src/widget-registry.c, src/wizard_gui.c,
17232         tagmanager/Makefile.am, scintilla/include/SString.h,
17233         widgets/Makefile.am, widgets/gnomefilelist.c:
17235         Removed all deprecated codes and substituted
17236         with newer APIs. Fixed some possible crash bugs where cell renderers
17237         were being shared.
17238         
17239         * scintilla/patches/scintilla-minor.patch: Minor patch.
17241 2004-04-06  Naba Kumar  <naba@gnome.org>
17243         * src/project_dbase.c, src/project_dbase_gui.c: Refreshes the project
17244         tree after all the files have been added (and not everytime a file
17245         is added in the project). Also fixed some memory corruption
17246         (possibly bug #900478).
17247         
17248         * src/anjuta.c, src/anjuta.h, src/anjuta_cbs.c, src/dnd.c,
17249         src/dnd.h, src/executer.c, src/gnome_project.c, src/main_menubar.c,
17250         src/mainmenu_callbacks.c, src/project_dbase.c, src/project_dbase.h,
17251         src/project_dbase_gui.c, src/source.c, src/text_editor.c,
17252         src/text_editor.h, src/utilities.c, src/utilities.h: Used 'const'
17253         qualifier wherever appropriate.
17255 2004-04-05  Naba Kumar  <naba@gnome.org>
17257         * src/launcher.[h,c], src/debugger.c: Added a method in launcher to 
17258         switch terminal echo on/off. Debugger requires it off, while the
17259         rest requires it on.
17261         * src/search-replace.c: sets search direction and action (in addtion
17262         to target) for find in files.
17263         
17264 2004-04-02  Naba Kumar  <naba@gnome.org>
17266         * src/mainmenu_callbacks.c: Sets filename during save of new files.
17268         * src/project_dbase.c, src/debugger, src/an_file_view.c,
17269         src/an_symbol_view.c: Added an gtk events loop for
17270         displaying project loading status (for loading large projects) and
17271         debugger program starting ... just to give an impression of fastness :-).
17273         * configure.in, anjuta.prj: Bumped version to 1.2.2.
17275         * src/an_symbol_view.c, src/an_file_view.c: Apperantly, fixed a
17276         crash bug, which occurs when opening and closing a large project
17277         repeatedly.
17278         
17279         * src/attach_process.c: Fixed a comiple error for old gcc.
17280         
17281         * src/launcher.c: Prints proper error message when launcher child
17282         could not be executed and exits properly. Fixed a crash
17283         bug (bug #926606).
17284         
17285         * src/resources.c, src/utilities.c, src/glade_iface.c,
17286         src/debugger.c, src/attach_process.c: Properly exits forked children
17287         when they could not be executed.
17288         
17289 2004-04-01  Naba Kumar  <naba@gnome.org>
17291         * src/search-replace.c: Fixed a crash bug (bug #921893).
17293 2004-03-31  Naba Kumar  <naba@gnome.org>
17295         * anjuta.glade: Added a note on compiler options dialog ->support
17296         dialog telling that supports are only available for file mode.
17298         * src/anjuta.[c,h], src/project_dbase.[h,c], src/main.c,
17299         src/anjuta_cbs.c:
17300         Improved shutdown time delay by bypassing project closing
17301         and unloading plugins.
17303         * src/build_file.c, data/properties/anjuta.properties: Added a property
17304         to toggle on/off for going to first error automatically.
17306 2004-03-31  Pavol Bosik <Pavol.Bosik@siemens.com>
17308         * src/debugger.c: fixed core file loading
17309         * src/aneditor.cxx, scintilla/include/SString.h: fixed HANGUP bug
17310         for long lines (bugs #700968 and #911376)
17311         * scintilla/ScintillaGTK.cxx, scintilla/PlatGTK.cxx: partially fixed bug
17312         #917982.
17313         * src/anjuta.c: Focuses current AnEditor correctly.
17315 2004-03-30  Naba Kumar  <naba@gnome.org>
17317         * THANKS, anjuta.prj: Removed and moved all credits to AUTHORS file.
17318         * AUTHORS: Updated with all contributors names.
17319         * NEWS: Updated.
17320         * src/about.c: Reads contributors names from AUTHORS file.
17321         * manuals/C/anjuta-manual/authors.xml: Points to online
17322         contributors list.
17323         
17324 2004-03-29  Naba Kumar  <naba@gnome.org>
17326         * data/properties/ada.properties: Fixed syntax colors. Patch
17327         from Gabriel Rossetti <gabriel.rossetti _at_ eivd.ch>
17328         (bug #923474).
17330         * src/source.c, src/gnome_project.c, src/appwizard_cbs.c,
17331         src/appwiz_page2.c:     Correctly defines PACKAGE_DATA_DIR for
17332         generated projects, so that their pixmap files are
17333         found properly (bug #919903).
17334         
17335         * configure.in, src/main.c: Defines SYSTEM_DATA_DIR for
17336         anjuta.
17338         * src/source.c: Installs .glade file of libgllade
17339         projects in $(datadir)/$(package)/glade (part of bug #861038).
17340         
17341         * src/compiler_options.c: Fixed 'remove' and 'clear' of Defines list
17342         in compiler options (bug #883837).
17343         
17344         * src/launcher.c: Disabled pty terminal echo. Correctly prompts
17345         for passwords (eg. root install and ssh cvs access). Fixed Bug #894533.
17346         
17347 2004-03-29  Pavol Bosik <Pavol.Bosik@siemens.com>
17349         * anjuta/src/search-replace.c: fixed another crash bug in
17350         "Find Usage"
17351         * anjuta/src/debugger.c: wrong breakpoint condition gives error message,
17352         breakpoint property fix
17354 2004-03-29  Naba Kumar  <naba@gnome.org>
17356         * src/main_menubar_def.h, configure.in, manuals/C/Makefile.am,
17357         (new) manuals/C/anjuta-advanced-tutorial/*:
17358         Added menu entry for 'Anjuta Advanced Tutorial'
17359         written by Olivier Pinçon  <opincon _at_ wanadoo.fr>.
17361 2004-03-28  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
17362         
17363         * src/fileselection.[ch], src/mainmenu_callbacks.c:
17364         Fixed bug #908941  ('Open' starts in wrong directory)
17365         
17366 2004-03-26  Naba Kumar  <naba@gnome.org>
17368         * anjuta.h, src/message-manager-private.[h,cc]: Fixed
17369         compile error and bug #905738 with terminal.
17371         * src/search_incremental.c, src/register.c, src/sharedlib.c,
17372         src/search-replace.[h,c], src/search_incremental.[h,c],
17373         src/search_preferences.h, src/utilities.c, src/anjuta.c,
17374         src/text_editor.[c,h]: Fixed compiler warnings.
17375         
17376         * src/search-replace.c: Fixed a memory corruption (possible
17377         fix for bug #921893, but not yet confirmed).
17378         
17379         * src/launcher.c, src/glade-iface.c, src/project_dbase.c,
17380         src/executer.c, src/utilities.c, src/utilities.h, src/text_editor.c,
17381         src/anjuta-tools.c, src/message-manager-private.[h,cc]: Fixed a bug where
17382         SIGCHLD was overwritten by gnome_execute_shell() - bug #905738.
17384 2004-03-25  Naba Kumar  <naba@gnome.org>
17386         * src/attach_process.c, anjuta.glade, anjuta_dialogs_strings: Fixed a
17387         crash bug with attach process dialog and made the dialog closable
17388         with 'esc'.
17389         
17390         * src/breakpoints.c: Fixed bug #895536 (breakpoint glyphs do not
17391         always display within the margin.)
17392         
17393         * src/debugger.c: Fixed a typo (detele -> delete) which deletes
17394         the old breakpoint when it's properties are updated
17395         (creating a new updated one).
17396         
17397 2004-03-25  Pavol Bosik <Pavol.Bosik@siemens.com>
17399         * src/aneditor.cxx, src/aneditor.h: fixed calltips
17400         displayed for wrong file.
17401         * src/breakpoints.c: conditional breakpoints
17402         * src/controls.c: BUG #912618 - "Save all" for 1 file opened +
17403         "Find in Files..." disabling policy
17405 2004-03-24  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
17407         * src/build_file.c: Fixed bug #874380
17408         Goto the first error if it exists.
17410 2004-03-24  Naba Kumar  <naba@gnome.org>
17412         * src/anjuta.c: Fixed to get correct child exit status
17413         using mask (bug #905738).
17414         
17415         * anjuta.glade, anjuta_dialog_strings.c, src/file.c:
17416         Aligned buttons in the New file dialog,
17417         set default response to OK, entry box activates default response,
17418         ESC closes dialog and hides on delet_event.
17420 2004-03-19  Naba Kumar  <naba@gnome.org>
17422         * src/project_dbase.c: fixed bug #893400 ("Remove file" in project
17423         tree).
17425 2004-03-17  Pavol Bosik <Pavol.Bosik@siemens.com>
17427         * src/search-replace.c: fixed "Find Usage" crash when no project open
17429 2004-03-17  Naba Kumar  <naba@gnome.org>
17431         * data/autogen.sh.*, data/macros/autogen.sh, data/macros2/autogen.sh:
17432         Fixed the generated projects to read m4 directory if the directory
17433         exists (bug #917781).
17434         
17435 2004-03-12  Naba Kumar  <naba@gnome.org>
17437         * HACKING: Fixed formatting for auto-parsing.
17439 2004-03-10  Pavol Bosik <Pavol.Bosik@siemens.com>
17440         
17441         * src/anjuta.c, src/search-replace.c, src/search-replace.h: "Find Usage"
17442         rework (bug #890609)
17444 2004-03-10  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
17445         
17446         * src/aneditor.cxx: Fixed bug #910097 (Insert comment)
17448 2004-03-08  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
17449         
17450         * src/search-replace.c: "Replace All" in not opened files (All Project files, File List ...).
17451         * src/search_preferences.c: Fixed typo.
17452         
17453 2004-02-26  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
17454         
17455         * src/search-replace.c: improved Search&Replace
17456         For the moment "Replace All" does not work with non opened files
17457         but Anjuta should not crash now ! ??? 
17458         
17459 2004-02-26  Naba Kumar  <naba@gnome.or>
17461         * src/source.c: Fixed to pass cflags correctly
17462         and suppress the automake's default cflags.
17463         bug #816130, #801056, #782798, #773459
17464         
17465         * data/properties/anjuta.properties: Do not defualt to -k make option.
17466         bug #875486.
17468         * manuals/C/anjuta-manual/build.xml: Changed build shortcut to F11.
17469         bug #877683.
17470         
17471         * src/registers_gui.c: Fixed a runtime warning. bug #900087.
17472         
17473         * src/message-manager-private.cc: Disabled debug messages.
17474         
17475 2004-02-25  Adam Weinberger  <adamw@FreeBSD.org>
17477         * configure.in: Added 'en_CA' (Canadian English) to ALL_LINGUAS.
17479 2004-02-25  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
17480         * anjuta.glade, src/search-replace.c:
17481         Reduced Search&Replace dialog, bug #902636.
17482         
17483 2004-02-23  Naba Kumar  <naba@gnome.or>
17485         * manuals/C/anjuta-tutorial/anjuta-tutorial.xml: Fixed a typo
17486         (bug #866143).
17488 2004-02-24  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
17489         
17490         * src/search_incremental.c: Fixed bug #900903
17492 2004-02-23  Pavol Bosik <Pavol.Bosik@siemens.com>
17493         
17494         * src/defaults.c, src/message-manager.cc, src/project_dbase.c,
17495         src/anjuta.c: Fixed bugs #890609 and #890609
17497 2004-02-23  Naba Kumar  <naba@gnome.or>
17499         * src/message-manager.cc: Disconnects menuitem signal properly.
17500         Fixed bug #901723.
17501         
17502         * src/mainmenu_callbacks.c: Do not reload new files. Fixed
17503         bug #900897.
17504         
17505 2004-02-20  Naba Kumar  <naba@gnome.org>
17507         * src/message-manager-private.[c,h]: Implemented keypress
17508         event for the terminal and resets it when ctrl c or ctrl d
17509         is pressed. But it doesn't seem to be working on keypress.
17510         Added a workaround to let it work on key release instead.
17511         (bug #878357).
17512         
17513         * src/search-replace: Fixed compiler warnings.
17514         
17515 2004-02-18  Franco Catrin  <fcatrin@tuxpan.com>
17517         * src/mainmenu_callbacks.c, widgets/gnomefilelist.c:
17518         Use defined file name when saving new files (fixes bug #898105)
17519         Don't change filename when clicking on a directory
17520         
17521         BTW: Happy birthday to me :-)
17522         
17523 2004-02-18  Jean-Noel Guiheneuf <guiheneuf.jean-noel@wanadoo.fr>
17524         
17525         * src/search-replace.c: Fixed a crash bug 
17526         Crash on Find & Replace (#887833)
17527         
17528 2004-02-18  Naba Kumar  <naba@gnome.org>
17530         * src/executer.c: Fixed a crash bug.
17531         
17532         * widgets/gnomefilelist.[h,c], src/fileselection.[h,c],
17533         src/debugger.c, project_database_gui.c, src/anjuta.[h,c],
17534         src/anjuta_cbs.c, src/project_database.h: Subclasses GtkDialog
17535         instead of GtkWindow (Part of bug #671596).
17536         
17537         * anjuta.glade, src/breakpoints.c, src/anjuta_info.c,
17538         src/registers_gui.c, src/registers_cbs.[h,c],
17539         src/sharedlib_gui.c, src/sharedlib_cbs.[c,h],
17540         src/signals_cbs.[h,c], src/signals_gui.c, src/executer.c,
17541         src/compiler_options.c, src/an_file_view.c, start-with.c,
17542         src/anjuta-tools.c, help.c:
17544         Added "close" buttons on all
17545         dialogs (HIG) and fixed to properly response to ESC close
17546         (Part of bug #671596).
17548         * src/launcher.c: Disabled printing of long debug lines.
17549         
17550         * src/utilities.h: Fixed a compiler warning.
17551         
17552 2004-02-17  Franco Catrin  <fcatrin@tuxpan.com>
17554         * src/anjuta.c: "Save all" action now asks for filenames for new files
17555         (fixes bug #898111)
17557 2004-02-16  Franco Catrin  <fcatrin@tuxpan.com>
17559         * anjuta.glade, src/text_editor.c:
17560         Fixed a typo in Hello World indentation style 
17561         Fixed misuse of translated strings when looking for style
17562         This entry fixes bug #876037
17564 2004-02-16  Naba Kumar  <naba@gnome.org>
17566         * src/utilities.c: Fixed return value when dest file could
17567         not be created.
17569         Patch from: Dennis Moehlmann  <darksaidin@users.sourceforge.net>
17570         * src/utilities.[c,h]: Removed 'cmp' dependency and used
17571         internal function to compare files.
17572         
17573 2004-02-14  Franco Catrin  <fcatrin@tuxpan.com>
17575         * src/message-manager-private.cc:
17576         Set bold color as foreground color in terminal
17577         (fixes bug #864924)
17579         * src/aneditor.cxx:
17580         Use font style defined for message indicators in
17581         preferences/messages
17582         (fixes bug #885032)
17584 2004-02-13  Franco Catrin  <fcatrin@tuxpan.com>
17586         * src/build_project.c:
17587         Use build.silent option from preferences (fixes bug #895726)
17588         
17589 2004-02-11  Robert Sedak  <robert.sedak@sk.htnet.hr>
17591         * configure.in: Added "hr" (Croatian) to ALL_LINGUAS.
17593 2004-01-27  Johannes Schmid <jhs@cvs.gnome.org>
17594         
17595         Patch from Massimo Corà <maxcvs@email.it>:
17596         * scintilla/LexCPP.cxx: Support "///" comments
17598 2004-01-18  Jean-Noel Guiheneuf <jnoel@lotuscompounds.com>
17599         * src/Makefile.am, src/anjuta.c, src/search-replace.c,
17600         src/search_replace.h, src/search-replace_backend.h
17601         anjuta.glade
17602         
17603         * Added: src/search_preferences.c, src/search_preferences.h
17604         Allow the user to save search/replace settings and give them names.
17606 2004-01-16  Johannes Schmid <jhs@cvs.gnome.org>
17607         
17608         * scintilla/Makefile.am, scintilla/scintilla_marshal.[c/h/list],
17609         scintilla/ScintillaGTK.cxx:
17610         Hopefully fixed AMD 64 crash bug by using correct marshaller
17612 2004-01-16  Franco Catrin L. <fcatrin@tuxpan.com>
17614         * src/preferences.c: Save GtkOptionMenu properties properly
17615         * src/text_editor.c: Fixes editor mispell of fold.symbols property
17617 2004-01-15  Johannes Schmid <jhs@cvs.gnome.org>
17618         
17619         * configure.in, src/Makefile.am, scintilla/Makefile.am:
17620         Fixed libiconv issue
17621         * NEWS: Updated
17623 2004-01-15  Johannes Schmid <jhs@cvs.gnome.org>
17624         
17625         Patch from Pavol Bosik <Pavol.Bosik@siemens.com>:
17626         *  src/attach_process.c, src/debugger.c, src/registers.c/h,
17627         src/registers_cbs.c, src/registers_gui.c, src/search-replace.c
17628         src/sharedlib.c, src/sharedlib.h, src/sharedlib_cbs.c
17629         src/sharedlib_gui.c:
17630         Debugger speed-up, replaced deprecated GtkCList
17632 2004-01-14  Franco Catrin L.<fcatrin@tuxpan.com>
17634         * src/text-editor.c: Use stock gtk+ close button for editor tabs
17636 2004-01-13  Laurent Dhima  <laurenti@alblinux.net>
17638         * configure.in: Added "sq" to ALL_LINGUAS.
17640 2004-01-12  Changwoo Ryu  <cwryu@debian.org>
17642         * configure.in: Added "ko" to ALL_LINGUAS.
17644 2004-01-09  Jean-Noel Guiheneuf <jnoel@lotuscompounds.com>
17646         * src/toolbar.c, src/toolbar_callbacks.c, src/toolbar_callbacks.h,
17647         src/search_incremental.c, src/search_incremental.h: 
17648         Search_incremental code cleanup
17650 2004-01-08  Jean-Noel Guiheneuf <jnoel@lotuscompounds.com>
17652         * scintilla/*/*: Updated scintilla to CVS
17653         * Added: scintilla/Readme.sync
17654         * scintilla/Document.cxx, scintilla/Editor.cxx, scintilla/KeyWords.cxx,
17655         scintilla/LexMatlab.cxx, scintilla/LexOthers.cxx, scintilla/LexRuby.cxx,
17656         scintilla/LexVB.cxx, scintilla/ScintillaBase.cxx, scintilla/ScintillaBase.h,
17657         scintilla/ScintillaGTK.cxx,
17658         scintilla/include/SciLexer.h, scintilla/include/Scintilla.h,
17659         scintilla/include/Scintilla.iface: Updated.
17661 2004-01-07  Jean-Noel Guiheneuf <jnoel@lotuscompounds.com>
17663         * search-replace_backend.[ch], search_incremental[ch]: Added
17664         
17665         * find_text.[ch], find_in_files.[ch], find_in_files_cbs.[ch],
17666         find_replace.[ch]: Removed.
17667         
17668         * anjuta.glade, src/search-replace.c, src/search-replace.h,
17669         src/search-replace_backend.c, src/search-replace_backend.h,
17670         src/mainmenu_callbacks.c, src/mainmenu_callbacks.h,
17671         src/anjuta.c, src/anjuta.h, src/project_dbase.c, src/project_dbase.h,
17672         src/toolbar_callbacks.c, src/Makefile.am: The advanced Search/Replace
17673         functionality now replaces the older Find/Replace stuff. The Search/Replace
17674         functionality can be interrupted during a long Search/Replace.
17676 2004-01-02  Dan Elphick <dre00r@ecs.soton.ac.uk>
17678         * widgets/gnomefilesel.c: Fix use of previously freed memory on
17679         selecting ".." and "." from file selector. 
17681 2004-01-02  Johannes Schmid <jhs@cvs.gnome.org>
17683         * anjuta.glade: Fixed wrong "fold.symbols" property
17685 2003-12-31  Johannes Schmid <jhs@cvs.gnome.org>
17686         
17687         * src/project_dbase_gui.c: Alphabetical order ;-)
17688         * src/compiler_options.c: Fixed bug #867539
17689         * src/launcher.c: Workaround for bugs #864922, #849928,
17690         #846386 and #845782: The launcher no longer hangs but does
17691         not get the exit status correctly sometimes.
17692         * Changes suggested by Bosik are obviously already in without
17693         any Changelog entry (ClsGen.c, project_dbase_gui.c)
17694         * NEWS, README, anjuta.prj, configure.in: 
17695         Changed version to 1.2.1
17696         
17697         Patch from Andreas Volz <andreas99@users.sourceforge.net>:
17698         * anjuta_dialogs_strings.c, anjuta.glade: 
17699         Fixed bugs #860906, #859329
17700         
17701         Patch from grzegol@pld-linux.org
17702         * anjuta.desktop.in.in: Fixed bug #858993 (Follow 
17703         freedesktop.org standard)
17705 2003-12-31  Johannes Schmid <jhs@cvs.gnome.org>
17706         
17707         Patch from Stefano Vallarino <stevalla@libero.it>:
17708         * src/source.[c/h]: Fixes cpp sample file to conform to 
17709         ISO/IEC 14882, C++-Standard 
17711 2003-12-31  Dan Elphick  <dre00r@ecs.soton.ac.uk>
17713         Review by Johannes Schmid <jhs@cvs.gnome.org>
17714         * src/build_file.[ch]: Add build_execute_shell_command which executes the
17715         command using sh -c.
17716         * src/compile.c: Use build_execute_shell_command when compiling single
17717         files.
17719 2003-12-31  Johannes Schmid <jhs@cvs.gnome.org>
17720         
17721         Patch from Pavol Bosik  <Pavol.Bosik@siemens.com>:
17722         * src/breakpoints.c: Code cleanup, workaroud for possible 
17723         launcher bug
17724         * src/src_paths.c: Update debugger dirs on directory change
17726 2003-12-31  Pavol Bosik  <Pavol.Bosik@siemens.com>
17728         Review by Johannes Schmid <jhs@cvs.gnome.org>
17729         * src/attach_process.c, src/attach_process.h, anjuta.glade:
17730         sortable headers, process tree, removal of path and process params
17731         * src/debugger.c, src/debugger.h, anjuta/src/aneditor.cxx,
17732         anjuta/src/mainmenu_callbacks.c, anjuta/src/watch_cbs.c:
17733         code cleanup
17735 2003-12-31  Johannes Schmid <jhs@cvs.gnome.org>
17736         
17737         Patch from: Jean-Noel Guiheneuf <jnoel@lotuscompounds.com>
17738         * anjuta.glade, src/mainmenu_callbacks.c, src/file.[c/h]:
17739         Add a dialog for "New file" which lets the user set the 
17740         filename and to add copyright/header templates to the file
17741         * Review: Changed function names to contain modules name (file_)
17743 2003-12-09  Naba Kumar  <naba@gnome.org>
17745         * setup-gettext: Fixed a typo.
17746         * scintilla/Makefile.am: Fixed a build error for SMP systems.
17748 ---- Released version 1.2.0 ---
17750 2003-12-08  Naba Kumar  <naba@gnome.org>
17752         * src/preferences.c: Fixed compiler error.
17753         * global_tags/create_global_tags.sh: Fixed to install properly
17754         even when system.tags could not be generated.
17755         * NEWS: Updated.
17757 2003-12-06  Naba Kumar  <naba@gnome.org>
17759         * setup-gettext: Fixed to not generate intl directory with gettextize.
17761         Patch from:  Karl-Heinz Brünen  <k.bruenen@eprosoft.de>
17762         * src/anjuta.c: Filters out unnecessary files from find in files
17763         command.
17764         
17765         * NEWS: Updated.
17766         * manuals/C/anjuta-tutorial/anjuta-tutorial.xml: Fixed tutorial
17767         * src/widzard_gui.c: Added horiz scrollbar for desc text.
17768         
17769 2003-12-04  Naba Kumar  <naba@gnome.org>
17770         
17771         * src/gnome_project.c: Enables debug and optimization flags for
17772         new projects.
17773         
17774         Patch from: Pavol Bosik  <Pavol.Bosik@siemens.com>
17775         
17776         * src/project_dbase_gui.c: combined header and c files for
17777         file selector.
17778         
17779         * plugins/class-gen/clsGen.c: Fixed file name typo in generated file.
17780         * data/properties/pascal.properties: Fixed pascal syntax highlighting.
17782 2003-11-30  Abel Cheung  <maddog@linux.org.hk>
17784         * configure.in: Added "cs" "mk" "sr" "sr@Latn" to ALL_LINGUAS.
17786 2003-11-29  Naba Kumar  <naba@gnome.org>
17788         * configure.in, anjuta.prj: Bumped version to 1.2.0.
17789         * NEWS: Updated.
17791 2003-11-28 Johannes Schmid <clubfan@users.sourceforge.net>
17792         
17793         * src/main_menubar.c: Now files cannot be opened twice in recently
17794         file menu
17796 2003-11-27  Pavol Bosik  <Pavol.Bosik@siemens.com>
17798         * src/breakpoints.c: Fixed parsing of gdb output for breakpoints in C++
17800 2003-11-28  Naba Kumar  <naba@gnome.org>
17802         * scintilla/*/*: Updated scintilla to CVS (2003-11-28)
17803         
17804 2003-11-27  Naba Kumar  <naba@gnome.org>
17806         * src/breakpoints.c, src/launcher.c, src/find_text.c,
17807         src/test_editor_cbs.c, src/signals_cbs.c: Fixed compiler warnings.
17808         
17809         * src/appwiz_page1.c, src/appwiz_page4.c, src/appwizard.[c,h],
17810         src/appwizard_gui.c, src/gnome_project.c, src/project_dbase.[c,h],
17811         src/project_import_gui.c, src/wizard_gui.[c,h]: Implemented a
17812         checkbox in project wizard (project options page) to enable/disable
17813         source code generation with glade(mm).
17814         
17815         * NEWS: Updated
17816         
17817 2003-11-19  Pavol Bosik  <Pavol.Bosik@siemens.com>
17819         * src/dnd.c: Opening files with special characters in the name.
17821 2003-11-20  Jordi Mallach  <jordi@sindominio.net>
17823         * configure.in (ALL_LINGUAS): Bah, "ca" (Catalan) has been missing for
17824         a long time.
17826 2003-11-18  Naba Kumar  <naba@gnome.org>
17828         * src/anjuta-tools.c, src/build_file.c, src/cvs.c, src/debugger.c,
17829         src/find_in_files.c, src/gnome_project.c, src/launcher.c,
17830         src/project_import.c, plugins/patch/patch-plugin.c:
17831         Fixed g_signal_diconnect calls to pass correct data.
17832         (Fixed possible crash in project imports).
17833         
17834         * NEWS: Updated.
17835         
17836 2003-11-18  Pavol Bosik  <Pavol.Bosik@siemens.com>
17838         Reviewed by Naba Kumar  <naba@gnome.org>
17839         * src/launcher.[h,c], src/debugger.c: Fixed encoding bug with GIOChannel
17840         and debugger. Sets default settings for pty in launcher.
17841         * data/gdb.init: Removed charset work around (now works with user's
17842         native charset)
17843         * src/debugger.c: Code cleanup. Removed duplicate call to 'info signals'.
17845 2003-11-18  Naba Kumar  <naba@gnome.org>
17847         * src/anjuta-encodings.c, src/preferences.c: Renamed all variable
17848         names of 'index' to 'idx'.
17849         
17850 2003-11-17  Naba Kumar  <naba@gnome.org>
17852         Patch from: arief_mulya  <arief_m_utama@telkomsel.co.id>
17853         * src/project_dbase.c: Prompts user for unsaved project files
17854         when project is closed.
17855         
17856 2003-11-16  Naba Kumar  <naba@gnome.org>
17858         Patch from: Marcin "Zenek" Jaskólski  <zenek@moo.pl>
17859         * src/appwizard_cbs.c, src/start-with.c: Fixed compiler errors with
17860         older gcc.
17861         
17862 2003-11-11  Johannes Schmid <clubfan@users.sourceforge.net>
17863         
17864         * src/anjuta.c: Fixed crash related to tag == NULL while 
17865         anjuta is exiting
17867 2003-11-11  Naba Kumar  <naba@gnome.org>
17869         * src/glade_iface.c: Avoids error conditions for glade or glademm not
17870         found. It simply doesn't generate the c/c++ codes and continues with
17871         just a warning.
17872         * NEWS: Updated.
17873         
17874 2003-11-10  Naba Kumar  <naba@gnome.org>
17876         * anjuta.glade, anjuta_dialogs_strings.c: Fixed typos in
17877         'Start with dialog'.
17879         * configure.in, manuals/Makefile.in, manuals/de/* (new): Added
17880         German translation of anjuta-tutorial.
17881         
17882         * src/launcher.c: Fixed an encoding bug with GIOChannels.
17883         * NEWS: Updated.
17885 2003-11-10  Jean-Noel Guiheneuf   <jnoel@saudionline.com.sa>
17887         * src/breakpoints.c, src/project_dbase.c, src/text_editor.c:
17888         Fixes the Bug #823249, Fixes the Bug #713229 When the user enables
17889         the syntax highlighting in Preferences, the automatic syntax
17890         highlighting is now selected. When the debugger is stopped and the
17891         breakpoints window not closed, the gtk_tree_view in this window is
17892         now made unsensitive.
17894 2003-11-07  Johannes Schmid  <clubfan@users.sourceforge.net>
17896         * src/preferences.h, src/preferences.c, anjuta.glade:
17897         Fixed translation bug in preferences by using GtkOptionMenu
17898         * anjuta.prj: Project version 1.1.98
17900 ---------------- Released version 1.1.98 ----------------
17902 2003-11-07  Naba Kumar  <naba@gnome.org>
17904         * anjuta.spec.in: Revived docs package and combined all docs into
17905         one package.
17906         * configure.in: Bumped version to 1.1.98 rc2
17907         * NEWS: Updated.
17908         * anjuta.spec.in: Fixed scrollkeepr-update command.
17909         * anjuta.spce.in: Fixed file permissions.
17911 2003-11-06  Naba Kumar  <naba@gnome.org>
17913         * src/mainmenu_callback.[c,h], src/main_menubar_def.h: Added help
17914         menus to activate anjuta helps.
17915         
17916         * manuals/C/anjuta-faqs/anjuta-faqs.sgml (removed),
17917         manuals/C/anjuta-faqs/anjuta-faqs.xml (added),
17918         manuals/C/anjuta-faqs/legal.xml (added),
17919         manuals/C/anjuta-faqs/Makefile.am,
17920         manuals/C/anjuta-faqs/anjuta-faqs-C.omf,
17921         manuals/C/anjuta-faqs/.cvsignore,
17922         manuals/C/anjuta-tutorial/anjuta-tutorial.sgml (removed),
17923         manuals/C/anjuta-tutorial/anjuta-tutorial.xml (added),
17924         manuals/C/anjuta-tutorial/legal.xml (added),
17925         manuals/C/anjuta-tutorial/Makefile.am,
17926         manuals/C/anjuta-tutorial/anjuta-tutorial-C.omf,
17927         manuals/C/anjuta-tutorial/.cvsignore,
17928         manuals/C/anjuta-manual/*.sgml (removed),
17929         manuals/C/anjuta-manual/*.xml (added),
17930         manuals/C/anjuta-manual/Makefile.am,
17931         manuals/C/anjuta-manual/anjuta-manual-C.omf,
17932         manuals/C/anjuta-manual/.cvsignore,
17933         manuals/C/topic.dat (removed), manuals/C/Makefile.am,
17934         manuals/ja/anjuta-faqs/anjuta-faqs.sgml (removed),
17935         manuals/ja/anjuta-faqs/anjuta-faqs-ja_JP.eucJP.omf (removed),
17936         manuals/ja/anjuta-faqs/anjuta-faqs-ja_JP.UTF-8.omf (added),
17937         manuals/ja/anjuta-faqs/anjuta-faqs.xml (added),
17938         manuals/ja/anjuta-faqs/legal.xml (added),
17939         manuals/ja/anjuta-faqs/Makefile.am,
17940         manuals/ja/anjuta-faqs/anjuta-faqs-C.omf,
17941         manuals/ja/anjuta-faqs/.cvsignore,
17942         manuals/ja/anjuta-manual/*.sgml (removed),
17943         manuals/ja/anjuta-manual/anjuta-manual-ja_JP.eucJP.omf (removed),
17944         manuals/ja/anjuta-manual/anjuta-manual-ja_JP.UTF-8.omf (added),
17945         manuals/ja/anjuta-manual/*.xml (added),
17946         manuals/ja/anjuta-manual/Makefile.am,
17947         manuals/ja/anjuta-manual/anjuta-manual-C.omf,
17948         manuals/ja/anjuta-manual/.cvsignore,
17949         manuals/ja/topic.dat (removed), manuals/ja/Makefile.am,
17950         manuals/sgmldocs.make (removed),
17951         manuals/xmldocs.make (added), manuals/omf.make (added),
17952         manuals/Makefile.am, configure.in, Makefile.am: Converted old sgml
17953         documentations to newer docbook xml documentations. Converted 
17954         Japanesh docs to UTF8 docs. Fixed installations. Update cvsignores.
17955         Enabled manulas installations.
17956         
17957         * gdl/.cvsignore, scintilla/.cvsignore, .cvsigore: Updated.
17959 2003-11-05  Naba Kumar  <naba@gnome.org>
17961         * data/gdb.init: Sets host's charset to ascii to solve debugger
17962         freeze up due to uninitialized strings in target program.
17964         * src/mainmenu_callbacks.c, src/watch_cbs.c, src/message-manager.[cc,h]:
17965         Fixed a crash bug with 'Add expression in watch'. Bug #822017
17966         
17967         * NEWS: Updated.
17968         
17969         Patch from: Bosik Pavol  <Pavol.Bosik@siemens.com>
17970         src/launcher.c: Turns off echo in spawned pty to fix debugger.
17972 2003-11-04  Naba Kumar  <naba@gnome.org>
17974         * scintilla/Makefile.am, widgets/Makefile.am: Fixed distribution
17975         problems.
17976         
17977         Patch from: Jean-Noel Guiheneuf <jnoel@saudionline.com.sa
17978         * src/aneditor.cxx, src/aneditor.h, src/controls.c, src/main_menubar.c,
17979         src/main_menubar.h, src/main_menubar_def.h, src/mainmenu_callbacks.c,
17980         src/mainmenu_callbacks.h: Added emacs style c/c++ custom indentation
17981         in file headers.
17982         
17983         * src/search-replace.c: Fixed infinite loop bug.
17984         * start-with.c: Fixed a crash bug with "Open last project".
17985         
17986         Patch from: Karl-Heinz Brünen  <k.bruenen@eprosoft.de
17987         * scintilla/Makefile.am: Fixed compiler option.
17988         
17989 2003-10-16  Naba Kumar  <naba@gnome.org>
17991         Patch from: Jean-Noel Guiheneuf <jnoel@saudionline.com.sa
17992         * src/text_editor.c: Fixed autoformat.
17993         
17994 2003-10-15  Naba Kumar  <naba@gnome.org>
17996         * src/anjuta_cbs.c: Used ALT+number for editor tab browsing, instead
17997         of CTRL+number.
17998         
17999 2003-10-09  Naba Kumar  <naba@gnome.org>
18001         * src/cvs_gui.c: Fixed a UI bug (hides the unwanted frame).
18002         
18003 2003-10-08  Naba Kumar  <naba@gnome.org>
18005         * src/source.c: Fixed a GETTEXT typo error.
18006         * anjuta.glade: Made 'Sorted in order you open them' default option
18007         for editor tabs.
18009         Patch from: Jean-Noel Guiheneuf  <jnoel@saudionline.com.sa>
18010         * anjuta.glade, data/properties/anjuta.properties:
18011         Fixed the freeze of the "Preferences" combos at the first Anjuta
18012         init is generated by:
18013                 - a not complete translation of preferences.c file
18014                 - a difference between 2 names in anjuta.glade and
18015                 anjuta.properties (arrows --> Arrows , bottom --> Bottom)
18016                 - the same name given to 3 combos (anjuta.glade).
18017                 
18018         * src/find_text.c: If the "whole document" mode is selected,
18019         a new search will select the next occurrence (Bug #764954).
18020         It is now possible to use the shortcuts to search next or previous
18021         occurrence even if the search dialog has the focus.     Bug #790318
18022         
18023         * src/main_menubar_def.h: "Select code block" shortcut; the new
18024         shortcut is now Alt+L instead of Alt+B (already used by _Build menu).
18025         (Bug #811016).
18027         Patch from: Richard Lee  <r.h.lee@comcast.net>
18028         * tagmanager/include/tm_tag.h, tagmanager/tm_tag.c,
18029         tagmanager/tm_workspace.c: The following is a patch to fix a
18030         seemingly random occurence where Anjuta would crash when a
18031         certain key was pressed.
18033 2003-09-29  Naba Kumar  <naba@gnome.org>
18035         * src/find_in_files.c: Ignores binary by default. Disabled the option
18036         of NOCVS search, because launcher does not use sh and hence can not
18037         pipe.
18038         
18039         * src/project_dbase.c, src/session.[h,c]: Fixed to save the
18040         "clean before build" state in project session and not in account session,
18041         otherwise the state gets reflected to other projects causing annoyance.
18042         
18043         * src/compiler_options.c: Fixed a bug where compiler options were always
18044         claimed 'modified'.
18046         * src/build_project.c, data/properties/anjuta.properties,
18047         src/commands.[h]: Fixed a bad bug where clean-before-build
18048         doesn't work.
18049         
18050         * scintilla/patches/research-cvs-nolog.diff,
18051         scintilla/patches/scintilla-ac-gtk2-port.diff,
18052         scintilla/patches/scintilla-ac-sort-fix.diff,
18053         scintilla-optimization.diff: Removed, because they are already in
18054         scintilla CVS.
18055         
18056         * scintilla/*/*: Update scintilla to current CVS (just after 1.55 release,
18057         2003-09-29).
18059         * scintilla/LexMPT.cxx, scintilla/LexMetapost.cxx, scintilla/LexTeX.cxx,
18060         scintilla/LexYAML.cxx: Added new scintilla lexers.
18061         
18062         * TODO, NEWS: Updated.
18064         Patch from: Jean-Noel Guiheneuf  <jnoel@saudionline.com.sa>
18065         * src/utilities.c: Fixed typo bugs.
18067 2003-09-26  Naba Kumar  <naba@gnome.org>
18069         * src/anjuta.c: Only connects to kernel SIGCHLD signal.
18070         * src/find_replace.c, src/find_text.c, src/mainmenu_callbacks.c,
18071         src/text_editor.[c,h], src/toolbar_callbacks.c: Added wrap in
18072         text_editor_find() and Fixed I-Search wrapping.
18073         * src/debugger.c: Fixed to pass a newline after a debugger
18074         command (which was broken since the launcher was refactored.
18075         (Pointed out by Bosik Pavol  <Pavol.Bosik@siemens.com>)
18077 2003-09-25  Naba Kumar  <naba@gnome.org>
18079         * src/toolbar_callbacks.c: Fixed start of incremental search.
18080         
18081         Patch from: Jean-Noel Guiheneuf  <jnoel@saudionline.com.sa>
18082         * src/controls.c, src/main_menubar.c, src/main_menubar.h,
18083         src/main_menubar_def.h, src/mainmenu_callbacks.c,
18084         src/toolbar_callbacks.c, src/toolbar.c: Added reverse search
18085         menu and implementation.
18087 2003-09-24  Pavol Bosik  <bosikp@frcatel.fri.utc.sk>
18089         Reviewed by 2003-09-24  Naba Kumar  <naba@gnome.org>
18090         * src/debug_tree.c, src/debug_tree.h: Fixed color of modified
18091         variables in Locals window.
18093 2003-09-24  Frederic RUAUDEL <grumz@users.sourceforge.net>
18095         Reviewed by 2003-09-24  Naba Kumar  <naba@gnome.org>
18096         * src/utilities.[ch] : Fix a tooltip bug in 
18097         anjuta_util_toolbar_append_stock(), the label appeared instead of
18098         the tooltip text. Remove label from arguments of the function
18099         because label is included in the stock icon data.
18100         * src/toolbar.c : Fix call to anjuta_util_toolbar_append_stock().
18101         * src/text_editor_gui.c : Fix call to anjuta_util_toolbar_append_stock().
18102         * FIXME: translation file should be updated because of label text removal.
18104 2003-09-24  Naba Kumar  <naba@gnome.org>
18106         * scintilla/PlatGTK.cxx: Fixed font setting in widget style.
18107         
18108         * src/launcher.[c,h], plugins/patch/patch-plugin.c, src/anjuta-tools.c,
18109         src/build_file.c, src/cvs.c, src/find_in_files.c, src/gnome_project.c,
18110         src/project-import.c, src/anjuta.c: Implemented buffered outputs for
18111         stdout and stderr. Also buffered output and check-for-password
18112         can be enabled/disabled. Added proper UTF8 handling. Fixed pty input
18113         with password prompts. Checkes for password prompts from all outputs.
18114         
18115         * src/utilities.[h,c]: Defined anjuta_util_convert_to_utf8() function
18116         which takes a string (which could be utf8 also) and converts into
18117         utf8 string.
18118         
18119         * src/main.c: Connects kernel signals after gnome_program_init().
18120         
18121         Patch from: Jean-Noel Guiheneuf  <jnoel@saudionline.com.sa>
18122         * src/message-manager.c: Fixed bug #787026 by converting the strings
18123         to proper UTF8.
18124         
18125 2003-09-22  Naba Kumar  <naba@gnome.org>
18127         * src/scintilla/patches/scintilla-ac-gtk2-port.diff,
18128         scintilla/PlatGTK.cxx: Ported autocomplete window to gtk2 by removing
18129         GtkCList and using GtkTreeView instead. Added the patch.
18130         * src/scintilla/patches/scintilla-ac-sort-fix.diff,
18131         scintilla/PlatGTK.cxx: Fixes sorting bug in AC.
18132         
18133 2003-09-19  Naba Kumar  <naba@gnome.org>
18135         * printing/print.c: Proper UTF8 printing support.
18136         * src/main.c: moved kernel signal connects at the
18137         end of application initialization.
18138         
18139 2003-09-18  Naba Kumar  <naba@gnome.org>
18141         * scintilla/*/*, src/scintilla/Makefile.am, src/Makefile.am,
18142         (new) lexers.make, (new) lexers: Update scintilla to latest
18143         scintilla CVS (2003-09-18), added new lexers, automated
18144         lexers makefiles sections and scintilla update. Added
18145         patches. Optimized pango rendering. Fixed a crash bug
18146         in scintilla.
18147         
18148         * (new) scintilla/patches/research-cvs-nolog.diff: Added
18149         patch to remove cvs log command from RESearch.cxx file.
18150         * scintilla/patches/scintilla-pango-always.diff:
18151         Fixed file name.
18152         * scintilla/RESearch.cxx: Removed spurious cvs log command
18153         and logs.
18154         * (new) scintilla/test-scintilla.cxx: A test file for scintilla.
18155         
18156         Patch from: Bosik Pavol <Pavol.Bosik@siemens.com>
18157         * src/dnd.c: Fixed a crash bug with DND.
18158         
18159 2003-09-15  Naba Kumar  <naba@gnome.org>
18161         * src/text_editor.[c,h], src/anjuta.c, src/breakpoints.c,
18162         src/goto_line.c, src/mainmenu_callbacks.c, src/text_editor_cbs.c,
18163         src/toolbar_callbacks.c: Added an additional parameter to
18164         text_editor_goto_line() funtion which decides if the line should
18165         be made visible (if it's under fold).
18166         
18167         * src/style-editor.c: Fixed a compiler warning.
18168         * src/message-manager.cc: Calls parent method correctly.
18170         * src/preferences.h: Fixed prent class.
18171         
18172         Patch from: Jean-Noel Guiheneuf  <jnoel@saudionline.com.sa>
18173         * src/project_dbase.c: Fixed bug #713210.
18174         
18175 2003-09-14  Hasbullah Bin Pit <sebol@ikhlas.com>
18176                                                                                 
18177         * configure.in: Added 'ms' (Malay) to ALL_LINGUAS.
18179 2003-09-11  Naba Kumar  <naba@gnome.org>
18181         Patch from: Jean-Noel Guiheneuf  <jnoel@saudionline.com.sa>
18182         * src/style-editor.c: Fixed bug #769130 (Crash on font
18183         selection dialog).
18184         
18185         * src/message-manger.[h,cc]: Made AnMessageManager
18186         derived from GtkFrame and removed deprecated code.
18187         
18188         * src/breakpoints.c, src/search-replace.c, src/source.c: Fixed
18189         compiler warnings.
18190         
18191 2003-09-09  Naba Kumar  <naba@gnome.org>
18193         * src/Makefile.am: Addded rules for built sources.
18194         
18195 2003-09-08  Naba Kumar  <naba@gnome.org>
18197         * (new) src/anjuta-marshalers.list: Added marshalers definition
18198         file.
18199         
18200         * src/source.c: Fixed bug #762043 and makes sure, CFLAGS
18201         and CXXFLAGS are not overwriten by automake's default.
18202         * src/style-editor.c: Added 'operators' in the style editor.
18203         
18204         Patch from Masahito Omote <utyuuzin@users.sourceforge.net>
18205         and Jesus Gonzalez  <jgonzlz@terra.es> (combined).
18206         * src/message-manager-private.cc, src/message-manager.cc:
18207         Converts message going into message into UTF-8 endoding.
18208         * src/main.c: Uses UTF-8 codeset for localization.
18209         
18210 2003-09-08  Franco Catrin L.  <fcatrin@tuxpan.cl>
18212         * src/anjuta.desktop.in.in: Added Encoding attribute (required).
18213         
18214 2003-09-08  Naba Kumar  <naba@gnome.org>
18216         * TODO: Updated.
18217         
18218         Patch from Jean-Noel Guiheneuf  <jnoel@saudionline.com.sa>
18219         * src/find_in_files.c, src/find_replace.c, src/search_replace.c:
18220         Fixed bug #798717, Find - Find&Replace - Find in files bug;
18221         The combo entries were updated if the same data with a different
18222         case exist in the combo list. The combo entries are now case sensitive. 
18223         Search&Replace bug; First search ,max actions = 0 ==> now max
18224         actions = 100.
18225         
18226 2003-09-08  Naba Kumar  <naba@gnome.org>
18228         * TODO: Updated.
18229         * src/utilities.[c,h]: a function takes contant args.
18230         * src/anjuta.[c,h]: Fixed child registering/unregistering routine.
18231         Now the child terminated signal is emitted properly.
18232         * src/Makefile.am: Used $(top_srcdir) for referring to 
18233         scintilla objects.
18234         * (new) src/anjuta-marshalers.list, src/Makefile.am: Added marshalers
18235         definitions file which will generate anjuta-marshalers.[c,h] files.
18236         * src/.cvsignore: Updated.
18237         * src/build_project.c: Changed su command to preserve quotes.
18238         * src/anjuta-tools.c, tagmanager/tm_project.c,
18239         tagmanager/tm_workspace.c: Use standard tmp file.
18240         * configure.in: Cleaned up. Provide -g -O0 flags for final build also
18241         so that users could report bugs easily.
18242         * configure.in, anjuta.spec.in: Removed libzvt references/dependency.
18243         
18244         * tagmanager/tm_workspace.c, tm_file_entry.c, widgets/gnomefilelist.c,
18245         printing/print.c, plugins/sample1/plugin-sample1.c, src/an_file_view.c,
18246         src/an_symbol_view.c, src/utilities.[c,h], src/anjuta-encodings.c,
18247         src/attach_process.c, src/breakpoints.c, src/commands.c,
18248         src/compiler_options.c, src/configurer.c, src/cvs_gui.c,
18249         src/cvs_cbs.c, src/debug_tree.c, src/debugger.c, src/executer.c,
18250         src/find_in_files.c, src/find_in_files_cbs.c, src/mainmenu_callbacks.c,
18251         src/memory.c, src/message-manager-private.c, src/preferences.c,
18252         src/project_config.c, src/project_dbase.c, src/source.h, src/src_paths.c,
18253         src/search-replace.[c,h], stack_trace.c, text_editor.c,
18254         src/text_editor_cbs.c, src/toolbars.c, src/watch.c, src/watch_gui.c,
18255         src/source.c, src/anjuta.c, src/glade_iface.c, src/style_editor.c:
18256         Fixed compile warnings and cleanup.
18257         
18258         * src/launcher.[c,h], src/anjuta-tools.c, src/build_file.c,
18259         src/build_project.c, src/clean_project.c, src/compile.c, src/configurer.c,
18260         src/cvs.c, src/find_in_files.c, src/gnome_project.c, src/project_import.c: 
18261         Removed libzvt usage and implemented child spawing differently. Launcher is
18262         now proper GObject, which can be created multiple times (and can be
18263         operated in parallel).
18265         * src/appwizard_cbs.c: Fixed bug #740881 (crash on project wizard).
18266         * src/project_import_gui.c, src/project_import_cbs.c,
18267         src/project_import.[c,h], mainmenu_callbacks.c: Fixed bug #766070
18268         (crash on project import). Removed deprecared codes.
18269         
18270 2003-09-03 Johannes Schmid <clubfan@users.sourceforge.net>
18271         
18272         * src/cvs.c: Fixed cvs output bug.
18274 2003-09-03  Naba Kumar  <naba@gnome.org>
18276         Patch from: Jean-Noel Guiheneuf  <jnoel@saudionline.com.sa>
18277         * src/aneditor.cxx, src/breakpoints.c, src/breakpoints.h,
18278         src/mainmenu_callbacks.c, src/text_editor.c, src/text_editor.h,
18279         src/text_editor_cbs.c: Implements --
18280                 If the debugger is started
18281                         A double click in the margin add or remove a breakpoint
18282                         A single click activate or deactivate the breakpoint
18283                 else
18284                         A double click in the margin add or remove a bookmark
18286 2003-09-03 Johannes Schmid <clubfan@users.sourceforge.net>
18287         
18288         Reviewed by Naba Kumar  <naba@gnome.org>
18289         * src/cvs_gui.[c/h], mainmenu_callbacks.c:
18290         User is now able to choose a branch on cvs update for project.
18291         Cleaned up variable names.
18293 2003-09-03  Naba Kumar  <naba@gnome.org>
18295         * (new) scintilla/LexEScript.cxx, scintilla/LexLout.cxx,
18296         src/Makefile.am: Added lexers.
18297         * scintilla/*/*: Updated...
18298         * src/an_symbol_view.c: Fixed a crash bug.
18299         * src/compiler_options.c, src/project_dbase.c: Fixed compile
18300         and build bugs.
18301         * src/main_menubar.[c,h]: Removed 'page setup' menu item.
18302         * src/source.c: Fixed project generation bug with gettext code.
18303         * tagmanager/tm_project.c: Fixed a crash bug.
18304         * src/compiler_options.c, src/project_dbase.c: Fixed build failure
18305         bug when there is no project open. Bug #____.
18306         * src/source.c: Fixed a bug with build failure with non-gnome
18307         project with glade-generated source (eg. gtk2). Bug #____.
18308         * NEWS: Updated...
18310 2003-08-22  Naba Kumar  <naba@gnome.org>
18312         Patch from: Rob Bradford  <rob@debianplanet.org>
18313         * data/Makefile.am: Fixed to install properly during
18314         package building.
18315         
18316         Patch from: Etay Meiri  <etay-m@bezeqint.net>
18317         * src/debug-tree.c: Fixed a crash bug.
18318         * src/compiler_options.c: Takes care of linking the missing pieces;
18319         C flags, libs, optimization options, debug and profile.
18321         Patch from: Enver ALTIN  <ealtin@casdb.com>
18322         * src/anjuta_cbs.c, src/find_replace.c: Trivial dialog HIG fixes.
18323         
18324 2003-08-22  Johannes Schmid <clubfan@users.sourceforge.net>
18326         Reviewed by Naba Kumar  <naba@gnome.org>
18327         * src/project_dbase.c: Fixed bugs #778263 and #778413
18328           Adding multiple files to project should work now.
18330 2003-08-22  Pavol Bosik  <bosikp@frcatel.fri.utc.sk>
18332         Reviewed by Naba Kumar  <naba@gnome.org>
18333         * src/dnd.c: Fixed Drag&Drop (opening file(s)).
18334         * src/debug_tree.c, src/debugger.c: Fixed context menu separator
18335         for Locals window.
18337 2003-08-08  Abel Cheung  <maddog@linux.org.hk>
18339         * anjuta.glade, anjuta_dialog_strings.c: Fix typo. (#107513)
18341 2003-08-08  Abel Cheung  <maddog@linux.org.hk>
18343         * src/text_editor.c: Fix translatable string (#113934).
18345 2003-07-04  Naba Kumar  <naba@gnome.org>
18347         * src/compiler_options.c, src/project_dbase.c: Fixed build failure
18348         bug when there is no project open. Bug #____.
18349         
18350         * src/source.c: Fixed a bug with build failure with non-gnome
18351         project with glade-generated source (eg. gtk2). Bug #____.
18353 2003-06-26  Naba Kumar  <naba@gnome.org>
18355         * src/anjuta.h: Removed reference to windows-dialog.h.
18356         * src/message-manager-private.[cc,h]: Fixed doulbe click
18357         activation of messages to properly jump at the destination.
18358         * src/toolbar_callbacks.c: Fixed search combo pulldown bug.
18359         * src/toolbar.c: Code clean-ups.
18360         
18361         * tagmanager/tm_file_entry.c, tagmanager/tm_project.c,
18362         tagmanager/tm_symbol.c: Used g_return_if_fail() instead of g_assert().
18363         
18364         * src/message-manager-private.[cc,h]: Removed dead codes.
18365         
18366         * (new) data/properties/css.properties,
18367         data/properties/anjuta.properties, data/properties/Makefile.am:
18368         Added CSS syntax hiliting properties.
18369         
18370         * tagmanager/tm_file_entry.c: Fixed a possible bug.
18371         * src/debugger.c: Clean ups.
18372         * src/lexer.h: Added CSS lexer definition.
18373         
18374         * Makefile.am: Installs destop file properly.
18375         * configure.in: Bumped version to 1.1.97 (RC1 for 1.2.0 stable).
18376         * NEWS: Updated for 1.1.97 release.
18377         * src/main_menubar_def.h: Changed some non working shortcuts.
18378         
18379 2003-06-24  Naba Kumar  <naba@gnome.org>
18381         * src/search-replace.c: Shows the dialog properly, even when it is
18382         hidden behind another window.
18383         
18384         * (removed) src/windows-dialog.[c,h], src/Makefile.am, po/POTFILES.in,
18385         src/anjuta.[c,h], (removed) pixmaps/windows-style-*.png,
18386         pixmaps/Makefile.am: Removed windows-dialog and setup wizard files
18387         and code clean up.
18388         
18389         * anjuta.glade, anjuta_dialog_strings.c: Removed windows-dialog and
18390         setup wizard dialogs.
18391         
18392         * src/debugger.c: Removed a redundant call to
18393         debugger_update_controls().
18394         * src/compiler_options.c, src/launcher.c: code cleanup.
18395         * src/executer.c: Fixed execution bug with 'Set Program params...".
18396         
18397 2003-06-23  Naba Kumar  <naba@gnome.org>
18399         * widgets/e-splash.c: Removed border around the splash image.
18400         * anjuta.spec: correct libgnomeprintui22 name in depencencies.
18401         * widgets/gnomefilelist.c: Implemented multiple file selection mode.
18402         * src/cvs.c: Added a frame around commit log text widget.
18403         * src/prefereces.[c,h], anjuta.glade, anjuta_dialog_strings.c: Fixed
18404         crash bug associated with translated combo box list in preferences
18405         dialog (in different locale other than en_US). Used widget names
18406         to pass the combo list items.
18407         * po/POTFILES.in: Updated.
18408         * src/launcher.c: Creates the zvt terminal at startup (and not
18409         every time a build is done) -- speeds up buld operations.
18410         * src/file_history.c: Should be if() conditional instead of
18411         assertion check.
18412         * tagmanager/tm_work_object.c, src/utilities.c, src/text_editor.c:
18413         Disabled useless warnings.
18414         * src/project_dbase.c: Fixed bonobo 2 project name.
18415         * src/project_dbase.c, src/source.c: Corrected bonobo2 project name
18416         and uses correct glade-2 for file generation.
18417         
18418 2003-06-21  Naba Kumar  <naba@gnome.org>
18420         * src/aneditor.cxx: Fixed bugs with debug tip dwell start and end.
18421         And disables autocomple show for numbers (very annoying).
18422         * src/mainmenu_callbacks.[c,h], src/main_menubar_def.h,
18423         src/main_menubar.[c,h], src/controls.c, src/toolbar.[c,h],
18424         src/toolbar_callbacks.[c,h]: Removed unnecessary menuitems
18425         from view menu and adjust the controls accordingly.
18426         * src/anjuta.c: Changed 'not implemented' dialog to info dialog with
18427         only OK button.
18428         * src/project_dbase.[c,h]: Removed show_local flag processing.
18429         * src/message-manager.[c,h]: Reorganized messages tabs in more
18430         sensible order.
18431         * configure.in, anjuta.spec.in: Fixed gnome-print and zvt dependencies.
18432         Also added PCRE dependency.
18433         
18434 2003-06-20  Naba Kumar  <naba@gnome.org>
18436         * pixmaps/anjuta_splash.png: New splash.
18437         from Jean Schurger  <yshartk@schurger.org>
18438         
18439         * src/controls.c: De-sensitize run-to-cursor when debugger
18440         is not running.
18441         * src/cvs_gui.c: Set default reponse for various cvs dialogs.
18442         
18443         * src/message-manager-private.cc: Fixed to properly jump at
18444         the right file:line.
18445         
18446         * src/appwiz_page1.c: Fixed to correctly determine the project
18447         trpe from the wizard.
18448         
18449 2003-06-20  Naba Kumar  <naba@gnome.org>
18451         * src/message-manager.cc, mainmenu_callbacks.c: Code cleanup.
18452         * src/watch_gui.c: Code cleanups.
18453         * src/debugger.[c,h], src/stack_trace.[c,h],
18454         (removed) src/stack_trace_cbs.[c,h], (removed) src/stack_trace_gui.h,
18455         src/Makefile.am: Merged stack_trace[_cbs/_gui] into stack_trace.c,
18456         Removed direct access to stack_trace private data, Increased debugger
18457         command size from 256 to 1024 (to be on safer side). Also implemented
18458         row-activated signle for seting frame and viewing the source.
18459         * src/debugger.c: Avoids starting program and stopping debugger
18460         when starting debugger and stopping program, respectively.
18461         
18462         * src/debugger.[c,h], src/main_menucallbacks.c, src/controls.c:
18463         Reverted codes to start debugger automatically
18464         The file is brought to the state just after the branching 
18465         (debugger.c == 1.27 and debugger.h == 1.10 rev.), except for 
18466         some code clean ups.
18467         
18468         * src/launcher.[h,c], plugins/patch/patch-plugin.c,
18469         src/anjuta-tools.c, src/build_file.[c,h], src/build_project.[c,h],
18470         src/compile.[c,h], src/clean_project.[c,h], src/configurer.[c,h],
18471         src/cvs.c, src/find_in_files.[c,h], src/gnome_project.[c,h],
18472         src/project_import.[c,h], src.anjuta.c, src/mainmenu_callbacks.c,:
18473         src/project_dbase.c: Code clean ups.
18474         
18475         * anjuta.glade, anjuta_dialog_strings.c: Fixed a hard coded pref
18476         (Projects dir) so that correct $HOME/Projects path is set when
18477         anjuta is run for the first time.
18478         
18479 2003-06-13  Guntupalli Karunakar  <karunakar@freedomink.org>
18481         * configure.in: Added "ml" for Malayalam in ALL_LINGUAS.
18483 2003-06-13  Naba Kumar  <naba@gnome.org>
18485         * src/stack_trace_cbs.c: Moved variable declaration at the
18486         top of the block (bug #737867)
18487         
18488         * src/source.c: use target_CFLAGS and target_CXXFLAGS instead of
18489         just CFLAGS and CXXFLAGS (bug #743617).
18490         
18491         * src/create_global_tags.sh: Fixed shell script to properly
18492         detect installed *-config files.
18493         
18494 2003-06-12  Naba Kumar  <naba@gnome.org>
18496         * src/preferences.[c,h]: Added methods for custom widgets in
18497         preferences: using custom set/get methods for them.
18498         
18499         * src/anjuta-encoding.c: Implemented up/down of the encodings
18500         in the list and property saves correctly.
18501         
18502         Patch from Jean-Noel Guiheneuf  <jnoel@saudionline.com.sa>
18503         * src/aneditor.cxx: Fixes Anjuta looping when a backward search reaches
18504         the beginning of a file.
18506         Patch from Jean-Noel Guiheneuf  <jnoel@saudionline.com.sa>
18507         * src/aneditor.cxx, src/aneditor.h,
18508         src/controls.c, src/main_menubar.c, src/main_menubar.h,
18509         src/main_menubar_def.h, src/mainmenu_callbacks.c,
18510         src/mainmenu_callbacks.h: Allows the operator to select the current
18511         word or the current line (Request: 680801). It puts also
18512         sensitive/unsensitive several select/comment menu items.
18514         * src/breakpoints.c: Presets by default the current line for a
18515         defined breakpoint.
18517 2003-06-11  Naba Kumar  <naba@gnome.org>
18519         * src/anjuta.c, src/text_editor.c: Fixed bug #715270. 'Changed' file name
18520         color (red highlight) now cosistent for inactive tabs also.
18521         
18522         * src/main_menubar.c, src/main_menubar_def.h: Fixed bug #715261. Moved
18523         'Advanced search and replace' in Edit->Search submenu.
18524         
18525         * data/properties/tcltk.properties: Fixed bug #731851. Added line
18526         wrappings '\' where     they were missing.
18527         
18528         * src/mainmenu_callbacks.c: Fixed bug #751715. The 'Customize menu'
18529         message is now more descriptive and details the correct thing to do
18530         for GNOME2 desktop.
18531         
18532 2003-06-10  Naba Kumar  <naba@gnome.org>
18534         * autogen.sh.generic, autogen.sh.gtk, autogen.sh.gtkmm
18535         autogen.sh.wxwin, macros/autogen.sh, macros2/autogen.sh:
18536         Removed any reference to particular version of automake/autoconf
18537         so that they could work with newer versions (Bug #659394).
18539         * src/anjuta-encodings.c, src/anjuta-encodings.h, anjuta.glade,
18540         src/anjuta.c: Added coded to add/remove supported encodings.
18541         
18542         * src/appwizard.c, src/appwizard.h, src/gnome_project.c,
18543         src/preferences.c, src/project_dbase.c, src/project_dbase.h,
18544         src/project_import.c, src/project_type.c, src/project_type.h,
18545         src/source.c, src/wizard_gui.c: Added a new field called 'deprecated'
18546         in the projects typtes. Code clean ups. Removed GTK1/GNOME1
18547         from the project wizard.
18549 2003-06-06  Naba Kumar  <naba@gnome.org>
18551         Patch from Etay Meiri  <etay-m@bezeqint.net>
18552         * src/compiler_options.c: Fixed bugs related to clean before
18553         build patch.
18554         
18555         * anjuta.desktop.in.in: Added commandline options.
18556         * src/cvs.[c,h], anjuta.glade, anjuta_dialogs_strings.c: Separated
18557         -dP and -A flags of CVS update into different options.
18558         
18559 2003-06-04  Abel Cheung  <maddog@linux.org.hk>
18561         * configure.in: Removed "ta" from ALL_LINGUAS.
18563 2003-06-02  Naba Kumar  <naba@gnome.org>
18565         * scintilla/PropSet.h, src/properties.[ch]*: Reversed the patch to
18566         return NULL for undefined properties and "" for defined but empty
18567         strings. It was creating many problems where both are assumed to be
18568         same. And besides, it doesn't matter to differentiate the two (the
18569         problem with preferences was due to a different bug).
18571         * src/prefereces.[c,h]: Fixed to handle empty and blank properties
18572         correctly. Also, s/props_build_in/props_built_in/g.
18573         
18574         * widgets/gnomefilelist.[c,h]: Uses gdl theme icons for file
18575         list.
18576         
18577         * src/an_file_view.c: Unrefed pixbufs when done with them.
18579         * pixmaps/Makefile.am, (added) pixmaps/preferences-encodings.png,
18580         (removed) file_text.png: Added and removed pixmaps.
18581         
18582 2003-05-30  Naba Kumar  <naba@gnome.org>
18584         * anjuta.glade: Fixed encodings preferences dialog
18585         
18586 2003-05-23  Etay Meiri  <etay-m@bezeqint.net>
18587         
18588         Reviewed by Naba Kumar  <naba@gnome.org>
18589         
18590         * src/build_project.c src/clean_project/c: perform a clean before
18591         build, if required. Show the message manager on clean.
18592         * src/compiler_options.c: save the new options when window is closed
18593         and flag project to be cleaned before the next build.
18594         * src/project_dbase.c: added a 'clean before build' flag to project
18596 2003-05-29  Naba Kumar  <naba@gnome.org>
18598         * anjuta.glade, anjuta_dialogs_strings.c: Added encoding prefs
18599         dialog.
18600         
18601         * [pixmaps/] cfolder.xpm, console.xpm, file_c.png, file_c.xpm,
18602         file_core.png, file_core.xpm, file_cpp.png, file_cpp.xpm,
18603         file_exec.png, file_exec.xpm, file_file.png, file_file.xpm,
18604         file_h.png, file_h.xpm, file_html.png, file_html.xpm,
18605         file_i18n.png, file_i18n.xpm, file_icon.png, file_icon.xpm,
18606         file_pix.png, file_pix.xpm, file_text.xpm, file_unknown.png,
18607         file_unknown.xpm, ledgreen.xpm, ledred.xpm, ofolder.xpm,
18608         print_color.xpm, print_landscape.xpm, print_layout.xpm,
18609         print_nocolor.xpm, print_portrait.xpm: Removed unused icons
18611         * pixmaps/Makefile.am, src/toolbar.c, src/pixmaps.h, src/resources.h:
18612         Removed unused icons references.
18614 2003-05-27      Enver ALTIN  <ealtin@casdb.com>
18616         Reviewed by Naba Kumar  <naba@gnome.org>
18617         
18618         * src/anjuta-tools.c, src/anjuta_cbs.c, src/breakpoints.c,
18619           src/compiler_options.c, src/debugger.c, src/find_replace.c,
18620           src/find_text.c, src/mainmenu_callbacks.c, src/preferences.c,
18621           src/project_dbase_gui.c, src/src_paths.c, src/text_editor.c,
18622           src/toolbar_callbacks.c: HIG compliant dialogs.
18624         * src/utilities.c: anjuta_button_new_with_stock_image() and
18625           anjuta_dialog_add_button() stolen from gedit.
18627         * src/main_menubar_def.h: Fixed mnemonics.
18629 2003-05-26  Naba Kumar  <naba@gnome.org>
18631         * src/project_dbase_gui.c: Added header files filter for add file
18632         dialog box. Disabled project window to be transient window.
18633         
18634         * src/message-manager.cc: Disabled message manager window to be
18635         transient window.
18636         
18637         * src/text_editor.c, src/anjuta_cbs.c: Better error reporting when
18638         a file could not be loaded.
18639         
18640         * src/project_dbase.c: Fixed a bug with GUI editor command
18641         where empty string is returned.
18642         
18643         * src/Makefile.am, src/preferences.h, src/text_editor.c
18644         src/text_editor.h, (new) src/anjuta-encodings.h,
18645         (new) src/anjuta-encodings.c, data/properties/anjuta.properties:
18646         Added encoding support and to handle characters encoding correctly
18647         by auto detecting it during load. Added preferences for selecting
18648         the encoding during save.
18650         * src/preferences.c, src/resources.c: Removed debug messages.
18652         Patch from: Alexander Nedotsukov <bland@mail.ru>
18653         * src/getline.c: Fixed many fatal bugs for FreeBSD.
18655 2003-05-26  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
18656         * src/anjuta.c: Try to sow the splash image more often.
18658 2003-05-20  Naba Kumar  <naba@gnome.org>
18660         Patch from Jean-Noel Guiheneuf  <jnoel@saudionline.com.sa>
18661         * src/debug_tree.c: Colorize the modified locals during
18662         debugging and call memory analyze from the debugger.
18663         * src/breakpoints.c: The color is now different for the enabled
18664         and disabled breakpoints. Anjuta now can erase several
18665         breakpoints defined at the same line. The markers are updated
18666         according to the enable/disable action.
18667         
18668         Patch from Etay Meiri  <etay-m@bezeqint.net>
18669         * src/launcher.c: Fixes launcher freeze up bug during build.
18671 2003-05-16  Dan Elphick <dre00r@ecs.soton.ac.uk>
18673         Reviewed by Naba Kumar  <naba@gnome.org>
18674         * scintilla/PropSet.h: Change member variables from private to protected.
18675         * src/properties.[ch]*: Add new methods GetString and GetExpandedString
18676         to PropSetFile class, which return a gchar * (and can therefore indicate
18677         whether properties are empty or do not exist) and make prop_get and
18678         prop_get_expanded use them.
18679         * src/project_dbase.c: Fix where project_dbase_module_is_empty assumes
18680         that the result of of prop_get cannot be an empty string.
18682 2003-05-14      Dan Elphick <dre00r@ecs.soton.ac.uk>
18684         Reviewed by Naba Kumar  <naba@gnome.org>
18685         * src/text_editor.[ch], src/anjuta.c, src/anjuta.c, src/anjuta_cbs.c,
18686         src/build_file.c, src/compile.c, src/mainmenu_callbacks.c,
18687         src/text_editor_cbs.c: When saving all the files in the project, the
18688         text editors are now only rehighlighted once instead of once for each
18689         file saved.
18691 2003-05-16  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
18692         * src/main.c, widgets/e-splash.c: Splash screen improvements.
18693         * src/anjuta.desktop.in.in: Support startup notification.
18694 2003-05-16  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
18695         * src/main.c, widgets/e-splash.c: Splash screen improvements.
18696         * src/anjuta.desktop.in.in: Support startup notification.
18699 2003-05-13  Dan Elphick <dre00r@ecs.soton.ac.uk>
18701         Reviewed by Naba Kumar  <naba@gnome.org>
18702         
18703         * src/executer.[ch]: Only allow one set params dialog at a time. Fix
18704         memory leak from glade_xml_new call. Removed gxml field from Executer
18705         struct as only used in create_executer_dialog and then destroyed.
18706         
18707         * src/anjuta.c: Fix warning on getting a page that doesn't exist.
18708         
18709         * src/configurer.c: Fix warning trying to connect signal to non-existent
18710         environment entry in configure dialog and fix crash when closing the
18711         window.
18712         
18713         * src/cvs_cbs.c: Fix deprecated use of gnome_date_edit_get_date; use
18714         gnome_date_edit_get_time instead.
18715         
18716         * main_menubar.c, main_menubar_def.h: Removal of show stack menu item
18717         in view menu required renumbering elsewhere.
18719 2003-05-10  Etay Meiri  <etay-m@bezeqint.net>
18721         Reviewed by Naba Kumar  <naba@gnome.org>
18722         
18723         * src/breakpoints.c: fixed an error when removing breakpoint
18724         * src/controls.c: 'run to cursor' is sensitive when debugger not active
18725         * src/debugger.c: changes to the way the debugger is activated
18726         * src/debugger.h: clean ups
18728 2003-05-13  Naba Kumar  <naba@gnome.org>
18730         Patch from  Jean-Noel Guiheneuf  <jnoel@saudionline.com.sa>
18731         * anjuta.glade, anjuta_dialogs_strings.c, src/memory.c,
18732         src/memory.h: A new version of memory and the interface
18733         is now integrated in anjuta.glade
18735 2003-05-09  Naba Kumar  <naba@gnome.org>
18737         * configure.in: Bumped required gtk version to 2.0.8.
18738         
18739 2003-05-06  Naba Kumar  <naba@gnome.org>
18741         src/message-manager-private.cc, src/message-manager.cc: Clean ups.
18743 2003-05-07  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
18744         * gdl/Makefile.am, printing/Makefile.am: distcheck fixes.
18746 2003-05-06  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
18747         * scripts/anjuta_import.sh.in, src/defaults.c, src/project_dbase_gui.c
18748         , tagmanager/c.c: Support for ProC and RDB files.
18750 2003-05-06  Naba Kumar  <naba@gnome.org>
18752         * src/aneditor.cxx, src/goto_line.c, src/main_menubar_def.h,
18753         src/mainmenu_callbacks.c, src/mainmenu_callbacks.h:
18754         Uncomment (Box & Stream), Select the current function,
18755         authorize the "Quit" button of the GotoLine window
18757 2003-05-05  Naba Kumar  <naba@gnome.org>
18759         * src/watch_gui.h: CVS added new file.
18761         * scintilla/ExterLexer.[cxx,h]: CVS added new files.
18763         Patch from Etay Meiri <etay-m@bezeqint.net>
18764         * src/debugger.c, src/debugger.h, src/main_menubar_def.h,
18765         src/mainmenu_callbacks.c, src/message-manager.cc,
18766         src/message-manager.h, src/stack_trace.c, src/stack_trace.h,
18767         src/stack_trace_cbs.c, src/stack_trace_cbs.h, src/stack_trace_gui.c:
18768         Ported stack trace to GNOME2 and added it in the message manager
18769         pane.
18771 2003-05-02  Naba Kumar  <naba@gnome.org>
18773         * src/memory.[h,c], debug_tree.c: Fixed a compiler error/warning.
18774         
18775         * src/preferences.[h,c]: Fixed preferences to save only one copy of
18776         preferences property.
18777         
18778         * anjuta.prj: Fixed multiple preferences saved data.
18779         
18780         * scintilla/Document.cxx, scintilla/Editor.cxx, scintilla/Editor.h,
18781         scintilla/LexCPP.cxx, scintilla/Makefile.am, scintilla/PlatGTK.cxx,
18782         scintilla/PropSet.cxx, scintilla/ScintillaGTK.cxx,
18783         scintilla/include/Platform.h, scintilla/include/PropSet.h,
18784         scintilla/include/Scintilla.h, scintilla/include/Scintilla.iface:
18785         Upgraded scitilla from CVS with faster window repaint
18786         and more bugfixes.
18787         
18788         Patch from  Etay Meiri  <etay-m@bezeqint.net>
18789         * src/watch.[c,h], src/watch_gui.c, (new) src/watch_gui.h: Fixed bugs
18790         and code cleanups
18791         
18792 2003-04-30  Dan Elphick <dre00r@ecs.soton.ac.uk>
18794         * message-manager-private.[ch]: Make AnMessageWindow keep scrolling 
18795         the window if messages are appended to the end and the scrollbar is
18796         at the end.
18798 2003-04-29  Naba Kumar  <naba@gnome.org>
18800         * configure.in: Removed omf-install from Makefiles list.
18802 2003-04-28  Naba Kumar  <naba@gnome.org>
18804         * po/POTFILES.in: Remvoded deleted files.
18805         
18806         * pixmaps/Makefile.am, pixmaps/windows-style-docked.png,
18807         pixmaps/windows-style-undocked.png: Added setup wizard's images.
18809         * src/anjuta-tools.c: Fixed a bug where working dir (when the tool
18810         is executed as detached) is not set properly.
18811         
18812 2003-04-25  Naba Kumar  <naba@gnome.org>
18813         
18814         * anjuta.prj: Updated.
18815         * src/anjuta_info.c: Fixed text wrapping and column view.
18816         * data/welcome.txt.in: Removed unaligned characters.
18817         
18818 2003-04-24  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
18819         * src/main_menubar.c: Disable setup dialog.
18821 2003-04-22  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
18822         * src/breakpoints.c; Fixed compilation with older GCC
18823         * src/preferences.c: Fixed crash with G_DISABLE_CHECKS
18824         * HACKING: Spelling fixes (Suggested by Stephen Knight)
18826 2003-04-18  Naba Kumar  <naba@gnome.org>
18828         * anjuta.prj: Updated (includes compiler options).
18829         
18830         * src/anjuta.[hc], src/anjuta-tools.c: Removed redundant get_user_params
18831         function from anjuta.c (it was already available in anjuta-tools.c).
18832         
18833 2003-04-18  Naba Kumar  <naba@gnome.org>
18835         * src/about.c, THANKS: Updated
18836         
18837         * anjuta.glade, anjuta_dialogs_strings.c: Updated setup-dialog
18838         
18839         * src/an_file_view.c, src/project_dbase.c: Restores file-filters
18840         properly from the project session before updating the file
18841         view.
18842         
18843         * src/main_menubar_def.h, src/mainmenu_callbacks.[ch],
18844         an_file_view.[ch], main_menubar.[ch], controls.c: Removed windows
18845         dialog settings (as it will not be required once GDL is in place) and
18846         added file view filters in the settings sub-menu.
18848 2003-04-17  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
18849         * HACKING: Updated
18850         * configure.in: Disable cast checks on final build.
18852 2003-04-17  Naba Kumar  <naba@gnome.org>
18854         * src/build_project.c: Fixed a compilation error.
18856         * src/launcher.c: Removed commnets.
18857         
18858         * anjuta.glade, anjuta_dialogs_strings.c: Moved indentation
18859         properties from editor tab to indentation tab and fixed a property
18860         label for proper i18n translation. Fixed typos in project config
18861         dialog (reported by Gaëtan de Menten  <ged@bugfactory.org>). Disabled
18862         sorting and reordering in compiler options dialog.
18863         
18864         * src/compiler_options.c: Implemented _save() function to save the
18865         options (which was pending).
18866         
18867         * src/build_project.c: Destroys install-as-root dialog when it is done.
18868         
18869         * src/an_symbol_view.c: Change "event" event to "event-after" so
18870         that symbol row is selected first before the popup is shown.
18871         
18872 2003-04-14  Dan Elphick <dre00r@ecs.soton.ac.uk>
18874         * tagmanager/tm_file_entry.c: Fix to make CVS info appear for first 
18875         file in CVS/Entries. (Reviewed and applied by Biswa)
18877 2003-04-16  Naba Kumar  <naba@gnome.org>
18879         * aneditor.cxx: use unicode everytime (fixed unicode related
18880         bugs).
18882         * anjuta.prj: Fixed UI editor name (blank to use default) and
18883         anjuta version.
18884         
18885         Patch from Patch from Gaëtan de Menten  <ged@bugfactory.org>
18886         * anjuta.glade, anjuta_dialogs_strings.c: Reorganized
18887         Editor preferences page.
18889 2003-04-16  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
18890         * src/anjuta.[ch], src/print.c: Fixed warnings
18891         * scintilla/*, src/aneditor.cxx: Restore LexCPP patch.
18892         * configure.in: Profiling support with gprof
18894 2003-04-16  Naba Kumar  <naba@gnome.org>
18896         Patch from Gaëtan de Menten  <ged@bugfactory.org>
18897         * src/launcher.c: Fixed cvs dialog.
18898         
18899 2003-04-15  Johannes Schmid <clubfan@users.sourceforge.net>
18900         
18901         * src/message-manager-private.cc: Fixed double-click on first line of 
18902         output to properly select a line.
18903         * src/project_dbase.[c/h]: Removed parent_node from ProjectFileData
18904         because still was a deprecatd GtkCTreeNode and always NULL anyway.
18906 2003-04-15  Naba Kumar  <naba@gnome.org>
18908         * src/message-manager-private.cc: Fixed the glade filename typo.
18910 2003-04-15  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
18911         * scintilla/*, data/properties/*: Scintilla CVS merge
18912         * anjuta.prj: Removed unnecessary files.
18913         * scintilla/PlatGTK.cxx: Force Pango fonts always
18914         * src/anjuta-plugins.c, src/anjuta_dirs.c, src/main.c,
18915         src/mainmenu_callbacks.c src/preferences.c: Use versionsed directory
18916         for preferences.
18917         * configure.in: Change version no. for 1.1.1 (alpha release)
18918         * configure.in: Added '--with-pref-suffix' option.
18919         * config.guess, config.sub: Removed from CVS.
18921 2003-04-15  Naba Kumar  <naba@gnome.org>
18923         Patch from Timothee Besset  <ttimo@idsoftware.com>
18924         * Makefile.am: Fixed a shell script error during intallation.
18925         
18926 2003-04-14  Johannes Schmid <clubfan@users.sourceforge.net>
18928         Reviewed by Naba Kumar  <naba@gnome.org>
18929         * src/message-manager.cc: Added popup-menu to TreeView and fixed
18930         set_wm_class to use "anjuta" instead of "an.
18931         * src/message-manager-private.cc: Headers are hidden again.
18933 2003-04-14  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
18934         * src/project_dbase_gui.c: Memory corruption fix.
18935         * anjuta.prj: Updated project file
18937 2003-04-14  Dan Elphick <dre00r@ecs.soton.ac.uk>
18938         * an_file_view.c: Connect to event-after signal rather than event so that
18939         selection is updated first and thus context menu is for the right file.
18940         Reviewed and applied by Biswa.
18942 2003-04-14  Naba Kumar  <naba@gnome.org>
18944         * anjuta.glade, anjuta_dialogs_strings.c: Updated setup dialog.
18945         
18946         * src/auncher.c: More child exit fixes
18947         from Timothee Besset  <ttimo@idsoftware.com>
18949 2003-04-14  Johannes Schmid <clubfan@users.sourceforge.net>
18950         
18951         Reviewed by Naba Kumar  <naba@gnome.org>
18952         
18953         * src/message-manager.[c/h], src/message-manager-private[c/h],
18954                 anjuta.[c/h]: Ported message-manager to Gtk2
18955         
18956         * plugins/patch/patch-plugin.c, src/anjuta-tools.c,
18957         src/anjuta_cbs.c, src/build_file.c, src/build_project.c,
18958         src/clean_project.c, src/compile.c, src/configurer.c,
18959         src/controls.c, src/cvs.c, src/debugger.c,
18960         src/find_in_files.c, src/gnome_project.c, src/mainmenu_callbacks.c,
18961         src/project_import.c, src/search-replace.c: Changed name from
18962         AnjutaMessageManager to AnMessageManager to avoid too long type
18963         and funtion names.
18965 2003-04-11  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
18966         * src/launcher.c: Fix build won't stop problem - TTimo
18967         * TODO: Updated
18968         * pixmaps/anjuta_splash.c: New splash screen prototype.
18969         * src/anjuta-tools.c, src/anjuta.[ch], : Forward port from branch.
18970         * src/compiler_options.c: Mute pkgconfig errors.
18971         * src/project_config.c. widgets/gnomefilelist.c: Fix leak.
18973 2003-04-10  Naba Kumar  <naba@gnome.org>
18975         * configurer.[c,h]: Fixed dialog to close properly.
18976         * src/project_dbase.c, widgets/gnomefilelist.c: Added
18977         debugging asserts.
18978         
18979 2003-04-09  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
18980         * anjuta.prj: Removed unnecessary files, load with 1.2.0
18981         * plugins/class-gen/Makefile.am, plugins/patch/Makefile.am,
18982         plugins/sample1/Makefile.am, src/an_file_view.c, src/anjuta.c,
18983         src/anjuta.h, src/project_dbase.c: Use default GNOME icons.
18984         * gdl/*, widgets/*, Makefile.am, configure.in, plugins/*/Makefile.am,
18985         src/makefile.am: Move gdl to it's own directory.
18986         * global-tags/create_global_tags.sh: Silently ignore SDL error.
18988 2003-04-09  Naba Kumar  <naba@gnome.org>
18990         * anjuta.glade: Synced search and replace dialog from the ANJUTA_1_0_0
18991         branch.
18993 2003-04-09  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
18994         * src/anjuta-tools.c: Use CDATA for saving tools data.
18995         * anjuta.glade, src/search-replace.c: Port from branch.
18996         * widgets/e-splash.*, src/main.c: Better splash screen.
18997         * configure.in, widgets/gdl*: Import GDL widgets.
18998         * ROADMAP: Updated roadmap.
18999         * src/an_file_view.c: Use GDL icons for file tree.
19001 2003-04-09  Naba Kumar  <naba@gnome.org>
19003         * anjuta.glade: Added (hidden) initial setup-wizard window.
19004         
19005         Patch from: Vitaly  <vvv@rfniias.ru>
19006         * src/preferences.c: Fixes a bug with libglace widget access with
19007         translated strings.
19009         Patch from: Etay Meiri  <etay-m@bezeqint.net>
19010         * src/debug_tree.c, src/debug_tree.h, src/debugger.c,
19011         src/debugger.h, src/main_menubar_def.h, src/mainmenu_callbacks.c,
19012         src/mainmenu_callbacks.h, main_menubar.[c,h], src/toolbar.[c,h],
19013         src/toolbar_callbacks.[c,h],
19014         src/memory.c, src/message-manager-private.cc,
19015         src/message-manager-private.h, src/message-manager.cc,
19016         src/message-manager.h, src/watch.c, src/watch.h, src/watch_cbs.c
19017         src/watch_cbs.h, src/watch_gui.c: Ports the watch related stuff
19018         to HEAD (mostly changing GtkClist to GtkTreeView). Also changed the
19019         watch window to a subwindow in the notebook
19021 2003-04-03  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
19022         * ROADMAP: Updated roadmap.
19024 2003-04-03  Dmitry G. Mastrukov  <dmitry@taurussoft.org>
19026         * configure.in: Added Belarusian to ALL_LINGUAS.
19028 2003-04-01  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
19029         * src/fileselection.c, src/goto_line.c: Fixed warnings. Patch by
19030         Henry Jia
19031         * ROADMAP: Added roadmap for HEAD.
19033 2003-03-29  Naba Kumar  <naba@gnome.org>
19035         * src/main_menubar_def.h, mainmenu_callbacks.[c,h], src/anjuta.c
19036         src/Makefile.am, pixmaps/Makefile.am, anjuta.glade,
19037         anjuta_dialogs_strings.c, (new) src/start-with.[c,h],
19038         (new) pixmaps/start-with-wizard.png,
19039         (new) pixmaps/start-with-import.png,
19040         (new) pixmaps/start-with-open.png Added Start with dialog which pops
19041         up on anjuta start-up to give quick access to opening file/project or
19042         creation wizards.
19044         * src/main.c: Sets proper data directory for the gnome
19045         program.
19047 2003-03-27  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
19048         * src/text_editor.c: Fixed error/warning indicators.
19050 2003-03-24  Naba Kumar  <naba@gnome.org>
19052         * README: Correct version.
19053         
19054 2003-03-24  Michael Tindal <etherscape@paradoxpoint.com>
19056         * configure.in: Added checks to see if were building on FreeBSD
19057         systems.  Sets -DFREEBSD if we are, and also attempts to find
19058         gmake if the host system is FreeBSD.
19060         * src/getline.c: New file used to provide the getline function,
19061         which isnt available on a FreeBSD system.  The function is only
19062         defined if FREEBSD is defined.
19064         * src/Makefile.am: Added getline.c to anjuta_SOURCES
19066         * tagmanager/Makefile.am:  Uses $(GMAKE) rather than make. 
19067         configure.in sets this to gmake on FreeBSD systems, and make
19068         on everything else.
19070 2003-03-23  Naba Kumar  <naba@gnome.org>
19072         * Makefile.am, anjuta.spec.in: Fixed rpm build errors.
19073         
19074         * anjuta.spec.in: Fixed spec file for correct file paths and
19075         corrected rpmbuild.
19077         * Makefile.am: Substituted rpmbuild for rpm command as RedHat ships
19078         the rpm build command separately now.
19079         
19080         * src/anjuta.c, windows-dialog.c: Added some more window management
19081         stuffs (not still fully working, though).
19083         * TODO: Updated.
19085 2003-03-22  Naba Kumar  <naba@gnome.org>
19087         * anjuta.spec.in: Fixed 'Required' and 'Build' requirements fields.
19089 2003-03-21  Naba Kumar  <naba@gnome.org>
19091         * README: Removed Andy Piper's name from the active maintainers
19092         list on his request.
19093         
19094         * src/anjuta_cbs.c: Fixed alphabetical ordering of tabs with
19095         preferences.
19096         
19097         * src/anjuta-tools.c: Fixed compiler errors.
19099         * src/anjuta-tools.c, src/attach_process.c: Fixed more window
19100         show bugs.
19101         
19102         * src/commands.c, src/src_paths.c, src/style-editor.c,
19103         src/anjuta-tools.c: Added gtk_widget_show() calls for the dialogs
19104         becuase they are now hidden by default (from glade editing).
19105         
19106         * anjuta.glade, anjuta_dialogs_strings.c, src/anjuta.c,
19107         src/anjuta.h, src/main_menubar.c, src/main_menubar.h,
19108         src/main_menubar_def.h, src/mainmenu_callbacks.c,
19109         src/mainmenu_callbacks.h, src/windows-dialog.c: Implemented
19110         basic windows managements.
19111         
19112 2003-03-21  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
19113         * scintilla/PlatGTK.cxx: Converted right cursor to left cursor
19114         to hot-spot problems with cursor in XFree86 4.3.0. Patch by
19115         Enver ALTIN (a.k.a. skyblue)
19117 2003-03-19  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
19118         * tagmanager/*: Added ignore-list for symbols. This will make
19119         parsing more accurate for projects. Doc updates needed.
19121 2003-03-14  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
19122         * anjuta.glade, src/search-replace.c: Forward-port S/R (Dan)
19123         * launcher/Makefile.am: Link to correct libraries
19124         * src/launcher.c: Do not allow NULL shell
19126 2003-03-14  Etay Meiri <etay-m@bezeqint.net>
19127         * src/debug_tree.c: Improve debug tree view.
19129 2003-03-10  Dan Elphick <dre00r@ecs.soton.ac.uk>
19131         * anjuta.glade, anjuta_dialog_strings.c: Change dialog1 titles to
19132         'Run Configure Script' and 'Execute Program'. Increase minimum width
19133         of Configure dialog.
19134         * find_in_files.c, find_in_files_cbs.*: Properly create the file
19135         list widget by setting a model and adding a column and renderer.
19136           Actually store the nocvs toggle button in FindInFiles data structure.
19137           Handle selection changes via changed signal rather than row_activated.
19138           Use response signal for handling the close and find buttons.
19139           Close window when escape is pressed.
19140         * find_replace.c: Close window when escape is pressed.
19141         * find_text.c: Close window when escape is pressed in find dialog as
19142         well as wrap search question, where now Yes is the default button.
19144 2003-03-05  Naba Kumar  <naba@gnome.org>
19146         Patch from: Dan Elphick  <dre00r@ecs.soton.ac.uk>
19148         * src/message-manager-private.cc: Fixed a bug with vte conditional
19149         compilation.
19150         * anjuta.glade: Hides all windows in glade file.
19152 2003-03-05  Naba Kumar  <naba@gnome.org>
19154         * src/an_file_view.c: Fixed a compilation warning.
19155         * src/message-manager-private.cc: Conditional compilation for vte
19156         API.
19157         
19158 2003-02-28  Naba Kumar  <naba@gnome.org>
19160         * configure.in, anjuta.spec.in: Updated dependency packages version.
19161         * configure.in, (removed) acconfig.h: Eliminated autoheader templates.
19162         * src/preferences.c: Added debug assertions.
19163         * anjuta.glade, anjuta_dialogs_strings.c: Added a preferences for
19164         editor to enable/disable bringing the recent editor tabs first.
19165         
19166         * tagmanager/tm_file_entry.c, tagmanager/tm_project.c,
19167         tagmanager/include/tm_file_entry.h, src/*.[h,c], scintilla/*.[h,cxx],
19168         scintilla/include/*.h, plugins/class-gen/clsGen.c, printing/print.c:
19169         Merged with CVS branch ANJUTA_1_0_0 and brought in new search replace
19170         and     bug fixes. Also code clean ups.
19171         
19172         * (new) src/search-replace.[h,c]: New search replace implementation
19173         from ANJUTA_1_0_0 branch.
19174         
19175         * (new) src/windows-dialog.[h,c]: New windows management class
19176         [work in progress].
19178 2003-02-28  Naba Kumar  <naba@gnome.org>
19180         * plugins/class-gen/clsGen.c, printing/print.c, src/an_file_view.c,
19181         src/anjuta-tools.c, src/anjuta.c, src/anjuta.h, src/anjuta_cbs.c,
19182         src/appwizard.c, src/build_file.c, src/build_project.c,
19183         src/clean_project.c, src/compile.c, src/configurer.c,
19184         src/find_in_files.c, src/gnome_project.c, src/mainmenu_callbacks.c,
19185         src/message-manager-dock.c, src/message-manager-dock.h,
19186         src/message-manager-private.cc, src/message-manager.cc,
19187         src/preferences-dialog.c, src/preferences-dialog.h,
19188         src/preferences.c, src/preferences.h, src/project_dbase.c,
19189         src/project_dbase_gui.c, src/project_import.c, src/text_editor.c,
19190         src/text_editor.h, src/text_editor_cbs.c, src/toolbar_callbacks.c
19191         src/utilities.c, src/utilities.h:
19192         
19193         Widgetized Preferences and gave proper function names.
19195         * src/executer.c: Fixed a session loading bug.
19196         
19197 2003-02-27  Naba Kumar  <naba@gnome.org>
19199         * printing/print.c: Fixed printing font bug that failed to load the
19200         proper fonts.
19201         
19202         * src/toolbar.c: Disabled LED flashing (not yet implemented).
19203         
19204         * TODO, anjuta.prj: Updated.
19206 2003-02-24  Joe Harnish <bigJoe@linuxmail.org>
19208         * manuals/C/anjuta-faqs/anjuta-faqs-C.omf,
19209         manuals/C/anjuta-manual/anjuta-manual-C.omf,
19210         manuals/C/anjuta-tutorial/anjuta-tutorial-C.omf,
19211         manuals/ja/anjuta-faqs/anjuta-faqs-ja_JP.eucJP.omf,
19212         manuals/ja/anjuta-manual/anjuta-manual-ja_JP.eucJP.omf:
19213         fixed omf errors
19215 2003-02-25  Naba Kumar  <naba@gnome.org>
19217         * Makefile.am: Excluded omf-install from installation as the docs are
19218         not ready.
19219         
19220         TODO: Updated.
19221         
19222         * anjuta.glade, anjuta_dialogs_strings.c, prefrences.h, aneditor.cxx,
19223         anjuta.properties, users.properties, anjuta-tools.c: Fixed editor
19224         property names and added new editor properties and code cleanups.
19225         Also added new project properties.
19226         
19227         * src/compiler_options.[h,c]: Added pkg-config packages supports
19228         and fixed bugs.
19229         
19230         * src/glade_iface.h: Cleanups.
19231         
19232         * src/launcher.c: Used timer instead of idle to scan.
19233         
19234         * src/mainmenu_callbacks.c, src/project_dbase.[h,c],
19235         src/project_config.[h,c], src/project_import.c: Implemented project
19236         property to define GUI editor and to handle it.
19237         
19238         * src/preferences.c: i18n fixes.
19239         
19240         * pixmaps/Makefile.am, pixmaps/file_*.xpm, src/pixmaps.h: Removed
19241         unused (and old) pixmaps.
19242         
19243         * widgets/gnomefilelist.c, pixmaps/file_text.png: Updated icon.
19244         
19245 2003-02-25  Naba Kumar  <naba@gnome.org>
19247         * src/message-manager-private.[h,cc], src/preferences.c,
19248         anjuta.glade, anjuta_dialog_strings.c: Implemented
19249         gnome terminal profiles for the terminal preferences and moved the
19250         addition of terminal preferences in the terminal constructor.
19251         
19252         * anjuta.prj: Updated.
19254 2003-02-24  Naba Kumar  <naba@gnome.org>
19256         * (new)src/preferences-dialog.[c,h], preferences.[h,c],src/Makefile.am,
19257         (new)widgets/cell-renderer-captioned-image.[h,c], widgets/Makefile.am,
19258         (new)pixmaps/preferences-*.png, pixmaps/Makefile.am, anjuta.glade,
19259         po/POTFILES.in, anjuta_dialogs_strings.c: Implemented new
19260         preferences dialog.
19262         * TODO: Updated.
19264         * src/message-manager-private.[cc,h]: Fixed VTE terminal for
19265         text selection and child re-spawning.
19267         * src/pixmaps.h: Removed unused pixmaps definitions.
19268         
19269 2003-02-23  Naba Kumar  <naba@gnome.org>
19271         * src/project_dbase.[h,c], src/project_dbase_gui.c: GNOME2 ported
19272         the project tree/window.
19274         * src/an_symbol_view.[h,c], src/an_file_view.[h,c],
19275         src/project_dbase.[h,c], src/project_dbase_gui.c, src/session.[h,c]:
19276         Correct the use of a variable and implemented session save/load
19277         for tree expansion states.
19278         
19279         * src/main_menubar_def.h: Fixed shortcuts keys.
19280         
19281         * src/anjuta.c, src/gnome_project.c: Code clean ups.
19282         
19283         * anjuta.prj: Updated.
19284         
19285 2003-02-22  Naba Kumar  <naba@gnome.org>
19287         * src/debug_tree.[c,h]: GNOME2 port from 
19288         Etay Meiri <etay-m@bezeqint.net>
19289         
19290         * src/an_file_view.c, src/resources.[h,c],
19291         data/properties/bash.properties,
19292         data/properties/cpp.properties,
19293         data/properties/html.properties,
19294         data/properties/make.properties,
19295         data/properties/others.properties,
19296         data/properties/perl.properties,
19297         data/properties/props.properties,
19298         data/properties/xml.properties: Standarized file icons. Icons are
19299         defined in respective .properties file and are retrieved as resource
19300         data.
19302         * anjuta.glade, anjuta_dialogs_strings.c: Removed <span> tags
19303         in labels from the commands editor as that would create
19304         problems for translators.
19306 2003-02-21  Naba Kumar  <naba@gnome.org>
19308         * .cvsignore, (new)config.guess, (new)config.sub: Added these files
19309         as they should be part of CVS(?).
19311         * Makefile.am: Corrected a typo for glade generated strings file.
19313         * configure.in, po/hi.po: Added new Hindi (hi) translation
19314         in ALL_LINGUS and added initial Hindi translation.
19316         * pixmaps/Makefile.am, pixmaps/sv_unknown.xpm, src/pixmaps.h,
19317         (new)pixmaps/file_*.png: Added gnome2ish file icons and changed
19318         sv_unknown.xpm to more proper icon.
19320         * (new)data/properties/php.properties, data/properties/Makefile.am,
19321         data/properties/anjuta.properties, data/properties/html.properties:
19322         Fixed PHP syntax hilighting bug by separating php properties into
19323         different file (because of file size).
19325         * TODO: Updated.
19326         
19327 2003-02-20  Naba Kumar <naba@gnome.org>
19329         * src/breakpoints.c: Fixed breakpoints session saving/loading
19330         crash bug.
19331         
19332         * scintilla/*, scintilla/include/*: Updated to scintilla
19333         release 1.51
19334         
19335 2003-02-19  Naba Kumar <naba@gnome.org>
19337         * src/about.c: Fixed a typo reported by Enver ALTIN <ealtin@casdb.com>
19338         * TODO: Updated.
19340         * Makefile.am, src/Makefile.am,
19341         (removed) src/anjuta.glade, (removed) src/anjuta.gladep,
19342         (removed) src/anjuta_dialog_strings.c,
19343         (removed) src/anjuta_dialogs_strings.c,
19344         (added) anjuta.gladep, (added) anjuta_dialogs_strings.c,
19345         (added) anjuta.glade: Transfered glade files from src/ directory
19346         to the top level directory.
19348         * po/POTFILES.in: Updated.
19349         
19350         * (removed) macrocs2/*: Transfered to data/ directory.
19351         
19352         * (added) data/macro/*, (added) data/macros2/*, Makefile.am, configure.in,
19353         data/Makefile.am: Moved macros in data directory. Anjuta no longer
19354         requires to have macros dir, but the projects generated by anjuta
19355         require them.
19356         
19357         * src/an_file_view.c, src/an_symbol_view.c: Fixed expansion/collapse of
19358         trees.
19359         
19360         * src/defaults.c: Corrected default compiler options.
19361         
19362         * src/glade_iface.c, src/gnome_project.c: Fixes gnome2 projects generation
19363         wizard.
19364         
19365         * src/message-manager-private.cc, src/message-manager-private.h,
19366         src/message-manager.cc: Uses VTE terminal widget for imbedded terminal.
19367         
19368         * src/project_dbase.c, src/project_type.c, src/source.c: Proper
19369         source code generation for gnome2 projects.
19371 2003-02-11  Naba Kumar <naba@gnome.org>
19373         * src/an_file_view.c, src/an_symbol_view.c: The tree updated now
19374         restores the expand/collaspe states of the nodes after refresh.
19375         
19376         * src/an_file_view.c, src/an_symbol_view.c: Fixed a memory leak.
19377         
19378 2003-02-11  Naba Kumar <naba@gnome.org>
19380         * src/style-editor.c: Fixed pango font description handling for fonts.
19381         * src/anjuta.glade: Removed font size spin button.
19382         * configure.in, src/anjuta.prj: Corrected version.
19383         * TODO: update.
19384         
19385 2003-02-10  Naba Kumar <naba@gnome.org>
19387         * src/Makefile.am, src/anjuta-tools.c, src/main_menubar.c: Removed
19388         references of scroll-menu.h and add about.h in Makefile.am.
19389         
19390         * widgets/Makefile.am, (removed) widgets/e-shell-about-box.c,
19391         (removed) widgets/e-shell-about-box.h, (removed) widgets/scroll-menu.c,
19392         (removed) widgets/scroll-menu.h: Removed unused files.
19393         
19394         * Makefile.am: Added proper i18n rules and added intl tools for
19395         distributions.
19396         
19397         * anjuta.prj, configure.in: Changed version to 1.8.0 (reserving 1.2.0
19398         to the stable release).
19399         
19400         * anjuta.spec.in: Removed manuals packaging.
19401         
19402         * data/Makefile.am: Removed 'macros' installation (not required for
19403         gnome2 projects).
19405 2003-02-10  Naba Kumar <naba@gnome.org>
19407         * po/POTFILES.in: Updated.
19409         * pixmaps/Makefile.am, pixmaps/anjuta_icon.png, 
19410         (added) pixmaps/close_project.png, (removed) pixmaps/close_project.xpm,
19411         (added) pixmaps/open_project.png, (removed) pixmaps/open_project.xpm,
19412         (added) pixmaps/save_project.png, (removed) pixmaps/save_project.xpm,
19413         (added) pixmaps/undock.png, (removed) pixmaps/undock.xpm: Better
19414         icons and images.
19416         * src/aneditor.cxx, src/pixmaps.h, src/toolbar_callbacks.c,
19417         src/toolbar_callbacks.h: Fixed scintilla notification signal name
19418         and fixed to properly handle focus in find entry box.
19420         * Makefile.am: Added code for RH system menu update.
19422         * .cvsignore: Updated.
19424         * NEWS: Updated.
19426 2003-02-03  Naba Kumar <naba@gnome.org>
19428         * src/anjuta.glade, src/anjuta_dialogs_strings.c: Added edge.column
19429         editor preferences. and fixes dialogs.
19431         * printing/print.c, src/text_editor_gui.c, src/main_menu_callbacks.h:
19432         Fixed linenumbers and header margins when they are disabled and
19433         removed unused header files.
19435         * src/attact_process.[h,c], src/debugger.c: Attach to process
19436         now works.
19438         * src/help.c: Fixed dialog response.
19440         * TODO: Updated.
19442         * data/properties/anjuta.properties: Corrected typo.
19444         * src/controls.c, src/toolbar.c: Fixed non-working location navigation,
19445         Change the signal to "changed" in entry from "selection-changed" in
19446         list.
19448         * src/an_file_view.c, src/an_symbol_view.c: Fixed keyboard navigation
19449         short-cuts.
19451 2003-01-31  Naba Kumar <naba@gnome.org>
19453         * configure.in: Upgraded to use libgnomeprint-2.2
19454         
19455         * printing/Makefile.am: Updated
19456         
19457         *(removed) printing/print-doc.c, printing/print-doc.h,
19458         printing/print-util.c, printing/print-util.h: Removed because already
19459         merged with print.c.
19460         
19461         * printing/print.c, printing/print.h: Upgraded to use libgnomeprint-2.2
19462         and libgnomeprintui-2.2 and fixed rendering problems.
19463         
19464         * src/anjuta.glade, src/anjuta_dialogs_strings.c: Removed
19465         uneccessary print properties, as they are separately taken
19466         care in gnomeprint.
19467         
19468         * po/POTFILES.in: Update.
19470 2003-01-30  Naba Kumar <naba@gnome.org>
19472         * (new) src/about.[c,h], pixmaps/anjuta_logo1.png: Added new files
19473         for about dialog box.
19474         
19475         * src/Makefile.am, pixmaps/Makefile.am, src/mainmenu_callbacks.c,
19476         src/pixmaps.h: Modified for the above additions for about dialog.
19478 2003-01-29  Naba Kumar <naba@gnome.org>
19480         * src/style_editor.[c,h]: Added missing files.
19481         
19482 2003-01-29  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
19483         * scintilla/XPM.[cxx|h]: Added missing files
19485 2003-01-29  Naba Kumar <naba@gnome.org>
19486         
19487         * TODO, po/POTFILES.in: Updated.
19488         
19489         * anjuta.prj, src/anjuta.glade,
19490         * src/anjuta_dialogs_strings.c, src/executer.c: Fixed dialog bugs.
19492 2003-01-28  Naba Kumar <naba@gnome.org>
19493         
19494         * data/properties/anjuta.properties, src/aneditor.cxx,
19495         src/anjuta.glade, src/anjuta_dialogs_strings.c: Converted indicators
19496         properties into text properties (earlier it was int properties).
19498         * TODO: Updated
19499         
19500         * scintilla/AutoComplete.c,xx,
19501         scintilla/AutoComplete.h,
19502         scintilla/CallTip.c,xx,
19503         scintilla/CallTip.h,
19504         scintilla/Document.c,xx,
19505         scintilla/Document.h,
19506         scintilla/Editor.c,xx,
19507         scintilla/Editor.h,
19508         scintilla/LexAVE.c,xx,
19509         scintilla/LexCSS.c,xx,
19510         scintilla/LexHTML.c,xx,
19511         scintilla/LexOthers.c,xx,
19512         scintilla/LexPython.c,xx,
19513         scintilla/LineMarker.c,xx,
19514         scintilla/LineMarker.h,
19515         scintilla/Makefile.am
19516         scintilla/PlatGTK.c,xx,
19517         scintilla/PropSet.c,xx,
19518         scintilla/ScintillaBase.c,xx,
19519         scintilla/ScintillaBase.h,
19520         scintilla/ScintillaGTK.c,xx,
19521         scintilla/ViewStyle.c,xx,
19522         scintilla/include/Platform.h,
19523         scintilla/include/SciLexer.h,
19524         scintilla/include/Scintilla.h,
19525         scintilla/include/Scintilla.iface: upgraded to scintilla version 1.50
19526         
19527         
19528         src/Makefile.am,
19529         src/an_file_view.c,
19530         src/an_symbol_view.c,
19531         src/anjuta-tools.c,
19532         src/anjuta.c,
19533         src/anjuta.glade
19534         src/anjuta.h,
19535         src/anjuta_cbs.c,
19536         src/anjuta_dialogs_strings.c,
19537         src/anjuta_info.c,
19538         src/commands.c,
19539         src/compiler_options.c,
19540         src/debugger.c,
19541         src/help.c,
19542         src/main_menubar.c,
19543         src/main_menubar.h,
19544         src/main_menubar_def.h,
19545         src/mainmenu_callbacks.c,
19546         src/mainmenu_callbacks.h,
19547         src/message-manager-private.c,c
19548         src/message-manager-private.h,
19549         src/message-manager.c,c
19550         src/message-manager.h,
19551         src/pixmaps.h,
19552         src/preferences.c,
19553         src/preferences.h,
19554         src/project_config.c,
19555         src/project_dbase.c,
19556         src/project_dbase_gui.c,
19557         src/project_import_gui.c,
19558         src/properties.c,xx,
19559         src/properties.h,
19560         src/resources.c,
19561         src/src_paths.c,
19562         src/text_editor.c,
19563         src/text_editor_gui.c,
19564         src/toolbar.c,
19565         src/utilities.c,
19566         src/utilities.h,
19567         anjuta.prj: GNOME2 porting and fixed many porting bugs.
19568         
19569 2003-01-24  Naba Kumar <naba@gnome.org>
19571         * src/text_editor_gui.c, src/toolbar.c,
19572         src/text_editor.c, src/text_editor_cbs.h:
19573         Used correct notification signal name for scintilla
19574         (gtk2) and fixed UI.
19575         
19576         * src/controls.c: Does not hide tags combo. Simply makes it insensitive
19577         when not required.
19578         
19579         * printing/print-doc.c,
19580         printing/print.c,,
19581         src/anjuta-tools.c,
19582         src/find_replace.c,
19583         src/goto_line.c,
19584         src/launcher.c,
19585         src/mainmenu_callbacks.c,
19586         src/project_dbase.c,
19587         src/project_dbase.h,
19588         src/project_dbase_gui.c: Used GtkDialogs instead of GnomeDialog.
19589         src/text_editor.c,
19590         src/text_editor_cbs.h:
19593 2003-01-23  Naba Kumar <naba@gnome.org>
19595         * src/compiler_options.c, src/pixmaps.h, src/toolbar.c: Fixed to use
19596         correct stock icons and organized pixmap macros.
19597         
19598         Makefile.am: Removed non-generated files.
19599         
19600         * pixmaps/{add.xpm, an_tag.xpm, autocomplete.xpm, block_end.xpm,
19601         block_start.xpm, bookmark_first.xpm, bookmark_last.xpm,
19602         bookmark_next.xpm, bookmark_prev.xpm, build_stop.xpm,
19603         close_file.xpm, copy.xpm, cut.xpm, error_next.xpm,
19604         error_prev.xpm, execute.xpm, find_replace.xpm, find.xpm,
19605         fv_image.xpm, goto.xpm, graph.xpm, line-arrow.xbm, line-wrap.xbm,
19606         list_select.xpm, list_unselect.xpm, macro.xpm, new_file.xpm,
19607         open_file.xpm, paste.xpm, preferences.xpm, prefs_autoformat.xpm,
19608         prefs_build.xpm, prefs_cvs.xpm, prefs_editor.xpm,
19609         prefs_general.xpm, prefs_messages.xpm, prefs_print.xpm,
19610         prefs_styles.xpm, print.xpm, redo.xpm, reload_file.xpm, reload.xpm,
19611         remove.xpm, save_all.xpm, save_file.xpm, save.xpm, search.xpm,
19612         stop.xpm, undo.xpm}: Removed because no longer used.
19614         * pixmaps/{file_core.xpm, file_exec.xpm, file_text.xpm,
19615         file_unknown.xpm}: Files renamed from fv_*, as it would
19616         be the right name.
19618         * pixmaps/Makefile.am: Updated for the above changes.
19620 2003-01-23  Jakub Steiner <jimmac * ximian * com>
19622         * pixmaps/autocomplete-16.png,
19623         pixmaps/autocomplete.png,
19624         pixmaps/block-end-16.png,
19625         pixmaps/block-end.png,
19626         pixmaps/block-start-16.png,
19627         pixmaps/block-start.png,
19628         pixmaps/bookmark-first-16.png,
19629         pixmaps/bookmark-first.png,
19630         pixmaps/bookmark-last-16.png,
19631         pixmaps/bookmark-last.png,
19632         pixmaps/bookmark-next-16.png,
19633         pixmaps/bookmark-next.png,
19634         pixmaps/bookmark-prev-16.png,
19635         pixmaps/bookmark-prev.png,
19636         pixmaps/error-next-16.png,
19637         pixmaps/error-next.png,
19638         pixmaps/error-prev-16.png,
19639         pixmaps/error-prev.png: gnome2-styled icons
19642 2003-01-23  Naba Kumar <naba@gnome.org>
19644         * anjuta.prj: Updated compiler options.
19645         * scintilla/ScintillaGTK.cxx: Fixed selection notify.
19647         * src/aneditor.cxx,
19648         src/anjuta.c,
19649         src/anjuta.glade,
19650         src/anjuta_dialogs_strings.c,
19651         src/mainmenu_callbacks.c,
19652         src/mainmenu_callbacks.h,
19653         src/text_editor.c,
19654         src/text_editor_cbs.c,
19655         src/text_editor_gui.c: GNOME2 Porting.
19657 2003-01-22  Naba Kumar <naba@gnome.org>
19659         * ChangeLog: Corrected dates.
19660         * src/mainmenu_callbacks.h: Cleaned up function prototypes.
19661         * src/anjuta.glade, src/anjuta_dialogs_strings.h: Added more
19662         preferences.
19664 2003-01-22  Naba Kumar <naba@gnome.org>
19665         
19666         * plugins/patch/patch-plugin.c: Bug fix.
19667         
19668         * src/anjuta-tools.c,
19669         src/anjuta.c,
19670         src/anjuta.glade,
19671         src/anjuta.h,
19672         src/anjuta_dialogs_strings.c,
19673         src/breakpoints.c,
19674         src/cvs_gui.c,
19675         src/debugger.c,
19676         src/debugger.h,
19677         src/executer.c,
19678         src/glade_iface.c,
19679         src/main.c,
19680         src/mainmenu_callbacks.c,
19681         src/mainmenu_callbacks.h,
19682         src/preferences.c,
19683         src/project_dbase.c,
19684         src/project_dbase_gui.c,
19685         src/registers.c,
19686         src/sharedlib.c,
19687         src/signals.c,
19688         src/signals_cbs.c,
19689         src/source.c,
19690         src/stack_trace.c,
19691         src/toolbar_callbacks.c,
19692         src/utilities.c,
19693         src/utilities.h,
19694         src/watch.c: Used GtkDialog instead of messagebox. GNOME2 porting.
19695         
19696         * src/Makefile.am,
19697         (removed) src/CORBA-Server.c,
19698         (removed) src/CORBA-Server.h,
19699         (removed) src/Gladen-common.c,
19700         (removed) src/Gladen-stubs.c,
19701         (removed) src/Gladen.h,
19702         (removed) src/Prj-common.c,
19703         (removed) src/Prj-skelimpl.c,
19704         (removed) src/Prj-skels.c,
19705         (removed) src/Prj-stubs.c,
19706         (removed) src/Prj.h,
19707         (removed) src/glades.c,
19708         (removed) src/glades.h,
19709         (removed) src/messagebox.c,
19710         (removed) src/messagebox.h: Removed because no longer used.
19712 2003-01-21  Naba Kumar <naba@gnome.org>
19714         * src/anjuta-tools.c,
19715         src/anjuta.c,
19716         src/anjuta.glade,
19717         src/anjuta_dialogs_strings.c,
19718         src/anjuta_info.c,
19719         src/anjuta_info.h,
19720         src/breakpoints.c,
19721         src/compiler_options.c,
19722         src/debugger.c,
19723         src/find_replace.c,
19724         src/find_replace.h,
19725         src/find_text.c,
19726         src/find_text.h,
19727         src/goto_line.c,
19728         src/launcher.c,
19729         src/text_editor.c,
19730         widgets/gnomefilelist.c: GNOME2 porting.
19732 2003-01-20  Naba Kumar <naba@gnome.org>
19734         * global-tags/create_global_tags.sh: Uses pkg-config to
19735         read the modules.
19736         
19737         * src/anjuta.c,
19738         src/anjuta.glade,
19739         src/anjuta.h,
19740         src/anjuta_cbs.c,
19741         src/anjuta_dialogs_strings.c,
19742         src/breakpoints.c,
19743         src/breakpoints.h,
19744         src/compiler_options.c,
19745         src/compiler_options.h,
19746         src/fileselection.c,
19747         src/fileselection.h,
19748         src/mainmenu_callbacks.c,
19749         src/project_dbase_gui.c,
19750         src/session.c,
19751         src/src_paths.c,
19752         src/src_paths.h,
19753         src/text_editor.c,
19754         src/text_editor_gui.c,
19755         widgets/gnomefilelist.c,
19756         widgets/gnomefilelist.h: GNOME2 porting.
19757         
19758         * widgets/Makefile.am,
19759         (removed) widgets/gnomedirlist.c,
19760         (removed)widgets/gnomedirlist.h: Removed becuase they are not used.
19761         
19762         * src/Makefile.am,
19763         (removed) src/src_paths_cbs.c,
19764         (removed) src/src_paths_cbs.h,
19765         (removed) src/src_paths_gui.c,
19766         (removed) src/compiler_options_cbs.c,
19767         (removed) src/compiler_options_cbs.h,
19768         (removed) src/breakpoints_cbs.c,
19769         (removed) src/breakpoints_cbs.h: Removed because they are now
19770         combined in singe file
19772 2003-01-16  Naba Kumar <naba@gnome.org>
19774         * src/anjuta.glade, src/anjuta_dialogs_strings.c,
19775         src/compiler_options.c, src/compiler_options_cbs.c: Fixed compiler
19776         options dialog UI and data handling.
19779 2003-01-15  Naba Kumar <naba@gnome.org>
19781         * src/commands.[c,h], src/anjuta.glade, src/anjuta_dialogs_strings.c:
19782         Completed command editor porting.
19783         
19784         * src/anjuta.c: Removed the use of commands load function
19785         (not required).
19787         * src/text_editor_gui.c, src/test_editor.c: Added back widgets refs
19788         and unrefs.
19790         * src/anjuta-tools.c: Fixed translatable strings.
19791         
19792         * src/find_text.c: Fixed dialog creation from glade.
19793         
19794         * src/text_editor_gui.c, src/text_editor.c,
19795         src/text_editor_cbs.c: Completed port of detached text editor
19796         to gnome2 plateform.
19797         
19798 2003-01-14  Naba Kumar <naba@gnome.org>
19800         * src/anjuta.glade, src/preferences.[h,c],
19801         src/anjuta_dialogs_strings.c: Added build and editor
19802         preferences pages and other UIs. Fixed preferense loading and saving.
19803         
19804         * src/anjuta.c: Does case-insensitive match for tabs position
19805         preferences and removed preferences loading (done at _new() call).
19806         
19807         * anjuta-tools.c: Debugged tools dialog handling.
19808         * plugins/class-gen/clsGen.c: Fixed an undefined function.
19809         
19810 2003-01-13  Naba Kumar <naba@gnome.org>
19812         * ABOUT-NLS: Update (strange).
19814         * autogen.sh: Removed blocking code.
19816         * configure.in: Fixed an autogen bug.
19817         
19818 2003-01-13  Naba Kumar <naba@gnome.org>
19820         * (new)src/anjuta.gladep
19821         (new)src/messagebox.c
19822         (new)src/messagebox.h: Added files. References to messagesbox.[c,h]
19823         will be gradually removed (and then the files).
19824         
19825         * Makefile.am,
19826         anjuta.prj,
19827         printing/print-util.c,
19828         printing/print.c,
19829         scintilla/ScintillaGTK.c,xx
19830         src/Makefile.am,
19831         src/an_file_view.c,
19832         src/an_symbol_view.c,
19833         src/anjuta.c,
19834         src/anjuta.glade
19835         src/anjuta.h,
19836         src/anjuta_dialogs_strings.c,
19837         src/anjuta_gui.c,
19838         src/attach_process.c,
19839         src/attach_process.h,
19840         src/breakpoints.c,
19841         src/breakpoints.h,
19842         src/breakpoints_cbs.c,
19843         src/commands.c,
19844         src/commands.h,
19845         src/compiler_options.c,
19846         src/compiler_options.h,
19847         src/compiler_options_cbs.c,
19848         src/configurer.c,
19849         src/configurer.h,
19850         src/controls.c,
19851         src/cvs_cbs.c,
19852         src/debug_tree.c,
19853         src/debug_tree.h,
19854         src/executer.c,
19855         src/executer.h,
19856         src/find_in_files.c,
19857         src/find_in_files.h,
19858         src/find_in_files_cbs.c,
19859         src/find_replace.c,
19860         src/find_replace.h,
19861         src/find_text.c,
19862         src/find_text.h,
19863         src/goto_line.c,
19864         src/help.c,
19865         src/help.h,
19866         src/launcher.c,
19867         src/main.c,
19868         src/main_menubar.c,
19869         src/mainmenu_callbacks.c,
19870         src/message-manager.c,c
19871         src/pixmaps.h,
19872         src/preferences.c,
19873         src/project_config.c,
19874         src/project_config.h,
19875         src/project_dbase.c,
19876         src/project_import_cbs.c,
19877         src/resources.c,
19878         src/resources.h,
19879         src/splash.c,
19880         src/src_paths.c,
19881         src/src_paths.h,
19882         src/src_paths_gui.c,
19883         src/text_editor.c,
19884         src/text_editor_gui.c,
19885         src/toolbar.c,
19886         src/toolbar.h,
19887         src/utilities.c,
19888         src/utilities.h,
19889         src/wizard_gui.c,
19890         widgets/gnomefilelist.c: GNOME2 Port.
19892 2003-01-10  Naba Kumar  <naba@gnome.org>
19894         * src/an_file_view.c,
19895         src/anjuta_gui.c,
19896         src/appwizard_gui.c,
19897         src/compiler_options.c,
19898         src/compiler_options_cbs.c,
19899         src/cvs_cbs.c,
19900         src/executer.c,
19901         src/fileselection.c,
19902         src/find_in_files.c,
19903         src/goto_line.c,
19904         src/main_menubar.c,
19905         src/memory.c,
19906         src/message-manager-dock.c,
19907         src/preferences.c,
19908         src/project_dbase_gui.c,
19909         src/project_import_gui.c,
19910         src/registers_gui.c,
19911         src/sharedlib_gui.c,
19912         src/src_paths_gui.c,
19913         src/text_editor_gui.c,
19914         src/toolbar.c,
19915         src/watch_gui.c: GNOME2 porting. Fixed unresolved symbols
19917 2003-01-09  Naba Kumar <naba@gnome.org>
19919         * scintilla/RESearch.cxx: Removed cvs logging as it was creating
19920         problems with some comments.
19922         * anjuta.prj: New project file (updated?)
19924         * src/Makefile.am: Enabled deprecated API and fixed variables.
19926         * src/an_file_view.c,
19927         src/an_symbol_view.c,
19928         src/anjuta-plugins.c,
19929         src/anjuta-tools.c,
19930         src/anjuta.c,
19931         src/anjuta_gui.c,
19932         src/appwizard_cbs.c,
19933         src/attach_process.c,
19934         src/attach_process_cbs.c,
19935         src/compiler_options.c,
19936         src/compiler_options_cbs.c,
19937         src/launcher.c,
19938         src/mainmenu_callbacks.c,
19939         src/message-manager-private.c,c
19940         src/message-manager-private.h,
19941         src/message-manager.c,c
19942         src/message-manager.h,
19943         src/project_dbase.c,
19944         src/project_dbase.h,
19945         src/project_dbase_gui.c,
19946         src/project_import_cbs.c,
19947         src/project_import_gui.c,
19948         src/registers.c,
19949         src/resources.c,
19950         src/resources.h,
19951         src/sharedlib.c,
19952         src/signals.c,
19953         src/signals_cbs.c,
19954         src/signals_gui.c,
19955         src/splash.c,
19956         src/src_paths_cbs.c,
19957         src/src_paths_gui.c,
19958         src/stack_trace.c,
19959         src/text_editor.c,
19960         src/text_editor_gui.c,
19961         src/text_editor_menu.c,
19962         src/toolbar.c,
19963         src/toolbar_callbacks.c,
19964         src/utilities.c,
19965         src/watch.c,
19966         src/watch_cbs.c,
19967         src/wizard_gui.c: GNOME porting.
19969 2002-12-24 Naba Kumar <naba@gnome.org>
19971         * AUTHORS, ChangeLog, HACKING, Makefile.am,
19972         NEWS, README, SEARCH-REPLACE,
19973         THANKS, TODO, acinclude.m4, anjuta.prj, anjuta.spec.in, configure.in, 
19974         setup-gettext, data/*, doc/.cvsignore, global-tags/*,
19975         launcher/Makefile.am,
19976         launcher/anjuta_launcher.c, macros2/*, manuals/*/*/*/*,
19977         plugins/class-gen/clsGen.c, plugins/patch/patch-plugin.c,
19978         plugins/sample1/plugin-sample1.c, printing/print-doc.c,
19979         printing/print-util.c, printing/print.c, printing/print.h,
19980         scintilla/*/*, widgets/e-shell-about-box.c,
19981         src/*, tagmanager/*/*, widgets/Makefile.am,
19982         widgets/gnomefilelist.c:
19983         
19984         Merged with ANJUTA_1_0_0 branch (at tag MERGE_LEVEL_1) and ported many
19985         src/*.[c,h] files to gnome2 API.
19987         * src/anjuta_dialogs_strings.c: Added glade generated translatable
19988         strings table.
19990 2002-10-23  Naba Kumar <naba@gnome.org>
19992         * autogen.sh: Prevented Users from building HEAD cvs.
19993         
19994 2002-09-16  Stephane Demurget  <demurgets@free.fr>
19996         * src/anjuta.glade: added the compiler options dialog, hopefully
19997         HIG-1.0 compliant. Perhaps some accelerators are duplicated, though.
19999 2002-09-15  Stephane Demurget  <demurgets@free.fr>
20001         * src/anjuta.glade: fixed a lot of small glitches.
20003         * src/commands.[ch]: more gnome 2 port. only instant apply is missing
20004         now.
20006         * src/breakpoints_cbs.c: polished a bit.
20008 2002-09-15  Stephane Demurget  <demurgets@free.fr>
20010         * src/anjuta.glade: added the commands dialog fully HIG-1.0 compliant.
20012         * src/commands.c: partial gnome 2 port.
20014         * src/utilities.[ch]: changed some bits to be const.
20016 2002-09-14  Stephane Demurget  <demurgets@free.fr>
20018         * src/Makefile.am: removed breakpoints_gui.c and added a check
20019         for gdk-pixbuf deprecated functions, but there shouldn't be much
20020         anyway.
20022         * src/breakpoints_gui.c: killed.
20024         * src/anjuta.glade: added two dialogs for the breakpoints management.
20026         * src/anjuta.h:
20027         * src/anjuta_cbs.c:
20028         * src/appwizard.c:
20029         * src/attach_process.c:
20031         * src/breakpoints*.[ch]: cleaned, simplified and polished up a lot of things,
20032         really huge changes and porting work.
20033         
20034         * src/breakpoints.[ch] (treeview_enabled_toggled): impl.
20035         (breakpoints_dbase_new): moved the UI init bits here.
20037         * src/breakpoints_cbs.[ch] (breakpoints_dbase_add_brkpnt): simplified
20038         a lot, not using any color anymore (not HIG compliant) and not using
20039         BrkPtItem thanks to libglade. 4 issues marked with #warning that have
20040         to be double checked.
20042         * src/build_file.c:
20043         * src/build_project.c: gnome 2 port.
20045 2002-09-11  Stephane Demurget  <demurgets@free.fr>
20047         * src/anjuta.glade:
20048         * src/anjuta.h:
20049         * src/anjuta_cbs.c:
20050         * src/appwizard.c:
20051         * src/breakpoints.c:
20052         * src/breakpoints_cbs.c: cleaned up some bits.
20054 2002-09-09  Stephane Demurget  <demurgets@free.fr>
20056         * src/Makefile.am:
20057         * src/messagebox.[ch]: killed. Not HIG compliant at all :/
20059         * src/an_symbol_view.[ch]:
20060         * src/attach_process_cbs.h: polished a bit.
20062         * src/breakpoints_cb.[ch]: partial gnome 2 port.
20064 2002-09-02  Stephane Demurget  <demurgets@free.fr>
20066         * configure.in:
20067         * src/Makefile.am: added libglade-2 to the build.
20069         * src/anjuta.[ch]: added support for libglade.
20071         * src/anjuta.glade: added. There could be a file per top-level widget,
20072         as some other gnome projects, though.
20074         * src/attach_process_gui.c: removed.
20075         * src/attach_process.[ch]: gnome 2 port.
20076         (attach_process_new): Added the treeview init and the widget references
20077         here.
20079 2002-08-31  Stephane Demurget  <demurgets@free.fr>
20081         * src/an_file_view.c: fixed some compilation issues.
20083         * src/an_symbol_view.c: gnome 2 port.
20085 2002-08-26  Stephane Demurget  <demurgets@free.fr>
20087         * src/an_file_view.c: finished gnome 2 port.
20088         (on_file_view_row_expanded), (on_file_view_row_collapsed): change the
20089         directory pixmap depending on the event.
20091         * src/project_dbase.h: s/GtkTreeIter/GtkTreeRowReference/.
20092         (project_file_data_new): use a GtkTreePath.
20094 2002-08-23  Stephane Demurget  <demurgets@free.fr>
20096         * src/Makefile.am: readded back an_*_view.[ch] because they are still
20097         driving me nuts but they need to be ported, heh ?
20099         * src/an_file_view.c: gnome 2 port, almost finished after some hard
20100         work since it's quite a total rewrite again.
20102 2002-08-22  Stephane Demurget  <demurgets@free.fr>
20104         * src/an_file_view.c:
20105         * src/project_dbase.h: s/GtkTreePath/GtkTreeIter/.
20107 2002-08-21  Stephane Demurget  <demurgets@free.fr>
20109         * src/anjuta_info.c:
20110         * src/utilities.h: gnome 2 port, featuring a total rewrite.
20112 2002-08-20  Stephane Demurget  <demurgets@free.fr>
20114         * src/Makefile.am: removed an_*_view.[ch] because they're driving me
20115         nuts ATM.
20116        
20117         * src/an_file_view.c:
20118         * src/aneditor.cxx:
20119         * src/anjuta_cbs.c:
20120         * src/compiler_options.h:
20121         * src/messagebox.c:
20122         * src/messagebox.h:
20123         * src/pixmaps.h:
20124         * src/project_dbase.h:
20125         * src/resources.h: gnome 2 port.
20127 2002-08-14  Stephane Demurget  <demurgets@free.fr>
20129         Added missing keywords reported by Lucca Bellonda <lbell@tsc4.com>.
20131         * data/properties/sql.properties: added the DATETIME data type.
20133         * data/properties/html.properties: added the foreach php keyword.
20135 2002-08-08  Stephane Demurget  <demurgets@free.fr>
20137         * widgets/Makefile.am: removed blank line after the last backslash
20138         for avoiding a warning from automake.
20140         * configure.in:
20141         * src/Makefile.am: added the ORBit-2 dep.
20143 2002-08-08  Stephane Demurget  <demurgets@free.fr>
20145         * AUTHORS: added Biswa, because I wonder why noone already have
20146         written his name in the Anjuta's hall of fame :)
20148 2002-08-01  Naba Kumar <kh_naba@users.sourceforge.net>
20150         * widgets/Makefile.am, widgets/gnomefilelist.[c,h], widgets/gnomedirlist.[c,h],
20151         widgets/e-shell-about-box.c: Made to compile for gnome2.
20152         
20153 2002-07-31  Naba Kumar <kh_naba@users.sourceforge.net>
20155         * scintilla/PlatGTK.cxx, scintilla/Scintilla.cxx,
20156         scintilla/include/ScintillaWidget.h: Made to compile for gtk2.
20157         
20158         * configure.in, printing/print.h, printing/print.c,
20159         printing/print-doc.c: Made to compile for gnome2.
20160         
20161 2002-07-30  Naba Kumar <kh_naba@users.sourceforge.net>
20163         * configure.in, acconfig.h, Makefile.am, autogen.sh, launcher/Makefile.am,
20164         plugins/class-gen/Makefile.am, plugins/patch/Makefile.am, plugins/sample1/Makefile.am,
20165         printing/Makefile.am, src/Makefile.am, tagmanager/include/Makefile.am,
20166         widgets/Makefile.am:
20167         
20168         Upgraded the build system to gnome2 platform.
20169         
20170 2002-12-19  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20171         * manuals/*: Added capability to generate PDF and PS.
20172         * src/debugger.c, data/gdb.init: Solaris GDB fixes.
20173         * TODO, TODO.biswa: Intergated TODO list.
20174         * src/project_dbase.c: Patch by TTimo (pref saving), bug #636542
20175         , bug #574470
20176         * src/dnd.c: Fix typo
20177         * src/an_[symbol|file]_view.c: Hide when updating (reduced flicker)
20178         * src/anjuta.c: Bug #568895, Bug #575419
20180 2002-12-18  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20182         * tagmanager/tm_global_tags.c: Fixed compiler warning.
20183         * manuals/C/anjuta-faqs/anjuta-faqs.sgml: Updated FAQ.
20185 2002-12-17  Naba Kumar <naba@gnome.org>
20187         * Makefile.am, src/Makefile.am, src/main.c: Fixed a couple of distcheck
20188         bugs.
20189         
20190 2002-12-17  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20191         * manuals/C/anjuta-manual/*: Updated manual to include tool editor.
20192         * scintilla/LexCPP.cxx: Disable doxygen comment highliting.
20193         * anjuta.prj: Added tools.sgml
20194         * data/properties/cpp.properties: Bug # 646974
20196 2002-12-16  Naba Kumar <naba@gnome.org>
20198         * src/goto_line.c: Ordered 'Ok' and 'Cancel' button in the right order.
20199         * src/configurer.c, src/anjuta_info.c, src/attac_process_gui.c,
20200         src/executer.c, src/launcherc, src/breakpoints_gui.c, src/help.c: Activates
20201         on 'Enter' and adds proper focus mechanism.
20202         * src/anjuta.c: Fixed a memory corruption bug.
20203         * src/anjuta-tools.c, anjuta.glade: Tools parameter dialog activates on
20204         'Enter' and can also be Canceled. Sets proper default and focus policies
20205         for tools dialogs.
20206         * src/main_menubar_def.h: Fixed typos, added icons and added hot keys.
20207         * anjuta.glade, src/Makefile.am, src/anjuta_dialog_strings.c: Enabled
20208         translatable strings in dialogs and fixed some dialog properties.
20209         * src/anjuta-tools.c: Now uses xml format for loading and saving.
20210         * configure.in, anjuta.spec.in, anjuta.prj: Bumped version to 1.0.1
20211         * src/message_manager_private.cc: Fixed some debug messages.
20212         * src/print.c, src/print-doc.c, src/anjuta-tools.c, src/anjuta.c,
20213         widgets/gnomefilelist.c: Fixed a memory leaks.
20214         * src/toolbar.[ch], src/text_editor.[ch], src/find_text.[ch],
20215         src/toolbar_callbacks.[ch], src/mainmenu_callbacks.c,
20216         src/main_menubar_def.h: Implemented incremental search.
20217         * TODO: Updated.
20219 2002-12-14  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20220         * tagmanager/*: Minor cleanups and warning fixes.
20221         * src/an_symbol_view.c, src/an_file_view.c: Do not freeze the
20222         GUI during long updates.
20223         * src/text_editor.c: Remove debug message.
20225 2002-12-13  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20226         * tagmanager/tm_project.c: Fix a memory access problem.
20228 2002-12-13  Naba Kumar <naba@gnome.org>
20230         * anjuta.glade, src/anjuta-tools.c: Added a new column in the
20231         tools list to show "Enabled" flag of the tool. Fixed a bug where
20232         tool list is not cleared when creating a new tool.
20233         
20234 2002-12-13  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20235         * anjuta.glade, src/anjuta-tools.c: Added user params to tools.
20237 2002-12-12  Naba Kumar <naba@gnome.org>
20239         * anjuta-tools.[h,c], commands.c: Used the tools help of
20240         anjuta variables list in commands editor and fixed a typos
20241         buy in anjuta-tools.c.
20242         
20243 2002-12-12  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20244         * anjuta.glade, src/anjuta-tools.c, src/text_editor.[ch]
20245         , src/mainmenu_callbacks.c, controls.c: Tools editor stuff.
20246         * TODO.biswa: Added to help me track things better.
20248 2002-12-11  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20250         * configure.in, anjuta.spec.in: Added libglade dependency.
20251         * Makefile.am: Added anjuta.glade file.
20252         * src/anjuta-tools.c, src/main.c, src/main_menubar_def.h
20253         , src/mainmenu_callbacks.[ch], src/message-manager.h
20254         , src/widget-registry.c: Tools editor GUI + other additions.
20256 2002-12-09  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20258         * src/project_dbase.[ch], tagmanager/tm_project.c,
20259         tagmanager/include/tm_project.h, src/mainmenu_callbacks.c:
20260         Implement syncing tags image with the project database.
20261         * src/anjuta-tools.c: Implemented variable substitution and
20262         working directory in tools.
20264 2002-12-09  Naba Kumar <naba@gnome.org>
20265         
20266         * data/properties/anjuta.properties, src/commands.[ch]: Reads the
20267         command configuration language list from properties.
20268         
20269         * data/properties/asm.properties, data/properties/ruby.properties:
20270         Fixed typos.
20272 2002-12-04  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20274         * src/an_symbol_view.c: Remember current selected entry and select
20275         it automatically after refresh.
20277 2002-11-26  Murray Cumming  <murrayc@usa.net>
20279         * src/project_type.c, src/project_dbase.c, src/stock_libs.anj,
20280           src/compiler-options.c, src/wizard_gui.c: Renamed gtkmm 1.2
20281         and gnomemm 1.2 projects so that people know they are really
20282         glademm projects. The gtkmm 2 and gnomem 2 projects are OK though.
20283         But I did correct these to sue lowercase names.
20285 2002-12-01  Naba Kumar <naba@gnome.org>
20287         * data/anjuta.properties: Fixed caching problem on 
20288         indicators.
20289         * src/preferences.c, src/preferences_gui.c: Implemented automatic
20290         indicators prefs.
20291         
20292 2002-12-01  Naba Kumar <naba@gnome.org>
20294         * data/properies/anjuta.properties: Corrected "indicators.automatic"
20295         property name.
20296         * src/anjuta.c, src/preferences.h: Added MESSAGES_INDCATORS_AUTOMATIC
20297         property and uses it.
20298         * src/aneditor.cxx: Fixed a bug associated with selection a word at
20299         current cursor.
20300         
20301 2002-11-30  Naba Kumar <naba@gnome.org>
20303         * src/debugger.c: Fixed a typo.
20304         * data/properties/*: Updated properties files and added
20305         new ones.
20306         * src/main_menubar_def.h, main_menubar.[hc], mainmenu_callbacks.[hc]:
20307         Added comment submenu and cleaned up ref and unref of menus.
20308         * src/aneditor.h: Added definition of comment commands.
20309         * src/aneditor.c: Upgrade from latest SciTE source code.
20310         * src/text_editor.[hc], src/text_editor_cbs.c, 
20311         src/message_manager_private.cc, src/message_manager.[cc,h],
20312         src/anjuta.[c,h]: Added indicators support for errors/warnings
20313         highlight in the editor.
20314         * NEWS, TODO: Update.
20315         * scintilla/include/PropSet.h: Removed deprecrated function.
20316         
20317 2002-11-29  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20319         * src/anjuta-tools.[ch]: Tools implementation (basic)
20320         * src/anjuta-plugins.[ch], src/anjuta.[ch], src/main_menubar.[ch]
20321           , src/main_menubar_def.h: PLugins cleanup and segregation
20322         * src/widget-registry.[ch], src/main_menubar.[ch]: Start of a widget
20323           registry
20324         * anjuta.prj: Added new files
20325         * manuals/C/anjuta-faqs/anjuta-faqs.sgml: New FAQ entry
20326         * plugins/class-gen/clsGen.c: Register menu under 'Project'
20327         * plugins/patch/patch-plugin.c: Register menu under 'Format'
20328         * plugins/sample1/plugin-sample1.c: Register menu under 'View'
20329         * src/Makefile.am: Added new files
20330         * src/message-manager.[cc/h]: Added standard output and error windows
20332 2002-11-26  Johannes Schmid <clubfan@users.sourceforge.net>
20334         * project_type.c: Fixed Gnomemm2 project type
20336 2002-11-25  Naba Kumar <naba@gnome.org>
20338         * printing/print.c: Fixed a compile warning.
20339         * scintilla/Autocomplete.cxx: Applied missing patch from Biswa
20340         * src/utilities.c: Fixed a compile warning in sparc, hides the
20341         terminal check error output from the user.
20342         * project_config.[ch], project_dbase.[ch], source.c: Added project
20343         version, exclude modules configuration and reordered other config
20344         properties. Changed some strings to more descriptive text.
20345         * src/compiler_opitions.c: Removed extra newlines from .prj file
20346         save.
20347         * anjuta.prj: Converted to new format (only reorganised properties
20348         and removed extra newlines ... nothing else).
20349         * NEWS: updated
20350         
20351 2002-11-21  Naba Kumar <naba@gnome.org>
20353         * Editor.cxx, Editor.h, include/SciLexer.h, include/Scintilla.h,
20354         include/Scintilla.iface, KeyMap.cxx, KeyWords.cxx, LexCPP.cxx,
20355         LexFortran.cxx, LexHTML.cxx, LexMatlab.cxx, LexOthers.cxx,
20356         LineMarker.h, PropSet.cxx, RESearch.cxx, ScintillaBase.cxx:
20357         Updated to the CVS version.
20359 2002-11-20  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20361         * scintilla/AutoComplete.[cxx,h], scintilla/PlatGTK.cxx
20362           , scintilla/include/Platform.h, scintilla/ScintillaBase.cxx
20363           , scintilla/include/Scintilla.h, src/aneditor.cxx: Implement
20364           images in completion lists. 
20365         * src/resources.h: Make C++ friendly.
20366         * scintilla/PropSet.cxx: Fix memory leak.
20368 2002-11-20  Naba Kumar <naba@gnome.org>
20370         * scintilla/*/*: Synced to latest scintilla 1.49
20371         * scintilla/LexAsm.cxx, scintilla/LexFortran.cxx, src/Makefile.am:
20372         New lexers added.
20374         * scintilla/RESearch.cxx: The automatic cvs log in the
20375         file really broke things trying to interprete the changelog
20376         entry incorrectly as end-of-comment. Removed the $cvs line
20377         and committed again.
20378         
20379 2002-11-19  Naba Kumar <naba@gnome.org>
20381         Patch from Timothee Besset <ttimo@idsoftware.com>
20382         
20383         * src/message-manager-private.cc: Interpretes absolute
20384         file paths properly in zvt terminal.
20386 2002-11-19  Naba Kumar <naba@gnome.org>
20388         Patch from Timothee Besset <ttimo@idsoftware.com>
20389         
20390         * src/preferences.c, src/preferences_gui.c, src/project_dbase.c,
20391         src/properties.cxx, src/properties.h, anjuta.prj: Saves some of the 
20392         (important) editor preferences in project (if there is one
20393         open).
20394         
20395         * TODO: Updated
20396         
20397 2002-11-18  Naba Kumar <naba@gnome.org>
20398         
20399         Patch from: Jean-Noel Guiheneuf <jnoel@saudionline.com.sa>
20400         
20401         * src/debug_tree.c, src/find_in_files_gui.c,
20402         src/find_replace.c, src/find_text.c, 
20403         src/project_import.c, src/project_import_gui.c,
20404         src/wizard_gui.c: i18n Fixes.
20406 2002-11-15  Naba Kumar <naba@gnome.org>
20408         * plugins/class-gen/clsGen.c: Fixed to use project function
20409         to import files. Create non-existent directories before the
20410         sources are written.
20411         
20412         * configure.in, src/Makefile.am, src/main.c, src/preferences_gui.c,
20413         src/preferences.c, src/CORBA-Server.c,src/CORBA-Server.h,
20414         src/glade_iface.c,
20415         src/glades.c: Excluded gladen files from build. This
20416         will fix the unnecessary dependency on libssl.
20417         
20418         * src/project_dbase.[c,h], src/project_dbase_gui.c: Refined
20419         file import funtion.
20420         
20421         * src/message_manager_private.cc: Fixed a compiler warning with
20422         DEBUG preprocessor macro.
20423         
20424         * src/text_editor_cbs.c, src/main_menu_callbacks.c: Fixed a bug where
20425         wrong (undocked) editor window was closed on clicking close on an
20426         undocked editor window.
20427         
20428         * src/debugger.c: Fixed a bad bug where debugger terminal won't
20429         start correctly if the executable was run before with 'F3'.
20430         
20431         * src/toolbar_callbacks.c: Wrap around find next.
20432         * src/toolbar.c: Disable combo activate.
20433         * src/find_text.c (on_find_text_ok_clicked): Swapped 'yes' and 'no'
20434         button positions to get 'yes' as default.
20436         * anjuta.spec.in: Updated.
20437         
20438         * src/anjuta_info.c, src/appwizard_gui.c,
20439         src/attach_process_gui.c, src/breakpoints_gui.c,
20440         src/commands.c, src/compiler_options_gui.c, src/configurer.c,
20441         src/cvs.c, src/cvs_gui.c, src/debugger.c, src/executer.c,
20442         src/find_in_files_gui.c, src/find_replace.c, src/find_text.c,
20443         src/help.c, src/launcher.c, src/main.c, src/mainmenu_callbacks.c,
20444         src/memory.c, src/message-manager-private.cc, src/message-manager.cc,
20445         src/preferences.c, src/preferences_gui.c, src/project_config.c,
20446         src/project_dbase.c, src/project_dbase.h, src/project_dbase_gui.c,
20447         src/project_import_gui.c, src/registers_gui.c, src/sharedlib_gui.c,
20448         src/signals_gui.c, src/source.c, src/src_paths_gui.c,
20449         src/stack_trace_gui.c, src/text_editor_cbs.c, src/text_editor_gui.c,
20450         src/toolbar.c, src/toolbar_callbacks.c, src/watch.h, 
20451         src/watch_cbs.c, src/watch_gui.c, plugins/class-gen/clsGen.c,
20452         plugins/patch/patch-plugin.c, printing/print-util.c:
20453         Set all windows and dialogs transient
20454         to their parents so that they remain floated above their parents.
20455         
20456 2002-11-13  Naba Kumar <naba@gnome.org>
20458         * printing/print.c: Fixed a leak and bug #634819 (print/preview does not
20459         take default editor font).
20460         
20461         * widgets/e-shell-about-box.c, src/main_menubar_def.h:
20462         Corrected email address.
20463         
20464         * src/mainmenu_callbacks.c: Used spaces instead of tabs
20465         for changelog entry.
20467         * NEWS: Updated.
20468         
20469 2002-11-06  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20470         * plugins/class-gen/clsGen.c: Refined the class generator a bit.
20472 2002-11-06  Naba Kumar <naba@gnome.org>
20474         * README: Updated
20475         * anjuta.spec.in: Ships the .omf files with the
20476         documents instead of the base package.
20477         
20478 2002-11-04  Naba Kumar <naba@gnome.org>
20480         * data/properties/latex.properties: Fixed a bug.
20481         * ChangeLog: Released 1.0.0 stable.
20483 2002-11-04  Naba Kumar <naba@gnome.org>
20485         * src/commands.c: Added command with shell redirection capability.
20486         * data/properties/anjuta.properties: Changed default execution
20487         command.
20488         * src/project_dbase.c: Set project top dir in properties.
20489         * Makefile.am: Recurse scripts/ before data/ to fix a distcheck error.
20490         * data/Makefile.am: More diskcheck error fixes.
20491         
20492         * README, anjuta.spec.in, THANKS, AUTHORS,
20493         manuals/C/anjuta-faqs/anjuta-faqs.sgml,
20494         manuals/C/anjuta-manual/authers,sgml,
20495         manuals/C/anjuta-manual/anjuta-manual.sgml,
20496         manuals/C/anjuta-manual/anjuta-manual-C.omf,
20497         manuals/C/anjuta-manual/anjuta-manual-ja_JP.eucJP.omf
20498         : Changed anjuta home to
20499         new URL and my email address.
20500         
20501         * manuals/C/anjuta-manual/interfaces.sgml,
20502         manuals/C/anjuta-manual/prefereces.sgml,
20503         manuals/C/anjuta-faqs/anjuta-faqs.sgml: Fixed typos and updated.
20504         
20505         * src/main_menubar.[c,h], src/controls, src/toolbar_callbacks.c
20506         : removed reference to the help menu as the menu is modified
20507         when no help is found (which is very likely when we are
20508         shiping the documents separately).
20509         
20510 2002-11-03  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20511         * anjuta.spec.in: Update specfile to make multiple RPMs.
20512         * data/Makefile.am: make dist fix.
20513         * src/text_editor_menu.c: Fix compile warnings (casts).
20515 2002-11-02  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20516         * manuals/C/anjuta-faqs/anjuta-faqs.sgml: FAQ update.
20517         * tagmanager/general.h, src/launcher.c: FreeBSD fixes (RFE #628576)
20519 2002-11-01  Naba Kumar <naba@gnome.org>
20521         * macros2/*, Makefile.am, configure.in, data/Makefile.am:
20522         Added gnome2 macros to be used by gnome2 project wizard.
20523         
20524         * data/autogen.sh.gnome2: Fixed to use our own macros instead of
20525         from gnome-common.
20526         
20527         * macros/Makefile.am: Removed INSIDE_GNOME_COMMAND macro
20528         as it was conflicting with generated projects and is not
20529         useful for us.
20530         
20531         * src/appwiz_page1.c, src/project_dbase.h, src/project_type.c,
20532         src/project_type.h, src/source.c, src/wizard_gui.c: Fixed gnome2
20533         project generation, removed qt project as it's not complete and
20534         added gnome2 bonobo wizard.
20536 2002-10-29  Naba Kumar <naba@gnome.org>
20538         * po/POTFILES.in: Updated.
20539         * po/POTFILES.skip: Added.
20540         * preferences.h: Fixed print paper size property name.
20542 2002-10-28  Naba Kumar <naba@gnome.org>
20543         
20544         * data/user.properties, data/Makefile.am: Added user properties file
20545         which will be copied in user's ~/.anjuta/user.properties.
20546         
20547         * data/anjuta.properties: Changed a comment.
20548         
20549         * macros/gnome-pilot.m4: Upgraged to the cvs head of gnome-macros.
20550         
20551         * src/main_menubar.c, src/main_menubar.h, src/main_menubar_def.h,
20552         src/mainmenu_callbacks.c, src/mainmenu_callbacks.h, src/preferences.c:
20553         Adde [Settings]->[Preferences]->[Edit user.properties file ...] menu
20554         item.
20556         * src/mainmenu_callbacks.c: Fixed a bug that loads system properties file
20557         instead of user properties file.
20558   
20559         * README, anjuta.prj, configure.in: Bumped anjuta version to 1.0.0
20560         * anjuta.spec.in: Added {prefix}/share/doc/anjuta for rpms.
20561         * Makefile.am: Install docs in share/doc/anjuta and not doc/anjuta.
20562         * README, TODO: Updated.
20563         
20564 2002-10-28  Naba Kumar <naba@gnome.org>
20566     * manuals/C/anjuta-manual/figures/editor_guides.png,
20567     manuals/C/anjuta-manual/figures/editor_margins.png,
20568     manuals/C/anjuta-manual/figures/editor_markers.png,
20569     manuals/C/anjuta-manual/figures/local_variables.png,
20570     manuals/C/anjuta-manual/figures/open_file_multiple.png,
20571     manuals/C/anjuta-manual/figures/prefs_print.png,
20572     manuals/C/anjuta-manual/figures/print_dlg.png,
20573     manuals/C/anjuta-manual/figures/print_preview.png,
20574     manuals/C/anjuta-manual/figures/symbol_browser.png,
20575     manuals/C/anjuta-manual/figures/variable_tip.png: New png
20576     files for manual documentation.
20577     
20578     * manuals/sgmldocs.make,
20579     manuals/C/anjuta-manual/Makefile.am,
20580     manuals/C/anjuta-manual/authors.sgml,
20581     manuals/C/anjuta-manual/build.sgml,
20582     manuals/C/anjuta-manual/compileopts.sgml,
20583     manuals/C/anjuta-manual/debugger.sgml,
20584     manuals/C/anjuta-manual/execute.sgml,
20585     manuals/C/anjuta-manual/fileoperations.sgml,
20586     manuals/C/anjuta-manual/interface.sgml,
20587     manuals/C/anjuta-manual/preferences.sgml,
20588     manuals/C/anjuta-manual/projects.sgml,
20589     manuals/C/anjuta-manual/figures/arguments.png,
20590     manuals/C/anjuta-manual/figures/open_file.png,
20591     manuals/C/anjuta-manual/figures/other_opts.png,
20592     manuals/C/anjuta-manual/figures/scrshot.png,
20593     manuals/C/anjuta-manual/figures/toolbar_browser.png,
20594     manuals/C/anjuta-manual/figures/toolbar_tags.png:
20595     
20596     Updated anjuta manual documentation.
20598     
20599 2002-10-27  Naba Kumar <naba@gnome.org>
20601     * utilities.[h,c], debugger.[h,c], commands.c: Added gnome-terminal
20602     check and modifies debugger terminal command accordingly
20603     to function properly.
20604     
20605 2002-10-25  Naba Kumar <naba@gnome.org>
20607         * manuals/sgmldocs.make: Fixed a couple of bugs.
20608         * data/x-anjuta-project.desktop. data/Makefile.am: Mime handling link.
20610 2002-10-24  Naba Kumar <naba@gnome.org>
20612         * src/debug_tree.c: Fixed a crash bug from Etay.
20614         * global_tags/create_global_tags: Added messages.
20615         Fixed infinite looping within files.
20616         
20617         * macro/autogen.sh: Removed debug and warning flags for defaults.
20618         
20619         Patch from Vadim Berezniker <vadim@berezniker.com>
20620         
20621         * tagmanager/tm_workspace.[h,c], global-tags/create_global_tags.sh,
20622         global-tags/tm_global_tags.c: Fixed infinite loop in system tags
20623         generation.
20625         * Makefile.am: XML merge is broken for .destop in RH 8.0, so
20626         temporarily just copy it
20628 2002-10-24  Naba Kumar <naba@gnome.org>
20630         * manuals/sgmldocs.make, anuals/C/anjuta-faqs/anjuta-faqs.sgml,
20631         manuals/C/anjuta-manual/anjuta-manual.sgml, 
20632         manuals/C/anjuta-manual/compileopts.sgml,
20633         manuals/C/anjuta-manual/debugger.sgml,
20634         manuals/C/anjuta-manual/execute.sgml,
20635         manuals/C/anjuta-manual/fileoperations.sgml,
20636         manuals/C/anjuta-manual/interface.sgml,
20637         manuals/C/anjuta-manual/introduction.sgml,
20638         manuals/C/anjuta-manual/projects.sgml,
20639         manuals/C/anjuta-tutorial/anjuta-tutorial.sgml,
20640         manuals/ja/anjuta-faqs/anjuta-faqs.sgml,
20641         manuals/ja/anjuta-manual/anjuta-manual.sgml,
20642         manuals/ja/anjuta-manual/compileopts.sgml,
20643         manuals/ja/anjuta-manual/debugger.sgml,
20644         manuals/ja/anjuta-manual/execute.sgml,
20645         manuals/ja/anjuta-manual/fileoperations.sgml,
20646         manuals/ja/anjuta-manual/interface.sgml,
20647         manuals/ja/anjuta-manual/introduction.sgml,
20648         manuals/ja/anjuta-manual/projects.sgml: Upgraded to Docbook 4.0
20650 2002-10-24  Naba Kumar <naba@gnome.org>
20652         * src/project_type.c: added autogen for qt projects.
20653         * src/debugger.c: enabled debugger debugging for DEBUG MODE.
20654         Fixed a bug that retrieves wrong terminal command.
20655         * src/commnads.c: Added more terminal commands.
20656         * configure.in: Checks for scrollkeeper version.
20657         
20658 2002-10-22  Naba Kumar <naba@gnome.org>
20660         * configure.in, acinclude.m4, setup-gettext: Used AM_GNU_GETTEXT
20661         instead of AM_GNOME_GETTEXT.
20662         
20663         * src/source.c, data/autogen.sh.*, data/Makefile.am: Added support
20664         for setup-gettext for the wizard generated projects.
20666         * src/source.c: Fixed a bug where glade file wasn't generated.
20667         
20668         * src/gnome_project.c: Excluded project version from project dir
20669         name.
20670         
20671 2002-10-22  Naba Kumar <naba@gnome.org>
20673         * acinclude.m4: New file with dummy funtion for gettext
20674         cross compatibility fix.
20675         
20676         * configure.in, setup-gettext: Fixed to use with AM_GNOME_GETTEXT.
20677         * configure.in: Fixed cflags to avoid useless warnings.
20678         * Makefile.am: EXTRA_DIST += setup-gettext.
20679         * src/toolbars.c: Added space paddings around tags label.
20681 2002-10-21  Naba Kumar <naba@gnome.org>
20683         Patch from Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20684         
20685         * setup-gettext: New script to maintain gettext cross version
20686         compatibility.
20687         * configure.in, macros/autogen.sh: Fix for gettext cross version
20688         compatibility.
20689         
20690 2002-10-21  Naba Kumar <naba@gnome.org>
20692         * debug_tree.c: Fixed incorrect use of debug assertion.
20693         
20694 2002-10-18  Etay Meiri <etay-m@bezeqint.net>
20695             Jean-Noel Guiheneuf <jnoel@saudionline.com.sa>
20696         * src/debug_tree.c, src/debug_tree.h, src/debugger.c,
20697         src/memory.c, src/memory.h, src/message-manager-private.cc:
20698         
20699         New parsing algorithm; adapted from kdevelop.
20700         Middle button menu for changing the value's display type
20702 2002-10-07  Naba Kumar <naba@gnome.org>
20704         * src/main_menubar_def.h: Changed status bar message for Help->
20705         Browse info pages. Bug #603308
20707         * src/executer.c: Made "User terminal" default for creating
20708         projects (User can always disable it later). Bug #114222
20709         
20710 2002-10-03  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20712         * macros/autogen.sh: Require gettext 0.10.x for autogen
20713         * src/text_editor.c: Fixes Bug #595303
20714         * src/source.c: Fixes Bug #595970
20715         * src/anjuta.c: Fixes Bug #598366
20716         * scingtilla/LexCPP.cxx: Bug #602296
20717         * src/main_menubar_def.h: Bug #604363
20718         * src/find_in_files.[h,c], src/find_in_files_gui.c: Buf #608679
20719         
20720 2002-10-07  Jens Georg <mail@jensgeorg.de>
20722         Reviewed by: Naba Kumar <kh_naba@gnome.org>
20723         * gnomefilelist.c: This patch fixes the bug #611542
20724         
20725 2002-09-20  Naba Kumar <kh_naba@gnome.org>
20727         * data/properties/Makefile.am: Added tcltk.properties file.
20728         
20729 2002-09-20      Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20731         Reviewed by: Naba Kumar <kh_naba@gnome.org>
20732         
20733         * README: Updated README
20734         * plugins/class-gen/clsGen.c, src/message_manager.cc
20735           , src/mainmeu_callbacks.c, src/memory.c
20736           , src/project_dbase_gui.c, src/text_editor_gui.c
20737           , widgets/gnomefilelist.c: Set window icons
20738         * configure.in, macros/*, */Makefile.am, anjuta.spec.in:
20739           Enabled release build (stripped + optimized binaries, etc.)
20740         * data/properties/anjuta.properties, src/commands.c,
20741           src/defaults.cFixed bug #595489 (stdin on executables)
20742         * src/appwizard.c, src/main.c, src/message-manager.cc
20743           , src/project_dbase.c, src/toolbar.c, widgets/gnomefilelist.c
20744           , src/debug_tree.c: Memory related (valgrind) fixes.
20745         * src/message-manager-private.[cc,h], src/pixpams.h
20746           , src/preferences.[ch], src/preferences_gui.c: Terminal preferences
20747         * anjuta.prj: Added debug_tree.c to SOURCES
20748         * src/main_menubar_def.h, src/mainmenu_callbacks.[ch],
20749           src/text_editor_menu.c, src/text_editor_gui.c, src/anjuta.c:
20750           Compacted code and cleaned up unnecessary functions.
20751         * tagmanager/*.[ch]: Code fixes.
20752         
20753 2002-08-30  Etay Meiri <etay-m@bezeqint.il>
20754         
20755         Reviewed by: Naba Kumar <kh_naba@gnome.org>
20756         
20757         * src/debug_tree.c, debug_tree.h, debugger.c, message-manager-private.cc:
20758         Debug tree now detects changes of displayed variables
20759         and changes their color to red
20761 2002-09-20  Naba Kumar <kh_naba@gnome.org>
20763         Patch from: Jean-Noel Guiheneuf <jnoel@saudionline.com.sa>
20764         
20765         * mainmenu_callbacks.c: Set's the current file name in
20766         file save as dialog.
20767         
20768 2002-09-20  Naba Kumar <kh_naba@gnome.org>
20770         Patch from: Vlastimil Holer <xholer@informatics.muni.cz>
20772         * data/properties/tcltk.properties: New file for tcl/tk
20773         properties.
20775 2002-08-28      Naba Kumar      <kh_naba@users.sourceforge.net>
20777         * src/project_type.[c,h], src/source.c, data/Makefile.am:
20778         Fixed a fatal bug which doesn't let building gnome2 related
20779         projects. They use different autogen.sh script. Defined new
20780         type field "gnome_macro_support".
20781         
20782         * data/autogen.sh.gnome2: New file.
20783         
20784         * src/utilities.c (anjuta_util_escape_quotes): Fixed a fatal
20785         bug with quotes escaping in quotes.
20786         
20787         * src/message-manager-private.cc: Used event box instead
20788         of frame for local message pane, so that the borders appear
20789         properly and nicely.
20790         
20791         * src/anjuta.c: Fixed bug #600221 -- anjuta crashes on exit
20792         if there is a project open and all the files are un-docked.
20794         * src/dnd.c: Possible fix for bug #512873 Drag And Drop problems.
20796 2002-08-27      Andy Piper      <andy.piper@freeuk.com>
20798         * src/main_menubar_def.h: implement feature request #595356, patch #597161
20799         * THANKS: updated for new contributions
20800         * src/mainmenu_callbacks.c, src/mainmenu_callbacks.h: patch #597161
20802 2002-08-27 Steven Knight  <steven.knight@unh.edu>
20804         * src/appwiz_page1.c, src/pixmaps.h, src/project_dbase.c,
20805         src/project_dbase.h, src/project_type.c, src/source.c, 
20806         src/wizard_gui.c: new Qt project type
20807         *** NB not fully tested, may need some work, icon required...
20809 2002-08-27 Jean-Noel Guiheneuf <jnoel@saudionline.com.sa>
20811         * src/memory.c, src/memory.h: new memory patch
20813 2002-08-27  Johannes Schmid <clubfan@users.sourceforge.net>
20815         * src/anjuta.c: Fixed bug #589646 CVS preferences visibility
20817 2002-08-27      Naba Kumar      <kh_naba@users.sourceforge.net>
20819         * lancher/anjuta_launcher.c: Determine pty from function
20820         call instead of running 'tty' externally.
20821         
20822         * data/properties/cs.properties: Added compile/build commands.
20823         Fixed execution properties.
20824         
20825         * src/commands.c: Added c# options.
20827         (Patch from: Etay Meiri <etay-m@bezeqint.net>)
20828         
20829         * src/debug_tree.[c,h], src/debugger.[c,h],
20830         src/message_manager_private.[cc,h], message_manager.cc, stack_trace.[c,h]:
20831         
20832         The following problems, detected by Jean-Noel Guiheneuf, were fixed:
20833         1. Misaligned structs when they are members of other structs.
20834         2. '{' sometimes appears as a variable.
20835         3. Wrong processing of some arrays.
20836         I've also incorporated some code from a patch by Guiheneuf Jean-Noel
20837         that displays the tree in two columns (variable and value).
20839 2002-08-14  Stephane Demurget  <demurgets@free.fr>
20841         Added missing keywords reported by Luca Bellonda <lbell@tsc4.com>.
20843         * data/properties/sql.properties: added the DATETIME data type.
20845         * data/properties/html.properties: added the foreach php keyword.
20847 2002-08-09      Naba Kumar      <kh_naba@users.sourceforge.net>
20849         * NEWS: Updated with new features.
20850         
20851         * data/.cvsignore, doc/.cvsignore: Updated.
20852         
20853         Patch from: Etay Meiri <etay-m@bezeqint.net>
20854         
20855         * src/debug_tree.h, src/debug_tree.c: New files.
20856         
20857         * src/Makefile.am, src/message-manger-private.[h,cc],
20858         src/message-manger.cc: Added Tree view for debugger
20859         locals view.
20860         
20861 2002-08-09      Naba Kumar      <kh_naba@users.sourceforge.net>
20863         Patch from Jean-Noel Guiheneuf <jnoel@saudionline.com.sa>
20864         
20865         * src/memory.c, src/memory.h: New files.
20866         
20867         * src/Makefile.am, src/appwizard.c, src/controls.c,
20868         src/main_menubar.c, src/main_menubar.h, src/main_menubar_def.h,
20869         src/mainmenu_callbacks.c, src/mainmenu_callbacks.h:
20870         
20871         Memory view implemetation that would enable viewing raw memory
20872         during debugging.
20874 2002-08-08  Stephane Demurget  <demurgets@free.fr>
20876         * AUTHORS: added Biswa, because I wonder why noone already have
20877         written his name in the Anjuta's hall of fame :)
20879 2002-08-07      Naba Kumar      <kh_naba@users.sourceforge.net>
20881         * src/appwizard_gui.c: Removed an ambiguous prototype.
20882         * src/appwizard_gui.c: Removed more ambiguous prototypes. This seem to
20883         fix a nasty PPC bug as reported by Todd Goyen <wettoad@knighthoodofbuh.org>.
20884         * THANKS: Updated M. Ali Vardar's email.
20885         
20886 2002-08-01      Andy Piper      <andy.piper@freeuk.com>
20888         * src/anjuta_gui.c: implemented feature request to stop main and browser
20889           toolbars having exclusive use of space
20891 2002-08-01      Andy Piper      <andy.piper@freeuk.com>
20893         * NEWS: updated for 1.0-beta rele.c: commented the define for ANJUTA_DEBUG_DEBUGGER
20894         left over from the previous work to fix bugs :-)
20895         
20896         * src/main_menubar_def.h, src/main_menubar.h, src/main_menubar.c, 
20897         src/controls.c, src/mainmenu_callbacks.h, 
20898         src/mainmenu_callbacks.c: Insert CVS keywords, message strings 
20899         reviewed
20900         
20901         * src/watch_gui.c, src/stack_trace_gui.c, src/app_wizard_gui.c, 
20902         src/project_import_gui.c, src/sharedlib_gui.c, 
20903         src/signals_gui.c: set window icon correctly
20904         
20905         * NEWS: more updates for the release
20906         
20907         * HACKING: updated for window icons and insert menu information
20908         
20909         * src/cvs_gui.c, src/build_project.c, 
20910         src/project_import_cbs.c: message strings reviewed
20911         
20912         * src/controls.c: context help button should be disabled if 
20913         DevHelp is not installed
20914         
20916 2002-06-08  Naba Kumar <kh_naba@users.sourceforge.net>
20918         * src/debugger.c: Fixed the signalling screw up because of string
20919         update in gdb used to report the child process PID. Also, no
20920         error dialog will be popped up for "no such file or directory"
20921         error (very annoying and useless error). This error will still
20922         be shown on the debug message window. Avoided terminating the
20923         program when the terminal is terminated -- doesn't hurt, otherwise
20924         we get crappy egg-and-hen problem.
20925         
20926         * src/sharedlib.c, src/signals.c: Fixed the incorrect default window
20927         dimensions loading.
20928         
20929         * src/anjuta.c: Limited the default size of main window to sane
20930         values.
20932         * src/preferences.c: Fixed some deadly memory corruption bugs in
20933         the recent patches. Return from getenv() should NEVER be freed,
20934         because they are static strings.
20935         
20936         * src/preferences_gui.c: Removed the fix for crash bug with font
20937         selection and applied the real fix.
20938         
20939 2002-06-08      Andy Piper      <andy.piper@freeuk.com>
20941         * NEWS: updated for release
20943 2002-06-08  Naba Kumar <kh_naba@users.sourceforge.net>
20945         * src/launcher.c: Added a fix a memory leak and a possible
20946         fix for zvt-crash bug.
20947         
20948         * printing/.cvsignore, plugins/patch/.cvsignore: Added files.
20949         
20950         * data/properties/latex.properties,
20951         data/properties/ada.properties: Added file.is.source property.
20952         
20953         * src/an_file_view.c: Set auto column size of the file
20954         revision column.
20955         
20956         * src/mainmenu_callbacks.c, src/cvs.c: Fixed bug #542151.
20957         The user is now prompted to confirm the closing of the file
20958         if it is being used by CVS. If yes, the editor is closed and
20959         the CVS operation stops.
20960         
20961 2002-06-07      Andy Piper      <andy.piper@freeuk.com>
20963         * anjuta.prj: bump project version for release
20964         * BUGS: removed unnecessary file
20966 2002-06-07      Philip Van Hoof <freax@pandora.be>
20968         * widgets/gnomefilelist.c: fix up issue with directory deleted 
20969         during the life of the file list widget
20970         * src/preferences_gui.c: sticking-plaster fix to font selection
20971         causes segfault bug
20973         Patches reviewed by Andy Piper <andy.piper@freeuk.com>
20975 2002-06-07      Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
20977         * data/properties/anjuta.properties, src/an_file_view.[ch], 
20978         src/an_symbol_view.[ch], src/defaults.c, src/preferences.[ch], 
20979         src/preferences_gui.c, src/project_dbase.c, src/project_dbase_gui.c: 
20980         added options for symbol and file browsers.
20981         * data/properties/cpp.properties: linker flags should come after
20982         the name of the file to compile.
20983         * scintilla/Editor.cxx: fixed gcc compilation warning.
20984         * src/Makefile.am, src/project_import.c: anjuta_import.sh should
20985         be executed from bindir only.
20986         * src/an_file_view.[ch], tagmanager/tm_file_entry.c, 
20987         tagmanager/include/tm_file_entry.h: CVS version information in file 
20988         browser.
20989         * src/anjuta.c, src/preferences.[ch]: remember visibility of messages 
20990         window.
20991         * src/controls.c, src/cvs.[ch], src/project_dbase.[ch]: CVS fixes.
20992         * src/launcher.c, src/project_import.c: (hopefully) fixed random ZVT
20993         crashes during file import.
20994         * src/project_import.c: disable project menu items during project 
20995         import.
20996         
20997         Patch reviewed by Andy Piper <andy.piper@freeuk.com>
20999 2002-06-07  Jean-Noel Guiheneuf  <jnoel@saudionline.com.sa>
21001         * src/mainmenu_callbacks.c, src/mainmenu_callbacks.h, 
21002         src/preferences.c, src/main_menubar_def.h, src/main_menubar.c,
21003         src/main_menubar.h, src/controls.c:     fixed Insert ChangeLog, 
21004         modified Insert menu, added C functions template, header C 
21005         template, modified header_template HEADER_H ==> NAMEFILE_H
21006         
21007         Patch reviewed by Andy Piper <andy.piper@freeuk.com>
21009 2002-06-05      Andy Piper      <andy.piper@freeuk.com>
21011         * data/properties/html.properties: changed some file 
21012         associations
21014 2002-06-05 Philip Van Hoof <freax@pandora.be>
21016         * widgets/gnomefilelist.c: Fixed #560759 and #561776
21017         
21018         Patch reviewed by Andy Piper <andy.piper@freeuk.com>
21020 2002-06-05  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
21022         * data/properties/anjuta.properties, src/defaults.c: Make windows
21023         docked by default, fix the big fonts bug.
21024         
21025         * src/an_file_view.c, src/main_menubar_def.h, 
21026         src/project_dbase_gui.c: sanitized the Edit/View mess.
21027         
21028         * src/main_menubar_def.h, src/main_menu_callbacks.c: Add an item
21029         for customizing shortcuts.
21030         
21031         * src/mainmenu_callbacks.c: Search for selected word if present.
21032         
21033         * src/text_editor_menu.c: Added context menu options for docking
21034         and undocking editor windows.
21035         
21036         * src/main_menubar.h, src/main_menubar.c: more support for the 
21037         shortcuts menu item.
21038         
21039         Patch reviewed by Andy Piper <andy.piper@freeuk.com>
21041 2002-06-05      Andy Piper      <andy.piper@freeuk.com>
21043         * scintilla/RESearch.cxx: removed CVS Log keyword to prevent
21044         all commit messages being written to top of the file
21045         
21046         * src/main_menubar_def.h: message strings reviewed
21047         
21048         * src/project_import.c: message strings reviewed
21049         
21050         * src/source.c, src/glades.c: message strings reviewed. Fixed 
21051         some bugs around reading the project properties for creating 
21052         .glade and .desktop files in the Application Wizard. There were
21053         typos in the property names being retrieved
21054         
21055         * widgets/gnomefilelist.c: changed build_full_path to make 
21056         the file widget support ~
21057         Patch from Pierre Sarrazin <sarrazip@sympatico.ca>
21058         
21059         * THANKS, widgets/e-shell-about-box.c, 
21060         manuals/anjuta-manual/C/authors.sgml: updated for new
21061         patch
21063 2002-06-05  Naba Kumar <kh_naba@users.sourceforge.net>
21065         * src/project_dbase.c: Fixed the file-path-corruption bug
21066         and the cannot-import-file-in-project bug. (follow-up with
21067         the last commit from Stef).
21068         
21069         * src/anjuta_cbs.c: Fixed double-confirmation when exiting
21070         with unsaved-project.
21071         
21072 2002-06-05  Stephane Demurget  <demurgets@free.fr>
21074         * src/project_dbase.c (project_dbase_add_file_to_module): fixed a
21075         misplaced g_free.
21077 2002-06-04      Andy Piper      <andy.piper@freeuk.com>
21079         * data/properties/{xml,html,other}.properties: changed some file 
21080         associations
21081         
21082         * data/anjuta.mime: oops! cvs added
21083         
21084         * scintilla/RESearch.cxx: fixed up a problem with comments
21085         
21086         * global-tags/create_global_tags.sh: redirect errors to /dev/null
21087         to avoid messages about missing libs
21088         
21089         * NEWS: started the release notes
21091 2002-06-04      Andy Piper      <andy.piper@freeuk.com>
21093         * HACKING: updated with new information on printing, patch naming
21094         
21095         * TODO: removed completed tasks
21096         
21097         * THANKS: updated a few contributions
21098         
21099         * anjuta.prj: updated the icon file
21100         
21101         * anjuta.desktop.in.in: updated to add Categories
21102         
21103         * data/anjuta.mime: created a mime type for Anjuta project files
21104         (NB needs to be added to the install in /usr/share/mime/)
21105         
21106         * pixmaps/madeinanjuta.xcf: finally added Nick Dowell's 
21107         "Coded in Anjuta" button in Gimp XCF format. It can be converted 
21108         to PNG for websites.
21109         
21110         * plugins/patch/patch-plugin.c: clarified some messages and 
21111         made it easier to see different patching sessions
21112         
21113         * src/toolbar.c: changed some message text for consistency
21114         
21115         * src/preferences_gui.c, src/preferences.c, src/preferences.h, 
21116         src/defaults.c, src/anjuta.c, src/anjuta.h: enable/disable tooltips 
21117         in preferences. 
21118         Patch from Jean-Noel Guiheneuf <jnoel@saudionline.com.sa>
21119                  
21120         * src/appwiz_page1.c, src/appwizard_cbs.c, src/pixmaps.h, 
21121         src/project_dbase.{c,h}, src/project_import_cbs.c, 
21122         src/project_type.c, src/source.{c,h}, src/wizard_gui.c:
21123         Added XLib Project and a Dockapp Project types.
21124         * pixmaps/Makefile.am: added line for new pixmap for new xlib
21125         projects
21126         * pixmaps/appwiz_xlib.png: pixmap for new xlib projects
21127         * src/source.c: Fixed memory leak in existing projects. 
21128         (filename was not freed)
21129         Patch from Todd Goyen <wettoad@knighthoodofbuh.org>
21131 2002-06-04  Naba Kumar <kh_naba@users.sourceforge.net>
21133         * src/anjuta.h, src/anjuta.c: Added error display funtions
21134         with parent windows.
21135         
21136         * src/appwizard_cbs.c: Changed error display function to use
21137         parented version.
21138         
21139 2002-06-03  Naba Kumar <kh_naba@users.sourceforge.net>
21141         * printing/print.h, printing/printing.c: Taken care of document
21142         zoom factor and fixed a font loading bug. Dynamically calculated
21143         text widths to work with zooms properly. Re-organized code for
21144         dynamic text width calulations to work in general with utf8 chars.
21145          Determined font height and width automatically from the font info.
21146         
21147         * src/anjuta.c, src/mainmenu_callbacks.c, *src/preferences.c:
21148         src/preferences.h, src/text_editor.c, src/preferences_gui.c:
21149         Converted text.zoom.factor property to use #defined value. Removed
21150         margin header and margin numbers preferences, as they  now
21151         calculated dynamically.
21152         
21153 2002-06-02  Naba Kumar <kh_naba@users.sourceforge.net>
21155         * printing/print-doc.c, printing/print-doc.h, printing/print-util.c,
21156         printing/print-util.h, printing/print.c, printing/print.h:
21157         Rewritten printing support for style based printing. Syntax highlighted
21158         printing, monochromatic printing, setup using preferences etc.
21160         * src/aneditor.cxx, src/aneditor.h: Added two commands for working with
21161         printing. ANE_GETLANGUAGE and ANE_GETSTYLEDTEXT for geting the document
21162         language and the styled text buffer.
21163         
21164         * src/preferences.c, src/preferences.h, src/preferences_gui.c: Redesigned
21165         the print setup preferences page and added printer preferences. Added functions
21166         to retrieve preferences with default values.
21167         
21168         * src/text_editor_gui.c, src/main_menubar_def.h: Changed an #include for
21169         the printing.
21171         * data/properties/anjuta.properties: Added default printer preferences.
21173         * pixmaps/print_color.xpm, pixmaps/print_landscape.xpm,
21174         pixmaps/print_layout.xpm, pixmaps/print_nocolor.xpm,
21175         pixmaps/print_portrait.xpm: CVS added printer setup pixmap files.
21177         * pixmaps/Makefile.am, src/pixmaps.h, anjuta.prj: Added the new pixmaps references.
21178         
21179 2002-06-01      Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
21181         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
21183         src/Makefile.am, src/aneditor.cxx, src/anjuta.c, src/anjuta.h
21184         src/defaults.c, src/message-manager-private.cc, src/project_dbase.c
21185         src/utilities.c, scintilla/PropSet.cxx: Fix memory leaks and other
21186         cleanups, remove dead code, GUI cleanupMemory leaks cleanups.
21188         printing/Makefile.am: Reduced compiler optimizations.
21190         tagmanager/include/tm_project.h, tagmanager/include/tm_work_object.h, 
21191         tagmanager/include/tm_workspace.h, tagmanager/tm_project.c, 
21192         tagmanager/tm_source_file.c, tagmanager/tm_work_object.c,
21193         tagmanager/tm_workspace.c: TagManager fixes.
21195 2002-06-01  Naba Kumar <kh_naba@users.sourceforge.net>
21197         * printing/*: CVS added. :)
21198         
21199 2002-05-31      Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
21201         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
21203         * printing*: CVS added.
21204         * printing/*.[ch], printing/Makefile.am, anjuta.spec.in, Makefile.am,
21205           configure.in, src/Makefile.am, src/controls.c, src/main_menubar.[ch],
21206           src/main_menubar_def.h: Gnome Print support
21207         * src/anjuta.c: Fixed a crash bug (NULL pointer check).
21208         * configure.in: Enable debugging flag option
21209         * src/preferences.c, src/preferences.h, src/preferences_gui.c, src/mainmenu_callbacks.c:
21210           Print properties defined.
21211         * global-tags/create_global_tags.sh: More GNOME libraries added, cleanups
21212         
21213 2002-05-31      Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
21215         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
21216         
21217         * src/an_file_view.c, src/an_symbol_view.c: Added Dock/Undock
21218         * src/controls.c, src/main_menubar.[ch], src/main_menubar_def.h,
21219           src/anjuta.h, src/text_editor_menu.[ch]: More menu re-organization
21220           and cleanups
21221         * src/text_editor.c: Minor cleanups.
21222         * anjuta.c: Tweaks to 'Goto File Line' functionality.
21223         * src/project_dbase.c: Fixes to add/remove files from project.
21224         * src/help.c: Fix minor memory leak.
21225         * src/project_dbase_gui.c: Remove debugging messages.
21226         * src/utilities.[ch]: Cleanups and minor fixes.
21227         * src/anjuta_gui.c, src/pixmaps.h: Application icon set correctly.
21229 2002-05-30  Naba Kumar <kh_naba@users.sourceforge.net>
21231         * src/anjuta.c [anjuta_apply_preferences()]:
21232         Fixed a crash bug when tab pos is not defined for the editors.
21233         
21234         * data/properties/cpp.properties: Set default identifier property to normal.
21235         This fixes the bug in which the fore color gets hidden with dark background.
21237 2002-05-29  Naba Kumar <kh_naba@users.sourceforge.net>
21239         * scintilla/*, scintilla/include/*: Upgraded to the vanilla
21240         scintilla 1.46
21241         
21242         * src/aneditor.cxx, src/aneditor.h, src/main_menubar.h, src/main_menubar.h,
21243         src/mainmenu_callbacks.c, src/mainmenu_callbacks.h, main_menubar_def.h,
21244         src/anjuta.c, data/properties/anjuta.properties:
21245         Implemented line wrapping.
21246         
21247         * src/aneditor.cxx, src/aneditor.h:     Implemented Readonly file mode.
21248         
21249         * scintilla/LexCPP.cxx: Added the custom code (insidePreprocessor variable
21250         usage and SCE_C_WORD3 flagging) used by tagmanger for maintaing custom
21251         tags. Code was reviewed from GNOME Bonsai view.
21252         
21253         * scintilla/include/SCILexers.h: Added definition of SCE_C_WORD3 as
21254         it seems to have been removed by scintilla people.
21255         
21256         * data/properties/anjuta.properties: Set default line wrap to false, as
21257         is noticably slow with big files.
21258         
21259 2002-05-27      Jean-Noel Guiheneuf     <jnoel@saudionline.com.sa>
21261         * src/project_import_gui.c: disallow the selection of files in
21262           the browse dialog.
21263         * src/mainmenu_callbacks.c, src/preferences.c: cleanups to identity
21264           preferences code.
21265         
21266 2002-05-27      Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
21268         * src/an_file_view.c, src/an_symbol_view.c, src/text_editor_menu.c,
21269           src/main_menubar_def.h, src/pixmaps.h, :Added some icons to menu items.
21270         * src/controls.c, src/main_menubar.[ch]:Some menu organization cleanups.
21271         * src/project_dbase.[ch], src/project_dbase_gui.c: Adding files to projects
21272           now works properly.
21273         * src/gnome_project.c, src/mainmenu_callbacks.[ch]: Minor API change.
21274         * scintilla/include/PropSet.h, tagmanager/read.c: Accept '$' in identifiers.
21275         * src/utilities.[ch]: Added some utility functions.
21276         * tagmanager/tm_project.c: Fix for bug in file removal from project.
21277         
21278         Patch reviewed by Andy Piper <andy.piper@freeuk.com>
21280 2002-05-26      Andy Piper      <andy.piper@freeuk.com>
21282         * HACKING: info on FIXME statements and removed ccview references
21283         * Makefile.am: added rule to make RPM package
21285 2002-05-26      Andy Piper      <andy.piper@freeuk.com>
21287         * THANKS, widgets/e-shell-about-box.c, 
21288         manuals/anjuta-manual/C/authors.sgml: updated for new
21289         patch
21290         * src/anjuta.c: removed unnecessary warning code since CVS 
21291         support is now implemented :-)
21292         * manuals/sgmldocs.make: implemented a fix for bug #553969
21293         * manuals/C/anjuta-tutorial/anjuta-tutorial.sgml: fixed some CRs
21294         * manuals/C/anjuta-tutorial/anjuta-turorial-C.omf, 
21295         manuals/C/anjuta-faqs-C.omf: modified the descriptions
21296         
21297 2002-05-20 Jean-Noel Guiheneuf <jnoel@saudionline.com.sa>
21298         
21299         * src/main_menubar.c, src/main_menubar.h, src/controls.c,
21300           src/mainmenu_callbacks.c, src/mainmenu_callbacks.h,
21301           src/main_menubar_def.h, src/preferences_gui.c,
21302           preferences.c, preferences.h: setup Username and Email 
21303           preferences, Insert ChangeLog and Username editor functions
21304           
21305           Patch reviewed and modified by Andy Piper <andy.piper@freeuk.com>
21307 2002-05-17  Jean-Noel Guiheneuf <jnoel@saudionline.com.sa>
21308         
21309         * src/commands.c, src/compiler_options_cb.c src/compiler_options_gui.c
21310           src/src_paths_cbs.c, src/src_paths_gui.c
21311           Fixed some minor bugs and replace gtk_entries by gnome_file_entries
21313           Patch reviewed by Andy Piper <andy.piper@freeuk.com>
21315 2002-05-14  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
21317         * src/main_menubar.[ch], main_menubar_def.h: Added back/forward
21318           and goto tag menu items to main menu.
21320 2002-05-09  Andy Piper <andy.piper@freeuk.com>
21322         * THANKS, widgets/e-shell-about-box.c, 
21323         manuals/anjuta-manual/C/authors.sgml: added new contributors
21324         * HACKING: updated with info on files to change for credits
21326 2002-05-09  Dan Elphick <dre00r@ecs.soton.ac.uk>
21328     * src/aneditor.cxx: extended extension list which fixes segfault
21329     on selecting lisp, ruby or matlab as highlight style.
21331 2002-05-09  Andy Piper <andy.piper@freeuk.com>
21333         * src/main_menubar_def.h: fixed an array initialiser and fixed
21334         the lexer settings for the new entries on the Format menu
21336 2002-05-07  Stephane Demurget  <demurgets@free.fr>
21338         * Synced with Scintilla 1.45
21340 2002-05-06  Andy Piper <andy.piper@freeuk.com>
21342         * anjuta.prj: added another missing file
21343         * ChangeLog: fixed some incorrect change dates I caused by 
21344         sloppy cut-and-pasting :-/
21346 2002-05-06  Andy Piper <andy.piper@freeuk.com>
21347         
21348         * src/mainmenu_callbacks.c: fixed title of new About box
21350 2002-05-05  Andy Piper <andy.piper@freeuk.com>
21352         * src/pixmaps.h: added macros for OpenGL and SDL project icons
21354 2002-05-05  Andy Piper <andy.piper@freeuk.com>
21356         * pixmaps/appwiz_opengl.png, pixmaps/appwiz_sdl.png: added new files
21357         * anjuta.prj: updated for new files
21359 2002-05-05  Naba Kumar <kh_naba@users.sourceforge.net>
21361         * widgets/e-shell-about-box.c: Added version display.
21362         
21363 2002-05-03  Andy Piper <andy.piper@freeuk.com>
21365         * launcher/anjuta_launcher.c, src/dnd.c, src/session.c, 
21366         widgets/scroll_menu.c: fixed up some compiler warnings (patch
21367         from Philip Van Hoof)
21369 2002-05-03  Andy Piper <andy.piper@freeuk.com>
21371         * manuals/C/anjuta-tutorial/Makefile.am: removed a circular 
21372         dependency
21373         * manuals/ja/anjuta-manual/anjuta-manual.sgml, 
21374         manuals/ja/anjuta-manual/debugger.sgml: fixed some markup problems 
21375         that produced build errors (needs checking on a machine with the
21376         ja locale!)
21377         * data/properties/lisp.properties: updated to match format of other
21378         lexer property files supplied with Anjuta
21380 2002-05-03  Andy Piper <andy.piper@freeuk.com>
21382         * anjuta.prj: added new files
21383         * HACKING: added information from the mailing list on 
21384         adding new project types to the wizard (thanks to Johannes)
21386 2002-05-03  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
21388         * src/utilities.h, src/launcher.c, src/gnome_project.c,
21389           src/appwiz_page2.c: Fix for 547038.
21391 2002-05-03  Naba Kumar <kh_naba@users.sourceforge.net>
21393     * attach_process.c, attach_process_cbs.c: Fixed a dialog
21394     hide bug.
21395     
21396     * about.h: cvs removed.
21397     
21398 2002-05-03  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
21400         Patch reviewed by Stephane Demurget <demurgets@free.fr>.
21402         Fix for #539574.
21404         * src/anjuta.c (anjuta_system_error): checks for the error number to
21405         know whether the error description is needed or not.
21407 2002-05-03 Naba Kumar <kh_naba@users.sourceforge.net>
21409         * pixmaps/anjuta_logo.png: New about logo.
21410     
21411         * pixmaps/anjuta_icon.png: New icon from Misha. The
21412         old one had trouble with some gtk themes.
21413     
21414         * about.c: Removed. No longer needed.
21416         * mainmenu_callbacks.c: Removed reference of about.h
21417     
21418 2002-05-03  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
21420         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
21422         * widgets/e-shell-about-box.[ch], configure.in, Makefile.am,
21423           mainmenu_callbacks.c, widgets/Makefile.am: Implemented the new
21424         About Dialog (thanks to the Evolution team for the cool widget!)
21426 2002-05-03 Naba Kumar <kh_naba@users.sourceforge.net>
21428         Patch from lbell <lbell@tsc4.com>
21429     
21430         * src/find_in_files.c, src/find_in_files.h,
21431           src/anjuta.c: Added save_yourself, load_yourself routines.
21432     
21433         * src/find_in_files.{h,c}, src/find_in_files_gui.c:
21434         Added "Append messages" toggle button. This will enable
21435         the search results to be appended to the already existing
21436         results.
21437     
21438         * src/debugger.c: Fixed a typo.
21439     
21440         * src/find_text.c, src/breakpoints.c, src/project_dbase.c,
21441           src/session.c, src/session.h: Improved session management.
21443 2002-05-03  Naba Kumar <kh_naba@users.sourceforge.net>
21445         * THANKS, FUTURE, AUTHORS: Changed my email and
21446         avoided yahoo.com.
21448 2002-05-02  Stephane Demurget  <demurgets@free.fr>
21450         Impl. feature request #525271 (add Lisp support).
21452         * data/properties/lisp.properties: added.
21454         * data/properties/Makefile.am, data/properties/anjuta.properties: added
21455           the lisp properties.
21457         * src/main_menubar_def.h, src/lexer.h, src/aneditor.cxx,
21458           src/utilities.[ch]: added support for the Lisp highlight style.
21460 2002-05-02  Stephane Demurget  <demurgets@free.fr>
21462         * src/anjuta.[ch], src/anjuta_cbs.c, src/main_menubar.[ch],
21463           src/main_menubar_def.h, src/mainmenu_callbacks.[ch],
21464           src/text_editor_cbs.c: replaced the tabs ordering menuitem by a
21465           option preferences to have a persistent setting. Plus it's not used
21466           often, so it's better here than flooding the menus.
21468         * src/preferences.[ch], src/preferences_gui.c: ditto, plus made the
21469           preferences pages a lot more consistent and sweeter: tabs direction
21470           radiobuttons are directed against the meaning, all pages have an
21471           outter frame, a lot of padding, removed all expand attributes for
21472           vertical boxes, ...
21474           That's not a total revamp, but it's really looking better now, even
21475           if there's still work to be done.
21477 2002-05-01  Andy Piper <andy.piper@freeuk.com>
21479         * src/main_menubar_def.h, src/cvs_gui.c: updates to strings
21480         * TODO: added task to be completed before next release (update all credits)
21482 2002-05-01  Stephane Demurget  <demurgets@free.fr>
21484         * THANKS, src/about.c, manuals/anjuta-manual/C/authors.sgml: added
21485         Benke László.
21487 2002-05-01  Benke László  <decike@freemail.hu>
21489         Patch reviewed by Stephane Demurget <demurgets@free.fr>.
21491         * src/anjuta.[ch], src/anjuta_cbs.c, src/main_menubar.[ch],
21492           src/main_menubar_def.h, src/mainmenu_callback.[ch],
21493           src/text_editor_cbs.c: added an "automatic tab ordering" checkmenuitem
21494           to the format menu in order to reorder the notebook tabs in
21495           alphabetical order everytime a file is created/opened/saved.
21497 2002-05-01  Philip Van Hoof <freax@pandora.be>
21499         * widgets/gnomefilelist.[ch] (history_combo_go),
21500         (history_combo_clicked): impl.
21502         (gnome_filelist_new_with_path): use this new impl.
21504 2002-05-01  Stephane Demurget  <demurgets@free.fr>
21506         * src/project_dbase_gui.c (add_file): added the xpm file type.
21508 2002-04-30  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
21510         Patch reviewed by Stephane Demurget <demurgets@free.fr> except for the
21511         tag manager fixes.
21513         * src/anjuta.[ch]: Changed local tag list to use line numbers instead
21514           of tag types.
21516         * src/an_symbol_view.[ch], src/mainmenu_callbacks.[ch],
21517           src/text_editor_menu.c: Added context sensitive search in symbol
21518           browser and editor.
21520         * configure.in: Changed version number to 0.1.9.99.
21522         * scripts/anjuta_import.sh.in, scripts/anjuta_project.template,
21523           src/project_import.c: Minor changes to project import facility.
21525         * src/preferences.[ch], src/preferences_gui.c: Fix for bug #537273
21526           (Forced to use specific brace format)
21528         * tagmanager/include/tm_tag.h, tagmanager/include/tm_workspace.h,
21529           tagmanager/tm_tag.c, tagmanager/tm_work_object.c,
21530           tagmanager/tm_workspace.c: Minor TagManager fixes and updates.
21532 2002-04-30  Johannes Schmid  <clubfan@users.sourceforge.net>
21534         Patch reviewed by Stephane Demurget <demurgets@free.fr> who made
21535         replaced the spinbutton with an hscale, and made the UI less "blocky".
21537         * src/cvs_gui.c: When diffing a project you can choose date and
21538         release now.
21540         * src/project_dbase.c: Import_file activated again
21542         * configure.in, plugins/Makefile.am: Added patch plugin
21544         * plugins/patch/*: The new patch plugin
21546 2002-04-28  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
21548         Patch reviewed by Stephane Demurget <demurgets@free.fr>.
21550         * src/aneditor.cxx (StartAutoCompletedWord): the duplicates in the
21551         dropdown list shown by autocompletion are now removed.
21553 2002-04-28  Philip Van Hoof <freax@pandora.be>
21555         Patch reviewed by Stephane Demurget  <demurgets@free.fr> who merged
21556         a bunch of filetypes from the older version.
21558         * src/project_dbase_gui.c (add_file): changed the import
21559         dialog's filetypes combo contents depending on the
21560         type of data to be imported.
21562 2002-04-28  Stephane Demurget  <demurgets@free.fr>
21564         * src/fileselection.[ch] (fileselection_addtype_f): removed the use of
21565         the amount parameter as Philip stated and reformated to follow the
21566         Gnome convention.
21568         * src/project_dbase.c (project_dbase_make_default_filetype_list):
21569         changed accordingly.
21571 2002-04-25  Stephane Demurget  <demurgets@free.fr>
21573         Fix for #531293.
21575         * src/main_menubar_def.h: replaced the shortcut for "Find next" to
21576         Shift-F6, to be more consistent with other Gnome apps.
21577         Moved the "Search next" entry under the "Search" one, and swapped the
21578         order of the "Find in files" and "Find and Replace" ones.
21580         Some additional fixes ands cleanups on the edit menu.
21582         * src/main_menubar.h: replaced all occurences of repeat_find by
21583         find_again for the code to be more consistent.
21585         * src/main_menubar.c (update_main_menubar): made the "Find next" entry
21586         sensitiveness depending on the existence of an active text buffer.
21588         * TODO: added some bits about improving the usability of the
21589         search/search again couple.
21591 2002-04-25  Stephane Demurget  <demurgets@free.fr>
21593         * src/preferences_gui.c: made the tab labels text more consistent
21594         (s/misc/Misc/).
21596 2002-04-25  Biswapesh Chattopadhyay  <biswapesh_chatterjee@tcscal.co.in>
21598         Patch reviewed and improved by Stephane Demurget  <demurgets@free.fr>
21600         * manuals/C/anjuta-tutorial/Makefila.am: fixed the glade picture
21601         filename.
21603         * src/main.c (main): simplified some code and cleanups.
21605         Fix a part of #499366:
21607         * src/commands.[ch] (sync_from_props), (command_editor_save),
21608         (on_apply_clicked), (create_command_editor_gui): added the gui
21609         corresponding to the command.terminal preference.
21611 2002-04-25  Stephane Demurget  <demurgets@free.fr>
21613         Fix for #465180.
21615         * anjuta.spec.in: added build requirements for the source rpm.
21617 2002-04-24 Johannes Schmid <clubfan@users.sourceforge.net>
21619         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
21620         
21621         * src/appwiz_page1.c, src/appwizard_cbs.c, src/glades.c, 
21622           src/pixmaps.h, src/project_dbase.[c,h], src/project_import_cbs.c, 
21623           src/project_type.c, source.c, wizard_gui.c:
21624           Added new GNOME 2 project types and changed glade behaviour to
21625           produce GTK code if project type GTK was selected and GTKmm code
21626           if project type GTKmm was selected (and not depending on the 
21627           selected language. Disabled glade for GNOME 2 projects because
21628           we will need glade2 there.
21629           
21630         * src/project_dbase.c: Fixed a memory lack.
21631         
21632         * pixmaps/appwiz_*2.png: Added GNOME 2 icons from Misha
21633         
21634         * src/cvs.c: Added an error message if jobs are running
21636 2002-04-23 Naba Kumar <kh_naba@users.sourceforge.net>
21638         * tagmanager/tm_work_object.c: Fixed a chrash
21639         bug which occurs when it tries to stat an empty
21640         file name.
21641         
21642 2002-04-22 Naba Kumar <kh_naba@users.sourceforge.net>
21644         * src/controls.c: CVS menu items now becomes
21645         insensitive when the launcher is busy.
21646         
21647         * src/anjuta.c, cvs.h, cvs.c: Created a function
21648         to update the cvs preferences when preferences are
21649         applied in preferences dialog and called it from
21650         anjuta_update_preferences().
21651         
21652 2002-04-19 Naba Kumar <kh_naba@users.sourceforge.net>
21654         * src/cvs.c: Added a space in the cvs command
21655         before the revision part. This fixes the cvs
21656         error we get when cvs-diffing with revisions.
21657         
21658         * src/cvs.c: Fixed a compiler warning.
21659         
21660         * src/find_replace.c: The dialog now remembers
21661         the settings including the "prompt on replace"
21662         which seems to have broken somewhere line the
21663         changes.
21664         
21665 2002-04-18 Naba Kumar <kh_naba@users.sourceforge.net>
21667         * src/cvs.{h,c}, src/cvs_cbs.{h,c}, src/cvs_gui.{h,c}:
21668         Added a new property in cvs class to hold a boolean
21669         for enabling date in cvs diff. This fixed the bizzare
21670         diff output due to the date that goes with the cvs
21671         command. Also, set the default value of compression
21672         to 3 and unified diff option to 1.
21673         
21674 2002-04-18 Naba Kumar <kh_naba@users.sourceforge.net>
21676         * src/cvs.c: The diff editor is set to hilite as
21677         diff syntax hiliting.
21678         
21679         * configure.in, manual/Makefile.am:
21680         Added a new manual module for ja language.
21681         
21682         * manual/ja/*/*/*: New module and files for the
21683         ja translation for the anjuta documentation
21684         from Takeshi AIHANA <aihana@jcom.home.ne.jp>
21685         
21686 2002-04-17 Naba Kumar <kh_naba@users.sourceforge.net>
21688         * src/launcher.c: Made a very messy work around
21689         for the launcher authentication to work properly.
21690         
21691         * src/find_replace.c: Applied the missing patch
21692         from Dan Elphick <dre00r@ecs.soton.ac.uk>
21693         
21694 2002-04-16 Andy Piper <andy.piper@freeuk.com>
21696         * src/cvs.c, src/main_menubar_def.h: made message strings
21697         consistent with existing standards from our own documentation 
21698         (such as uppercase P in Project, corrected spelling of 
21699         repository, etc.)
21701 2002-04-16 Naba Kumar <kh_naba@users.sourceforge.net>
21703         * src/cvs_gui.c: Cleaned up gui and aligned various
21704         widgets to give a clean look.
21705         
21706 2002-04-16 Naba Kumar <kh_naba@users.sourceforge.net>
21708         * src/launcher.c: Added work around to retrieve
21709         the child exit code. It works. :)
21710         
21711         * src/find_in_files.c, src/gnome_project.c,
21712         src/project_import.c, src/cvs.c, src/configure.c, src/compile.c,
21713         src/clean.c, src/clean_project.c, src/build_project.c,
21714         src/build_file.c: Modified to handle the new
21715         child exit code.
21716         
21717 2002-04-15 Dan Elphick <dre00r@ecs.soton.ac.uk>
21719         * src/find_replace.c: Changed signal to call
21720         on_replace_text_close on from delete_event
21721         to close => the replace history is now updated.
21723 2002-04-15 Naba Kumar <kh_naba@users.sourceforge.net>
21725         * src/cvs.c: escaped the cvs import message before
21726         passing it to cvs.
21727         
21728 2002-04-14 Johannes Schmid <clubfan@users.sourceforge.net>
21730         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
21731         
21732         * src/cvs.[c/h], src/texteditor.[c/h]: Fixed bug #542151
21733         
21734         * src/cvs.[c/h], src/cvs_cbs.[c/h], src/cvs_gui.[c/h]:
21735         Added cvs import
21736         
21737         * src/preferences_gui.c: GUI improvements
21738         
21739         * src/project_dbase.c, src/controls.c: Fixed some menu stuff
21741 2002-04-13 Naba Kumar <kh_naba@users.sourceforge.net>
21743         * tagmanager/include/tm_tag.h, tagmanager/tm_tag.c:
21744         Removed static qualifier from tm_tag_type_name() and
21745         availed it's prototype for use in outside code. also
21746         created reverse map function tm_tag_type_name();
21747         
21748         * src/anjuta.c: Implemented qualified tags names for
21749         the tag list (on the toolbar pulldown list) to avoid
21750         ambiguty in tags with similar names (like prototype
21751         and definition). Patch modified and improved.
21752         
21753         Patch from: Todd Goyen <wettoad@knighthoodofbuh.org>
21754         
21755 2002-04-11 Naba Kumar <kh_naba@users.sourceforge.net>
21757         * src/utilities.[c,h]: Added a utility funtion
21758         that escapes the single and double quotes in a
21759         given string. Useful for passing command line
21760         args with quotes.
21761         
21762         * src/cvs.c: Escaped the cvs log message before
21763         passing it to cvs command line to avoid ambiguties
21764         with quotes in the message.
21765         
21766         * pixmaps/anjuta_icon.png: Changed to the new icon.
21767         from Todd Goyen <goyen@mbi-berlin.de>
21768         
21769         * src/message-manager-private.cc: Added regex to 
21770         recognize (underline hilite) the parsable outputs
21771         from the zvt terminal.
21772         
21773 2002-04-11 Naba Kumar <kh_naba@users.sourceforge.net>
21775         Patch from: Tina Hirsch <tehirsch@arcor.de>
21776         
21777         * src/project_type.c:
21778         Fixed a bug in the wxproject type and modified the erroroutput when
21779         configure doesn't find wx-config
21780         
21781         Patch from: Timothee Besset <ttimo@idsoftware.com>
21782         
21783         * src/anjuta.c, src/message-manager-private.cc,
21784           src/message-manager-private.h
21785         Catches double clicks in the zvt terminal, and calls goto_error_line
21786         to jump to the appropriate location in the source. This will recognize
21787         grep -n output
21788         
21789 2002-04-10 Naba Kumar <kh_naba@users.sourceforge.net>
21790         
21791         * src/build_project.c: Taken care of memory leak
21792           by freeing cmd variable properly.
21794         * src/main_menubar_def.h: Fixed wrong signal connection
21795           for cvs project commit.
21796           
21797         * src/cvs_cbs.c: Fixed non-functional "cancel" button.
21798         
21799         * src/preferences_gui.c: Added some border and adjusted
21800           expandsion, filling in box adds to make the cvs preferences
21801           more nicer.
21802         
21803 2002-04-03 Johannes Schmid <clubfan@users.sourceforge.net>
21805         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
21806         
21807         * src/cvs*, src/main_menubar*, src/preferences*: 
21808         Moved CVS settings to preferences, added a nice login dialog.
21809         
21810         * src/controls.c, src/project_dbase.c:
21811         CVS project options are only shown if a project is open
21812         
21813         * src/build_project.c:
21814         User is now asked if he wants to install as root 
21815         
21816         * src/launcher.c:
21817         Fixed a warning
21819         * anjuta.prj: Updated with cvs files
21820         
21821         * TODO: Remove task which are done
21822         
21823 2002-03-31 Naba Kumar <kh_naba@users.sourceforge.net>
21825         * pixmaps/Makefile.am, src/compile.c, src/configurer.c,
21826         src/cvs.c, src/cvs_gui.c, src/gnome_project.c,
21827         src/launcher.c, src/main_menubar_def.h, src/pixmaps.h:
21829         Modified launcher to use controlling terminal to detect and
21830         take care of password authentications (for example, for cvs
21831         and root installs).
21832         
21833         * pixmaps/password.png: New file.
21834         
21835 2002-03-28 Naba Kumar <kh_naba@users.sourceforge.net>
21837         Anjuta kick start tutorial wirtten by:
21838           Ishan Chattopadhyaya <ichattopadhyaya@yahoo.com>
21840         * manuals/C/anjuta-tutorial, manuals/C/anjuta-tutorial/Makefile.am,
21841           manuals/C/anjuta-tutorial/anjuta-tutorial.sgml,
21842           manuals/C/anjuta-tutorial/anjuta-tutorial-C.omf,
21843           manuals/C/anjuta-tutorial/figures/*.png:
21844           
21845           Added files
21846         
21847         * configure.in, manuals/C/Makefile.am, manuals/C/topic.dat
21848           
21849           Modified files.
21850         
21851 2002-03-28 Roel Vanhout <roel@stack.be>
21853         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
21855         * src/aneditor.cxx, src/preferences.c, src/preferences.h,
21856           src/preferences_gui.c:
21857         Added option to wrap around to beginning/end of file when on last bookmark
21858         and next/previous bookmark is pressed
21859         
21860 2002-03-28 Naba Kumar <kh_naba@users.sourceforge.net>
21862         Patch from Philip Van Hoof <freax@pandora.be>
21863         
21864         * src/gnomefilelist.c:
21865         Added gimp like feature that changes the file extension of
21866         the filename entered in the selections when the file
21867         filter is changed.
21868         
21869 2002-03-28 Naba Kumar <kh_naba@users.sourceforge.net>
21870         
21871         Patch from Roy Wood <roy.wood@filogix.com>
21872         
21873         * src/controls.c, src/find_text.c, src/find_text.h,
21874           src/main_menubar.c, src/main_menubar.h, src/main_menubar_def.h,
21875           src/mainmenu_callbacks.c, src/mainmenu_callbacks.h:
21876           
21877           Menuitem for entering currently selected text as find target,
21878           added key accel for "find next" and changed some key accels for
21879           other key for consistency.
21880           
21881         * src/utilities.c:
21882           Cleaned up code.
21883         
21884 2002-03-27 Naba Kumar <kh_naba@users.sourceforge.net>
21886         * src/watch.c, src/watch.h, src/watch_cbs.c,
21887           src/watch_cbs.h, src/watch_gui.c:
21888         
21889           Patch from Jeroen van der Vegt <A.J.vanderVegt@ITS.TUDelft.nl>
21890         
21891           Added change watch entries feature
21892           and Watch entries modify on double click fixed.
21894 2002-03-27 Naba Kumar <kh_naba@users.sourceforge.net>
21896         * src/mainmenu_callbacks.c:
21897         
21898           Project commit should not bypass dialog as
21899           we need to get the cvs log from the user.
21900           
21901 2002-03-27 Naba Kumar <kh_naba@users.sourceforge.net>
21903         * src/project_dbase.c:
21904         
21905           Patch from Roy Wood <roy.wood@filogix.com>
21906           
21907           Fixed docking bug with the new docking patch
21908           to fix copy/paste bug.
21909           
21910 2002-03-27 Naba Kumar <kh_naba@users.sourceforge.net>
21912         * src/cvs.c, src/cvs.h, src/cvs_cbs.c, src/cvs_cbs.h
21913           src/cvs_gui.c, src/cvs_gui.h, src/main_menubar.c,
21914           src/main_menubar.h, src/main_menubar_def.h,
21915           src/mainmenu_callbacks.c, src/mainmenu_callbacks.h:
21917           Added cvs project support. Featured bypass cvs dialog for
21918           cases where we don't need dialog (such as project and right
21919           click selection from file browser). Cleaned up cvs code to
21920           make them generic cvs operations instead of separate file
21921           and project operations. Added cvs log action. Increased
21922           file entry box width and enabled "unified diff" by default.
21923           Used Editor buffer for status and log and set hilite for
21924           these buffers including diff buffer (DIFF hilite).
21925           
21926 2002-03-23 Tina Hirsch <cevina@users.sourceforge.net>
21928         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
21930         * data: Added file autogen.sh.wxwin 
21931         * data/Makefile.am: Added entry for autogen.sh.wxwin
21932         * pixmaps: Added project image appwiz_wxwin.png
21933         * pixmaps/Makefile.am: Added entry for appwiz_wxwin.png
21934         * src/appwizard_cbs
21935           src/compiler_options.c
21936           src/pixmaps.h
21937           src/project_dbase.c
21938           src/project_dbase.h
21939           src/project_import_cbs.c
21940           src/project_type.c
21941           src/source.c
21942           src/source.h
21943           src/wizard_gui.c: Added everything necessary for new
21944                             project type 'wxWindows (wxGTK)
21945         * src/project_dbase.c: Fixed a bug that caused every project
21946                                to be a glade project in dialog
21947                                                    'Project information'.
21949 2002-03-25 Naba Kumar <kh_naba@users.sourceforge.net>
21951         Patch submitted by Roy Wood <roy.wood@filogix.com>
21952         
21953         * src/anjuta_gui.c, src/message-manager-dock.c,
21954           src/project_dbase.c:
21955           
21956           fixed the copy/paste bug by rewriting dock/undock
21957           code.
21959 2002-03-22  Johannes Schmid <clubfan@users.sourceforge.net>
21961         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
21962         
21963         * src/cvs*, src/Makefile.am:
21964           New file for CVS support. File operations currently work
21965           cvs login needs to be done. Project support is not yet
21966           started.
21968         * src/main_menubar*, src/mainmenu_callbacks,
21969           src/anjuta.c, src/anjuta.h:
21970           Added menus and functions for cvs commands.
21971           
21972         * src/text_editor_menu.h: 
21973           Added #include <gtk/gtk.h>
21974           
21975         * src/gotoline.h:
21976           Removed a warning (and this time it works ;-)
21978         * src/utilities.c, src/utilities.h:
21979           Added a utility function to retrieve directory
21980           name out of full path.
21982 2002-03-11  Jeroen van der Vegt  <ajvdvegt@sourceforge.net>
21984         * src/executer.c: (create_executer_dialog): changed the default
21985           focus on the entry.
21987 2002-03-10 Naba Kumar <kh_naba@users.sourceforge.net>
21989         * widgets/gnomefilelist.c:
21990         Fixed duplicate history entries for the same directory.
21991           
21992 2002-03-10  Stephane Demurget  <demurgets@free.fr>
21994         Fix for #520092.
21996         * src/main_menubar_def.h: removed the Ctrl-L shortcut for Save All, as
21997           it's already used by scintilla to delete the whole current line.
21999 2002-03-10  Stephane Demurget  <demurgets@free.fr>
22001         Fix for #525107.
22003         * src/anjuta_cbs.c: (on_open_filesel_ok_clicked): removed unecessary
22004           calls to fileselection_hide_widget,
22005           (on_open_filesel_cancel_clicked): removed.
22007         * src/project_dbase.c: (on_open_prjfilesel_cancel_clicked),
22008           (on_add_prjfilesel_cancel_clicked):
22010         * widgets/gnomefilelist.[ch]: (gnome_filelist_set_multiple_selection):
22011           impl.
22013         * src/fileselection.c: Made some functions static.
22014           (fileselection_hide_widget): rewritten using the new
22015           gnome_filelist_set_multiple_selection function.
22017         * src/fileselection.c: (on_file_selection_delete_event): removed
22018           unuseful widget hides. Some cleanups,
22019           (on_file_selection_cancel_clicked): impl,
22020           (create_fileselection_gui): changed the cancel button clicked's
22021           callback to use this new function.
22023         * src/anjuta.c: (anjuta_new):
22024         * src/project_dbase.c: (project_dbase_new): removed the use of cancel
22025           callbacks, because this the gnome filelist widget's job.
22027         * widgets/gnomefilelist.c: (gnome_filelist_new_with_path): removed
22028           clist selection mode duplicates set,
22029           (gnome_filelist_key_press): use the new impl. function.
22031 2002-03-10  Stephane Demurget  <demurgets@free.fr>
22033         Fix for #441233.
22035         * src/appwizard_cbs.c: (on_druidpagestandard2_next):
22036           fixed some bogus code using an array cell out of
22037           range, removed unecessary gettext usages.
22039         * src/appwiz_page2.c: (on_prj_name_entry_changed):
22040           some cleanups and now transform minus characters to
22041           underscores.
22043         * src/source.c:
22044           (source_write_configure_in),
22045           (source_write_toplevel_makefile_am),
22046           (source_write_desktop_entry),
22047           (source_write_glade_file):
22048         * src/project_dbase.c: (project_dbase_summon_glade),
22049           (project_dbase_generate_source_code):
22050         * src/glades.c: (gladen_write_glade_write):
22051           replaced some occurences of the target name by the
22052           project filename, using project_dbase_get_proj_name,
22053           to fix the name of some files.
22054           Fixed a lot of mem leaks.
22055           Various code cleanups.
22057 2002-03-06  Stephane Demurget  <demurgets@free.fr>
22059         Merged with latest (1.44) scintilla.
22061         Added: - The calltip.<lexer>.end.definition property to display help
22062                  text on a second line of calltip.
22063                - The calltip.<lexer>.word.characters property to correctly find
22064                  calltips for functions that include characters like '$' which
22065                  is not normally considered a word character.
22066                - The use.monospaced property to determine initial state of
22067                  Use Monospaced Font setting.
22069         Bugs fixed: Too many to mention; please see :
22070                     http://www.scintilla.org/ScintillaHistory.html for the
22071                     full changes list.
22073         * scintilla/*/*: updated nearly all files.
22075         * TODO: removed the need of a scintilla merge.
22077         Merged with latest (1.44) SciTE properties.
22079         * data/properties/anjuta.properties: added the wrap, use.monospaced
22080           properties.
22082         * data/properties/html.properties: added a missing php extension, and
22083           updated php keywords to the latest reference.
22085         * data/properties/pascal.properties: added commands to compile, build
22086           and execute pascal applications.
22088         * data/properties/lua.properties: added styles for statements.
22090         * data/properties/bash.properties: added the declare keyword.
22092         Fixed distchecking.
22094         * global-tags/Makefile.am,
22095           global-tags/create-global-tags.sh: used some kind of ugly hack to
22096           make distchek work, since noone has proposed some better way.
22098         * src/main_menubar_def.h: Ctrl-W is now associated to close file,
22099           and Ctrl-N replace Alt-N for new file according to the Gnome design
22100           reference.
22102 2002-03-06 Naba Kumar <kh_naba@users.sourceforge.net>
22104         * widgets/gnomedirlist.c
22105         widgets/gnomedirlist.h
22106         widgets/gnomefilelist.c
22107         widgets/gnomefilelist.h:
22109         Added GPL headings in the file.
22111 2002-03-06 Naba Kumar <kh_naba@users.sourceforge.net>
22113         * src/attach_process.c
22114         src/attach_process_cbs.c
22115         src/attach_process_cbs.h
22116         src/attach_process_gui.c
22117         src/breakpoints.c
22118         src/breakpoints_cbs.c
22119         src/breakpoints_cbs.h
22120         src/breakpoints_gui.c
22121         src/commands.c
22122         src/compiler_options.c
22123         src/compiler_options_cbs.c
22124         src/compiler_options_cbs.h
22125         src/compiler_options_gui.c
22126         src/find_in_files.c
22127         src/find_in_files_cbs.c
22128         src/find_in_files_cbs.h
22129         src/find_in_files_gui.c
22130         src/find_replace.c
22131         src/find_text.c
22132         src/help.c
22133         src/preferences.c
22134         src/preferences_gui.c
22135         src/project_config.c
22136         src/src_paths.c
22137         src/src_paths_cbs.c
22138         src/src_paths_cbs.h
22139         src/src_paths_gui.c:
22140         
22141         Bugs #521629 and #522427 fixed. The problem was, that the
22142         escape-key was not catched and the dialog was hidden, but
22143         the flag was not set correctly.
22145         Changed the callbacks for delete_event to close, using gnome_dialog_close(),
22146         using the gnome_dialog_close_hides()-setting present in most dialogs.
22147         Instead of _hide() in the button-callbacks, calling gnome_dialog_close(), which
22148         emits "close" and set the flag in the close-callback.
22150         Patch from: Jens Georg <mail@jensgeorg.de>
22152 2002-03-06  Stephane Demurget  <demurgets@free.fr>
22154         * src/*.{c,cpp}: s/string_free/g_free/
22156         * src/utilities.[ch]: (string_free): removed.
22158 2002-03-06      Dan Elphick <dre00r@ecs.soton.ac.uk>
22160         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
22162         * src/controls.c, src/main_menubar.[ch], src/main_menubar_def.h,
22163         src/mainmenu_callbacks.[ch]:
22164         Removed Project menu options: README, TODO, ChangeLog and NEWS
22165         Moved Save Build Messages to Build menu and only highlight it
22166         when there are build messages.
22167         Corrected a spelling: "mojority" -> "majority"
22168         Fixed initialisation of edit.edit_app_gui so now Edit menu
22169         can be shown when no project is loaded.
22171         * src/project_dbase.h: Removed prototype for static function
22173 2002-03-06  Naba Kumar <kh_naba@users.sourceforge.net>
22175         * src/text_editor.c: Editor is marked changed after
22176         autoformat. 
22177         
22178         Patch from: Jens Georg <mail@jensgeorg.de>
22180 2002-03-04 Roel Vanhout <roel@stack.be>
22182         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
22184         * src/find_in_files.c, src/find_in_files.h, src/find_in_files_gui.c
22185         Added option to ignore binary files on 'Find in files' (grep -I option)
22187 2002-03-03  Naba Kumar <kh_naba@users.sourceforge.net>
22189         * src/main.c:
22190         session restoration and commandline load in 
22191         gtk idle loop.
22192         
22193         * src/anjuta.[h,c], src/anjuta_cbs.c:
22194         Removed "clear windows menu" and prevented runtime 
22195         warnings.
22196         
22197         * src/compile.c, src/build_file.c, src/build_project.c,
22198         src/clean.c:
22199         Takes into account the preference setting for 
22200         show dialog when job completes. Dialogs are
22201         shown when it is enabled otherwise not.
22202         
22203 2002-03-03 Roel Vanhout <roel@stack.be>
22205         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
22206         
22207         * src/find_text.c
22208         Store 'Find...' search string on search so that 'Find Next' will search for
22209         that string, even if the dialog hasn't been closed yet.
22211 2002-03-03  Naba Kumar <kh_naba@users.sourceforge.net>
22213         * src/anjuta.[h,c], src/anjuta_gui.c, src/anjuta_cbs.c,
22214         src/controls.c, src/main_menubar.h,     src/main_menubar.[h,c],
22215         src/main_menubar_def.h:
22216         
22217         Organized menus, removed "Windows" and "Utilities" menus from the
22218         menubar [they are no longer needed]. Also removed some extragenous
22219         separators.
22220           
22221 2002-03-03  Naba Kumar <kh_naba@users.sourceforge.net>
22223         * src/message-manager-private.cc:
22224         Set message clist selection mode to BROWSE.
22225         
22226         * src/message-manager.cc, src/an_symbol_view.c,
22227         src/an_file_view.c:
22228         Added Key navigation for the CTree and CList. Arrow left for
22229         node collapse, right for node expand, space (or enter) for
22230         activation (same as double click).
22231         
22232 2002-03-03 Roel Vanhout <roel@stack.be>
22233         
22234         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
22235         
22236         * plugins/class-gen/clsGen.c
22237         Added functionality to semi-intelligently prefill filename
22238         boxes with names deduced from class name
22240 2002-02-26 lbell <lbell@tsc4.com>
22242         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>
22243         * src/preferences_gui.c:
22244         Removed an incorrect use of gtk_misc_set_alignment().
22245         
22246         * src/anjuta.c, src/anjuta.h, src/controls.c, src/main.c,
22247         src/main_menubar.c, src/mainmenu_callbacks.c, src/preferences.c,
22248         src/preferences.h, src/preferences_gui.c:
22249         
22250         Added the option to reload last open project at the startup.
22251         Added the possibility to open a new project without close
22252         an existing one
22253         
22254         * src/properties.cxx:
22255         Corrected a spelling mistake in message string.
22256         
22257         * src/session.c:
22258         Updated session functions.
22259            
22260 2002-02-26  Naba Kumar <kh_naba@users.sourceforge.net>
22262         * widgets/gnomefilelist.c: Bug fixes.
22263         
22264         Patch from Philip Van Hoof <freax@pandora.be>
22265         
22266 2002-02-25  Naba Kumar <kh_naba@users.sourceforge.net>
22268         * src/an_file_view.c:
22269         anjuta was unable to open some files becuase they were not being
22270         recognized as "text/*" mime type (example files *.rej, *.in, etc.).
22271         Removed mime checking when opening with anjuta, becuase it doesn't
22272         hurt to open binary files in anjuta (some even may want to do so).
22273         
22274         Added a warning when mime type is not set when "view with default
22275         viewer" is activated.
22276         
22277         * src/an_file_view.c, an_symbol_view.c:
22278         Converted N_() to _() where ever appropriate in the strings.
22279         
22280 2002-02-25  Johannes Schmid <clubfan@users.sourceforge.net>
22281         
22282         * src/appwizard_gui.c, src/appwizard_cbs.c
22283           src/wizard_gui.c/h, src/appwiz_page3.c,
22284           src/project_import_gui.c:
22285           
22286         Moved target type radiobuttons to appwiz. page 2
22287         
22288         * src/message-manager-private.cc
22289         Fixed a bug which caused a crash if next message function was used
22291         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>.
22293 2002-02-25  Naba Kumar <kh_naba@users.sourceforge.net>
22295         * src/anjuta.h, anjuta.c, anjuta_cbs.c:
22296         Modifies the behaviour of Alt-TAB in Anjuta. This
22297         brings a behaviour similar to VC6 Alt-TAB, by maintaining the recently
22298         edited files in the first items of the notebook.
22300         Patch from: Timothee Besset <timo@qeradiant.com>
22301         
22302 2002-02-24  Philip Van Hoof <freax@pandora.be>
22304         * widgets/gnomefilelist.c, gnomefilelist.h:
22305           Added filecompletion
22306           
22307         Reviewed by Naba Kumar <kh_naba@users.sourceforge.net>.
22309 2002-02-21  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>
22311         * configure.in: Added "sk" to ALL_LINGUAS.
22313 2002-02-20  Johannes Schmid <clubfan@users.sourceforge.net>
22314   
22315         * src/appwiz_page3.c, src/appwizard.c, src/appwizard_cbs.c, 
22316           src/appwizard_gui.c, src/project_dbase.c, src/source.c,
22317           src/wizard_gui.c: Added support for static and dynamic libs
22318         
22319 2002-02-20  Dan Elphick <dre00r@ecs.soton.ac.uk>
22321         * widgets/gnomefilelist.c:
22322           Fixed gnome_filelist_get_lastfilename so it no longer returns
22323           a corrupted path.
22325 2002-02-20  Naba Kumar <kh_naba@users.sourceforge.net>
22327         * src/resources.h, resources.c:
22328         Added url handler.
22330         * src/main_menubar_def.h, mainmenu_callbacks.c:
22331         Changed to use gnome configed url handler.
22333 2002-02-19  Philip Van Hoof <freax@pandora.be>
22335         * widgets/gnomefilelist.c
22336         Added PHP filetype.
22338 2002-02-19  Naba Kumar <kh_naba@users.sourceforge.net>
22340         * plugins/class-gen/clsGen.c:
22341         Added c++ support.
22342         
22343         * widgets/gnomefilelist.c:
22344         Gives the maximum space to the files section of the open file dialog.
22345         
22346         Patches from: lbell <lbell@tsc4.com>
22347         
22348 2002-02-18  Naba Kumar <kh_naba@users.sourceforge.net>
22350         * src/anjuta.c, main.c:
22351         Used tm_get_real_path in anjuta_get_full_filename();
22352         
22353 2002-02-18  Andy Piper <andyp@users.sourceforge.net>
22354         
22355         * anjuta.prj: update version
22357 2002-02-17  Stephane Demurget  <demurgets@free.fr>
22359         * widgets/gnomefilelist.[ch]: (gnome_filelisttype_addtype_f):
22360           removed the amount arg and replaced with a NULL-ending list.
22361           (gnome_filelisttype_makedefaultlist): use the new prototype.
22363 2002-02-17  Andy Piper <andyp@users.sourceforge.net>
22365         * src/about.c, THANKS: updated for new contributors
22366         
22367         * anjuta.prj: added new files
22368         
22369         * README: corrected some documentation, ctags no longer needed,
22370           pkgconfig now required
22371           
22372         * data/properties/others.properties: add .cvsdiff extension
22373         
22374         * src/project_dbase_gui.c, src/utilities.c, src/utilities.h: 
22375           patch from Vadim Berezniker <vadim@berezniker.com> to improve 
22376           file import
22377           
22378         * doc/anjuta.1: added initial man page thanks to 
22379           Rob Bradford <rob@debianplanet.org> (NB build and install 
22380           needs work)
22381         
22382 2002-02-17  Johannes Schmid <clubfan@users.sourceforge.net>
22384         * src/Makefile.am: Cleaned handling of compiler flags by moving them
22385           to CFLAGS and CXXFLAGS. Anjuta is now compiled with -g -O2 and many
22386           warning flags. 
22387   
22388         * configure.in: Changed version to 0.1.10-pre
22389   
22390 2002-02-17  Stephane Demurget  <demurgets@free.fr>
22392         * src/fileselection.c: (create_fileselection_gui): always display
22393           the directory creation button as we cannot rely on the dialog
22394           titlebar.
22396         * widgets/gnomefilelist.[ch]: fixed includes.
22398         * pixmaps/new_folder.xpm: resized, added a + sign.
22400 2002-02-17  Stephane Demurget  <demurgets@free.fr>
22402         * widgets/gnomefilelist.c: (gnome_filelisttype_makedefaultlist):
22403           changed all extensions to begin with a dot.
22405 2002-02-16  Philip Van Hoof  <freax@pandora.be>
22407         Patch reviewed by Stephane Demurget <demurgets@free.fr>.
22409         * THANKS: added Philip.
22411         * pixmaps/Makefile.am, pixmaps/new_folder.xpm: added.
22413         * src/project_dbase.c: (project_dbase_make_default_filetype_list),
22414         * src/file_selection.[ch],
22415         * widgets/gnomefilelist.[ch]: added a filetype
22416           combobox to the Anjuta file dialog widget.
22418 2002-02-14  Andy Piper  <andy.piper@freeuk.com>
22420         * anjuta.spec.in: eep! the import script was not being installed by
22421           RPM - fixed for the release.
22423 2002-02-13  Stephane Demurget  <demurgets@free.fr>
22425         Various cleanups and fixes for the next release to be able to make
22426         distcheck.
22428         * plugins/*/*.c: added missing prototypes causing gcc to speak to
22429           much and make some tweaks plus cleanups.
22431         * widgets/scroll-menu.c: made compare_menu_items use gconstpointers
22432           args to remove some warnings.
22434         * global-tags/Makefile.am,
22435           data/Makefile.am,
22436           src/Makefile.am: link against Anjuta static libs using the
22437           $(top_builddir) dir, not anymore on $(top_srcdir) to make
22438           distcheck happy.
22440         * src/Makefile.am: ditto with all the Anjuta static libs.
22442         * src/main_menubar.c: removed the widgets/ dir from the scroll-menu.c
22443           include, as we already include the whole directory for the build.
22445         * src/text_editor_cbs.c: included dnd.h for scintilla_uri_dropped ().
22446           
22447 2002-02-13      Andy Piper      <andy.piper@freeuk.com>
22449         * pixmaps/Makefile.am: icon for libglade project now installed
22450         * NEWS, README, TODO, configure.in, anjuta.prj: revised for release
22451         * manuals/C/Makefile.am: removed ChangeLog reference which was 
22452           breaking some build stuff
22453         * global-tags/Makefile.am, tagmanager/Makefile.am: fixed some
22454           include reference problems that showed up on make distcheck
22455         * tagmanager/tm_workspace.c: fixed crash bug spotted by Biswa
22457 2002-02-13  Johannes Schmid <clubfan@users.sourceforge.net>
22458         
22459         * src/aneditor.cxx: Fixed bug #509977 (CallTips)
22461 2002-02-12  Naba Kumar <kh_naba@users.sourceforge.net>
22463         * src/message-manager-private.cc:
22464           The horizontal scrollbar now shows properly on demand.
22465         
22466 2002-02-08  Johannes Schmid <clubfan@users.sourceforge.net>
22468         * src/dnd.c fixed some warnings
22469         * src/message-manager-private.cc: Horizontal scrollbar is now shown 
22470           and works. It is shown always at the moment but before it was
22471           shown on demand and did never work. 
22473 2002-02-07  Naba Kumar <kh_naba@users.sourceforge.net>
22475         * src/anjuta.c: Fixed a crash bug.
22476           patch from: Jens Georg <mail@jensgeorg.de>
22478 2002-02-04      Andy Piper      <andy.piper@freeuk.com>
22480         * manuals/C/anjuta-manual/*.sgml: fixed so that jade no longer
22481           reports a problem with missing end tags on <graphic>
22483 2002-02-03      Andy Piper      <andy.piper@freeuk.com>
22485         * manuals/C/ChangeLog: removed since it was never used
22486         * manuals/C/anjuta-manual/*: more updates, new screenshots
22487         * anjuta.prj: updated for new manuals/ structure
22489 2002-02-03  Johannes Schmid <clubfan@users.sourceforge.net>
22491         * source.c, compiler_options.[c/h]:
22492           Fixed bug #460321 "Problem with optimization options" 
22493           by separating INCLUDE and C(XX)FLAGS in Makefile.am creation
22494         
22495 2002-02-03      Andy Piper      <andy.piper@freeuk.com>
22497         * NEWS: prepared for release, need to fill in date
22498         * data/welcome.txt: version number updated
22500 2002-02-03      Andy Piper      <andy.piper@freeuk.com>
22502         * src/text_editor_menu.c, src/an_file_view.c, 
22503           src/an_symbol_view.c: marked strings for translation
22504         
22505         * src/defaults.c, data/properties/xml.properties:
22506           *.omf and *.xsl files should use XML highlighting
22507           
22508         * manuals/C/anjuta-manual/*:
22509           - restructured so that files have more meaningful names
22510             and are easier to edit (see anjuta-manual.sgml for the
22511                 ordering)
22512           - updated some screenshots
22513           - continued rewrite
22515 2002-02-02  Naba Kumar <kh_naba@users.sourceforge.net>
22517         * main.c: Made a workaround to remove the old
22518         anjuta gnome config file (older than 9 Feb 2002). This
22519         will fix the bug which never lets the brower toolbar shown.
22520         
22521         * main.c: In fact, the above solution wouldn't work in all
22522         cases. Therefore, here is the better fix, which works by
22523         detecting the version of the old config file and deleting
22524         ~/.gnome/Anjuta if it is lesser than 0.1.9.
22525         
22526 2002-02-01  Andy Piper <andy.piper@freeuk.com>
22528         * HACKING: added info on submitting patches
22530 2002-01-31  Johannes Schmid <clubfan@users.sourceforge.net>
22532         * src/project_import_gui.c, src/project_import.c:
22533           - If Project Import Wizard is canceled everything is 
22534                 cleaned up now.
22535           - Back button is now insensitive on page 3 (some problems: 
22536                 see TODO in project_import_qui.c:284
22537           - Menu frame is insensitive if project type != GNOME(mm)
22539 2002-01-31  Naba Kumar <kh_naba@users.sourceforge.net>
22541         * src/main.c: Fixed bug #  (Unable to open files on
22542         double click in project window from second trial onwards when
22543         the project is opened from command line).
22544         
22545         * po/POTFILES.in: Removed tags_manager.[h,c]
22546         
22547 2002-01-31  Naba Kumar <kh_naba@users.sourceforge.net>
22549         * src/preferences.c:
22550           A quick hack to fix the 'invisible' browser toolbar when
22551           upgrading from 0.1.8 to 0.1.9
22552           
22553         * src/anjuta.c:
22554           Fixed toolbar names which were causing confusions in the toolbar
22555           show/hide.
22556           
22557         * src/main.c:
22558           Substituted "anjuta" with PACKAGE
22559           
22560         * src/project_import_gui.c: 
22561           Consistensy: wm_class should be set with "Anjuta" and not "anjuta"
22562           
22563         * anjuta.prj, src/tags_manager.h, src/tags_manger.c:
22564           Added new files and removed obsolete ones.
22565           
22566 2002-01-30  Andy Piper <andy.piper@freeuk.com>
22568         * src/appwizard_cbs.c, project_import_cbs.c, 
22569           main_menubar_def.h, project_import_gui.c: 
22570           updates to message strings and layout for the 
22571           import wizard.
22572           
22573         * text_editor_cbs.c: fix for the tab menu entries for 
22574           redocked windows (Dan Elphick <dre00r@ecs.soton.ac.uk>)
22576 2002-01-30  Naba Kumar <kh_naba@users.sourceforge.net>
22578         * src/toolbars.c,
22579           src/toolbars.h,
22580           src/anjuta_gui.c,
22581           src/controls.c:
22582           
22583           Tag dropdown exclusive (takes
22584           all space in the toolbar) and never vertical and
22585           increased the width of the tag combo to 256 pixs.
22586           Toolbar separator before the combo and button.
22587           Added tags label before the tag button.
22588           Reorganized the dock bands for the toolbars.
22589           
22590         * src/project_import_gui.c
22591           src/project_import.c:
22592           Fixed an error and removed an unused variable.
22593           
22594         * data/properties/anjuta.properties:
22595           Removed the property for the old toolbar and set
22596           browser toolbar show to default.
22597           
22598         * src/project_dbase.c: excluded modules were not
22599           loaded. Fixed.
22600           
22601         * src/source.c:
22602           No build files will be written if the project is blocked.
22603           
22604         * src/project_import.c,
22605           src/project_import_cbs.c,
22606           src/project_gui.c,
22607           src/wizard_gui.c:
22608           
22609           Manually applied Johannes patch to fix some memory
22610           issues and gui clean up.
22611           Patch from: Johannes Schmid <clubfan@users.sourceforge.net>
22612         
22613         * src/project_dbase.c, project_dbase.h, project_dbase_gui.h:
22614           Fixed a bad bug with remove file from project because of
22615           files were never removed properly from the project and
22616           from the tagmanager.
22617           
22618         * src/appwiz_page3.c: Disabled unused codes to clear
22619           compiler warnings.
22620           
22621 2002-01-30  Naba Kumar <kh_naba@users.sourceforge.net>
22623         * tagmanager/*/*: Upgraded to 0.7.1 version from Biswa.
22624         
22625         * data/Makefile.am
22626           pixmaps/Makefile.am
22627           src/Makefile.am
22628           src/an_file_view.c
22629           src/an_symbol_view.c
22630           src/anjuta.c
22631           src/anjuta.h
22632           src/anjuta_cbs.c
22633           src/anjuta_gui.c
22634           src/controls.c
22635           src/main_menubar.c
22636           src/main_menubar.h
22637           src/main_menubar_def.h
22638           src/mainmenu_callbacks.c
22639           src/mainmenu_callbacks.h
22640           src/pixmaps.h
22641           src/project_dbase.c
22642           src/project_dbase.h
22643           src/text_editor.c
22644           src/text_editor_menu.c
22645           src/text_editor_menu.h
22646           src/toolbar.c
22647           src/toolbar.h
22648           src/toolbar_callbacks.c
22649           src/toolbar_callbacks.h :
22650           
22651           Patch submitted by:
22652           Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
22653           
22654           Removes the Tags toolbar and substituted it with
22655           tags combo dropdown list. Fixes a couple of bugs.
22656           
22657           Moved the tag combo to browser toolbar because
22658           main toolbar was becoming too long.
22659           Made a new icon of tag toolbar.
22660           
22661         * po/zh_TW.po: Fixed bug.
22662           
22663         * pixmaps/an_tag.xpm: Added new file.
22665 2002-01-30  Naba Kumar <kh_naba@users.sourceforge.net>
22667         * src/project_import_gui.c: Reorganized project
22668         import gui page 2.
22669         
22670 2002-01-29  Andy Piper <andy.piper@freeuk.com>
22672         * HACKING: added info on creating windows and dialogs
22674 2002-01-29  Naba Kumar <kh_naba@users.sourceforge.net>
22676         * src/tm_file_view.c:
22678           Sorts the file list at the end instead of doing sort-insert
22679           to improve performance.
22680           Patch from: Dan Elphick <dre00r@ecs.soton.ac.uk>
22682         * src/project_dbase.c: Resolved a conflict from
22683           Johannes's patch.
22684           
22685         * src/project_import.c:
22686         
22687           Fixed to use anjuta_import.sh for the bin dir and
22688           not from the data dir.
22689         
22690           Used anjuta_is_installed() function to verify a the command's
22691           executability.
22692         
22693           Fixed import command to use sh (which is more general and is
22694           gauranteed to be found in any unix system :-)). Also, added
22695           double quotes around the import directory.
22696         
22697           Changed some strings for better translations (like avoiding
22698           duplicates).
22699           
22700           Fixed the reading of wrong target type.
22701           
22702         * src/control.c: Insensitive "import project" when there is
22703           a project open.
22704           
22705         * src/project_import_cbs.c:
22706           
22707           Fixed strcmp() [== 0 was left out]. Languages now selected properly.
22708           Fixed selection of gettext checkbox.
22709           Sets the menu entries.
22710           
22711 2002-01-28  Johannes Schmid <clubfan@users.sourceforge.net>
22712         
22713         * src/appwiz_page[1-4].c
22714         * src/appwiz_gui.c
22715         * src/appwizard.[c/h]: Moved some code to wizard_gui.[c/h]
22716         be able to reuse it.
22717         
22718         * src/mainmenubar.[c/h]
22719         * src/mainmenubar_def.h
22720         * src/mainmenu_callbacks.[c/h]: Code to create "Import Project" 
22721         menu item
22722         
22723         * src/message-manager.c: Fixed bug 509192
22724         * src/message-manager-dock.c: Added accel_group if window is undocked
22725         
22726         * src/project_dbase.[c/h]: Splitted opening code to be able
22727         to use it without an open file dialog
22728         (Maybe I broke Naba's changes, please take a look)
22729                         
22730         * src/project_import.[c/h]
22731         * src/project_import_gui.c: New Files, Code for Project Import Wizard
22732         
22733         * src/wizard_gui.[c/h]: New Files, shared code between appwizard and 
22734         import wizard
22736 2002-01-28  Andy Piper <andy.piper@freeuk.com>
22738         * src/main_menubar_def.h, tagmanager/tm_project.c: more
22739           string cleanups
22740           
22741         * manuals/C/anjuta_manual/*: started rewrite of the 
22742           manual, updated some screenshots
22744 2002-01-28  Naba Kumar <kh_naba@users.sourceforge.net>
22746         * src/gnomefilelist.h, src/gnomefilelist.c:
22747         
22748           Fixed multiple selection bug (#497085). The OK button is
22749           sensitive when in multiple mode, if the no. of
22750           selection is one or more.
22751           
22752           Toggle between single and multiple selection mode
22753           and multiple mode display.
22754           
22755           Fixed strings to translable strings.
22756           
22757           Fixed some compiler warnings by commenting out
22758           unused functions.
22759           
22760 2002-01-28  Naba Kumar <kh_naba@users.sourceforge.net>
22762         * src/project_dbase.c: App status bar now updates
22763           with the project name when the project is loaded.
22764         
22765         * src/an_file_view.c, tagmanager/tm_file_entry.c:
22766           
22767           Puts the directories at the top. They're also sorted now.
22768           Patch from: Dan Elphick <dre00r@ecs.soton.ac.uk>
22769         
22770 2002-01-28  Naba Kumar <kh_naba@users.sourceforge.net>
22772         * scripts/anjuta_import.sh.in: Added file.
22773         * scripts/anjuta_import.sh: Removed file.
22775         * .cvsignore, po/.cvsignore, scripts/.cvsignore:
22776           Updated files.
22777           
22778         * src/main_menubar_def.h:
22779         
22780           Changed shortcut for Find/Replace to CTRL+SHIFT+F (to
22781           reflect the opposite of Find (CTRL+F) and also to leave
22782           CTRL+R or Redo.
22783           
22784           Changed Glade summon with ALT+G, which frees the ATL+E
22785           for poping up the edit menu.
22786           
22787         * src/Makefile.am: Debugging link flags by Biswa, removed.
22789 2002-01-28      Andy Piper      <andy.piper@freeuk.com>
22791         * HACKING: added information on best practices for writing
22792           application messages and GUI labels
22793           
22794         * src/CORBA-Server.c, src/about.c, src/anjuta.c, 
22795           src/breakpoints.c, src/build_file.c, src/build_project.c, 
22796           src/clean_project.c, src/compile.c, 
22797           src/compiler_options_cbs.c, src/compiler_options_gui.c, 
22798           src/configurer.c, src/debugger.c, src/executer.c, 
22799           src/find_in_files.c, src/find_in_files_cbs.c, 
22800           src/find_replace.c, src/find_text.c, src/glades.c, 
22801           src/gnome_project.c, src/goto_line.c, src/main.c, 
22802           src/main_menubar.c, src/main_menubar_def.h, 
22803           src/mainmenu_callbacks.c, src/preferences_gui.c, 
22804           src/project_config.c, src/project_dbase.c, 
22805           src/project_dbase_gui.c, src/resources.c, src/source.c, 
22806           src/support.c, src/tags_manager.c, src/text_editor.c, 
22807           src/text_editor_gui.c, src/text_editor_menu.c, 
22808           src/toolbar_callbacks.c, src/utilities.c: 
22809           lots of minor message updates to make them more user-friendly 
22810           and consistent
22812 2002-01-28  Naba Kumar <kh_naba@users.sourceforge.net>
22814         * src/executer.c:
22815         
22816           Because of the spaces escaping, the command could not be
22817           executed when run without terminal. Now fixed.
22818           
22819         * anjuta.prj, Makefile.am:
22820         
22821           Added anjuta project file.
22822         
22823 2002-01-27  Naba Kumar <kh_naba@users.sourceforge.net>
22825         * src/message-manager-private.h, message-manager-private.cc,
22826           message-manger.cc:
22827           
22828           Added freeze() and thaw() for the message window class to
22829           speed up the message manager update.
22830         
22831         * src/project_config.h, project_config.c,
22832           src/project_dbase.h, project_dbase.h
22833           scripts/anjuta_project.template:
22834           
22835           Added two new prject attributes: project.config.blocked and
22836           project.excluded.modules. The former will make sure that users
22837           are not given any previlidge in enabling the 'overwrite build
22838           files' flags and the later issues a list of modules in the project
22839           to be skipped for symbol browsing and project listing.
22840         
22841         * configure.in, scripts/anjuta_import.sh, scripts/Makefile.am:
22842         
22843           Modified script to read the template from the anjuta data dir
22844           rather than from the directory in which the script exist. Otherwise,
22845           Being transfered to the bin dir, the script will not be able to
22846           find the template when it is run.
22847           
22848           The script is also create with configure.in to set in the anjuta
22849           data dir path inside the script.
22850           
22851 2002-01-26  Stephane Demurget  <demurgets@free.fr>
22853         * po/fr.po: updated to the latest sources.
22855 2002-01-26  Naba Kumar <kh_naba@users.sourceforge.net>
22857         * scripts/Makefile.am:
22858           anjuta_import.sh goes with distribution.
22859           
22860         * po/*.po: They seem to have updated (merged with
22861           anjuta.pot) automatically when I did "make dist".
22862           
22863 2002-01-26  Naba Kumar <kh_naba@users.sourceforge.net>
22865         * src/compiler_options_cbs.c, compiler_options.h, compiler_options_gui.c,
22866           Fixed Bug #499807, ie crash on removing libs, includes, defines from
22867           the compiler options dialog.
22868         
22869         * ChangeLog:
22870           Correct todays date. :)
22871           
22872         * scripts/Makefile.am:
22873           Installs anjuta_import.sh in $(prefix)/bin dir and
22874           is treated as an executable.
22875           
22876 2002-01-26  Naba Kumar <kh_naba@users.sourceforge.net>
22878         * Fix for bug #499373
22879         
22880         * data/properties/anjuta.properties, ada.properties, cpp.properties,
22881           java, properties, latex.properties, lua.properties, others.properties,
22882           perl.properties:
22883           
22884           Added double-quotes around file arguments so that
22885           filenames with spaces could also work.
22887         * launcher/anjuta-launcher.c, executer.c:
22888           Escaped quotes in the cammand and it's arguments before executing
22889           so that args with spaces can also work.
22890           
22891           Commented #DEBUG switch.
22892           
22893 2002-01-26  Naba Kumar <kh_naba@users.sourceforge.net>
22895         * scripts/*: Added files which I forgot previously.
22896         
22897         * src/aneditor.h: Lined up commands definition for better look.
22898         
22899         * src/mainmenu_callbacks.c. main_menu_def.h, main_menubar.c,
22900           main_menubar.h, control.c:
22901           Added three more convert EOL chars submenu items in transform.
22902           Reformatted some some.
22903         
22904         * data/anjuta.properties:
22905           Reformatted a line.
22906         
22907         * src/aneditor.h, aneditor.c:
22908           Added three commands (with definitions) for EOL conversions.
22909           
22910         * src/text_editor.c:
22911           Editor detects file mode from the file content and
22912           set the editing mode to CR/LF/CRLF automatically.
22913           Refined Dos mode extrageneous chars filter
22914           This will make sure that filter works only in Dos mode and not
22915           in other modes.
22916           
22917         * src/anjuta.c: Editor mode display in status bar.
22918         
22919         * src/preferences_gui.c: Changed the string for dos mode
22920           filter to more sensible string.
22921         
22922         * src/aneditor.c: Default editor mode sets during widget creation
22923           and not everty time the properties are loaded. This makes sure
22924           that the auto-detected mode is not overridden by the default mode.
22925           
22926         * src/text_editor.c, aneditor.c: Disabled #DEBUG flag.
22927         
22928         * src/anjuta.c: Fixed bug #476028.
22929           Now anjuta also searches for file relative to top project dir,
22930           when the project is open.
22931         
22932         * src/anjuta_cbs.c: Fixed bug #499536.
22933           File is not closed if it is not able to save the file properly.
22934           
22935         * src/mainmenu_callbacks.c: Fixed bug #499536.
22936           Newfiles (which are not modified) are also closed on "close all files".
22937         
22938 2002-01-25  Naba Kumar <kh_naba@users.sourceforge.net>
22940         * src/an_symbol_view.c: Added MAX_STRING_LENGTH
22941         
22942         * tagmanager/tm_source_file.c, regex.c, parse.c:
22943           defined and delimited g_messages within #debug.
22944           
22945         * src/preferences.c, data/anjuta.properties:
22946           saved/defied message-manager tag position in string.
22947           Message tag possition is saved between sessions. And
22948           and tag position bottom as default.
22949           
22950 2002-01-25  Naba Kumar <kh_naba@users.sourceforge.net>
22952         Patch submitted by:
22953         Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
22955         * Makefile.am
22956           configure.in
22957           data/Makefile.am
22958           data/properties/Makefile.am
22959           global-tags/Makefile.am
22960           pixmaps/Makefile.am
22961           src/Makefile.am
22962           src/an_file_view.c
22963           src/an_file_view.h
22964           src/an_symbol_view.c
22965           src/an_symbol_view.h
22966           src/anjuta.c
22967           src/anjuta_cbs.c
22968           src/file_history.c
22969           src/file_history.h
22970           src/message-manager-private.cc
22971           src/pixmaps.h
22972           src/project_dbase.c
22973           src/project_dbase_gui.c
22974           src/tags_manager.c
22975           src/text_editor.c
22976           src/utilities.c
22977           src/utilities.h
22978           src/watch_gui.c:
22979         
22980           Modified files.
22981         
22982         * scripts/*
22983           pixmaps/sv_class.xpm
22984           pixmaps/sv_function.xpm
22985           pixmaps/sv_macro.xpm
22986           pixmaps/sv_private_fun.xpm
22987           pixmaps/sv_private_var.xpm
22988           pixmaps/sv_protected_fun.xpm
22989           pixmaps/sv_protected_var.xpm
22990           pixmaps/sv_public_fun.xpm
22991           pixmaps/sv_public_var.xpm
22992           pixmaps/sv_static_fun.xpm
22993           pixmaps/sv_static_var.xpm
22994           pixmaps/sv_struct.xpm
22995           pixmaps/sv_unknown.xpm
22996           pixmaps/sv_variable.xpm
22997           pixmaps/fv_core.xpm
22998           pixmaps/fv_text.xpm
22999           pixmaps/filestoremove.txt:
23000         
23001           New files.
23002         
23003         * pixmaps/class.xpm
23004           pixmaps/function.xpm
23005           pixmaps/fv_autofile.xpm
23006           pixmaps/fv_doc.xpm
23007           pixmaps/fv_i18n.xpm
23008           pixmaps/fv_source.xpm
23009           pixmaps/private_func.xpm
23010           pixmaps/private_var.xpm
23011           pixmaps/protected_func.xpm
23012           pixmaps/protected_var.xpm
23013           pixmaps/public_func.xpm
23014           pixmaps/public_var.xpm
23015           pixmaps/struct.xpm
23016           pixmaps/variable.xpm
23017         
23018           Removed files.
23019         
23020         * tagmanager/*/*:
23021         
23022           Upgraded to tagmanager-0.7
23024 2002-01-24      Johannes Schmid <clubfan@users.sourceforge.net>
23025         * src/anjuta_cbs.c: Fixed bug #506441
23026         * src/watch_gui.c: Changed layout of eval dialog so that
23027         it fits on a 800x600 desktop with German translation. 
23029 2002-01-23      Andy Piper <andy.piper@freeuk.com>
23031         * src/project_dbase.c: completed string updates for GTKmm and GNOMEmm
23032         * pixmaps/appwiz_libglade.png, src/pixmaps.h, pixmaps/Makefile.am: new 
23033           icon for new project type (thanks to Misha)
23034         * configure.in: build and install Danish translation
23035         * src/about.c, THANKS, manuals/C/anjuta-manual/authors.sgml: updated 
23036           credits to cover new patches and translations
23038 2002-01-23  Johannes Schmid <clubfan@users.sourceforge.net>
23039         
23040         * src/preferences.c, src/message-manager.cc, src/project_type.c,
23041           src/appwiz_page1.c:
23042         
23043       - Font preferences are restored properly now (\n was missing)
23044           - Dock menu label of message-manager is "Dock/Undock" instead
23045           of "Dock|Undock" to match with the rest of anjuta.
23046           - Name of GTK-- and GNOME-- have changed to GTKmm and GNOMEmm, so I
23047           changed it in anjuta, too 
23049 2002-01-21  Naba Kumar <kh_naba@users.sourceforge.net>
23051         * tagmanager/tm_source_file.c,
23052           tagmanager/parse.c,
23053           tagmanager/tm_project.c,
23054           src/an_symbol_view.c,
23055           src/anjuta.c:
23056           
23057           Disabled debug warnings.
23059 2002-01-21  Naba Kumar <kh_naba@users.sourceforge.net>
23061         * src/appwiz_page1.c
23062           src/compiler_options.c
23063           src/project_dbase.c
23064           src/project_dbase.h
23065           src/project_type.c
23066           src/source.c
23067           src/source.h:
23068           
23069           New project type named LibGlade.
23070           
23071           Patch submitted by:
23072           Dick Knol <dknol@gmx.net>
23074         * src/gnome_prj.c:
23075           Commented out unused pixmap creation. May be it
23076           will fix the crash in project creation.
23077           
23078 2002-01-21  Naba Kumar <kh_naba@users.sourceforge.net>
23080         * src/registers.c
23081           src/registers.h
23082           src/registers_cbs.c
23083           src/registers_cbs.h
23084           src/registers_gui.c
23085           src/sharedlib.c
23086           src/sharedlib.h
23087           src/sharedlib_cbs.c
23088           src/sharedlib_cbs.h
23089           src/sharedlib_gui.c
23090           src/signals.c
23091           src/signals.h
23092           src/signals_cbs.c
23093           src/signals_cbs.h
23094           src/signals_gui.c
23095           src/stack_trace.c
23096           src/stack_trace.h
23097           src/stack_trace_cbs.c
23098           src/stack_trace_cbs.h
23099           src/stack_trace_gui.c
23100           src/text_editor.c
23101           src/watch.c
23102           src/watch.h
23103           src/watch_cbs.c
23104           src/watch_cbs.h
23105           src/watch_gui.c
23106           
23107           Fixed bug #496290: Attach/detach removed from these
23108           windows as they are never implemented.
23109           
23110           Patch submitted by:
23111           Johannes Schmid <johannes.schmid@gmx.de>
23112           
23113 2002-01-18      Naba Kumar <kh_naba@users.sourceforge.net>
23115         * src/anjuta.c,
23116           src/anjuta_cbs.c:
23117           
23118           Fixed bug:
23119           when you right click on the tabs, a list of filenames are given
23120           out, but now it gives a list of "page 1", "page 2", etc...
23121           
23122           Patch submitted by: 
23123           Jens Georg <mail@jensgeorg.de>
23125         * anjuta.in.in: Removed c|c++ because, it was not necessary
23126           and was causing translation problem.
23127           
23128         * plugins/class-gen/clsGen.c:
23129           removed "'" for the same reason.
23130           
23131 attached the fix for the menu
23134 2002-01-17      Naba Kumar <kh_naba@users.sourceforge.net>
23136         * src/preferences.h,
23137           src/preferences.c,
23138           src/preferences_gui.c:
23139           
23140           Adds the functionality to Anjuta to auto save your unsaved
23141           files before you build a project.
23143           Patch submitted by: 
23144           jason <jason_williams@suth.com>
23145           
23146         * src/anjuta.[h,c]:
23147           Added function for save all files.
23148         
23149         * src/mainmenu_callbacks.c:
23150           Modified to use the above function.
23151         
23152         * src/build_project.c:
23153           Save all files before build if it is set in the
23154           preferences.
23156 2002-01-17      Naba Kumar <kh_naba@users.sourceforge.net>
23158         * src/message-manager-private.cc
23159           src/message-manager-private.h
23160           src/message-manager.cc:
23161           
23162           Message-manager now restores the tabs which were shown on startup.
23163           The terminal is now created on demand (as requested by Biswa)
23164           and I have removed some debug messages.
23165           
23166           Patch submitted by: 
23167           Johannes Schmid <johannes.schmid@gmx.de>
23169 2002-01-13  Stephane Demurget  <demurgets@free.fr>
23171         * src/anjuta_cbs.c: fixed the global shortcut handling to have a
23172           proper tabs keyboard navigation.
23174         * src/an_symbol_view.c,
23175           src/anjuta_cbs.c,
23176           src/gnome_project.c,
23177           src/project_dbase.c,
23178           src/tags_manager.c: removed some debugging display.
23180 2002-01-09      Naba Kumar <kh_naba@users.sourceforge.net>
23182         * src/message-manager-dock.c
23183           src/message-manager-private.cc
23184           src/message-manager-private.h
23185           src/message-manager.cc
23186           src/preferences.c
23187           src/preferences.h
23188           src/preferences_gui.c:
23189           
23190           Patch submitted by: 
23191           Johannes Schmid <johannes.schmid@gmx.de>
23192           
23193           This patch adds a tab to the notebook of the preferences-dialog
23194           where you can change the colors, the tab position of the new
23195           message manager. Also the truncate messages stuff has moved
23196           from misc tab to messages tab.
23198           Also improved the remembering position stuff of message manager.
23199           
23200         * data/internal.properties,
23201           Added definitions for messages colors and tag position.
23202           
23203         * src/message_manager.cc:
23204           Fixed a bug that never lets the messages panes to get cleared.
23205           Added wmclass setting for the message window. Fixed a bug in
23206           which the message window was not being shown.
23207         
23208         * src/tag_manager.c: Fixed printing of (NULL) in the debug
23209           output and disabled it.
23211         * src/anjuta.c: Preferences created and loaded before anything else.
23212           anjuta now recognizes messages colors on startup and initializes
23213           them.
23214         
23215 2002-01-09      Andy Piper      <andy.piper@freeuk.com>
23217         * src/project_dbase.c: fix bug #497923 (thanks to Johannes Schmid)
23219 2002-01-09  Stephane Demurget  <demurgets@free.fr>
23221         * pixmaps/file_c.xpm,
23222           pixmaps/file_cpp.xpm,
23223           pixmaps/file_file.xpm,
23224           pixmaps/file_h.xpm,
23225           pixmaps/file_html.xpm,
23226           pixmaps/file_i18n.xpm,
23227           pixmaps/file_icon.xpm,
23228           pixmaps/file_pix.xpm,
23229           pixmaps/fv_doc.xpm,
23230           pixmaps/fv_i18n.xpm,
23231           pixmaps/fv_image.xpm,
23232           pixmaps/fv_source.xpm,
23233           pixmaps/fv_unknown.xpm: made these icons transparent.
23235 2002-01-08      Andy Piper      <andy.piper@freeuk.com>
23237         * launcher/anjuta_launcher.c: updated message strings
23238         * src/message-manager-dock.c: added newline at end to avoid compile warning
23239         * src/project_dbase.c: corrected spelling of include (noted by Biswa)
23240         * src/controls.c, src/main_menubar.c, src/main_menubar.h, src/main_menubar_def.h,
23241           src/mainmenu_callbacks.c, src/mainmenu_callbacks.h: added some new Insert menu
23242           entries for username and Python-style GPL notice
23243         * HACKING: added info on files to change to update Insert menu
23245 2002-01-08  Naba Kumar <kh_naba@users.sourceforge.net>
23247         * src/project_dbase.c,
23248           src/an_file_view.c,
23249           src/an_symbol_view.c:
23250           Changed the CTree expander style to square and
23251           line style to Dotted line.
23252           
23253         * po/POTFILES.in: Removed and Added translable files.
23255 2002-01-08  Naba Kumar <kh_naba@users.sourceforge.net>
23257         * ccview/.cvsignore: Removed.
23258         
23259 2002-01-08  Naba Kumar <kh_naba@users.sourceforge.net>
23261         * ccview/
23262                 cccmd.cc, ccview_main.h, func_dialog.cc, struct.xpm,
23263                 cccmd.h, cfolder.xpm, func_dialog.h, ofolder.xpm, support.c,
23264                 cccproj.cc, ChangeLog, gtk_help.cc, panes.cc, support.h,
23265                 cccproj.hh, class.xpm, gtk_help.h, private.xpm, tree_coll.h,
23266                 ccview.cc, cregex.hh, hash_str.h, protected.xpm,
23267                 ccview.h, public.xpm, ccview_main.cc, file.xpm, Makefile.am, scanner.xpm:
23268         
23269         Removed ccview module because it is no longer needed.
23271 2002-01-08  Naba Kumar <kh_naba@users.sourceforge.net>
23273         * src/project_dbase.c:
23274           Shifted structure initialization in project_dbase_new()
23275           before anything else, otherwise it was crashing due to
23276           uninitialized values.
23277         
23278         * src/an_symbol_view.c:
23279           Disabled high volume debug output.
23281 2002-01-08  Naba Kumar <kh_naba@users.sourceforge.net>
23282         
23283         Applied a very heavy patch from:
23284         Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
23286         * Makefile.am
23287         configure.in
23288         pixmaps/Makefile.am
23289         src/Makefile.am
23290         src/aneditor.cxx
23291         src/aneditor.h
23292         src/anjuta.c
23293         src/anjuta.h
23294         src/commands.c
23295         src/commands.h
23296         src/compile.c
23297         src/compile.h
23298         src/controls.c
23299         src/defaults.c
23300         src/fileselection.c
23301         src/main_menubar.c
23302         src/main_menubar.h
23303         src/main_menubar_def.h
23304         src/mainmenu_callbacks.c
23305         src/mainmenu_callbacks.h
23306         src/project_dbase.c
23307         src/project_dbase.h
23308         src/project_dbase_gui.c
23309         src/tags_manager.c
23310         src/text_editor_menu.c
23311         src/toolbar_callbacks.c
23312         tagmanager/Makefile.am
23313         tagmanager/ctags.c
23314         tagmanager/include/Makefile.am
23315         tagmanager/include/tm_project.h
23316         tagmanager/include/tm_symbol.h
23317         tagmanager/include/tm_tag.h
23318         tagmanager/include/tm_tagmanager.h
23319         tagmanager/include/tm_workspace.h
23320         tagmanager/tm_project.c
23321         tagmanager/tm_source_file.c
23322         tagmanager/tm_symbol.c
23323         tagmanager/tm_tag.c
23324         tagmanager/tm_workspace.c
23325         widgets/Makefile.am: Modified.
23326         
23327         * src/an_file_view.[c,h],
23328           src/an_symbol_view.[c,h],
23329           src/file_history.[c,h],
23330           src/support.[c,h],
23331           widgets/scroll-menu.[c,h],
23332           tagmanager/tm_file_entry.c
23333           tagmanager/include/tm_file_entry.h: Added new files.
23334           
23335         * pixmaps/cfolder.xpm, fv_doc.xpm, fv_source.xpm,
23336         private_func.xpm, public_func.xpm,
23337         class.xpm, fv_exec.xpm, fv_unknown.xpm,
23338         private_var.xpm, public_var.xpm,
23339         function.xpm, fv_i18n.xpm, macro.xpm,
23340         protected_func.xpm, struct.xpm,
23341         fv_autofile.xpm, fv_image.xpm,
23342         ofolder.xpm, protected_var.xpm, variable.xpm:
23343           Updated and Added pixmap files.
23345         Features:
23346         ---------
23347         a) Removes CCView dependency.
23348         b) Improves the terminal.
23349         c) Adds tag navigation context menus.
23350         d) Upgrades tagmanager to latest version.
23351         e) Miscellaneous small additions.
23353 2002-01-07  Naba Kumar <kh_naba@users.sourceforge.net>
23355         * src/project_dbase_gui.c: Fixed crash of anjuta
23356         when project first created.
23357         
23358         * src/gnome_project.c: It now updates the tags manager
23359         when new projects are created.
23360         
23361 2002-01-07  Naba Kumar <kh_naba@users.sourceforge.net>
23363         * Thanks Johannes Schmid <johannes.schmid@gmx.de>
23364           for this big patch.
23365         
23366         * src/messages.[c,h]: Removed files.
23368         * src/message-manager.[cc,h],
23369           src/message-manager-dock.[c,h],
23370           src/message-manager-private.[cc,h]
23371           New files.
23373         * src/anjuta.c, src/anjuta.h, src/anjuta_cbs.c, src/build_file.c
23374           src/build_project.c, src/clean_project.c, src/compile.c
23375           src/configurer.c, src/debugger.c, src/find_in_files.c
23376           src/mainmenu_callbacks.c, src/preferences.h
23377           src/preferences_gui.c, src/properties.h
23378           src/utilities.c, src/utilities.h:
23379           The new messages widget.
23380           New features:
23381             - Use of GtkNotebook instead of ToggleButtons
23382               and show/hide
23383             - Popupmenu to show and hide message types and
23384               to dock/undock in detach mode
23386           All other things should work as they did with the
23387           old message window. Currently the keyboard short-cuts
23388           do not work in detached mode.
23389           
23390           Some functions in utitlities.[c,h] changed.
23391           so that they take const arguments where this is possible
23392           
23393         * src/Makefile.am, po/POTFILES.in:
23394           Removed messages.[c,h] and
23395           added message-manager.[cc,h], message-manager-dock.[c,h],
23396           message-manager-private.[cc,h]
23397           
23398         * src/message-manager.h: Removed "include <bonobo.h>"
23399           and added a newline at the end of the file.
23400           
23401         * src/message-manager-private.cc:
23402           Set clist's width setting to Automatic.
23403           Set scroll window's scroll bars to Automatic.
23404           
23405 2002-01-05  Naba Kumar <kh_naba@users.sourceforge.net>
23407         * text_editor_menu.c:
23408           Fixed misalignment of the function sub menu
23409           in the text editor pop up menu.
23410           
23411 2002-01-04  Naba Kumar <kh_naba@users.sourceforge.net>
23412         
23413         * src/text_editor.c: Fixed a compiler warning.
23414         
23415 2002-01-04  Andy Piper <andy.piper@freeuk.com>
23417         * THANKS, manuals/*/authors.sgml: updated for new translations
23418         * plugins/class-gen/clsGen.c: converted messages to English
23419         * src/about.c, src/main_menubar_def.h: string updates
23421 2002-01-04  Naba Kumar <kh_naba@users.sourceforge.net>
23423         * src/anjuta.c
23424           src/anjuta_cbs.c
23425           src/text_editor.c
23426           src/mainmenu_callbacks.c
23427           src/text_editor.h
23428           src/text_editor.c
23429           src/text_editor_cbs.c
23430           src/text_editor-gui.c:
23431           
23432           Earlier code for adding 'cross' button
23433           for closing pages were too error prone and unorganized.
23434           Cleaned up the code and shifted the 'extra' widgets
23435           creation (eg. close button, close_pixmap and lable)
23436           from anjuta to text_editor. This takes care of proper
23437           widgets creation and destruction. Otherwise, anjuta
23438           was crashing at too many points, especially related
23439           to docking and undocking.
23440           
23441 2002-01-04  Stephane Demurget  <demurgets@free.fr>
23443         * src/aneditor.cxx: removed debugging code.
23445         * data/properties/.cvsignore: added swap files.
23447 2002-01-03  Naba Kumar <kh_naba@users.sourceforge.net>
23449         * src/anjuta.c
23450           src/anjuta_cbs.c:
23451           Fixed Crashing of anjuta when a new file is saved as
23452           different file.
23453           
23454 2002-01-03  Naba Kumar <kh_naba@users.sourceforge.net>
23456         * src/aneditor.c: Some debug codes around.
23457         
23458         * data/internal.properties, data/anjuta.properties: Removed.
23459           data/properties/Makefile.am:
23460           data/properties/ada
23461           data/properties/cs
23462           data/properties/make
23463           data/properties/rc
23464           data/properties/html
23465           data/properties/ruby
23466           data/properties/baan
23467           data/properties/idl
23468           data/properties/pascal
23469           data/properties/sample
23470           data/properties/bash
23471           data/properties/java
23472           data/properties/perl
23473           data/properties/sql
23474           data/properties/conf
23475           data/properties/latex
23476           data/properties/props
23477           data/properties/vb
23478           data/properties/cpp
23479           data/properties/lua
23480           data/properties/python
23481           data/properties/xml
23482           data/properties/others
23483           data/properties/.cvsignore:
23484             Added files. Properties now splitted into small files
23485             for each language.
23487         * data/Makefile.am
23488           configure.in: Update the removal and added properties module.
23490         * src/preferences.c: preferences_new(): Updated to reflect the
23491           new properties files organization.
23492           
23493         * src/Makefile.am: Added Baan Lexer.
23495 2002-01-01  Stephane Demurget  <demurgets@free.fr>
23497         * src/aneditor.cxx: readded the baan lexer. 
23499         * src/preferences.c: fixed translated messages and a typo.
23501         * desktop.in.in: changed the name to Anjuta C|C++ IDE, since the / was
23502           confusing the regexp usage in xml-i18-merge.
23504 2002-01-01      Andy Piper      <andy.piper@freeuk.com>
23506         * src/project_dbase.c: tidied some messages, and spotted a typo in
23507           the reading of properties which prevented the project version from
23508           ever being reported in the Project Information window - fixed :)
23510         * po/POTFILES.in: removed syntax.h
23512 2001-12-31  Stephane Demurget  <demurgets@free.fr>
23514         * data/internal.properties: fixed baan properties.
23515           Added all ada properties.
23517         * src/main_menubar_def.h,
23518           src/lexer.h,
23519           src/aneditor.cxx,
23520           src/utilities.[ch]: added support for the Ada highlight style.
23522 2001-12-31  Stephane Demurget  <demurgets@free.fr>
23524         * plugins/*/.cvsignore: updated.
23526 2001-12-31  Stephane Demurget  <demurgets@free.fr>
23528         * src/syntax.h,
23529           src/text_editor.c,
23530           src/Makefile.am: removed the empty header syntax.h.
23532 2001-12-31  Naba Kumar <kh_naba@users.sourceforge.net>
23534         * main_menubar.c:
23535         Stef's observation on the 'superfluous' hseparators in the recent
23536         files and projects is fully justified -- removed.
23537         
23538         * main_menubar_def.h:
23539         Changed "Plug Ins" to "Plugins" in the menu label.
23540         
23541         * configure.in, plugins/Makefile.am, plugins/class-gen/*:
23542         Added class-gen in the configure output and class-gen module.
23543         
23544         * data/internal.properties:
23545         Correct mis-spelled "jave" to "java".
23546         Added file.is.source for *.h, *.c, *.cpp properties.
23547         
23548         * global-tags/Makefile.am:
23549         "chmod +x create_global_tags.sh" before it is executed, because
23550         there is very high chance that it will be found "-x" and resulting
23551         in error
23553 2001-12-31  Stephane Demurget  <demurgets@free.fr>
23555         Fixed a crash on Solaris reported by Holder Burde, thanks to him
23556         for the backtrace.
23558         * src/gnome_project.c: (create_new_project): if the user doesn't
23559           select any icon, it doesn't have any extension and thus we can't
23560           use it in printf on Solaris, since the %s modifier use strlen to
23561           know the string length and then crash. On Linux, gcc checks the value
23562           of the pointer to be NULL and write "(null)" if necessary. We can't
23563           rely on that.
23565         * src/source.c: (source_write_desktop_entry): if there's no icon, we
23566           don't need to have the directory icon but the generic one.
23568 2001-12-30  Stephane Demurget  <demurgets@free.fr>
23570         Merged with latest (1.42) scintilla.
23572         Added: Support for the {load,save}.on.(de)activate properties.
23573                The PHP lexer to match keywords case insensitively.
23574                Baan lexer.
23575                Experimental supports for changeable style attribute & line
23576                wrapping.
23577                
23578         Updated: Both the C++ and HTML lexers.
23579                  More shell keywords added.
23580                  Horizontal scrolling and diplay of long lines optimised.
23581                  Cursor setting optimised.
23583         Bugs fixed: Caret movement over folded lines.
23584                     Selection tracking in 2ndary views when doing modifications.
23586         * scintilla/CallTip.{cxx.h},
23587           scintilla/ContractionState.{cxx,h},
23588           scintilla/Document.{cxx,h},
23589           scintilla/Editor.{cxx,h},
23590           scintilla/KeyWords.cxx,
23591           scintilla/LexHTML.cxx,
23592           scintilla/PlatGTK.cxx,
23593           scintilla/RESearch.cxx,
23594           scintilla/ScintillaBase.cxx,
23595           scintilla/ScintillaGTK.cxx,
23596           scintilla/Style.{cxx,h},
23597           scintilla/StyleContext.h,
23598           scintilla/ViewStyle.cxx,
23599           scintilla/include/*.h: updated.
23601         * scintilla/LexBaan.cxx, scintilla/Makefile.am: added Baan lexer.
23603         * scintilla/LexCPP.cxx: removed all references to noDocChars. This
23604           should have been told to the scintilla team. We're lucky I read the
23605           ChangeLog and the modifications of the lexer (thanks to the Gnome
23606           bonsai for this ;)
23608         * data/internal.properties: added Baan definitions.
23609           Fixed some issues for C such as *_cast directive, that are only
23610           available with C++.
23611           Updated C++, HTML and shell scripts definitions.
23612           Updated Ada and Bullant, that have been forgotten.
23614         * src/main_menubar_def.h,
23615           src/lexer.h,
23616           src/aneditor.cxx,
23617           src/utilities.[ch]: added support for the Baan highlight style.
23619 2001-12-29  Stephane Demurget  <demurgets@free.fr>
23621         Polished the plugins menu behaviour and added a tearoff
23622         menuitem to the recent entries submenu.
23624         Note: The recent entries list seems to be too height
23625               with all these superfluous hseparators.
23627         * src/main_menubar.c: Polished, making some
23628           functions declarations static and cleaning some code.
23630           (create_submenu_plugin): removed the extra
23631           plugins entry and the horizontal separators.
23633           (on_plugins_menu_realize): the plugins menu is only
23634           shown if there's at least one available.
23636           (create_submenu*): added a tearoff menuitem to have
23637           a more homogeneous menu style. For now, it doesn't
23638           take care of user settings (but it was even worse
23639           before :).
23641 2001-12-29  Stephane Demurget  <demurgets@free.fr>
23643         * configure.in: added the packageplugindir variable to avoid
23644           installing the plugins in $(prefix). It's not the same path as
23645           anjuta 2 to allow parallel installation.
23647 2001-12-29  Stephane Demurget  <demurgets@free.fr>
23648         Fix a reopened part of bug #440676: keyboard navigation between the
23649         different text buffers. Changed to a more global approch. 
23651         * src/notebook.[ch]: removed.
23653         * src/Makefile.am: removed notebook.[ch]
23655         * src/anjuta_{gui,cbs}.c, src/anjuta.h:
23656           (on_anjuta_window_key_press_event): added to fulfill the global
23657           shorcuts handling.
23659         * HACKING: updated according to the new global shortcuts handling.
23661 2001-12-29 Naba Kumar <kh_naba@users.sourceforge.net>
23663         * src/main_menubar_def.h, main_menubar.h, main_menubar.c:
23664           Shifted plugin menu from Edit submenu to main menu.
23665         
23666         * po/POTFILES.in:
23667           Added plugins/sample1/plugin-sample1.c
23668           
23669         * plugins/sample1/plugin-sample1.c:
23670           Added localization and used anjuta_info, instead of anjuta_error.
23671           
23672         * plugins/.cvsignore, plugins/sample1/.cvsignore:
23673           Added cvs ignores.
23674           
23675 2001-12-28 Naba Kumar <kh_naba@users.sourceforge.net>
23677         * configure.in, acconfig.h: Added definition for PACKAGE_PLUGIN_DIR
23678           for plugin dir.
23679         
23680         * Makefile.am: Added module plugins.
23681         
23682         * plugins, plugins/Makefile.am, plugins/sample1/*:
23683           Created plugins modules.
23684           
23685         * src/anjuta.h, src/anjuta.c: Removed app->szAddinDir and 
23686           Defined PACKAGE_PLUGIN_DIR directly and properly. Fixed
23687           to load plugins of *.so only and not *.so* (which results
23688           in duplicates).
23689         
23690         * anjuta.spec.in: added %{prefix}/lib/anjuta to take care of 
23691           plugins during packaging.
23693 2001-12-27  Simos Xenitellis  <simos@hellug.gr>
23695         *  configure.in: Added Greek (el) to ALL_LINGUAS.
23697 2001-12-27 Duarte Loreto <happyguy_pt@hotmail.com>
23699         * configure.in: Added portuguese to ALL_LINGUAS
23701 2001-12-24  Naba Kumar <kh_naba@users.sourceforge.net>
23703         * global-tags/.cvsignore
23704         tagmanager/.cvsignore
23705         tagmanager/include/.cvsignore:
23706         Added cvs ignore files.
23708         * data/.cvsignore
23709         Updated cvs ignore file.
23710         
23711 2001-12-23      Andy Piper      <andy.piper@freeuk.com>
23713         * src/debugger.c, src/text_editor.c, src/anjuta.c, 
23714           data/anjuta.properties, data/internal.properties: clean up some 
23715           message strings (me)
23717 2001-12-23      Andy Piper      <andy.piper@freeuk.com>
23719         * src/about.c, THANKS: added Jens to the credits
23720         
23721 2001-12-23      Andy Piper      <andy.piper@freeuk.com>
23723         * pixmaps/close_file_small.xpm, pixmaps/Makefile.am, src/anjuta.c,
23724           src/text_editor.h, src/pixmaps.h, src/text_editor_cbs.c,
23725           src/text_editor_cbs.h, src/text_editor_gui.c: patch from Jens
23726           Georg <mail@jensgeorg.de> to add close button to file tabs.
23728 2001-12-20      Andy Piper      <andy.piper@freeuk.com>
23730         * launcher/anjuta_launcher.c: patch from Stef to fix #490816
23731           (debugger now catches correct signal from process)
23733 2001-12-20      Andy Piper      <andy.piper@freeuk.com>
23735         * pixmaps/Makefile.am, pixmaps/appwiz_*.png: new images from Misha
23736         * src/pixmaps.h: switch appwizard project icons to new designs
23737         * pixmaps/appwid*xpm, pixmaps/gear.xpm: removed unused graphics
23739 2001-12-20      Andy Piper      <andy.piper@freeuk.com>
23741         * pixmaps/Makefile.am: stop redundant images from being installed.
23742           The next step will be to remove them completely.
23743         * src/appwiz*: further updates (more to come)
23744         * src/pixmaps.h: cleaned up, commented
23745         * src/splash.c: should use the pixmaps macro defined
23746         * HACKING: more on the graphics stuff and use of pixmaps.h
23748 2001-12-19      Andy Piper      <andy.piper@freeuk.com>
23750         * src/defaults.c: fix bug #494864
23752 2001-12-18      Andy Piper      <andy.piper@freeuk.com>
23754         * pixmaps/applogo.png, pixmaps/appwizard.png: added new wizard
23755           graphics from Misha
23756         * pixmaps/interface.xpm, pixmaps/app_wizard.jpg: removed
23757           redundant graphics, no longer used
23758         * src/appwiz*: revamped application wizard by Andy and Misha for
23759           a more usable and professional look-and-feel
23760         * HACKING: updates to cover patching, graphics, and some additions
23761           post-0.1.8
23762         * TODO: removed some implemented features
23764 2001-12-17      Andy Piper      <andy.piper@freeuk.com>
23766         * data/anjuta.properties, data/internal.properties: cleanup
23767         * src/compiler_options_gui.c, src/mainmenu_callbacks.*, 
23768           src/preferences_gui.c, src/text_editor_menu.c: patches from Biswa
23769           to edit styles colors for keywords and add Goto Tag menu option
23770           in the editor
23772 2001-12-14 Naba Kumar <kh_naba@users.sourceforge.net>
23774         * src/anjuta.c, anjuta.h, text_editor.c, text_editor.h:
23775         
23776         Fixed bug #460335
23777         fixes the Forget of the cursor position when tab is brought active
23778         from project manager.
23779         
23780 2001-12-13 Naba Kumar <kh_naba@users.sourceforge.net>
23782         * src/messages.c
23783           Exported "TERM=xterm" to get a color terminal when
23784           anjuta is not started from within a terminal.
23785           
23786 2001-12-13 Naba Kumar <kh_naba@users.sourceforge.net>
23788         * src/messages.c
23789           src/messages.h
23790           Added a frame around zvt terminal.
23791           
23792         * src/preferences_gui.c
23793           Modified to say "Use glade component (experimental)"
23794           instead of "Use Component".
23795           
23796 2001-12-13 Naba Kumar <kh_naba@users.sourceforge.net>
23798         * Patch from 
23799         Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
23800         
23801         * src/anjuta.c
23802         src/fileselection.c
23803         src/messages.c
23804         src/messages.h
23805         src/preferences.c
23806         src/preferences.h
23807         src/project_dbase.c
23809         a) Extra scrollbar in terminal no longer appears.
23810         b) Character set preference should be preserved (untested).
23811         c) File selection widget now remembers last directory.
23812         d) On creation of generic project, the glade 'file not found' error no
23813                 longer occurs.
23814         e) First terminal window is created 'on demand', so it should always to
23815                 the Right Thing (TM) as far as starting WD is concerned. Also, the
23816                 environment is now passed to the terminal.
23817         f) Solaris compilation should be fixed (replaced get_current_dir_name()
23818                 with getcwd()).
23819         g) Fixed some compilation warnings.
23821 2001-12-10      Andy Piper      <andy.piper@freeuk.com>
23823         * configure.in, src/anjuta.c, src/messages.c, src/messages.h,
23824           src/pixmaps.h: applied terminal and warnings patch (Biswa)
23825         * src/*: cleanups (me)
23826         * pixmaps/mini_term.xpm: added new file for terminal button
23827           (me, based on existing artwork)
23829 2001-12-07      Andy Piper      <andy.piper@freeuk.com>
23831         * configure.in: bumped version to 0.1.9-pre
23832         * THANKS, manuals/C/anjuta-manual/authors.sgml: updated for new 
23833           translation
23834         * src/aneditor.cxx: patch from Biswa to re-enable autocompletion
23836 2001-12-07  Pablo Saratxaga  <pablo@mandrakesoft.com>
23838         * src/splash.c: removed a DOS end of line of a comment (so the *.po
23839           files are free of that char)
23840         * configure.in: added "az" to ALL_LINGUAS
23842 2001-11-29      Andy Piper      <andy.piper@freeuk.com>
23844         * tagmanager/tm_workspace.c, src/project_dbase.c: critical
23845           crash bug fix from Biswa.
23846         * FUTURE: added Anjuta/gIDE merger information to provide 
23847           details on future direction and status of 1.x stuff
23848         * NEWS: prepared for release
23849         * po/de.po: update from Jens Georg <mail@jensgeorg>
23851 2001-11-28      Andy Piper      <andy.piper@freeuk.com>
23853         * multiple minor updates pre-0.1.8
23854         * patch from Biswa to fix syntax highlighting and packaging
23855         * po/fr.po: update from Stef
23857 2001-11-26 Naba Kumar <kh_naba@users.sourceforge.net>
23859         * global-tags/Makefile.am
23860         global-tags/create_global_tags.sh
23861         global-tags/tm_global_tags.c
23862         scintilla/LexCPP.cxx
23863         scintilla/include/SciLexer.h
23864         src/aneditor.cxx
23865         src/project_dbase.c
23866         tagmanager/Makefile.am
23867         tagmanager/include/Makefile.am
23868         tagmanager/include/tm_project.h
23869         tagmanager/include/tm_tag.h
23870         tagmanager/include/tm_tagmanager.h
23871         tagmanager/tm_project.c
23872         tagmanager/tm_source_file.c
23873         tagmanager/tm_tag.c
23874         tagmanager/tm_workspace.c:
23875         
23876         Includes the syntax highliting patch to scintilla).
23877         and more stable code.
23878         
23879         *tagmanager/include/tm_symbol.h: New file.
23880         *tagmanager/tm_symbol.c: New file.
23881         
23882         Add symbol tree building functionality at project level
23883         
23884         Patch from:
23885         Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
23886         
23887 2001-11-22 Naba Kumar <kh_naba@users.sourceforge.net>
23889         * pixmaps/file_cpp.xpm,   pixmaps/file_html.xpm,  pixmaps/file_icon.xpm,
23890           pixmaps/file_c.xpm,     pixmaps/file_h.xpm,     pixmaps/file_pix.xpm,
23891           pixmaps/file_file.xpm,  pixmaps/file_i18n.xpm
23892           : New and improved pixmaps from Misha <misha@phreaker.net>
23893           Thanks to him.
23895 2001-11-22 Naba Kumar <kh_naba@users.sourceforge.net>
23896         
23897         * Big patch submitted by
23898           Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>.
23899           Many thanks to him.
23900         
23901         * src/Makefile.am, src/aneditor.cxx
23902           src/anjuta.c, src/anjuta.h, src/project_dbase.c,
23903           src/project_dbase.h, src/text_editor.c, src/text_editor.h:
23904           Use of tagmanager lib for advanced calltips.
23906         * global-tags/*: Created new directory and added files to 
23907           generate system.tags.
23909         * tagmanager/*: Created new directory and added tagmanager lib
23910           files.
23912         * configure.in, acconfig.h, Makefile.am: Modified to reflect
23913           the above additions.
23915         * data/Makefile.am: Modified to accomodate generated system.tags file.
23917 2001-11-07      Andy Piper      <andy.piper@freeuk.com>
23919         * scintilla/: updated to 1.41
23920         * src/Makefile.am: added Ada and Bullant lexers from Scintilla
23921         * src/about.c: updated list of authors
23922         * src/aneditor.cxx: tidied to remove unused SciTE debug calls
23923         * HACKING: updated to cover Scintilla usage
23924         * THANKS, manuals/C/anjuta-manual/authors.sgml: updated for new 
23925           translation
23927 2001-11-07  Naba Kumar <kh_naba@users.sourceforge.net>
23929         * src/aneditor.cxx: Fixed compilation errors with it.
23930           by add include to gtk+ headers and typedefining a mysteriously
23931           vanished class Colour.
23933 2001-10-29  Naba Kumar <kh_naba@users.sourceforge.net>
23935         * configure.in: Added pt_BR in the languages.
23936         
23937 2001-11-01      Andy Piper      <andy.piper@freeuk.com>
23939         * src/executer.c, mainmenu_callbacks.c: patch from Dan Elphick
23940           (<dre00r@ecs.soton.ac.uk>) to correct a spelling mistake
23941         * THANKS: updated
23942         * manuals/C/anjuta-manual/*: new format to match
23943           the rest of the GNOME docs chapter layout. Added the many
23944           new contributors. Moved Authors and License information into new
23945           chapters of their own - should make expansion easier too
23946         * src/compiler_options.c: changed the profiler option to -pg to 
23947           work with GNU tools (gprof)
23948         * src/compiler_options_gui.c, main_menubar_def.h: tidied some messages 
23949           and text labels
23950         
23951 2001-10-29  Naba Kumar <kh_naba@users.sourceforge.net>
23953         * src/compiler_options.h, compiler_options.c, compiler_options_cbs.c
23954           compiler_options_gui.c:
23955           Added a new entry for linker flags and renamed c_options to c_flags
23956           and l_options to l_libs. Also, added a new function:
23957           compiler_options_set_prjlflags_in_file();
23958         
23959         * src/source.c: projects/src/Makefile.am now have LDFLAGS set.
23960         
23961         * src/compiler_options_gui.c: Trimmed some UI for the 'others' page.
23962           
23963 2001-10-26      Andy Piper      <andy.piper@freeuk.com>
23965         * THANKS, src/about.c: corrections and additions following 
23966         Naba's big update
23967         * src/main_menubar.c: patch from Rikul to fix the problem with 
23968         menu accelerators not being loaded
23970 2001-10-26  Naba Kumar <kh_naba@users.sourceforge.net>
23972         * THANKS: Added all contributors and translators names and emails.
23973         * AUTHORS: Updated
23974         * pixmap/anjuta_logo.png: Reduced the size of the logo.
23975         * pixmap/anjuta_splash.png, pixmaps/Makefile.am:
23976               Added new file (earlier logo with border).
23977         * src/about.c: Added all contributors names and emails
23978               and used macro definition for logo pixmap file.
23979         * src/pixmaps.h: Added entry for anjuta splash screen.
23981 2001-10-24      Andy Piper      <andy.piper@freeuk.com>
23983         * pixmaps/anjuta_icon[.xpm|.png]: updated application icon
23984         to new PNG version (thanks to Misha) and removed the old
23985         pixmap.
23987 2001-10-24  Abel Cheung  <maddog@linux.org.hk>
23989         * THANKS: added Conner Mo for simplified Chinese translation.
23990         * configure.in: added zh_CN in ALL_LINGUAS
23992 2001-10-21  Abel Cheung  <maddog@linux.org.hk>
23994         * THANKS: added Joe Man for his traditional Chinese translation.
23995         * configure.in: added zh_TW in ALL_LINGUAS.
23997 2001-10-19  Naba Kumar <kh_naba@users.sourceforge.net>
23999         * src/main_menubar_def.h: Changed the link of lidn to
24000         http://lidn.sourceforge.net.
24001         
24002 2001-10-18  Naba Kumar <kh_naba@users.sourceforge.net>
24004         * Applied patch from Rikul
24005         * Applied patch from Luca
24006         * Fixed a cvs conflict. :)
24008 2001-10-17  Stephane Demurget  <demurgets@free.fr>
24010         * THANKS: added Marc Botermans for his Dutch translation.
24012         * configure.in: added nl in ALL_LINGUAS.
24014         * po/nl.po: added.
24016 2001-10-17  Naba Kumar <kh_naba@users.sourceforge.net>
24018         * anjuta.c: Fixed luca's typo.
24019         * resources.c, resources.h: Changed gchar* return to void, to
24020                 avoid a compiler warning.
24021         * scintilla/Makefile.am: Reorganized file entries.
24022         * src/Makefile.am: Added StyleContex.o module directly with the lexers.
24024 2001-10-16  Naba Kumar <kh_naba@users.sourceforge.net>
24026         * Upgraded scintilla to 1.4.
24027         * Added 6 files:  LexCrontab.cxx LexEiffel.cxx LexRuby.cxx
24028                 LexLisp.cxx StyleContext.cxx StyleContext.h
24029         * src/Makefile.am: Added 4 lexers and separated lexer objects
24030                 from the main link variable.
24032 2001-10-14  Stephane Demurget  <demurgets@free.fr>
24034         * THANKS: added Luca, even if it shouldn't be my role to write
24035           this sort of thing :)
24037         * src/anjuta.c: (scan_AddIns_in_directory): some fixes and cleanups on
24038           the latest Luca patch.
24040 2001-10-14      Andy Piper      <andy.piper@freeuk.com>
24042         * added skeleton plugin functionality (lbell <lbell@tsc4.com>). 
24043         This is not documented yet; plugins to come later.
24044         * src/find*.c: find dialogs now persistent 
24045         (Rick <rikul@bellsouth.net>)
24046         * widgets/gnomefilelist.c: fixed multiple file open issue 
24047         (Rick <rikul@bellsouth.net>)
24048         * changes to recent file and project lists handling 
24049         (lbell <lbell@tsc4.com>)
24050         * more minor UI updates (me)
24052 2001-10-11      Andy Piper      <andy.piper@freeuk.com>
24054         * src/Makefile.am: removed warnings for traditional C syntax
24055         * pixmaps: added new icons for mini_locals, mini_cvs and
24056         the splash screen - thanks to Misha <misha@phreaker.net>
24058 2001-10-10      Andy Piper      <andy.piper@freeuk.com>
24060         * src/toolbar.c: fix typo in tooltip text
24061         * ccview/cccmd.cc: alter Func to Function in menu text
24063 2001-10-09      Andy Piper      <andy.piper@freeuk.com>
24065         * src/find_text.c: applied patch from rikul <null@acm.org> to fix minor
24066         issue with find dialog reporting an error when Scintilla finds text
24067         * applied patch from Denis Boehme <boehme at syncio dot de> to support
24068         DOS files (i.e. CR/LF translation)
24070 2001-10-03      Andy Piper      <andy.piper@freeuk.com>
24072         * src/notebook.c: applied patch from rikul <null@acm.org> to fix bug
24073         #452436
24074         * data/internal.properties: default fold style now set to 3 :-)
24075         * applied patch from rikul <null@acm.org> to turn notebook tab 
24076         headings red when file has been edited.
24078 2001-10-02  Kjartan Maraas  <kmaraas@gnome.org>
24080         * configure.in: Added "no" to ALL_LINGUAS.
24081         
24082 2001-09-29  Naba Kumar <kh_naba@users.sourceforge.net>
24084     * Patch from lbell <lbell@tsc4.com>
24085     src/controls.c
24086     src/debugger.c
24087     src/main_menubar.c
24088     src/main_menubar.h
24089     src/main_menubar_def.h
24090     src/mainmenu_callbacks.c
24091     src/mainmenu_callbacks.h
24092     src/project_dbase.c
24093     src/project_dbase.h
24094     
24095     Implemented a check menu item to handle the 'show locals' flag
24096     for the current project.
24098     * data/internal.properties: Removed the redundant command
24099     for gnome-terminal.
24100     
24101 2001-09-25  Naba Kumar <kh_naba@users.sourceforge.net>
24103         * Patch from lbell <lbell@tsc4.com> for fixing some compiler warnings.
24105 2001-09-24  Fatih Demir <kabalak@gtranslator.org>
24107         * configure.in: Added "ta" to the languages list.
24109 2001-09-21  Andy Piper <andy.piper@freeuk.com>
24111         * data/internal.properties:
24112           added fold.symbols property to control appearance of folds
24113           in the Scintilla editor (thanks to rikul <null@acm.org>)
24115 2001-09-21  Naba Kumar <kh_naba@users.sourceforge.net>
24117         * src/message.c:
24118           one extra button for message win is being created -- Fixed.
24119         
24120           The frame should be hidden and not only the pix_lab when
24121           that message pane is hidden (aBts[nIndex].bVisible == FALSE)
24122           -- Fixed.
24123         
24124         * pixmaps/mini_locals.xpm (new file), pixmaps/Makefile.am: 
24125           for the time being it is same as mini_cvs.xpm.
24126         
24127 2001-09-21  Naba Kumar <kh_naba@users.sourceforge.net>
24129         * src/find_repace.c: Fixed the vanishing find/replace dialog box.
24131         Patch from rikul <null@acm.org>
24132         
24133         * CORBA-Server.c, debugger.c, debugger.h, glades.c,
24134         glades.h, messages.c, messages.h, pixmaps.h,
24135         project_dbase.c, project_dbase.h, session.c,
24136         session.h, watch_cbs.c, watch_cbs.h, watch_gui.c:
24137         
24138         inserted 'add to watch' option in inspect window, so you can add easily
24139         a variable in watch window .
24140         
24141         Added a new message pane for the gdb local variables inspection. Changed
24142         the code in messages.c to better account for future new panes insertion.
24143         Defined a new pixmap for the new tab button in pixmaps.h
24144         (ANJUTA_PIXMAP_MINI_LOCALS); someone must create it and add it to the
24145         install script.
24146         
24147         Changed the debugger module to have a single function for asking to gdb
24148         to send program info. The idea is to ask the debugger about only the
24149         info needed to open windows( watch, registers, etc ) to speedup the step
24150         command. I plan to ask informations to the debugger based on the user
24151         interface status.
24152         The request for local variables is enabled by default, but the
24153         projectDBase has a variable to control it, to allow disabling that
24154         feature,  there is also the code to save and to reload the state. If you
24155         want to have it disabled by dafult change SHOW_LOCALS_DEFAULT to FALSE
24156         in project_dbase.c
24158         This big patch is from:  lbell <lbell@tsc4.com>
24159         
24160 2001-09-20  Stephane Demurget <demurgets@free.fr>
24162         Patch from rikul <null@acm.org> :
24164         * data/internal.properties, src/aneditor.cxx: fixed the fold margin
24165           problem and added folding support for php/hmtl.
24167 2001-09-19  Naba Kumar <kh_naba@users.sourceforge.net>
24169         * Fixed dnd of files within scintilla.
24170         patch from:  rikul <null@acm.org>
24171         
24172 2001-09-18  Naba Kumar <kh_naba@users.sourceforge.net>
24174         * Applied patch from Luca.
24175         
24176         * src/source.c: source_write_build_files(): Fixed the project generation
24177           failure. The fist return statement and the free_project_type were 
24178           misplaced.
24180 2001-09-14  Naba Kumar <kh_naba@users.sourceforge.net>
24181         
24182         * anjuta.c, anjuta.h, main.c, main_menubar.c, main_menubar_def.h,
24183         mainmenu_callbacks.c, mainmenu_callbacks.h, messages.c:
24184         
24185         1) Restore the error color to red (waiting for a configurable one )
24186         2) Saving projects settings if you exit anjuta without closing an open
24187         saved project
24188         3) New Menu 'repaeat search' to search with a keystroke without pressing
24189         the toolbar button
24190         4) some define in the menus to better handle menu item update
24191         
24192         Patch from: lbell <lbell@tsc4.com>
24193         
24194         * main_menubar_def.h, main_menubar.c: Change the position of
24195         "Repeat find" menu position.
24197 2001-09-13  Naba Kumar <kh_naba@users.sourceforge.net>
24199          project_type.h, project_type.c, source.c: Applied patch.
24200          patch from Johannes Schmid <clubfan@users.sourceforge.net>
24201          
24202 2001-09-12  Naba Kumar <kh_naba@users.sourceforge.net>
24204         * configure.in, src/Makefile.am: Using macros for ORBit flags.
24205         
24206 2001-09-07 Johannes Schmid <clubfan@users.sourceforge.net>
24207         
24208         * Fixed bug #445752
24209   
24210 2001-9-06  Johannes Schmid <clubfan@users.sourceforge.net>
24211         
24212         * Fixed bugs in Gtk-- and Gnome-- project type
24214 2001-09-12  Naba Kumar <kh_naba@users.sourceforge.net>
24216         * dnd.c: Support for multiple files drag-n-drop.
24217         
24218           Patch from: rikul <null@acm.org>
24219         
24220         * anjuta.c, anjuta.h, anjuta_cbs.c, main_menubar_def.h,
24221           mainmenu_callbacks.c, mainmenu_callbacks.h: Added message text
24222           saving from menu.
24223         
24224           Patch from: rikul <null@acm.org>
24226         * Applied patch for widgetizing goto dialog box.
24227           Patch from: ???
24228         
24229         * Applied patch for having new project type handling.
24230           Patch from: Johannes Schmid <clubfan@users.sourceforge.net>
24231           
24232 2001-09-12  Naba Kumar <kh_naba@users.sourceforge.net>
24234         * Makefile.am, aneditor.cxx, aneditor.h, anjuta.c, anjuta.h,
24235           anjuta_cbs.c, anjuta_gui.c, breakpoints.c, breakpoints.h,
24236           debugger.c, debugger.h, find_in_files.c, find_in_files.h,
24237           find_replace.c, find_replace.h, find_text.c, find_text.h,
24238           glade_iface.c, main.c, messages.c, messages.h, project_dbase.c,
24239           project_dbase.h, source.c, text_editor.c, text_editor.h,
24240           text_editor_cbs.c, utilities.c, utilities.h:
24241         
24242           Applied a huge patch (after slight preview). I would like Luca
24243           to have his feature additions mentioned here.
24244         
24245           Patch from: lbell <lbell@tsc4.com>
24247 2001-09-09  Stephane Demurget <demurgets@free.fr>
24249         * scintilla/Makefile.am: added to $(GTK_CFLAGS) INCLUDES.
24251         * po/fr.po: updated to the latest sources.
24254 2001-09-07 Johannes Schmid <clubfan@users.sourceforge.net>
24255         
24256         * Fixed bug #445752
24257   
24258 2001-08-07  Naba Kumar <kh_naba@users.sourceforge.net>
24260         * dnd.h, dnd.c: New files for drag n drop support.
24261                 
24262         * anjuta.h, anjuta_gui.c, anjuta_cbs.c:
24263            Added drag and drop support for opening files.
24264         
24265         Thanks to José Antonio Caminero Granja <JCamGra@alumnos.uva.es> and
24266         Archit Baweja <bighead@crosswinds.net> for this idea.
24267         
24268         * TODO: Added some more todos. :-(
24270 2001-08-06  Naba Kumar <kh_naba@users.sourceforge.net>
24272         * Fixed the goto line activate bug.
24273         patch from: Martyn Bone <mbone@brightstar.u-net.com>
24275 2001-9-06  Johannes Schmid <clubfan@users.sourceforge.net>
24276         
24277         * Fixed bugs in Gtk-- and Gnome-- project type
24279 2001-08-5  Naba Kumar <kh_naba@users.sourceforge.net>
24281         * widgets/gonmefilelist.c, gnomefilelist.c:
24282         Modified multiple selection on pressing control.
24283           # Patch from: venugopal gummuluru <vgummuluru@yahoo.com>
24284         
24285         * src/project_dbase_gui.c, anjuta_cbs.c, fileselection.h, fileselection.h:
24286         Modified multiple selection on pressing control.
24287           # Patch from: venugopal gummuluru <vgummuluru@yahoo.com>
24288         
24289 2001-09-05  Abel Cheung  <maddog@linux.org.hk>
24291         * src/project_dbase_gui.c(*lang_data[]): Rename zh_TW.Big5 to zh_TW .
24292           This is useless; but just in case...
24294 2001-08-4  Naba Kumar <kh_naba@users.sourceforge.net>
24296         * data/internal.properties: modified a bit of perl properties.
24297         
24298 2001-08-3  Naba Kumar <kh_naba@users.sourceforge.net>
24300         * ccview/cccproj.hh, ccview/hash_str.h, src/fileselection.c, src/fileselection.h
24301           src/project_dbase_gui.c, widgets/gnomefilelist.c, widgets/gnomefilelist.h:
24302           Added support for multiple file imports. Changed the standrd C++
24303           convention of #include <file> to #include <file.h>, because I had given
24304           some wrong options while compiling my gcc-3.0.1 compiler, so it does not
24305           now support the #include <file> convention. That is something to be fixed :). 
24306           # Patch from: venugopal gummuluru <vgummuluru@yahoo.com>
24308 2001-08-1  Naba Kumar <kh_naba@users.sourceforge.net>
24310         * src/anjuta.c: Added function static greetings_text(), to solve the non
24311                 translation of the greetings text in the wizard.
24312                 
24313 2001-08-31  Andy Piper <andy.piper@freeuk.com>
24315         * src/find_in_files_gui.c: made order of buttons consistent with other Find
24316           dialogs, with OK the default (fix bug #453482)
24318 2001-08-31  Naba Kumar <kh_naba@users.sourceforge.net>
24320         * src/anjuta.c: Fixed a bug that tries to printf 'NULL'
24321         
24322         * src/appwizard.c: added N_() for the inlcuding the welcome message translatable.
24323         
24324 2001-08-29  Naba Kumar <kh_naba@users.sourceforge.net>
24326         * src/aneditor.cxx
24327           src/aneditor.h
24328           src/anjuta_cbs.c
24329           src/controls.c
24330           src/main_menubar.c
24331           src/main_menubar.h
24332           src/main_menubar_def.h
24333           src/mainmenu_callbacks.c
24334           src/mainmenu_callbacks.h:
24335                 Applied the patch that addes menu items which allow users to
24336                 insert GPL notice and date time in current document.
24337                 patch from: Rick Patel <rikul@shreve.net>       
24338                 
24339         * src/main_menu.c: Fixed a compilation error.
24340         
24341         * src/anjuta.c: Fixed non-rememberence of editor tab position.
24342         
24343         * src/mainmenu_callbacks.c: Fixed gpl strings to avoid compiler warnings
24344           about the unterminated strings.
24345           
24346         * scintilla/*: Updated scintilla to 1.3.9 version.
24347         
24348 2001-08-28  Naba Kumar <kh_naba@users.sourceforge.net>
24349         
24350         * widgets/gnomefileselection.c:
24351           Applied the patch for fixing multiple selection of file open funcion,
24352           which will deselect the files selected.
24353           patch from: venugopal gummuluru <vgummuluru@yahoo.com>
24355 2001-08-27  Naba Kumar <kh_naba@users.sourceforge.net>
24357         * widgets/gnomefileselection.h, widgets/gnomefileselection.c, src/fileselection.h,
24358           src/fileselection.c, src/anjuta_cbs.c:
24359           Applied the patch     for multiple selection of file open.
24360           patch from: venugopal gummuluru <vgummuluru@yahoo.com>
24361           
24362 2001-08-27  Naba Kumar <kh_naba@users.sourceforge.net>
24364         * Removed "-f" option in call to devhelp, because devhelp no longer
24365           supports that.
24366         
24367 2001-08-26  Stephane Demurget <demurgets@free.fr>
24369         All these modifications have been pointed out by
24370         Gregory Schmitt <gregory.schmitt@free.fr>, so thanks to him.
24372         * data/internal.properties: two fixes for the PHP lexer.
24373           this out.
24375         * fr.po: minor fixes.
24377         * TODO: added a couple of PHP suggestions from Gregory Schmitt.
24379 2001-08-25  Naba Kumar <kh_naba@users.sourceforge.net>
24380         
24381         * main_menubar.c,
24382           main_menubar.h,
24383           main_menubar_def.h,
24384           main_menubar_callbacks.c,
24385           controls.c:
24386                 Added new menu item for "close all fils".
24387                 (Patch from Rikul <rikul@shreve.net>, after revision)
24388         
24389         * project_dbase.c: project_dbase_close_project(): remove unnecessary printf() statement.
24390         
24391         * find_text.c, find_replace.c: Fixed dialog wins not show up once close by 'Esc'.
24392                 (Patch from Rikul <rikul@shreve.net>)
24393         
24394         * anjuta.c: Fixed to have the current dir in the fileopen dialog box.
24395                 (Patch from Rikul <rikul@shreve.net>)
24397 2001-08-22  Naba Kumar <kh_naba@users.sourceforge.net>
24398         
24399         * appwiz_page2.c: Applied patch for disabling auto-upper-casting of
24400            project name in application widzard.
24401            [Patch from: Yannick Koehler <yannick.koehler@colubris.com>  ]
24403         * executer.c: hacked to change the behavior of the executer dialog. Now, instead
24404           of the 'OK' button there is an 'Execute' one.
24405           [ Patch from: Giovanni Corriga <valkadesh@libero.it>  ]
24406         
24407         * executer.c: Changed cancel button to close button. That was more appropriate.
24408           
24409 2001-08-22  Naba Kumar <kh_naba@users.sourceforge.net>
24411         * HACKING: corrected >>>>>> Config management.
24412         
24413         * HACKING: Added many things.
24414         
24415         * src/launcher.h: Added some comments.
24417 2001-08-21  Stephane Demurget <demurgets@free.fr>
24419         * configure.in, NEWS, README: bumped anjuta version to 0.1.7.
24421         * HACKING,
24422           manuals/C/anjuta-faqs/anjuta-faqs.sgml,
24423           src/appwizard_cbs.c,
24424           src/appwizard_gui.c: Applied UI/docs cleanup patch from
24425           Andy Piper <andy.piper@freeuk.com>
24427         * po/fr.po: updated to latest sources.
24429         * Makefile.am: removed anjuta.prj from EXTRA_DIST.
24432 2001-08-18  Andy Piper <andy.piper@freeuk.com>
24434         * Fixed bugs #450280 and #448845
24436         * src/about.c: corrected Naba's e-mail address (.net, not .com)
24437         
24438         * src/goto_line.c, src/attach_process_gui.c, src/find_replace.c:
24439           named dialogs
24440         
24441         * src/breakpoints_gui.c, src/commands.c, src/find_text.c,
24442           src/find_in_files_gui.c, src/project_dbase_gui.c, src/help.c, 
24443           src/watch_gui.c, src/stack_trace_gui.c: edited window and dialog 
24444           names to remove "Anjuta: " prefix
24445           
24446         * src/main_menubar_def.c: altered a message
24447         
24448         * launcher/anjuta_launcher.c: cleaned up some messages
24450         * src/debugger.c: edited messages to improve clarity
24451         
24452         * src/app_wiz*.c: tidied wizard interface
24455 2001-08-15  Stephane Demurget <demurgets@free.fr>
24457         Synced Naba's fix and mine about the wizards not working and removed
24458         anjuta.prj to avoid a nasty checkin.
24460         * Makefile.am: removed the install-data-local rule.
24462         * data/Makefile.am: changed the list of files.
24464         * anjuta.prj: removed to avoid checkin of Anjuta temp files.
24466         * .cvsignore: added anjuta.prj for the same reason.
24469 2001-08-15  Naba Kumar <kh_naba@users.sourceforge.net>
24471         * src/source.c: Fixed a bug that fails new gnome projects to get
24472           created.
24474         * src/project_manager.c: Fixed a bug that disables storing recent
24475           project history.
24477         * Makefile.am: Added stuffs to install the macro files in the
24478           anjuta share file.
24481 2001-08-14  Stephane Demurget <demurgets@free.fr>
24483         * data/Makefile.am: added some rules to support the gnome/ macros
24484           dir in order to make the wizards work again.
24486         * anjuta.spec.in: upped the release number.
24489 2001-08-12  Zbigniew Chyla  <cyba@gnome.pl>
24491         * configure.in (ALL_LINGUAS): Added pl.
24494 2001-08-09  Stephane Demurget <demurgets@free.fr>
24496         * anjuta.spec.in: fixed the doc files list.
24499 2001-08-09  Naba Kumar <kh_naba@users.sourceforge.net>
24501         * src/about.c: corrected my email address. :-)
24502         
24503         * TODO: Updated.
24504         
24505         * manuals/C/anjuta-manual/chapter15.sgml: Slight correction.
24506          (patch from Andy Piper <squiggle@ukgateway.net>)
24508 2001-08-08  Naba Kumar <kh_naba@users.sourceforge.net>
24510         * debugger.c: Fixed a bug associated with debugging threaded
24511           application.
24512         
24513         * text_editor_menu.c: Fixed broken ui in text editor
24514           pop up menu.
24515           
24516         * text_editor_menu.c: Now the option sub menu in text editor pop up
24517           works.
24518         
24519         * mainmenu_callbacks.c: Fixed "no-modified" bug with autoformat.
24520                 (suggested by lord sibn <sibn@utspl.cjb.net> )
24521         
24522 2001-08-07  Naba Kumar <kh_naba@users.sourceforge.net>
24524         * src/text_editor_menu.c: Added menu item for context help
24525           (patch from Andy Piper <squiggle@ukgateway.net>)
24526         
24527 2001-08-06  Stephane Demurget <demurgets@free.fr>
24529         * ccview/cccproj.cc: added missing i18n strings.
24531         * data/welcome.txt: bumped version to 0.1.6.
24533         * src/anjuta.c: fixed a compilation error due to devhelp integration.
24535 2001-08-06  Naba Kumar <kh_naba@users.sourceforge.net>
24536         
24537         * help.c, help.h: Added support for DevHelp context sensitive help
24538                 and gnome api browsing.
24539         * Fixed toolbars and editor views "not save" bug.
24540         * Updated sgmldocs.make and configure.in to handle rh 7.1 crap.
24541           (patch from Andy Piper <squiggle@ukgateway.net>)
24542         * Updated THANKS and chapter15.sgml for uk and ru translators.
24544 2001-08-05  Naba Kumar <kh_naba@users.sourceforge.net>
24546         * Transfered ru.po, uk.po and update.sh from gnome-i18n/extra-po/anjuta
24547         * Updated configure.in to include these changes
24548         
24549 2001-08-03  Stephane Demurget <demurgets@free.fr>
24551         * src/project_dbase_gui.c: fixed bug #446963
24552           (on_project_dbase_ccview_update_start),
24553           (on_project_dbase_ccview_update_end): added.
24554           These two respectively disable and enable close file/project
24555           menu entries and toolbar items, while the ccview part updates
24556           its tag database.  
24559 2001-08-03  Stephane Demurget <demurgets@free.fr>
24561         * configure.in: added sv to the ALL_LINGUAS list.
24562         
24564 2001-08-01  Fatih Demir <kabalak@gtranslator.org>
24566         * anjuta.desktop.(in(.in)), configure.in & Makefile.am: Get the desktop
24567                 file to work: merge translations and distribute it.
24569         * .cvsignore & ABOUT-NLS: Erh, "ABOUT-NLS" shouldn't be in CVS.
24571         * NEWS, README, THANKS & TODO: Spelling fixes.
24573 2001-08-01  Stephane Demurget <demurgets@free.fr>
24575         * README: updated requirements.
24577         * scintilla/Makefile.am,
24578           src/Makefile.am: fixed includes using $(srcdir), as the distcheck
24579           target can't be realized (custom build path).
24581         * Makefile.am: added xml-i18n-* and anjuta.spec.in as EXTRA_DIST.
24582           Removed install-data-local.
24584         * src/compiler_options.c: changed the include paths of the pixmaps.
24585           we hadn't any warning because of the include paths passed to the
24586           compiler. Thanks to make distcheck for reporting this.
24589 2001-07-31  Stephane Demurget <demurgets@free.fr>
24591         * NEWS, THANKS: updated.
24593         * src/anjuta.c: (anjuta_fatal_signal_handler), (anjuta_exit_signal_handler):
24594           fixed to show the correct kernel signal number and its description.
24596         * widgets/gnomefilelist.c: fixed bug #445756
24597           (goto_last): renamed to goto_prev and changed according to goto_next.
24598           (goto_next): added.
24599           (goto_directory): removed.
24600           (check_list_for_entry): renamed (g_list_find_string_pos) and rewrote: the
24601           returned value is now the position in the list.
24602           (check_ok_button_cb): changed the back check and added one for next.
24603           (gnome_filelist_set_dir): the check in history make it wouldn't be
24604           a "true" history. polished the whole thing, using set_dir_internal.
24605           (set_dir_internal): used in gnome_filelist_set_dir and back/next callbacks, so
24606           there's no check in the history when using back or next.
24608         * manuals/*: added missing .cvsignore files.
24611 2001-07-30  Stephane Demurget <demurgets@free.fr>
24613         * po/fr.po: updated to latest sources.
24615         * src/preferences_gui.c: (create_preferences_page6): fixed bug #445758
24616           call on_trunc_mesg_check_clicked after the two spinbuttons are ref'ed,
24617           to put off their sensitive attributes.
24619 2001-07-29  Stephane Demurget <demurgets@free.fr>
24620         
24621         * po/fr.po: fixed some grammar things.
24622           Thanks to Pierre Sarrazin <sarrazip@sympatico.ca> for having pointed
24623           this out.
24624         
24625         * src/utilities.c: (file_is_link): use lstat instead of stat.
24627 2001-07-27  Naba Kumar <kh_naba@123india.com>
24628         
24629         * Remove help dir from cvs, because it is no longer
24630           needed.
24631         
24632         * Remove manuals/anjuta-manual dir from cvs, because it is no longer
24633           needed.
24635 2001-07-24  Naba Kumar <kh_naba@123india.com>
24637         * debugger.c: (debugger_update_prog_status): Fixed
24638                 the bug with gdb version 5. Debugger starts, when
24639                 step in/out/over etc are clicked.
24640         
24641         * debugger.c: All functions: added debugging codes.
24642         
24643         * breakpoints.c: (breakpoints_dbase_set_all_in_editor):
24644         * breakpoints.c: (breakpoints_dbase_add_brkpnt):
24645           Modified to recognize non project files also.
24646           
24647         * source.c: (source_write_configure_in):
24648           Added source for 'prefix' counterparts for
24649           no-prefix AC_SUBST.
24650         
24651 2001-07-23  Naba Kumar <kh_naba@123india.com>
24652         
24653         * anjuta.c: added function anjuta_remove_text_editor();
24654           and suitably modified anjuta_remove_current_text_editor().
24655           
24656         * project_dbase.c: project_dbase_close(), Added code to
24657           close all opened files that belong to the project when
24658           the project is closed.
24659          (patch from  "Maxim Blagai" <maximblagai@yahoo.com> and some my codes)
24660         
24661         * Updated the manuals/anjuta-manual subdir for GDP standards.
24662            (patch from Andy Piper <squiggle@ukgateway.net>)
24663         
24664         * main_menubar.h, main_menubar.def: Added Menu items to handle
24665           urls for library references, bugs, patches and feature request
24666           submission.
24667         
24668 2001-07-20  Naba Kumar <kh_naba@123india.com>
24669         
24670         * Set wmclass names in all windows.
24671           (patch from Andy Piper <squiggle@ukgateway.net>)
24672         * New splash logo from "Misha" <misha@phreaker.net>);
24674 2001-07-19  Naba Kumar <kh_naba@123india.com>
24675         
24676         * preferences.[h,c], preferences_gui.c: Added 4 properties to
24677           set caret color, calltip back color and selection fore/back
24678           color.
24680 2001-07-18  Naba Kumar <kh_naba@123india.com>
24681         
24682         * project_dbase.c: Closes all files when project is closed.
24683          (patch applied from  "Maxim Blagai" <maximblagai@yahoo.com>)
24684          -- We still need to refine this as it closes all sort of files.
24685         
24686         * compiler_options.c: Fixed seg-fault bug when last item in
24687           compiler option lists is removed.
24688         
24689         * Fixed missing newline warnings during compilation.
24690           (patch from Andy Piper <squiggle@ukgateway.net>)
24692 2001-07-17  Fatih Demir <kabalak@gtranslator.org>
24694         * xml-i18n-*: Blew away the xml-i18n-* files from CVS -- they're
24695                 autogenerated no need to store'em in CVS.
24697         * ccview/.cvsignore: Addition of cvsignore.
24699 2001-07-17  Naba Kumar <kh_naba@123india.com>
24700         
24701         *GUI fixes and spell corrections
24702         (patch from Andy Piper <squiggle@ukgateway.net>)
24704 2001-07-15  Naba Kumar <kh_naba@123india.com>
24705         
24706         *Fixed double error message for file not found.
24707         
24708         *Put white backgrounds for png images.
24709         
24710         *Converted '-' to '_' in sgml files.
24712 2001-07-14  Naba Kumar <kh_naba@123india.com>
24713         
24714         * project_dbase.c: Short-cut for expand/collasp project tree
24715         
24716         * project_dbase_gui.c:
24717          (patch applied from  "Maxim Blagai" <maximblagai@yahoo.com>)
24719 2001-07-13  Naba Kumar <kh_naba@123india.com>
24720         
24721         * notebook.[h,c]: Added
24722          (patch applied from  "Maxim Blagai" <maximblagai@yahoo.com>)
24723         Project/message window now toggles on control and
24724         and notebook switch short-cut
24726 2001-07-7  Naba Kumar <kh_naba@123india.com>
24727         
24728         * Changed a new icon set which looks more gnomish.
24729         
24730         * Changed a new anjuta splash logo.
24731         (Icons and splash logo created by "Misha" <misha@phreaker.net>)
24733 2001-07-6  Naba Kumar <kh_naba@123india.com>
24734         
24735         * ccview/*: Integrated ccview for class view and file view
24736                 in the project Manager.
24737         
24738         * widgets/gnomefilelist.[h,c]: Added show hidden files options.
24740 2001-07-1  Naba Kumar <kh_naba@123india.com>
24741         
24742         * scintilla/*: Upgraded Scintilla to version 1.3.7
24743         
24744         * manuals/anjuta-manual/C/chapter[00-12].sgml: Added many more stuffs.
24745         
24746 2001-06-28  Naba Kumar <kh_naba@123india.com>
24747         
24748         * src/debugger.c: Correct step-over and step-out swapping.
24749         
24750         * manuals/anjuta-manual/C/chapter[00-12].sgml: Splitted manual
24751           chapters and added more stuffs.
24753 2001-06-13  Naba Kumar <kh_naba@123india.com>
24754         
24755         * data/autogen.sh.gtkmm: Added
24756         
24757         * data/autogen.sh.gnomemm: Added
24758         
24759         * src/appwiz.c: Added two more application wizard templetes
24760         
24761         * src/project: for gtk-- and gnome-- and proper support
24762         
24763         * src/source.c: for c++ in the project configuration.
24764         
24765         * src/source.h:
24767 2001-05-05  Naba Kumar <kh_naba@123india.com>
24769         * Merged my pre-cvs modifications with 
24770           the current cvs copy.
24772         * (lot of files change).
24774         * Implemented session management.
24776         * Local installation possible by
24777           manageing our own pixmaps paths
24778           manupulations.
24779         
24780         * resources.h: Added.
24781         * resources.c: Added.
24783         * Fixed some bugs.
24784         
24785 2001-05-05  Fatih Demir <kabalak@gtranslator.org>
24787         * manuals/.cvsignore & manuals/anjuta-manual/C/.cvsignore:
24788                 Corrected/extended ignores.
24790 2001-05-04  Naba Kumar <kh_naba@123india.com>
24792         * manuals/: dir tree added.
24793           Sgml documentation started in this dir.
24794           
24795         * omf-install/: dir tree added.
24796         
24797         * manuals/anjuta-manual/C/anjuta-manual.sgml:
24798           Created initial document structure.
24799           
24800         * configure.in: Added test for scrollkeeper.
24801           Added some Makefile entries in AC_OUTPUT.
24802         
24803         * Makefile.am: Added subdir manuals/
24804         
24805         * HACKING: Wrote something stupid.
24807 2001-05-02  Stéphane Démurget <demurgets@free.fr>
24809         * Makefile.am: Added ChangeLog in local data list, becaused it's
24810           needed to create a new project.
24811           
24812         * po/fr.po: minor fixes.
24814         * src/build_file.c, src/configurer.c, src/debugger.c,
24815           src/executer.c, src/find_replace.c, src/gnome_project.c,
24816           src/goto_line.c, src/launcher.c, src/messages.c, 
24817           src/preferences.c src/project_dbase.c: functions declared static.
24818           
24819         * widgets/gnomefilelist.c: Fixed a project creation bug,
24820           introduced with latest changes.
24822 2001-05-01  Stéphane Démurget <demurgets@free.fr>
24824         * widgets/gnomefilelist.c,
24825           BUGS: Fixed an annoying bug preventing from loading files/project
24826           given on the command line. Polished the whole gnome_filelist widget.
24828 2001-04-27  Stéphane Démurget <demurgets@free.fr>
24830         * src/main.c,
24831           src/anjuta.c,
24832           src/anjuta.h: Polished the command line parsing.
24834         * BUGS: Need to clean that damn gnome_filelist widget.
24836 2001-04-25  Stéphane Démurget <demurgets@free.fr>
24838         * src/registers.c,
24839           src/sharedlib.c,
24840           src/signals.c: Removed duplicated includes.
24842         * po/fr.po: minor fixes.
24844         * src/compiler_options_gui.c: Cleaned up a part of the GUI,
24845           create_compiler_options_page? () declared static.
24846         * src/main.c,
24847           src/anjuta.c: Put a command line option for disabling
24848           the splashscreen.
24850         * src/preferences_gui.c: Fixed an internationalization issue,
24851           other functions declared static.
24853         * src/gnome_project.c: Fixed some memory leaks,
24854           new_prj_terminated () declared static. 
24856 2001-04-24  Fatih Demir <kabalak@gtranslator.org>
24858         * configure.in: Sort ALL_LINGUAS alphabetically.
24860 2001-04-22  Stéphane Démurget <demurgets@free.fr>
24862         * Emptied that ugly old Changelog.
24864 == Anjuta 0.1.5 ===
24865 == Anjuta 0.1.4 ==
24867 2001-03-10 Naba kumar  <naba@gnome.org>
24869         * src/gnome_project.c: Fixed project dir creation bug.
24871         * src/text_editor.c: Fixed double accelerators bug.
24872         
24873         * src/glade_iface.c, src/project_dbase.c: Fixed source generation bug.
24875         * src/stack_trace.c, * src/compiler_options.c,
24876         data/internals.properties, src/defaults.c:
24877         Fixed pixmap creation with NULL window.
24879         * src/commands.c, src/preferences_gui.c, src/build_project.c
24880         src/clean_project.c: Bug fix.
24881         
24882         * src/main_menubar_def.h: i18n bug fix.
24883         
24884         * src/executer.h, src/executer.c: Bug fix.
24885         
24886         * src/controls.c: Bug fix.
24887         
24888         * src/debugger.c: Debugger now takes program args.
24889         
24890         * po/ja.po: Added japanese translation file.
24891         
24892         Upgraded to ver 0.1.4
24893         ... Fixed other minor bugs.
24895 == Anjuta 0.1.3 ===
24897 2001-XX-XX Naba kumar  <naba@gnome.org>
24899         * Lots of unaccountable changes. Integrated scintilla.
24900         Redesigned Project managemet. Added supports for other languages.
24901         Java style properties managements. .... blah blah
24902         
24903 2000-11-11 Naba kumar  <naba@gnome.org>
24905         * README, htmls/page111.html, configure.in, anjuta.prj, anjuta.spec:
24906         Upgraded to version 0.1.3.
24908         * src/mainmenu_callbacks.c, src/main_menubar_def.h:
24909         Fixed to activate Debug->add watch properly.
24911 === Anjuta 0.1.2 beta_2 ===
24912 === Anjuta 0.1.2 ===
24914 2000-11-05 Naba kumar  <naba@gnome.org>
24916         * src/compiler_options.c, src/compiler_options_cbs.c
24917         src/compiler_options_cbs.h, src/compiler_options_gui.c
24918         src/anjuta2.c, extra/stock_libs.anj (new),
24919         extra/README.stock_libs (new), htmls/page13.html,
24920         htmls/images/*: Improved Library settings GUI. Can now enable/disable
24921         added libraries. Stock libs provided for ease of entry. Modified
24922         help html file accordingly.
24924 2000-11-03 Naba kumar  <naba@gnome.org>
24926         * README: Minor fixes in Doc files.
24928         * src/gnome_prj.c, src/appwidzard_cbs.c:
24929         Fixed to ignore non-existant dir for blank prj.
24930         More checking in project creation, especially to confirm
24931         that the prj file already does not exist.
24933         * anjuta.spec, configure.in: Upgraded to version 0.1.2
24935         * src/controls.c: Now Menu item "Format/Detach current document"
24936         is inactive when there is no document opened.
24938 === Anjuta 0.1.1 ===
24940 2000-11-01 Naba kumar  <naba@gnome.org>
24942         Completed and Release of first version (Beta) with lots of bugs.
24944 1999-12-27 Naba kumar  <naba@gnome.org>
24946         Anjuta project started.