summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: bf5dc5705eb23eece7b5fec1bb00cc5a77e12aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
2001-11-29	Andy Piper	<andy.piper@freeuk.com>

	* tagmanager/tm_workspace.c, src/project_dbase.c: critical
	  crash bug fix from Biswa.
	* FUTURE: added Anjuta/gIDE merger information to provide 
	  details on future direction and status of 1.x stuff
	* NEWS: prepared for release
	* po/de.po: update from Jens Georg <mail@jensgeorg>

2001-11-28	Andy Piper	<andy.piper@freeuk.com>

	* multiple minor updates pre-0.1.8
	* patch from Biswa to fix syntax highlighting and packaging
	* po/fr.po: update from Stef

2001-11-26 Naba Kumar <kh_naba@users.sourceforge.net>

	* global-tags/Makefile.am
	global-tags/create_global_tags.sh
	global-tags/tm_global_tags.c
	scintilla/LexCPP.cxx
	scintilla/include/SciLexer.h
	src/aneditor.cxx
	src/project_dbase.c
	tagmanager/Makefile.am
	tagmanager/include/Makefile.am
	tagmanager/include/tm_project.h
	tagmanager/include/tm_tag.h
	tagmanager/include/tm_tagmanager.h
	tagmanager/tm_project.c
	tagmanager/tm_source_file.c
	tagmanager/tm_tag.c
	tagmanager/tm_workspace.c:
	
	Includes the syntax highliting patch to scintilla).
	and more stable code.
	
	*tagmanager/include/tm_symbol.h: New file.
	*tagmanager/tm_symbol.c: New file.
	
	Add symbol tree building functionality at project level
	
	Patch from:
	Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>
	
2001-11-22 Naba Kumar <kh_naba@users.sourceforge.net>

	* pixmaps/file_cpp.xpm,   pixmaps/file_html.xpm,  pixmaps/file_icon.xpm,
	  pixmaps/file_c.xpm,     pixmaps/file_h.xpm,     pixmaps/file_pix.xpm,
	  pixmaps/file_file.xpm,  pixmaps/file_i18n.xpm
	  : New and improved pixmaps from Misha <misha@phreaker.net>
	  Thanks to him.

2001-11-22 Naba Kumar <kh_naba@users.sourceforge.net>
	
	* Big patch submitted by
	  Biswapesh Chattopadhyay <biswapesh_chatterjee@tcscal.co.in>.
	  Many thanks to him.
	
	* src/Makefile.am, src/aneditor.cxx
	  src/anjuta.c, src/anjuta.h, src/project_dbase.c,
	  src/project_dbase.h, src/text_editor.c, src/text_editor.h:
	  Use of tagmanager lib for advanced calltips.

	* global-tags/*: Created new directory and added files to 
	  generate system.tags.

	* tagmanager/*: Created new directory and added tagmanager lib
	  files.

	* configure.in, acconfig.h, Makefile.am: Modified to reflect
	  the above additions.

	* data/Makefile.am: Modified to accomodate generated system.tags file.

2001-11-07	Andy Piper	<andy.piper@freeuk.com>

	* scintilla/: updated to 1.41
	* src/Makefile.am: added Ada and Bullant lexers from Scintilla
	* src/about.c: updated list of authors
	* src/aneditor.cxx: tidied to remove unused SciTE debug calls
	* HACKING: updated to cover Scintilla usage
	* THANKS, manuals/C/anjuta-manual/authors.sgml: updated for new 
	  translation

2001-11-07  Naba Kumar <kh_naba@users.sourceforge.net>

	* src/aneditor.cxx: Fixed compilation errors with it.
	  by add include to gtk+ headers and typedefining a mysteriously
	  vanished class Colour.

2001-10-29  Naba Kumar <kh_naba@users.sourceforge.net>

	* configure.in: Added pt_BR in the languages.
	
2001-11-01	Andy Piper	<andy.piper@freeuk.com>

	* src/executer.c, mainmenu_callbacks.c: patch from Dan Elphick
	  (<dre00r@ecs.soton.ac.uk>) to correct a spelling mistake
	* THANKS: updated
	* manuals/C/anjuta-manual/*: new format to match
	  the rest of the GNOME docs chapter layout. Added the many
	  new contributors. Moved Authors and License information into new
	  chapters of their own - should make expansion easier too
	* src/compiler_options.c: changed the profiler option to -pg to 
	  work with GNU tools (gprof)
	* src/compiler_options_gui.c, main_menubar_def.h: tidied some messages 
	  and text labels
	
2001-10-29  Naba Kumar <kh_naba@users.sourceforge.net>

	* src/compiler_options.h, compiler_options.c, compiler_options_cbs.c
	  compiler_options_gui.c:
	  Added a new entry for linker flags and renamed c_options to c_flags
	  and l_options to l_libs. Also, added a new function:
	  compiler_options_set_prjlflags_in_file();
	
	* src/source.c: projects/src/Makefile.am now have LDFLAGS set.
	
	* src/compiler_options_gui.c: Trimmed some UI for the 'others' page.
	  
2001-10-26	Andy Piper	<andy.piper@freeuk.com>

	* THANKS, src/about.c: corrections and additions following 
	Naba's big update
	* src/main_menubar.c: patch from Rikul to fix the problem with 
	menu accelerators not being loaded

2001-10-26  Naba Kumar <kh_naba@users.sourceforge.net>

	* THANKS: Added all contributors and translators names and emails.
	* AUTHORS: Updated
	* pixmap/anjuta_logo.png: Reduced the size of the logo.
	* pixmap/anjuta_splash.png, pixmaps/Makefile.am:
	      Added new file (earlier logo with border).
	* src/about.c: Added all contributors names and emails
	      and used macro definition for logo pixmap file.
	* src/pixmaps.h: Added entry for anjuta splash screen.

2001-10-24	Andy Piper	<andy.piper@freeuk.com>

	* pixmaps/anjuta_icon[.xpm|.png]: updated application icon
	to new PNG version (thanks to Misha) and removed the old
	pixmap.

2001-10-24  Abel Cheung  <maddog@linux.org.hk>

	* THANKS: added Conner Mo for simplified Chinese translation.
	* configure.in: added zh_CN in ALL_LINGUAS

2001-10-21  Abel Cheung  <maddog@linux.org.hk>

	* THANKS: added Joe Man for his traditional Chinese translation.
	* configure.in: added zh_TW in ALL_LINGUAS.

2001-10-19  Naba Kumar <kh_naba@users.sourceforge.net>

	* src/main_menubar_def.h: Changed the link of lidn to
	http://lidn.sourceforge.net.
	
2001-10-18  Naba Kumar <kh_naba@users.sourceforge.net>

	* Applied patch from Rikul
	* Applied patch from Luca
	* Fixed a cvs conflict. :)

2001-10-17  Stephane Demurget  <demurgets@free.fr>

	* THANKS: added Marc Botermans for his Dutch translation.

	* configure.in: added nl in ALL_LINGUAS.

	* po/nl.po: added.

2001-10-17  Naba Kumar <kh_naba@users.sourceforge.net>

	* anjuta.c: Fixed luca's typo.
	* resources.c, resources.h: Changed gchar* return to void, to
		avoid a compiler warning.
	* scintilla/Makefile.am: Reorganized file entries.
	* src/Makefile.am: Added StyleContex.o module directly with the lexers.

2001-10-16  Naba Kumar <kh_naba@users.sourceforge.net>

	* Upgraded scintilla to 1.4.
	* Added 6 files:  LexCrontab.cxx LexEiffel.cxx LexRuby.cxx
		LexLisp.cxx StyleContext.cxx StyleContext.h
	* src/Makefile.am: Added 4 lexers and separated lexer objects
		from the main link variable.

2001-10-14  Stephane Demurget  <demurgets@free.fr>

	* THANKS: added Luca, even if it shouldn't be my role to write
	  this sort of thing :)

	* src/anjuta.c: (scan_AddIns_in_directory): some fixes and cleanups on
	  the latest Luca patch.

2001-10-14	Andy Piper	<andy.piper@freeuk.com>

	* added skeleton plugin functionality (lbell <lbell@tsc4.com>). 
	This is not documented yet; plugins to come later.
	* src/find*.c: find dialogs now persistent 
	(Rick <rikul@bellsouth.net>)
	* widgets/gnomefilelist.c: fixed multiple file open issue 
	(Rick <rikul@bellsouth.net>)
	* changes to recent file and project lists handling 
	(lbell <lbell@tsc4.com>)
	* more minor UI updates (me)

2001-10-11	Andy Piper	<andy.piper@freeuk.com>

	* src/Makefile.am: removed warnings for traditional C syntax
	* pixmaps: added new icons for mini_locals, mini_cvs and
	the splash screen - thanks to Misha <misha@phreaker.net>

2001-10-10	Andy Piper	<andy.piper@freeuk.com>

	* src/toolbar.c: fix typo in tooltip text
	* ccview/cccmd.cc: alter Func to Function in menu text

2001-10-09	Andy Piper	<andy.piper@freeuk.com>

	* src/find_text.c: applied patch from rikul <null@acm.org> to fix minor
	issue with find dialog reporting an error when Scintilla finds text
	* applied patch from Denis Boehme <boehme at syncio dot de> to support
	DOS files (i.e. CR/LF translation)

2001-10-03	Andy Piper	<andy.piper@freeuk.com>

	* src/notebook.c: applied patch from rikul <null@acm.org> to fix bug
	#452436
	* data/internal.properties: default fold style now set to 3 :-)
	* applied patch from rikul <null@acm.org> to turn notebook tab 
	headings red when file has been edited.

2001-10-02  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Added "no" to ALL_LINGUAS.
	
2001-09-29  Naba Kumar <kh_naba@users.sourceforge.net>

    * Patch from lbell <lbell@tsc4.com>
    src/controls.c
    src/debugger.c
    src/main_menubar.c
    src/main_menubar.h
    src/main_menubar_def.h
    src/mainmenu_callbacks.c
    src/mainmenu_callbacks.h
    src/project_dbase.c
    src/project_dbase.h
    
    Implemented a check menu item to handle the 'show locals' flag
    for the current project.

    * data/internal.properties: Removed the redundant command
    for gnome-terminal.
    
2001-09-25  Naba Kumar <kh_naba@users.sourceforge.net>

	* Patch from lbell <lbell@tsc4.com> for fixing some compiler warnings.

2001-09-24  Fatih Demir <kabalak@gtranslator.org>

	* configure.in: Added "ta" to the languages list.

2001-09-21  Andy Piper <andy.piper@freeuk.com>

	* data/internal.properties:
	  added fold.symbols property to control appearance of folds
	  in the Scintilla editor (thanks to rikul <null@acm.org>)

2001-09-21  Naba Kumar <kh_naba@users.sourceforge.net>

	* src/message.c:
	  one extra button for message win is being created -- Fixed.
	
	  The frame should be hidden and not only the pix_lab when
	  that message pane is hidden (aBts[nIndex].bVisible == FALSE)
	  -- Fixed.
	
	* pixmaps/mini_locals.xpm (new file), pixmaps/Makefile.am: 
	  for the time being it is same as mini_cvs.xpm.
	
2001-09-21  Naba Kumar <kh_naba@users.sourceforge.net>

	* src/find_repace.c: Fixed the vanishing find/replace dialog box.

	Patch from rikul <null@acm.org>
	
	* CORBA-Server.c, debugger.c, debugger.h, glades.c,
	glades.h, messages.c, messages.h, pixmaps.h,
	project_dbase.c, project_dbase.h, session.c,
	session.h, watch_cbs.c, watch_cbs.h, watch_gui.c:
	
	inserted 'add to watch' option in inspect window, so you can add easily
	a variable in watch window .
	
	Added a new message pane for the gdb local variables inspection. Changed
	the code in messages.c to better account for future new panes insertion.
	Defined a new pixmap for the new tab button in pixmaps.h
	(ANJUTA_PIXMAP_MINI_LOCALS); someone must create it and add it to the
	install script.
	
	Changed the debugger module to have a single function for asking to gdb
	to send program info. The idea is to ask the debugger about only the
	info needed to open windows( watch, registers, etc ) to speedup the step
	command. I plan to ask informations to the debugger based on the user
	interface status.
	The request for local variables is enabled by default, but the
	projectDBase has a variable to control it, to allow disabling that
	feature,  there is also the code to save and to reload the state. If you
	want to have it disabled by dafult change SHOW_LOCALS_DEFAULT to FALSE
	in project_dbase.c

	This big patch is from:  lbell <lbell@tsc4.com>
	
2001-09-20  Stephane Demurget <demurgets@free.fr>

	Patch from rikul <null@acm.org> :

	* data/internal.properties, src/aneditor.cxx: fixed the fold margin
	  problem and added folding support for php/hmtl.

2001-09-19  Naba Kumar <kh_naba@users.sourceforge.net>

	* Fixed dnd of files within scintilla.
	patch from:  rikul <null@acm.org>
	
2001-09-18  Naba Kumar <kh_naba@users.sourceforge.net>

	* Applied patch from Luca.
	
	* src/source.c: source_write_build_files(): Fixed the project generation
	  failure. The fist return statement and the free_project_type were 
	  misplaced.

2001-09-14  Naba Kumar <kh_naba@users.sourceforge.net>
	
	* anjuta.c, anjuta.h, main.c, main_menubar.c, main_menubar_def.h,
	mainmenu_callbacks.c, mainmenu_callbacks.h, messages.c:
	
	1) Restore the error color to red (waiting for a configurable one )
	2) Saving projects settings if you exit anjuta without closing an open
	saved project
	3) New Menu 'repaeat search' to search with a keystroke without pressing
	the toolbar button
	4) some define in the menus to better handle menu item update
	
	Patch from: lbell <lbell@tsc4.com>
	
	* main_menubar_def.h, main_menubar.c: Change the position of
	"Repeat find" menu position.

2001-09-13  Naba Kumar <kh_naba@users.sourceforge.net>

	 project_type.h, project_type.c, source.c: Applied patch.
	 patch from Johannes Schmid <clubfan@users.sourceforge.net>
	 
2001-09-12  Naba Kumar <kh_naba@users.sourceforge.net>

	* configure.in, src/Makefile.am: Using macros for ORBit flags.
	
2001-09-07 Johannes Schmid <clubfan@users.sourceforge.net>
	
	* Fixed bug #445752
  
2001-9-06  Johannes Schmid <clubfan@users.sourceforge.net>
	
	* Fixed bugs in Gtk-- and Gnome-- project type

2001-09-12  Naba Kumar <kh_naba@users.sourceforge.net>

	* dnd.c: Support for multiple files drag-n-drop.
	
	  Patch from: rikul <null@acm.org>
	
	* anjuta.c, anjuta.h, anjuta_cbs.c, main_menubar_def.h,
	  mainmenu_callbacks.c, mainmenu_callbacks.h: Added message text
	  saving from menu.
	
	  Patch from: rikul <null@acm.org>

	* Applied patch for widgetizing goto dialog box.
	  Patch from: ???
	
	* Applied patch for having new project type handling.
	  Patch from: Johannes Schmid <clubfan@users.sourceforge.net>
	  
2001-09-12  Naba Kumar <kh_naba@users.sourceforge.net>

	* Makefile.am, aneditor.cxx, aneditor.h, anjuta.c, anjuta.h,
	  anjuta_cbs.c, anjuta_gui.c, breakpoints.c, breakpoints.h,
	  debugger.c, debugger.h, find_in_files.c, find_in_files.h,
	  find_replace.c, find_replace.h, find_text.c, find_text.h,
	  glade_iface.c, main.c, messages.c, messages.h, project_dbase.c,
	  project_dbase.h, source.c, text_editor.c, text_editor.h,
	  text_editor_cbs.c, utilities.c, utilities.h:
	
	  Applied a huge patch (after slight preview). I would like Luca
	  to have his feature additions mentioned here.
	
	  Patch from: lbell <lbell@tsc4.com>

2001-09-09  Stephane Demurget <demurgets@free.fr>

	* scintilla/Makefile.am: added to $(GTK_CFLAGS) INCLUDES.

	* po/fr.po: updated to the latest sources.


2001-09-07 Johannes Schmid <clubfan@users.sourceforge.net>
	
	* Fixed bug #445752
  
2001-08-07  Naba Kumar <kh_naba@users.sourceforge.net>

	* dnd.h, dnd.c: New files for drag n drop support.
		
	* anjuta.h, anjuta_gui.c, anjuta_cbs.c:
	   Added drag and drop support for opening files.
	
	Thanks to José Antonio Caminero Granja <JCamGra@alumnos.uva.es> and
	Archit Baweja <bighead@crosswinds.net> for this idea.
	
	* TODO: Added some more todos. :-(

2001-08-06  Naba Kumar <kh_naba@users.sourceforge.net>

	* Fixed the goto line activate bug.
	patch from: Martyn Bone <mbone@brightstar.u-net.com>

2001-9-06  Johannes Schmid <clubfan@users.sourceforge.net>
	
	* Fixed bugs in Gtk-- and Gnome-- project type

2001-08-5  Naba Kumar <kh_naba@users.sourceforge.net>

	* widgets/gonmefilelist.c, gnomefilelist.c:
	Modified multiple selection on pressing	control.
	  # Patch from: venugopal gummuluru <vgummuluru@yahoo.com>
	
	* src/project_dbase_gui.c, anjuta_cbs.c, fileselection.h, fileselection.h:
	Modified multiple selection on pressing control.
	  # Patch from: venugopal gummuluru <vgummuluru@yahoo.com>
	
2001-09-05  Abel Cheung  <maddog@linux.org.hk>

	* src/project_dbase_gui.c(*lang_data[]): Rename zh_TW.Big5 to zh_TW .
	  This is useless; but just in case...

2001-08-4  Naba Kumar <kh_naba@users.sourceforge.net>

	* data/internal.properties: modified a bit of perl properties.
	
2001-08-3  Naba Kumar <kh_naba@users.sourceforge.net>

	* ccview/cccproj.hh, ccview/hash_str.h, src/fileselection.c, src/fileselection.h
	  src/project_dbase_gui.c, widgets/gnomefilelist.c, widgets/gnomefilelist.h:
	  Added support for multiple file imports. Changed the standrd C++
	  convention of #include <file> to #include <file.h>, because I had given
	  some wrong options while compiling my gcc-3.0.1 compiler, so it does not
	  now support the #include <file> convention. That is something to be fixed :). 
	  # Patch from: venugopal gummuluru <vgummuluru@yahoo.com>

2001-08-1  Naba Kumar <kh_naba@users.sourceforge.net>

	* src/anjuta.c: Added function static greetings_text(), to solve the non
		translation of the greetings text in the wizard.
		
2001-08-31  Andy Piper <andy.piper@freeuk.com>

	* src/find_in_files_gui.c: made order of buttons consistent with other Find
	  dialogs, with OK the default (fix bug #453482)

2001-08-31  Naba Kumar <kh_naba@users.sourceforge.net>

	* src/anjuta.c: Fixed a bug that tries to printf 'NULL'
	
	* src/appwizard.c: added N_() for the inlcuding the welcome message translatable.
	
2001-08-29  Naba Kumar <kh_naba@users.sourceforge.net>

	* src/aneditor.cxx
	  src/aneditor.h
	  src/anjuta_cbs.c
	  src/controls.c
	  src/main_menubar.c
	  src/main_menubar.h
	  src/main_menubar_def.h
	  src/mainmenu_callbacks.c
	  src/mainmenu_callbacks.h:
		Applied the patch that addes menu items which allow users to
		insert GPL notice and date time in current document.
		patch from: Rick Patel <rikul@shreve.net>	
		
	* src/main_menu.c: Fixed a compilation error.
	
	* src/anjuta.c: Fixed non-rememberence of editor tab position.
	
	* src/mainmenu_callbacks.c: Fixed gpl strings to avoid compiler warnings
	  about the unterminated strings.
	  
	* scintilla/*: Updated scintilla to 1.3.9 version.
	
2001-08-28  Naba Kumar <kh_naba@users.sourceforge.net>
	
	* widgets/gnomefileselection.c:
	  Applied the patch for fixing multiple selection of file open funcion,
	  which will deselect the files selected.
	  patch from: venugopal gummuluru <vgummuluru@yahoo.com>

2001-08-27  Naba Kumar <kh_naba@users.sourceforge.net>

	* widgets/gnomefileselection.h, widgets/gnomefileselection.c, src/fileselection.h,
	  src/fileselection.c, src/anjuta_cbs.c:
	  Applied the patch	for multiple selection of file open.
	  patch from: venugopal gummuluru <vgummuluru@yahoo.com>
	  
2001-08-27  Naba Kumar <kh_naba@users.sourceforge.net>

	* Removed "-f" option in call to devhelp, because devhelp no longer
	  supports that.
	
2001-08-26  Stephane Demurget <demurgets@free.fr>

	All these modifications have been pointed out by
	Gregory Schmitt <gregory.schmitt@free.fr>, so thanks to him.

	* data/internal.properties: two fixes for the PHP lexer.
	  this out.

	* fr.po: minor fixes.

	* TODO: added a couple of PHP suggestions from Gregory Schmitt.

2001-08-25  Naba Kumar <kh_naba@users.sourceforge.net>
	
	* main_menubar.c,
	  main_menubar.h,
	  main_menubar_def.h,
	  main_menubar_callbacks.c,
	  controls.c:
	  	Added new menu item for "close all fils".
		(Patch from Rikul <rikul@shreve.net>, after revision)
	
	* project_dbase.c: project_dbase_close_project(): remove unnecessary printf() statement.
	
	* find_text.c, find_replace.c: Fixed dialog wins not show up once close by 'Esc'.
		(Patch from Rikul <rikul@shreve.net>)
	
	* anjuta.c: Fixed to have the current dir in the fileopen dialog box.
		(Patch from Rikul <rikul@shreve.net>)

2001-08-22  Naba Kumar <kh_naba@users.sourceforge.net>
	
	* appwiz_page2.c: Applied patch for disabling auto-upper-casting of
	   project name in application widzard.
	   [Patch from: Yannick Koehler <yannick.koehler@colubris.com>	]

	* executer.c: hacked to change the behavior of the executer dialog. Now, instead
	  of the 'OK' button there is an 'Execute' one.
	  [ Patch from: Giovanni Corriga <valkadesh@libero.it>	]
	
	* executer.c: Changed cancel button to close button. That was more appropriate.
	  
2001-08-22  Naba Kumar <kh_naba@users.sourceforge.net>

	* HACKING: corrected >>>>>>> Config management.
	
	* HACKING: Added many things.
	
	* src/launcher.h: Added some comments.

2001-08-21  Stephane Demurget <demurgets@free.fr>

	* configure.in, NEWS, README: bumped anjuta version to 0.1.7.

	* HACKING,
	  manuals/C/anjuta-faqs/anjuta-faqs.sgml,
	  src/appwizard_cbs.c,
	  src/appwizard_gui.c: Applied UI/docs cleanup patch from
	  Andy Piper <andy.piper@freeuk.com>

	* po/fr.po: updated to latest sources.

	* Makefile.am: removed anjuta.prj from EXTRA_DIST.


2001-08-18  Andy Piper <andy.piper@freeuk.com>

	* Fixed bugs #450280 and #448845

	* src/about.c: corrected Naba's e-mail address (.net, not .com)
	
	* src/goto_line.c, src/attach_process_gui.c, src/find_replace.c:
	  named dialogs
	
	* src/breakpoints_gui.c, src/commands.c, src/find_text.c,
	  src/find_in_files_gui.c, src/project_dbase_gui.c, src/help.c, 
	  src/watch_gui.c, src/stack_trace_gui.c: edited window and dialog 
	  names to remove "Anjuta: " prefix
	  
	* src/main_menubar_def.c: altered a message
	
	* launcher/anjuta_launcher.c: cleaned up some messages

	* src/debugger.c: edited messages to improve clarity
	
	* src/app_wiz*.c: tidied wizard interface


2001-08-15  Stephane Demurget <demurgets@free.fr>

	Synced Naba's fix and mine about the wizards not working and removed
	anjuta.prj to avoid a nasty checkin.

	* Makefile.am: removed the install-data-local rule.

	* data/Makefile.am: changed the list of files.

	* anjuta.prj: removed to avoid checkin of Anjuta temp files.

	* .cvsignore: added anjuta.prj for the same reason.


2001-08-15  Naba Kumar <kh_naba@users.sourceforge.net>

	* src/source.c: Fixed a bug that fails new gnome projects to get
	  created.

	* src/project_manager.c: Fixed a bug that disables storing recent
	  project history.

	* Makefile.am: Added stuffs to install the macro files in the
	  anjuta share file.


2001-08-14  Stephane Demurget <demurgets@free.fr>

	* data/Makefile.am: added some rules to support the gnome/ macros
	  dir in order to make the wizards work again.

	* anjuta.spec.in: upped the release number.


2001-08-12  Zbigniew Chyla  <cyba@gnome.pl>

	* configure.in (ALL_LINGUAS): Added pl.


2001-08-09  Stephane Demurget <demurgets@free.fr>

	* anjuta.spec.in: fixed the doc files list.


2001-08-09  Naba Kumar <kh_naba@users.sourceforge.net>

	* src/about.c: corrected my email address. :-)
	
	* TODO: Updated.
	
	* manuals/C/anjuta-manual/chapter15.sgml: Slight correction.
	 (patch from Andy Piper <squiggle@ukgateway.net>)

2001-08-08  Naba Kumar <kh_naba@users.sourceforge.net>

	* debugger.c: Fixed a bug associated with debugging threaded
	  application.
	
	* text_editor_menu.c: Fixed broken ui in text editor
	  pop up menu.
	  
	* text_editor_menu.c: Now the option sub menu in text editor pop up
	  works.
	
	* mainmenu_callbacks.c: Fixed "no-modified" bug with autoformat.
		(suggested by lord sibn <sibn@utspl.cjb.net> )
	
2001-08-07  Naba Kumar <kh_naba@users.sourceforge.net>

	* src/text_editor_menu.c: Added menu item for context help
	  (patch from Andy Piper <squiggle@ukgateway.net>)
	
2001-08-06  Stephane Demurget <demurgets@free.fr>

	* ccview/cccproj.cc: added missing i18n strings.

	* data/welcome.txt: bumped version to 0.1.6.

	* src/anjuta.c: fixed a compilation error due to devhelp integration.

2001-08-06  Naba Kumar <kh_naba@users.sourceforge.net>
	
	* help.c, help.h: Added support for DevHelp context sensitive help
		and gnome api browsing.
	* Fixed toolbars and editor views "not save" bug.
	* Updated sgmldocs.make and configure.in to handle rh 7.1 crap.
	  (patch from Andy Piper <squiggle@ukgateway.net>)
	* Updated THANKS and chapter15.sgml for uk and ru translators.

2001-08-05  Naba Kumar <kh_naba@users.sourceforge.net>

	* Transfered ru.po, uk.po and update.sh from gnome-i18n/extra-po/anjuta
	* Updated configure.in to include these changes
	
2001-08-03  Stephane Demurget <demurgets@free.fr>

	* src/project_dbase_gui.c: fixed bug #446963
	  (on_project_dbase_ccview_update_start),
	  (on_project_dbase_ccview_update_end): added.
	  These two respectively disable and enable close file/project
	  menu entries and toolbar items, while the ccview part updates
	  its tag database.  


2001-08-03  Stephane Demurget <demurgets@free.fr>

	* configure.in: added sv to the ALL_LINGUAS list.
	

2001-08-01  Fatih Demir <kabalak@gtranslator.org>

	* anjuta.desktop.(in(.in)), configure.in & Makefile.am: Get the desktop
		file to work: merge translations and distribute it.

	* .cvsignore & ABOUT-NLS: Erh, "ABOUT-NLS" shouldn't be in CVS.

	* NEWS, README, THANKS & TODO: Spelling fixes.

2001-08-01  Stephane Demurget <demurgets@free.fr>

	* README: updated requirements.

	* scintilla/Makefile.am,
	  src/Makefile.am: fixed includes using $(srcdir), as the distcheck
	  target can't be realized (custom build path).

	* Makefile.am: added xml-i18n-* and anjuta.spec.in as EXTRA_DIST.
	  Removed install-data-local.

	* src/compiler_options.c: changed the include paths of the pixmaps.
	  we hadn't any warning because of the include paths passed to the
	  compiler. Thanks to make distcheck for reporting this.


2001-07-31  Stephane Demurget <demurgets@free.fr>

	* NEWS, THANKS: updated.

	* src/anjuta.c: (anjuta_fatal_signal_handler), (anjuta_exit_signal_handler):
	  fixed to show the correct kernel signal number and its description.

	* widgets/gnomefilelist.c: fixed bug #445756
	  (goto_last): renamed to goto_prev and changed according to goto_next.
	  (goto_next): added.
	  (goto_directory): removed.
	  (check_list_for_entry): renamed (g_list_find_string_pos) and rewrote: the
	  returned value is now the position in the list.
	  (check_ok_button_cb): changed the back check and added one for next.
	  (gnome_filelist_set_dir): the check in history make it wouldn't be
	  a "true" history. polished the whole thing, using set_dir_internal.
	  (set_dir_internal): used in gnome_filelist_set_dir and back/next callbacks, so
	  there's no check in the history when using back or next.

	* manuals/*: added missing .cvsignore files.


2001-07-30  Stephane Demurget <demurgets@free.fr>

	* po/fr.po: updated to latest sources.

	* src/preferences_gui.c: (create_preferences_page6): fixed bug #445758
	  call on_trunc_mesg_check_clicked after the two spinbuttons are ref'ed,
	  to put off their sensitive attributes.

2001-07-29  Stephane Demurget <demurgets@free.fr>
	
	* po/fr.po: fixed some grammar things.
	  Thanks to Pierre Sarrazin <sarrazip@sympatico.ca> for having pointed
	  this out.
	
	* src/utilities.c: (file_is_link): use lstat instead of stat.

2001-07-27  Naba Kumar <kh_naba@123india.com>
	
	* Remove help dir from cvs, because it is no longer
	  needed.
	
	* Remove manuals/anjuta-manual dir from cvs, because it is no longer
	  needed.

2001-07-24  Naba Kumar <kh_naba@123india.com>

	* debugger.c: (debugger_update_prog_status): Fixed
		the bug with gdb version 5. Debugger starts, when
		step in/out/over etc are clicked.
	
	* debugger.c: All functions: added debugging codes.
	
	* breakpoints.c: (breakpoints_dbase_set_all_in_editor):
	* breakpoints.c: (breakpoints_dbase_add_brkpnt):
	  Modified to recognize non project files also.
	  
	* source.c: (source_write_configure_in):
	  Added source for 'prefix' counterparts for
	  no-prefix AC_SUBST.
	
2001-07-23  Naba Kumar <kh_naba@123india.com>
	
	* anjuta.c: added function anjuta_remove_text_editor();
	  and suitably modified anjuta_remove_current_text_editor().
	  
	* project_dbase.c: project_dbase_close(), Added code to
	  close all opened files that belong to the project when
	  the project is closed.
	 (patch from  "Maxim Blagai" <maximblagai@yahoo.com> and some my codes)
	
	* Updated the manuals/anjuta-manual subdir for GDP standards.
	   (patch from Andy Piper <squiggle@ukgateway.net>)
	
	* main_menubar.h, main_menubar.def: Added Menu items to handle
	  urls for library references, bugs, patches and feature request
	  submission.
	
2001-07-20  Naba Kumar <kh_naba@123india.com>
	
	* Set wmclass names in all windows.
	  (patch from Andy Piper <squiggle@ukgateway.net>)
	* New splash logo from "Misha" <misha@phreaker.net>);

2001-07-19  Naba Kumar <kh_naba@123india.com>
	
	* preferences.[h,c], preferences_gui.c: Added 4 properties to
	  set caret color, calltip back color and selection fore/back
	  color.

2001-07-18  Naba Kumar <kh_naba@123india.com>
	
	* project_dbase.c: Closes all files when project is closed.
	 (patch applied from  "Maxim Blagai" <maximblagai@yahoo.com>)
	 -- We still need to refine this as it closes all sort of files.
	
	* compiler_options.c: Fixed seg-fault bug when last item in
	  compiler option lists is removed.
	
	* Fixed missing newline warnings during compilation.
	  (patch from Andy Piper <squiggle@ukgateway.net>)

2001-07-17  Fatih Demir <kabalak@gtranslator.org>

	* xml-i18n-*: Blew away the xml-i18n-* files from CVS -- they're
		autogenerated no need to store'em in CVS.

	* ccview/.cvsignore: Addition of cvsignore.

2001-07-17  Naba Kumar <kh_naba@123india.com>
	
	*GUI fixes and spell corrections
	(patch from Andy Piper <squiggle@ukgateway.net>)

2001-07-15  Naba Kumar <kh_naba@123india.com>
	
	*Fixed double error message for file not found.
	
	*Put white backgrounds for png images.
	
	*Converted '-' to '_' in sgml files.

2001-07-14  Naba Kumar <kh_naba@123india.com>
	
	* project_dbase.c: Short-cut for expand/collasp project tree
	
	* project_dbase_gui.c:
	 (patch applied from  "Maxim Blagai" <maximblagai@yahoo.com>)

2001-07-13  Naba Kumar <kh_naba@123india.com>
	
	* notebook.[h,c]: Added
	 (patch applied from  "Maxim Blagai" <maximblagai@yahoo.com>)
	Project/message window now toggles on control and
	and notebook switch short-cut

2001-07-7  Naba Kumar <kh_naba@123india.com>
	
	* Changed a new icon set which looks more gnomish.
	
	* Changed a new anjuta splash logo.
	(Icons and splash logo created by "Misha" <misha@phreaker.net>)

2001-07-6  Naba Kumar <kh_naba@123india.com>
	
	* ccview/*: Integrated ccview for class view and file view
		in the project Manager.
	
	* widgets/gnomefilelist.[h,c]: Added show hidden files options.

2001-07-1  Naba Kumar <kh_naba@123india.com>
	
	* scintilla/*: Upgraded Scintilla to version 1.3.7
	
	* manuals/anjuta-manual/C/chapter[00-12].sgml: Added many more stuffs.
	
2001-06-28  Naba Kumar <kh_naba@123india.com>
	
	* src/debugger.c: Correct step-over and step-out swapping.
	
	* manuals/anjuta-manual/C/chapter[00-12].sgml: Splitted manual
	  chapters and added more stuffs.

2001-06-13  Naba Kumar <kh_naba@123india.com>
	
	* data/autogen.sh.gtkmm: Added
	
	* data/autogen.sh.gnomemm: Added
	
	* src/appwiz.c: Added two more application wizard templetes
	
	* src/project: for gtk-- and gnome-- and proper support
	
	* src/source.c: for c++ in the project configuration.
	
	* src/source.h:

2001-05-05  Naba Kumar <kh_naba@123india.com>

	* Merged my pre-cvs modifications with 
	  the current cvs copy.

	* (lot of files change).

	* Implemented session management.

	* Local installation possible by
	  manageing our own pixmaps paths
	  manupulations.
	
	* resources.h: Added.
	* resources.c: Added.

	* Fixed some bugs.
	
2001-05-05  Fatih Demir <kabalak@gtranslator.org>

	* manuals/.cvsignore & manuals/anjuta-manual/C/.cvsignore:
		Corrected/extended ignores.

2001-05-04  Naba Kumar <kh_naba@123india.com>

	* manuals/: dir tree added.
	  Sgml documentation started in this dir.
	  
	* omf-install/: dir tree added.
	
	* manuals/anjuta-manual/C/anjuta-manual.sgml:
	  Created initial document structure.
	  
	* configure.in: Added test for scrollkeeper.
	  Added some Makefile entries in AC_OUTPUT.
	
	* Makefile.am: Added subdir manuals/
	
	* HACKING: Wrote something stupid.

2001-05-02  Stéphane Démurget <demurgets@free.fr>

	* Makefile.am: Added ChangeLog in local data list, becaused it's
	  needed to create a new project.
	  
	* po/fr.po: minor fixes.

	* src/build_file.c, src/configurer.c, src/debugger.c,
	  src/executer.c, src/find_replace.c, src/gnome_project.c,
	  src/goto_line.c, src/launcher.c, src/messages.c, 
	  src/preferences.c src/project_dbase.c: functions declared static.
	  
	* widgets/gnomefilelist.c: Fixed a project creation bug,
	  introduced with latest changes.

2001-05-01  Stéphane Démurget <demurgets@free.fr>

	* widgets/gnomefilelist.c,
	  BUGS: Fixed an annoying bug preventing from loading files/project
	  given on the command line. Polished the whole gnome_filelist widget.

2001-04-27  Stéphane Démurget <demurgets@free.fr>

	* src/main.c,
	  src/anjuta.c,
	  src/anjuta.h: Polished the command line parsing.

	* BUGS: Need to clean that damn gnome_filelist widget.

2001-04-25  Stéphane Démurget <demurgets@free.fr>

	* src/registers.c,
	  src/sharedlib.c,
	  src/signals.c: Removed duplicated includes.

	* po/fr.po: minor fixes.

	* src/compiler_options_gui.c: Cleaned up a part of the GUI,
	  create_compiler_options_page? () declared static.
	* src/main.c,
	  src/anjuta.c: Put a command line option for disabling
	  the splashscreen.

	* src/preferences_gui.c: Fixed an internationalization issue,
	  other functions declared static.

	* src/gnome_project.c: Fixed some memory leaks,
	  new_prj_terminated () declared static. 

2001-04-24  Fatih Demir <kabalak@gtranslator.org>

	* configure.in: Sort ALL_LINGUAS alphabetically.

2001-04-22  Stéphane Démurget <demurgets@free.fr>

	* Emptied that ugly old Changelog.