Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « CBinding « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de9839551191b3de849fe15522b00bec36ea2335 (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
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
2008-06-25  Lluis Sanchez Gual <lluis@novell.com> 

	* Project/CProject.cs: Don't set the build action for files when
	  loading a project. Fixes bug #402336.

2008-06-04  Marcos David Marín Amador <marcosmarin@gmail.com>
	* Gui/GeneralOptionsPanel.cs, Parser/TagDatabaseManager.cs: Don't
	  parse local valriables by default.

2008-06-04  Lluis Sanchez Gual <lluis@novell.com> 

	* Project/CProject.cs: The configuration parameter of GetDeployFiles is
	  a solution configuration, so it needs to get the mapped project
	  configuration name. Track some api changes.

2008-06-04  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.addin.xml: Bump MD version.

2008-05-30  Lluis Sanchez Gual <lluis@novell.com> 

	* Project/CProject.cs: Properly set debug mode when creating a project.

2008-05-29  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/CodeGenerationPanel.cs, md1format.xml, CBinding.addin.xml,
	  CBinding.mdp, Project/CProjectConfiguration.cs,
	  Project/CCompilationParameters.cs, Project/CProject.cs,
	  Makefile.am, Compiler/GNUCompiler.cs: Removed
	  CCompilationParameters because it is not really needed like in the
	  .net case. Also changed the name used to serialize some properties,
	  to better match the msbuild model. Added a serialization map
	  (md1format.xml) for backwards compatibility with the old mdp
	  format.

2008-05-23  Lluis Sanchez Gual <lluis@novell.com> 

	* Project/CProject.cs: BaseDirectory can't be used until the project
	  has been saved. Fixes bug 393945 - Can not create new C Binding
	  project.

2008-05-22  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.addin.xml: Merged the extension points for project and
	  solution option panels into a single extension point. A single
	  extension point will now be used for all kinds of items. Extension
	  conditions can be used to make panels visible only for some
	  specific item types.

2008-05-22  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.addin.xml: Show build options in the build section.
	* Project/CProjectConfiguration.cs: Fix nullref. Fixes bug #393422.

2008-05-22  Lluis Sanchez Gual <lluis@novell.com> 

	* Project/CProjectServiceExtension.cs, Project/CProject.cs,
	  Compiler/CCompiler.cs, Compiler/ICompiler.cs,
	  Compiler/GNUCompiler.cs: Replaced
	  ICompilerResult/DefaultCompilerResult/CompilerResults by a new
	  BuildResult class, which has owner information at error level, so
	  it is possible to know which project generated an error when
	  building a solution. Updated Task and TaskService to use the new
	  owner information.

2008-05-21  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/OutputOptionsPanel.cs, Gui/EditPackagesDialog.cs,
	  Gui/CodeGenerationPanel.cs, Gui/CompilerPanel.cs,
	  CBinding.addin.xml, ProjectPad/ProjectPackagesFolderNodeBuilder.cs,
	  ProjectPad/ProjectPackageNodeBuilder.cs, CBinding.mdp,
	  Parser/TagDatabaseManager.cs,
	  Navigation/ProjectNodeBuilderExtension.cs,
	  Project/CProjectConfiguration.cs, Project/CProjectBinding.cs,
	  Project/CProjectServiceExtension.cs, Project/CProject.cs,
	  gtk-gui/gui.stetic, Compiler/GNUCompiler.cs: New project model
	  changes.

2008-05-08  Michael Hutchinson <mhutchinson@novell.com> 

	* CBinding.addin.xml: Set "isText" attribute on the mimetype
	  definitions.

2008-04-16  Michael Hutchinson <mhutchinson@novell.com> 

	* Gui/CTextEditorExtension.cs: Track API change.

2008-04-13  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Parser/TagDatabaseManager.cs: Fixed bug that prevented system tags from
	  being written and parsed.

2008-04-13  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/EditPackagesDialog.cs, gtk-gui/CBinding.EditPackagesDialog.cs,
	  gtk-gui/gui.stetic: Made details button unsensitive until a package is
	  selected.

2008-04-13  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/EditPackagesDialog.cs, CBinding.addin.xml,
	  ProjectPad/ProjectPackageNodeBuilder.cs, Project/CProject.cs: Added a
	  command to the Package context menu to see the details on the package
	  and fixed a bug where packages could not be added to a project.

2008-04-13  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* CBinding.addin.xml: Commented out a wrong extension point. Will find the
	  correct one later.

2008-04-12  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/PackageDetails.cs, Gui/EditPackagesDialog.cs, CBinding.addin.xml,
	  ProjectPad/ProjectPackagesFolderNodeBuilder.cs,
	  ProjectPad/ProjectPackageNodeBuilder.cs, CBinding.mdp,
	  Project/Package.cs, Project/ProjectPackageCollection.cs,
	  Project/ProjectPackageEventArgs.cs, Project/ProjectPackage.cs,
	  Project/CProject.cs, gtk-gui/CBinding.PackageDetails.cs,
	  gtk-gui/CBinding.EditPackagesDialog.cs,
	  gtk-gui/CBinding.CodeGenerationPanel.cs, gtk-gui/gui.stetic,
	  Makefile.am, Compiler/CCompiler.cs: Changed the class ProjectPackage to
	  just Package and created a package details dialog that can be seen from
	  the EditPackagesDialog.

2008-04-12  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/EditPackagesDialog.cs, gtk-gui/CBinding.EditPackagesDialog.cs,
	  gtk-gui/gui.stetic: Fixed bug 369688 - Find as you type doesn't work in
	  the dialog where you select the project references.

2008-04-12  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/EditPackagesDialog.cs: Alphabetically sort the list of packages and
	  did some formatting.

2008-04-11  Levi Bard <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* CBinding.addin.xml, Gui/CTextEditorExtension.cs,
	  Project/CProject.cs: Enable source/header swapping with a keybinding
	  and menu items

2008-04-10  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/EditPackagesDialog.cs: Fixed bug 368755: "MD should not guess if a
	  reference is managed or unmanaged relying on cflags"

2008-04-11  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.addin.xml: Use the new mime type extension to register new
	  file types.

2008-04-03  Levi Bard <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* Parser/TagDatabaseManager.cs: Fixed mismatched single-quote.

2008-03-29  Marcos David Marín Amador <MarcosMarin@gmail.com>

	* Parser/Function.cs: No longer attempt to find prototypes.
	* Parser/TagDatabaseManager.cs: No longer generate prototype tags.
	* Gui/GeneralOptionsPanel.cs: changed completion for local variables
	  and memeber to on by default.

2008-03-29  Levi Bard <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* Parser/*: Add best-guess completion for members and 
	(optionally, default off) local variables.

2008-03-21  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Compiler/GNUCompiler.cs: Instead of having the Include and Lib Paths
	  marked as ProjectPathItemProperty now mark them as regular
	  ItemProperties and instead added functionality to insert and parse
	  macros like ${ProjectDir} and ${CombineDir} in the Include and Lib
	  Paths.

2008-03-19  Levi Bard <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* Parser/TagDatabaseManager.cs: Search project include paths 
	for relatively-pathed includes.

2008-03-18  Michael Hutchinson <mhutchinson@novell.com> 

	* Gui/CTextEditorExtension.cs: Only smart-indent when smart-indenting
	  is enabled. Respect tabs/spaces setting.

2008-03-16  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/OutputOptionsPanel.cs: Fix bug where the pauseCheckbox control could
	  be greyed out when it should be souldn't.

2008-03-14  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Compiler/GNUCompiler.cs: Insert into front of list instead of at the end,
	  fixes bug 368478: "Multi-line build errors are displayed out of order ".

2008-03-07  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/GeneralOptionsPanel.cs, CBinding.addin.xml: Use new options
	  dialog infrastructure.

2008-03-04  Mike Krüger <mkrueger@novell.com> 

	* Parser/LanguageItem.cs, Project/CProject.cs, Compiler/CCompiler.cs: Worked
	  on gnome hig compliant alerts.

2008-02-20  Lluis Sanchez Gual <lluis@novell.com> 

	* ProjectPad/ProjectPackageNodeBuilder.cs: Handle the delete key in
	  TreeViewPad, so it will work event if the shortcut is not defined.

2008-02-19  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Compiler/GNUCompiler.cs: Handle better CleanPrecompiledHeaders, fixes bug
	  361045.

2008-02-14  Geoff Norton  <gnorton@novell.com>

	* Parser/TagDatabaseManager.cs: Disable the ctag implementation on OSX 
	as the ctags that apple ships is entirely incompatible with this parser.

2008-02-13  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Compiler/GNUCompiler.cs: Make sure directory exists before attempting to
	  delete it.

2008-02-13  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Compiler/GNUCompiler.cs: Use string.Join instead of custom method.

2008-02-09  Mike Krüger <mkrueger@novell.com> 

	* CBinding.addin.xml, CBinding.mdp, Makefile.am: Removed source editor
	  dependency.

2008-02-07  Michael Hutchinson <mhutchinson@novell.com> 

	* Parser/TagDatabaseManager.cs: Improve error handling. Should fix "Bug
	  359567 - MonoDevelop crashes when creating/opening C++ Console Project".

2008-01-25  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.addin.xml: Update MD version.

2008-01-22  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Compiler/GNUCompiler.cs: Removed useless code.

2008-01-18  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Parser/TagDatabaseManager.cs: Cache tags into a hash table and see if they
	  had been previously cached before looking for them again.

2008-01-15  Michael Hutchinson <mhutchinson@novell.com> 

	* templates/StaticLibraryCProject.xpt.xml,
	  templates/StaticLibraryCppProject.xpt.xml,
	  templates/EmptyCProject.xpt.xml, templates/EmptyCSourceFile.xft.xml,
	  templates/EmptyCppProject.xpt.xml, templates/EmptyCppSourceFile.xft.xml,
	  templates/ConsoleCProject.xpt.xml, templates/ConsoleCppProject.xpt.xml,
	  templates/EmptyCHeaderFile.xft.xml,
	  templates/EmptyCppHeaderFile.xft.xml,
	  templates/SharedLibraryCProject.xpt.xml,
	  templates/SharedLibraryCppProject.xpt.xml: Make template categories
	  translatable.

2008-01-12  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Parser/TagDatabaseManager.cs: Only lock the parsingJobs queue object.

2008-01-11  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Parser/TagDatabaseManager.cs: When searching for a tag instead of doing a
	  linear search do a binary search (ctags output sorted tag files).
	  Greatly improves parsing speed. Also removed some unused methods.

2008-01-08  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/EditPackagesDialog.cs: Make sure packages are not repeated if the
	  system has more than one copy of the same package in different
	  directories.
	* Parser/TagDatabaseManager.cs: Changed the name of a propery.

2008-01-07  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Project/CProject.cs: Deploy resources in the correct way.

2008-01-04  Michael Hutchinson <mhutchinson@novell.com> 

	* Parser/TagDatabaseManager.cs: Only try to parse tags if ctags and gcc are
	  installed.

2007-12-31  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Compiler/GNUCompiler.cs: Report errors in the same order as they were
	  outputted by the compiler and parse linker output to form better linker
	  error reports.

2007-12-31  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Project/CProject.cs: Copy deployment files to output directory when
	  building the project.

2007-12-28  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/GeneralOptionsPanel.cs, CBinding.addin.xml,
	  Parser/TagDatabaseManager.cs, CBinding.mdp, Project/CProject.cs,
	  gtk-gui/CBinding.EditPackagesDialog.cs,
	  gtk-gui/CBinding.CodeGenerationPanel.cs, gtk-gui/objects.xml,
	  gtk-gui/CBinding.GeneralOptionsPanel.cs, gtk-gui/gui.stetic,
	  Makefile.am: Added a general configuration panel for CBinding where you
	  can choose the default compiler for new C and C++ projects as well as
	  set if you want to parse system tags or not.
	* Compiler/GppCompiler.cs, Compiler/GccCompiler.cs: Changed compiler names.

2007-12-14  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.mdp: Updated project files. The order of extended properties
	  won't change anymore.

2007-12-12  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.addin.xml: Bump add-in versions.

2007-12-04  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.mdp, Makefile.am: Add missing reference.

2007-12-04  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.addin.xml, CBinding.mdp, CBinding.mds,
	  CBinding.Autotools/CBinding.Autotools.mdp, Makefile.am: Directory
	  reorganization.

2007-12-01  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.mdp, gtk-gui/gui.stetic: Updated paths.

2007-11-23  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Compiler/GNUCompiler.cs: Should fix bug #343098
	
	  gcc/g++ failed if path had white spaces.

2007-11-17  Christian Hergert <christian.hergert@gmail.com> 

	* Gui/EditPackagesDialog.cs: Check if string is null or empty before using
	  it to prevent crash.

2007-11-09  Michael Hutchinson <mhutchinson@novell.com> 

	* Parser/TagDatabaseManager.cs: Track LoggingService API changes.

2007-11-06  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Navigation/ProjectNodeBuilderExtension.cs: Moved all the threading for the
	  parsing of source files to the TagDatabaseManager, parsing jobs are
	  placed on a queue and dispatched by a single thread. Fixes bug 336368.

2007-10-29  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.addin.xml: Bump MD version.

2007-10-29  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.addin.xml: Track changes in the Icon extension node.

2007-10-25  Michael Hutchinson <mhutchinson@novell.com> 

	* Compiler/GNUCompiler.cs: Handle cancellation of build.

2007-10-25  Michael Hutchinson <mhutchinson@novell.com> 

	* Gui/EditPackagesDialog.cs: Normalise pkg-config paths so that comparison
	  to avoid duplication works correctly. Add lib64 to default paths.
	* Project/CProjectConfiguration.cs: Add configuration option to disable
	  precompilation of headers.
	* Project/CProjectServiceExtension.cs: Pass cleanup to ICompiler.Clean.
	* Compiler/CCompiler.cs, Compiler/ICompiler.cs: Add Clean method and
	  SupportsPrecompiledHeaders property.
	* Compiler/GNUCompiler.cs: Reworked process launching so that it handles
	  output as it's generated. (fixes "Bug 336363 - [CBinding, possibly all
	  MD] MD hangs when a compile output is long"). Headers are now
	  precompiled if they're set to "compile", and precompilation errors are
	  reported. Clean precompiled headers when appropriate. Pass package flags
	  to header precompilation. Report build phases to monitor, also using
	  gettext.

2007-10-25  Lluis Sanchez Gual <lluis@novell.com> 

	* icons/text-x-c++src.32x32.png, templates/EmptyCHeaderFile.xft.xml,
	  templates/EmptyCppHeaderFile.xft.xml,
	  templates/EmptyCppSourceFile.xft.xml,
	  templates/EmptyCSourceFile.xft.xml: Use tango file icons. Removed
	  obsolete icons.

2007-10-24  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.mdp, templates/StaticLibraryCProject.xpt.xml,
	  templates/StaticLibraryCppProject.xpt.xml,
	  templates/EmptyCProject.xpt.xml, templates/EmptyCppProject.xpt.xml,
	  templates/ConsoleCProject.xpt.xml, templates/ConsoleCppProject.xpt.xml,
	  templates/SharedLibraryCProject.xpt.xml,
	  templates/SharedLibraryCppProject.xpt.xml, Makefile.am,
	  icons/C.Project.ConsoleProject, icons/C.Project.SharedLibrary,
	  icons/Cpp.Project.Empty, icons/C.Project.Empty,
	  icons/C.Project.StaticLibrary, icons/c-icon-32.png,
	  icons/cpp-icon-32.png: Updated project icons. Use the base project icon
	  with an overlay to show the type.

2007-10-23  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.mdp, CBinding.mds, CBinding.Autotools/CBinding.Autotools.mdp:
	  Project file names updated by change in MD path functions.

2007-10-20  Chris Howie <bzximian.3.crazycomputers@neverbox.com> 

	* Project/CProject.cs: Don't assume LD_LIBRARY_PATH is set.

2007-10-12  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Navigation/ProjectNodeBuilderExtension.cs: If exuberant-ctags is not
	  installed, instead of showing an error message dialog, put an error
	  message in the class pad in the project node.

2007-10-05  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/CodeGenerationPanel.cs, Project/CCompilationParameters.cs,
	  gtk-gui/CBinding.CodeGenerationPanel.cs, gtk-gui/gui.stetic,
	  Compiler/GNUCompiler.cs: Added "Treat warnings as errors" option to code
	  generation panel and implemented it for gcc and g++.
	* Parser/TagDatabaseManager.cs: Suppressed unused variable warning and added
	  checks for faulty ctags tags.

2007-10-03  Michael Hutchinson <mhutchinson@novell.com> 

	* CBinding.mdp, gtk-gui/gui.stetic: Target GTK# 2.8.
	* Project/CProject.cs: Track execution API changes.

2007-09-27  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.mdp: Don't local copy references.

2007-09-26  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/TagDatabaseManager.cs: Don't crash if the compiler can't be found.
	* Compiler/GNUCompiler.cs: Check for the compiler before trying to compile.

2007-09-21  Lluis Sanchez Gual <lluis@novell.com> 

	* CBinding.addin.xml: Bump MD version.

2007-09-17  Levi Bard <taktaktaktaktaktaktaktaktaktak@gmail.com> 

	* Parser/Function.cs, Parser/TagDatabaseManager.cs,
	  Navigation/ProjectNodeBuilderExtension.cs: Make sure ctags process exits
	  and fixed several null pointer exceptions.

2007-09-17  Lluis Sanchez Gual <lluis@novell.com> 

	* gtk-gui/generated.cs, gtk-gui/CBinding.EditPackagesDialog.cs,
	  gtk-gui/CBinding.AddPathDialog.cs,
	  gtk-gui/CBinding.CodeGenerationPanel.cs,
	  gtk-gui/CBinding.CompilerPanel.cs,
	  gtk-gui/CBinding.OutputOptionsPanel.cs,
	  gtk-gui/CBinding.AddLibraryDialog.cs: Updated.

2007-09-14  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* CBinding.mdp: Set path to configure.in in Makefile integration.

2007-09-14  Martin Dederer <martindederer@gmx.de>

	* Compiler/GNUCompiler.cs: Added method to expand backticked portions
	in compiler-/ linker-arguments

2007-09-07  Marcos David Marín Amador <MarcosMarin@gmail.com>

	* CBinding.Autotools: Set svn:ignore property on
	  CBinding.Autotools.pidb

2007-09-07  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/CTextEditorExtension.cs: Track api changes.
	* CBinding.mdp: Use gtk# 2.8.

2007-09-07   <> 

	* Makefile.am: Check ENABLE_C to find out if assembly should be compiled or
	  not.

2007-09-05  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Navigation/ProjectNodeBuilderExtension.cs: Update ClassPad when the
	  project starts without having to save a file.

2007-09-04  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/CodeGenerationPanel.cs, Compiler/GNUCompiler.cs: Change newlines into
	  spaces from ExtraCompiler/LinkerArgs right before compilation so the
	  newline and spaces are conserved when serializing the project.

2007-09-03  Michael Hutchinson <m.j.hutchinson@gmail.com> 

	* Gui/OutputOptionsPanel.cs, Gui/CodeGenerationPanel.cs,
	  Gui/CompilerPanel.cs, Parser/TagDatabaseManager.cs: Adapt to new api
	  changes.

2007-09-01  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/CompilerPanel.cs, Project/CProject.cs: Allow changing the project's
	  language from C to C++ and vice versa by changing the compiler in the
	  compiler panel.

2007-09-01  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Compiler/GNUCompiler.cs: Fixed ccache implementation, though I'm still not
	  sure if ccache should be used in the linking stage (Its currently not
	  used, and I think thats correct).

2007-08-31  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/EditPackagesDialog.cs, gtk-gui/CBinding.EditPackagesDialog.cs,
	  gtk-gui/gui.stetic: Ignore case when searching for a pkg-pcackages
	  version.
	* Compiler/CCompiler.cs, Compiler/GNUCompiler.cs: No longer call bash.

2007-08-30  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* gtk-gui/CBinding.CodeGenerationPanel.cs, gtk-gui/gui.stetic: Still more
	  CodeGenerationPanel UI improving. I think it is now good enough for now.

2007-08-29  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* gtk-gui/CBinding.CodeGenerationPanel.cs, gtk-gui/gui.stetic: Improved UI,
	  could still use more improvement.

2007-08-28  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Project/CProjectConfiguration.cs: rewrote naming convetion handling.

2007-08-20  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/CompilerPanel.cs, Project/CProjectConfiguration.cs,
	  gtk-gui/CBinding.CodeGenerationPanel.cs,
	  gtk-gui/CBinding.CompilerPanel.cs, gtk-gui/gui.stetic,
	  Compiler/CCompiler.cs, Compiler/ICompiler.cs, Compiler/GNUCompiler.cs:
	  Added support for ccache.

2007-08-19  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* templates/EmptyCSourceFile.xft.xml, templates/EmptyCppSourceFile.xft.xml,
	  templates/EmptyCHeaderFile.xft.xml,
	  templates/EmptyCppHeaderFile.xft.xml: Fixed some default values.
	* Project/CProject.cs: Fixed a bug where the deploy state of files was not
	  persistent.

2007-08-18  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Project/ProjectPackageCollection.cs: Added a ToStringArray method to
	  easily get an array of the names of the packages the collection
	  contains.
	* Project/CProject.cs: Fixed up the deployment pkg-config package and
	  improved deployment.
	* Compiler/CCompiler.cs, Compiler/ICompiler.cs, Compiler/GNUCompiler.cs:
	  Added a GenerateDefineFlags method which is used to write the deployed
	  pkg-config package.

2007-08-17  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Project/CProject.cs: Fixed a null pointer exception and changed library
	  deployments to ProgramFilesRoot.

2007-08-17  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Project/CProject.cs: Enhanced deployment.

2007-08-16  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* CLanguageBinding.cs: Made C specific.
	* CppLanguageBinding.cs: Needed so that templates can have C++ files.
	* CBinding.addin.xml: Bumped version to 0.15.0
	
	  Seperated file filter for C and C++.
	
	  Added project templates for Shared Library, Static Library and Console
	  Project for both C and C++.
	
	  Added a seperate language binding for C and one for C++ (this was
	  necessary to have project templates that include C++ files).
	* CBinding.mdp, templates/StaticLibraryCProject.xpt.xml,
	  templates/StaticLibraryCppProject.xpt.xml,
	  templates/ConsoleCProject.xpt.xml, templates/ConsoleCppProject.xpt.xml,
	  templates/SharedLibraryCProject.xpt.xml,
	  templates/SharedLibraryCppProject.xpt.xml, Makefile.am,
	  icons/C.Project.ConsoleProject, icons/C.Project.SharedLibrary,
	  icons/C.Project.StaticLibrary: New templates for Shared Library, Static
	  Library and Console Project for C and C++.
	* README: Added icon licence information.

2007-08-15  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* CBinding.addin.xml, CBinding.mdp, Project/CProject.cs, Makefile.am:
	  Implemented IDeployable.

2007-08-15  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Project/CProject.cs: Write all directories with header files to the
	  project's pkg-config package.

2007-08-14  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* gtk-gui/CBinding.OutputOptionsPanel.cs, gtk-gui/gui.stetic: Make output
	  entry editable.

2007-08-14  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Project/CProjectServiceExtension.cs: Update the project's pkg package
	  every time it is compiled.

2007-08-13  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/EditPackagesDialog.cs, ProjectPad/ProjectPackagesFolderNodeBuilder.cs,
	  Project/CProjectConfiguration.cs, Project/CProject.cs: Allow CProjects
	  to depend on other CProjects that compile into a shared object as well
	  as static libraries.

2007-08-13  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/DataProvider.cs, CBinding.addin.xml, Navigation/UnionNodeBuilder.cs:
	  Added the  union icons to the stock icons so I don't have to create my
	  own pixbuf in the union node builder and now I can use the proper union
	  icon in the completion widget.

2007-08-12  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Parser/TagDatabaseManager.cs: Parse functions from it's prototype if
	  possible instead of waiting for the implementation, if it is an inline
	  function parse it with that.

2007-08-12  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* CBinding.addin.xml, ProjectPad/ProjectResourcesExtension.cs, Makefile.am:
	  Hide the resources node in the project pad for CProjects.

2007-08-12  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* CBinding.addin.xml: Added the paste command to the packages folder node's
	  context menu and the copy command to the package node's context menu.

2007-08-11  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Project/CProjectConfiguration.cs: Make paths relative to project folder.

2007-08-09  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/DataProvider.cs, Parser/Function.cs: Support for constant methods.
	* CBinding.addin.xml: Fixed addin-breaker-typo-from-hell.

2007-08-09  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* CBinding.addin.xml, CBinding.mdp: Some corrections.

2007-08-09  Marcos David Marín Amador <MarcosMarin@gmail.com>

	* CBinding.addin.xml, CBinding.mdp, Makefile.am: Updated the paths and
	  embedded the .addin.xml into the assembly

2007-08-08  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/CTextEditorExtension.cs, Gui/DataProvider.cs,
	  Parser/ProjectInformation.cs, Parser/Function.cs,
	  Parser/TagDatabaseManager.cs: Parse and complete for included system
	  files too.

2007-08-07  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/OutputOptionsPanel.cs, Gui/AddLibraryDialog.cs,
	  Gui/EditPackagesDialog.cs, Gui/AddPathDialog.cs,
	  Gui/CodeGenerationPanel.cs, gtk-gui/CBinding.EditPackagesDialog.cs,
	  gtk-gui/CBinding.AddPathDialog.cs,
	  gtk-gui/CBinding.CodeGenerationPanel.cs,
	  gtk-gui/CBinding.OutputOptionsPanel.cs,
	  gtk-gui/CBinding.AddLibraryDialog.cs, gtk-gui/gui.stetic: Updated
	  widgets.

2007-08-07  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* CBinding.addin.xml, gtk-gui/CBinding.CodeGenerationPanel.cs: Removed
	  autotools support since it is currently very .NET specific.

2007-08-06  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* CBinding.addin.xml, CBinding.mdp, CBinding.mds,
	  CBinding.Autotools/AssemblyInfo.cs,
	  CBinding.Autotools/CAutotoolsSetup.cs,
	  CBinding.Autotools/CBinding.Autotools.mdp, Compiler/CCompiler.cs,
	  Compiler/ICompiler.cs, Compiler/GNUCompiler.cs: Started work on
	  supporting makefile generation.

2007-08-06  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/DataProvider.cs: Use correct icons.

2007-08-06  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Navigation/ProjectNodeBuilderExtension.cs,
	  ProjectPad/ProjectPackagesFolderNodeBuilder.cs: Adjusted to new API
	  changes.

2007-08-03  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/CTextEditorExtension.cs: Added support for '::' completion.
	* Gui/DataProvider.cs: Changed the completion icon of a typedef to match the
	  icon used in the class pad.
	* Makefile.am, CBinding.addin.xml, CBinding.mdp,
	  templates/EmptyCSourceFile.xft.xml,
	  templates/EmptyCppSourceFile.xft.xml,
	  templates/EmptyCHeaderFile.xft.xml,
	  templates/EmptyCppHeaderFile.xft.xml: Added file templates and changed
	  icons.
	* Parser/ProjectInformation.cs: Added some helper methods.
	* Parser/Function.cs: Overrided the Equals and GetHasCode methods so that it
	  uses the function's parameters too.

2007-07-26  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Navigation/ProjectNodeBuilderExtension.cs,
	  Gui/CTextEditorExtension.cs, Project/CProject.cs,
	  Parser/Enumerator.cs, Parser/Function.cs, Parser/Enumeration.cs,
	  Parser/Union.cs, Parser/TagDatabaseManager.cs, Parser/Namespace.cs,
	  Parser/Typedef.cs, Parser/Structure.cs, Parser/LanguageItem.cs,
	  Parser/Class.cs, Parser/Member.cs: Now a file's tags are updated
	  when the file is saved. Also, instead of writing the tags to a file
	  I now write them to stdout and parse them from there since I now
	  parse per file instead of the entire project.

2007-07-25  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Navigation/ProjectNodeBuilderExtension.cs,
	  Parser/TagDatabaseManager.cs: It is now possible to update tags for
	  only one source file instead of the entire project (though it's
	  curently not in use anywhere).
	
	  When it does this it creates a tags file for the source file and
	  the included non system headers and parses that file.
	
	  I'm not sure where this code should be called.
	* Navigation/LanguageItemEventArgs.cs, Navigation/ClassPadEventArgs.cs:
	  Made these subclass EventArgs.
	* Gui/CTextEditorExtension.cs, Gui/DataProvider.cs: Implemented simple
	  code completion by pressing ctrl+space.

2007-07-24  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/DataProvider.cs: Make the name of the method bold.

2007-07-22  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Navigation/Enumerator.cs, Navigation/Function.cs,
	  Navigation/Variable.cs, Navigation/Enumeration.cs,
	  Navigation/Union.cs, Navigation/Namespace.cs,
	  Navigation/Typedef.cs, Navigation/Structure.cs,
	  Navigation/Macro.cs, Navigation/LanguageItem.cs,
	  Navigation/Class.cs, Navigation/Member.cs: Moved to
	  CBinding.Parser.
	* Gui/CTextEditorExtension.cs, Gui/DataProvider.cs, Parser/Tag.cs,
	  Parser/TagDatabaseManager.cs, CBinding.mdp: Implemented simple
	  parameters completion.

2007-07-19  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Compiler/GNUCompiler.cs: Send -fPIC to the compiler if the compile
	  target is a shared library (Is this really needed?).

2007-07-19  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Compiler/GNUCompiler.cs: Fixed a bug in dependency tracking.

2007-07-18  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/EditPackagesDialog.cs, Project/ProjectPackageCollection.cs,
	  Project/CProject.cs, gtk-gui/CBinding.EditPackagesDialog.cs,
	  gtk-gui/gui.stetic, CBinding.addin.xml,
	  ProjectPad/ProjectPackagesFolderNodeBuilder.cs: Fixed several bugs.
	* Makefile.am, ProjectPad/ProjectPackageNodeBuilder.cs,
	  icons/Icons.16x16.ProjectReference, CBinding.mdp: Project packages
	  have a different icon.

2007-07-17  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/EditPackagesDialog.cs, gtk-gui/CBinding.EditPackagesDialog.cs,
	  gtk-gui/gui.stetic: Got the edit packages dialog to work with
	  adding packages from projects in the combine (though it's a bit
	  buggy)

2007-07-15  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/EditPackagesDialog.cs, Project/ProjectPackage.cs,
	  Project/CProjectServiceExtension.cs, Project/CProject.cs,
	  Compiler/CCompiler.cs,
	  ProjectPad/ProjectPackagesFolderNodeBuilder.cs,
	  ProjectPad/ProjectPackageNodeBuilder.cs: Projects can now depend on
	  other projects in the solution (currently only projects that
	  compile into a static library).

2007-07-14  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Compiler/GNUCompiler.cs: Implemented dependency tracking. Dependency
	  tracking is treated as a side effect of compiling.

2007-07-14  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/CTextEditorExtension.cs, CBinding.addin.xml, CBinding.mdp,
	  Makefile.am: Implemented a better formatting strategy (using a text
	  editor extension). 

2007-07-13  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Gui/CTextEditorExtension.cs, CBinding.addin.xml, CBinding.mdp,
	  CFormattingStrategy.cs, Makefile.am: Implemented a very simple
	  FormattingStrategy.
	* Project/CProject.cs: Changed the project type from 'C/C++' to
	  'Native'.

2007-07-13  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* Navigation/StructureNodeBuilder.cs,
	  Navigation/ProjectNodeBuilderExtension.cs,
	  Navigation/MemberNodeBuilder.cs, Navigation/Function.cs,
	  Navigation/Enumeration.cs, Navigation/GlobalsNodeBuilder.cs,
	  Navigation/VariableNodeBuilder.cs,
	  Navigation/EnumerationNodeBuilder.cs, Navigation/Member.cs,
	  Navigation/MacroDefinitionsNodeBuilder.cs,
	  Navigation/Enumerator.cs, Navigation/ClassNodeBuilder.cs,
	  Navigation/Variable.cs, Navigation/Union.cs,
	  Navigation/Namespace.cs, Navigation/Typedef.cs,
	  Navigation/Structure.cs, Navigation/Macro.cs,
	  Navigation/LanguageItem.cs, Navigation/FunctionNodeBuilder.cs,
	  Navigation/UnionNodeBuilder.cs, Navigation/Class.cs,
	  Navigation/NamespaceNodeBuilder.cs, Makefile.am, CBinding.mdp,
	  Parser/TagDatabaseManager.cs, Parser/Tag.cs,
	  Parser/ProjectInformation.cs, Parser/ProjectInformationManager.cs:
	  Seperated the navigation stuff from the parsing stuff.

2007-07-13  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* ProjectPad/ProjectPackageNodeBuilder.cs: Implemented dragging and
	  dropping of packages.

2007-07-12  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Project/CProjectConfiguration.cs: Fixed a bug which was causing the
	  app to go into an infinite loop.

2007-07-12  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Project/CProjectServiceExtension.cs: Removed the need to invoke bash
	  when removing object code files.
	* Compiler/GNUCompiler.cs: Small fixes.

2007-07-12  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Project/CProjectConfiguration.cs, Project/CProject.cs,
	  Compiler/GNUCompiler.cs: Inplemented support for precompiled header
	  files in gcc and g++.
	* CBinding.addin.xml: Fixed something I had broken.

2007-07-10  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/ProjectNodeBuilderExtension.cs,
	  Navigation/ClassPadEventArgs.cs, Project/CProject.cs, Makefile.am,
	  CBinding.addin.xml, icons/update,
	  ProjectPad/ProjectPackagesFolderNodeBuilder.cs, CBinding.mdp: The
	  class pad tree is now built in a seperate thread so it does not
	  block the UI while it is being built.

2007-07-07  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/GlobalsNodeBuilder.cs: Fixes class pad bug when there are
	  multiple C projects open.

2007-07-06  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/StructureNodeBuilder.cs, Navigation/ClassNodeBuilder.cs:
	  The "Show Public Api Only" class pad option is now considered.

2007-07-06  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/ProjectNodeBuilderExtension.cs,
	  Navigation/TagDatabaseManager.cs, Navigation/GlobalsNodeBuilder.cs:
	  Undid the work I had started on getting the tree built in the
	  background because I have to think more about how I'm going to
	  implement that.

2007-07-05  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/ProjectNodeBuilderExtension.cs,
	  Navigation/LanguageItemEventArgs.cs,
	  Navigation/TagDatabaseManager.cs,
	  Navigation/ProjectNavigationInformation.cs,
	  Navigation/GlobalsNodeBuilder.cs,
	  Navigation/LanguageItemCommandHandler.cs,
	  Project/ProjectPackageEventArgs.cs, Makefile.am, CBinding.mdp:
	  Started work on making the class pad tree get created in the
	  background in a seperate thread.

2007-07-03  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/TypedefNodeBuilder.cs, Navigation/StructureNodeBuilder.cs,
	  Navigation/Function.cs, Navigation/Enumeration.cs,
	  Navigation/TagDatabaseManager.cs,
	  Navigation/ProjectNavigationInformation.cs,
	  Navigation/GlobalsNodeBuilder.cs, Navigation/Member.cs,
	  Navigation/Tag.cs, Navigation/ClassNodeBuilder.cs,
	  Navigation/Union.cs, Navigation/Structure.cs,
	  Navigation/Typedef.cs, Navigation/FunctionNodeBuilder.cs,
	  Navigation/LanguageItem.cs, Navigation/Class.cs,
	  Navigation/UnionNodeBuilder.cs, Navigation/NamespaceNodeBuilder.cs,
	  gtk-gui/gui.stetic, Makefile.am, CBinding.addin.xml,
	  icons/Icons.16x16.ProtectedUnion, icons/Icons.16x16.PrivateUnion,
	  icons/Icons.16x16.Union, CBinding.mdp: Added support for typedefs
	  and unions in the class pad.

2007-07-02  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/Tag.cs, Navigation/StructureNodeBuilder.cs,
	  Navigation/Enumerator.cs, Navigation/ClassNodeBuilder.cs,
	  Navigation/Enumeration.cs, Navigation/TagDatabaseManager.cs,
	  Navigation/ProjectNavigationInformation.cs,
	  Navigation/EnumeratorNodeBuilder.cs,
	  Navigation/GlobalsNodeBuilder.cs, Navigation/LanguageItem.cs,
	  Navigation/EnumerationNodeBuilder.cs,
	  Navigation/NamespaceNodeBuilder.cs, Makefile.am,
	  CBinding.addin.xml, CBinding.mdp: Added support for enumerations
	  and their respective enumerators in the class pad.
	* Navigation/LanguageItemCommandHandler.cs: Small change which fixes a
	  bug when double clicking a macro definition.

2007-07-02  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* CBinding.addin.xml: Fixed a typo.

2007-07-02  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/Tag.cs, Navigation/MacroNodeBuilder.cs,
	  Navigation/ProjectNodeBuilderExtension.cs,
	  Navigation/TagDatabaseManager.cs,
	  Navigation/ProjectNavigationInformation.cs,
	  Navigation/GlobalsNodeBuilder.cs, Navigation/Macro.cs,
	  Navigation/MacroDefinitionsNodeBuilder.cs, Makefile.am,
	  CBinding.addin.xml, CBinding.mdp: Added support for macro
	  definitions to appear in the class pad. They will appear in a
	  special node called "Macro Definitions".

2007-07-02  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/Tag.cs, Navigation/Variable.cs,
	  Navigation/TagDatabaseManager.cs,
	  Navigation/ProjectNavigationInformation.cs,
	  Navigation/GlobalsNodeBuilder.cs,
	  Navigation/VariableNodeBuilder.cs, Makefile.am, CBinding.addin.xml,
	  CBinding.mdp: Added support for global variables to be added to the
	  class pad. Also fixed options sent to ctags so macro difinitions
	  can now be easily handled.

2007-07-01  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/Tag.cs, Navigation/StructureNodeBuilder.cs,
	  Navigation/ClassNodeBuilder.cs, Navigation/MemberNodeBuilder.cs,
	  Navigation/TagDatabaseManager.cs,
	  Navigation/ProjectNavigationInformation.cs, Navigation/Member.cs,
	  Makefile.am, CBinding.addin.xml, CBinding.mdp: Added support for
	  members.
	* Navigation/Function.cs, Navigation/Namespace.cs, Navigation/Class.cs:
	  Removed some unused usings.

2007-07-01  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/Tag.cs, Navigation/Function.cs,
	  Navigation/TagDatabaseManager.cs, Navigation/LanguageItem.cs:
	  Separated the parse structure from the parser.

2007-07-01  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/Tag.cs, Navigation/LanguageItem.cs: Optimized memory usage
	  by parsing fields as the tags a read in.

2007-06-30  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/StructureNodeBuilder.cs,
	  Navigation/ProjectNodeBuilderExtension.cs,
	  Navigation/ClassNodeBuilder.cs, Navigation/Function.cs,
	  Navigation/TagDatabaseManager.cs,
	  Navigation/ProjectNavigationInformation.cs,
	  Navigation/Namespace.cs, Navigation/LanguageItemCommandHandler.cs,
	  Navigation/Structure.cs, Navigation/GlobalsNodeBuilder.cs,
	  Navigation/LanguageItem.cs, Navigation/FunctionNodeBuilder.cs,
	  Navigation/Class.cs, Navigation/NamespaceNodeBuilder.cs,
	  Makefile.am, CBinding.addin.xml, CBinding.mdp: Added structures to
	  the class pad and refactored the code a bit more.

2007-06-29  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/Tag.cs, Navigation/TagDatabaseManager.cs,
	  Navigation/Namespace.cs,
	  Navigation/ProjectNavigationInformation.cs,
	  Navigation/ProjectNodeBuilderExtension.cs,
	  Navigation/GlobalsNodeBuilder.cs, Navigation/ClassNodeBuilder.cs,
	  Navigation/LanguageItem.cs, Navigation/Function.cs,
	  Navigation/Class.cs, Navigation/NamespaceNodeBuilder.cs,
	  gtk-gui/gui.stetic, Makefile.am, CBinding.addin.xml, CBinding.mdp:
	  Added support for classes in the class pad and refactored the code
	  a bit.

2007-06-27  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/Tag.cs: Created a new enum for access modifiers.
	* Navigation/TagDatabaseManager.cs: ctags now also creates tags for
	  function prototypes. (needed to identify a function's namespace if
	  any).
	* Navigation/Namespace.cs: Changed the separator between parent/child
	  namespaces in a namespace's FullName to :: from .
	* Navigation/ProjectNavigationInformation.cs: Added functions field.
	* Navigation/ProjectNodeBuilderExtension.cs: Added the special
	  "Globals" node.
	* Navigation/GlobalsNodeBuilder.cs, Navigation/FunctionNodeBuilder.cs,
	  Navigation/Function.cs: Added support for functions in the Class
	  Pad, global functions that are not in any namespace are placed in a
	  special "Globals" node.
	* Navigation/NamespaceNodeBuilder.cs: This namespace's global functions
	  are now added.
	* Makefile.am, ProjectPad/ProjectPackagesFolderNodeBuilder.cs,
	  ProjectPad/ProjectPackageNodeBuilder.cs,
	  ProjectPad/ProjectReferencesExtension.cs,
	  ProjectPad/ProjectNodeExtension.cs, CBinding.mdp: Moved to folder
	  and namespace ProjectPad
	* CBinding.addin.xml: Added support for functions in the Class Pad,
	  global functions are placed in a special "Globals" node.

2007-06-26  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* gtk-gui/CBinding.EditPackagesDialog.cs,
	  gtk-gui/CBinding.CodeGenerationPanel.cs, gtk-gui/gui.stetic:
	  Improved spacing a bit.

2007-06-26  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/Tag.cs: Fixed up a bit.
	* Navigation/TagDatabaseManager.cs: The entire tag database for each
	  project is managed here.
	* Navigation/Namespace.cs, Navigation/ProjectNodeBuilderExtension.cs,
	  Navigation/NamespaceNodeBuilder.cs, CBinding.addin.xml: Namespaces
	  now appear in the Class Pad.
	* Navigation/ProjectNavigationInformation.cs,
	  Navigation/ProjectNavigationInformationManager.cs: Information on a
	  project's navigation information is kept and managed here.
	* Makefile.am, CBinding.mdp: Added new files.

2007-06-25  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Navigation/Tag.cs, Navigation/Namespace.cs,
	  Navigation/ProjectNodeBuilderExtension.cs, CBinding.addin.xml:
	  Started work on code navigation.

2007-06-25  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Project/CProjectServiceExtension.cs, Project/CProject.cs,
	  Makefile.am, CBinding.addin.xml, CBinding.mdp, Completion.cs: Got
	  rid of anything related to CTagsCompletion.

2007-06-24  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Project/CProject.cs: Changed to accomodate the new CTagsCompletion
	  design
	* Completion.cs: This is where CBinding will specify more specialized
	  behavior for the CTagsCompletion AddIn

2007-06-22  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Project/CProject.cs: Made a very simple implementation of
	  AddTagsToProvider which is the method where the logic about which
	  tags shoud be added to the completion list window takes place.

2007-06-21  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Gui/EditPackagesDialog.cs: Added a package icon to both packages
	  columns.
	* Project/CProjectBinding.cs, Project/CProject.cs: Implemented
	  CreateSingleFileProject

2007-06-20  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Gui/OutputOptionsPanel.cs, Project/CProject.cs,
	  gtk-gui/CBinding.EditPackagesDialog.cs,
	  gtk-gui/CBinding.CodeGenerationPanel.cs, Compiler/GNUCompiler.cs:
	  Fixed a few bugs.

2007-06-19  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Project/CProject.cs: Fixed bug where only projects that had a binary
	  target got correctly cleaned.

2007-06-19  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Gui/ProjectPackagesFolderNodeBuilder.cs: Changed the package
	  added/removed handlers to just call UpdateAll from the builder.

2007-06-19  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Gui/ProjectPackagesFolderNodeBuilder.cs: Changed the node builder so
	  that it registeres even handlers correctly
	* Project/ProjectPackageCollection.cs, Project/CProject.cs: Removed the
	  SetProject method and replaced it with and internal get/set
	  property.

2007-06-19  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Project/CProject.cs: CProject does want it's tags written.

2007-06-18  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Project/CProjectServiceExtension.cs, Project/CProject.cs: Changed to
	  accomodate the new CTagsCompletion design.

2007-06-17  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Compiler/GNUCompiler.cs: Added debug information creation for the
	  Debug configuration and fixed bug where the target output was not
	  buing built when it should be.

2007-06-17  Marcos David Marin Amador <MarcosMarin@gmail.com> 

	* Gui/CodeGenerationPanel.cs, Project/CCompilationParameters.cs,
	  Project/CProject.cs, Compiler/GNUCompiler.cs: The extra compiler
	  and extra linker options is now shown is an TextView in the code
	  generation panel and I added define symbols support.