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

ChangeLog « BooBinding « extras - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb4669b4aa91289ff7616ea38ae22f43d506f834 (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
2009-12-01  Lluis Sanchez Gual  <lluis@novell.com>

	* BooBinding.sln:
	* BooBinding.booproj: Update.

	* BooBinding.addin.xml: Move the boo options panel to the
	  build section.

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

	* Gui/ShellTextView.boo:
	* BooLanguageBinding.boo:
	* BooBindingCompilerServices.boo: Introduced the
	  ConfigurationSelector class to all methods that previously
	  took a configuration name as string. This eliminates the
	  ambiguity between solution configuration names and project
	  configuration names.

2009-10-30  Lluis Sanchez Gual  <lluis@novell.com>

	* configure:
	* BooBinding.addin.xml: Bump MD version.

2009-10-07  Lluis Sanchez Gual  <lluis@novell.com>

	* configure:
	* BooBinding.addin.xml: Bump MD version.

2009-09-28  Lluis Sanchez Gual  <lluis@novell.com>

	* Gui/ShellTextView.boo: Use the new DotNetAssemblyProject
	  class instead of DotNetProject, which is now abstract.

2009-08-26  Lluis Sanchez Gual  <lluis@novell.com>

	* configure:
	* BooBinding.booproj: We now depend on gtk# 2.12.8, Mono 2.4,
	  and Mono.Addins 0.4.

2009-08-25  Lluis Sanchez Gual  <lluis@novell.com>

	* BooBinding.sln:
	* BooBinding.booproj: Don't require specific versions.

2009-06-23  Lluis Sanchez Gual  <lluis@novell.com>

	* Gui/ShellTextView.boo: Track api changes.

2009-06-22  Lluis Sanchez Gual  <lluis@novell.com>

	* BooBinding.addin.xml: Remove invalid icon.

	* BooBindingCompilerServices.boo: Fix bug 324223 - BOO: When
	  rebuilding external classes, they are not always reloaded
	  correctly. Patch by Manuel de la Pena.

	* BooLanguageBinding.boo: Use standard icon for boo projects,
	  since boo-project-icon doesn't exist.

2009-06-17  Lluis Sanchez Gual  <lluis@novell.com>

	* BooBinding.sln:
	* BooBinding.addin.xml:
	* BooLanguageBinding.boo: Remove obsolete extension.

2009-05-04  Lluis Sanchez Gual  <lluis@novell.com>

	* BooLanguageBinding.boo: Track api changes.

2009-04-20  Michael Hutchinson  <mhutchinson@novell.com>

	* BooLanguageBinding.boo: Track comment tag API.

2009-04-15  Lluis Sanchez Gual  <lluis@novell.com>

	* configure:
	* BooBinding.addin.xml: Bump MD version.

2009-03-20  Michael Hutchinson  <mhutchinson@novell.com>

	* templates/BooGtkSharpProject.xpt.xml: Don't require specific
	  GTK# versions.

2009-02-26  Michael Hutchinson  <mhutchinson@novell.com>

	* BooBinding.sln: Fix translation projects' GUIDs.

2009-02-25  Michael Hutchinson  <mhutchinson@novell.com>

	* BooBinding.sln: Set policies. Remove unused name attribute.

2009-02-25  Lluis Sanchez Gual  <lluis@novell.com>

	* BooLanguageBinding.boo: Track api changes.

2009-02-23  Lluis Sanchez Gual  <lluis@novell.com>

	* BooBinding.booproj: Updated references.

2009-02-18  Cedric Vivier  <cedricv@neonux.com>

	* BooBindingCompilerServices.boo: Fix build with boo >= 0.8.2.
	Workaround for BOO-1167 (wrt to ProjectItemCollection constraints).

2009-02-11  Lluis Sanchez Gual  <lluis@novell.com>

	* BooLanguageBinding.boo:
	* BooBindingCompilerServices.boo: Track API changes. Use the
	  new ProjectItem collection.

2009/02/06  Lluis Sanchez Gual  <lluis@novell.com>

 * BooBinding.sln: Flush.

2009/02/06  Lluis Sanchez Gual  <lluis@novell.com>

 * BooBinding.mds:
 * BooBinding.sln:
 * BooBinding.mdp:
 * BooBinding.booproj: Migrated to MSBuild file format.

2009/02/03  Lluis Sanchez Gual  <lluis@novell.com>

 * configure:
 * BooBinding.addin.xml: Bump MD version.

2009-01-26  Michael Hutchinson  <mhutchinson@novell.com>

	* BooBinding.mdp: Flush project format changes.

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

	* BooBinding.mdp: Don't require a specific version of Mono.Addins.

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

	* BooBinding.addin.xml: Remove boo ambience. It's not yet implemented.

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

	* configure:
	* BooBinding.addin.xml: Bump MD version.

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

	* Gui/OptionPanels/CodeCompilationPanel.boo: Show widgets, or the 
	  panel's invisible. Don't allow user to modify output type if 
	  project's library based, so the user can't mess up ASP.NET and 
	  Moonlight projects.

2008-10-10  Michael Hutchinson  <mhutchinson@novell.com>

	* BooBinding.addin.xml: Disable text editor extension since class is
	commented out.

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

	* Gui/BooShellModel.boo: Track removal of service APIs.

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

	* BooBindingCompilerServices.boo: Track API.

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

	* BooBinding.mdp: Updated projects.

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

	* BooAmbience.boo, Gui/ShellTextView.boo,
	  Gui/BooTextEditorExtension.boo, BooLanguageBinding.boo,
	  Parser/ExpressionTypeVisitor.boo, Parser/Resolver.boo,
	  Parser/ReturnType.boo, Parser/ExpressionFinder.boo,
	  Parser/BooParser.boo, Parser/TypeMembers.boo, Parser/Tree.boo,
	  Parser/VariableLookupVisitor.boo, Parser/Visitor.boo: Updated boo
	  binding.

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

	* Gui/OptionPanels/GeneralBooShellPanel.boo,
	  Gui/OptionPanels/GeneralShellPanel.boo: Rename "Properties"
	  property to "ShellProperties", as it conflicts with new property on
	  GLib.Object in GTK# 2.12.

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

	* Project/BooCompilerParameters.boo: Moved serialization engine to
	  MonoDevelop.Core. Use new syntax for specifying attribute scope.

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

	* configure, BooBinding.addin.xml: Bump MD version.

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

	* po/Makefile: Remove bash-isms.

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

	* BooBinding.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> 

	* BooBindingCompilerServices.boo, BooLanguageBinding.boo: 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/ShellTextView.boo, Gui/OptionPanels/CodeCompilationPanel.boo,
	  BooBinding.addin.xml, BooBindingCompilerServices.boo,
	  Parser/Resolver.boo, Parser/ReturnType.boo, Parser/BooParser.boo,
	  BooLanguageBinding.boo, BooBinding.mds: New project model changes.
	* BooBinding.mdp: Added new error regex.

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

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

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

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

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

	* Gui/OptionPanels/GeneralShellPanel.boo, BooBinding.mdp,
	  BooBinding.addin.xml: Added icon to options panel. Removed unused
	  file.

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

	* Gui/OptionPanels/GeneralShellPanel.boo :
	* BooBinding.addin.xml: Track optional panel API changes. 

2008-02-24  Enver ALTIN  <ealtin@gmail.com>

	* po/tr.po: Updated Turkish translation.

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

	* Gui/BooTextEditorExtension.boo: Fix for bug #361267 - Boo Code Completion
	  appends instead of replaces what you've typed.

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

	* Gui/BooShellModel.boo: Fix path to BooShell.dll.

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

	

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

	* BooLanguageBinding.boo: Added trick to support imports defined outside of
	  a namespace declaration. Fixes bug #358368.

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

	

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

	* COPYING, Makefile: Added COPYING file with GPL2 license.

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

	* po/nl.po: Updated translation by André Offringa.
	* po/es.po: Updated translation by Andrés G. Aragoneses.
	* po/de.po: Updated translation by anonymous GHOP student.

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

	* configure, BooBinding.addin.xml: Update MD version.

2008-01-24  David Makovský (Yakeen) <yakeen@sannyas-on.net>

        * cs.po: Updated translation.

2008-01-23  Atsushi Enomoto  <atsushi@ximian.com>

	* po/ja.po : made it 100% up-to-date.

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

	* po/messages.po: Add to svn so that translators don't have to build MD.
	* po/hu.po: Added new translation.
	* po/po.mdse:
	* po/Makefile: Updated. Fix update-po target and add statistics target.

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

	* po/gl.po, po/cs.po, po/pt_BR.po, po/fr.po, po/es.po, po/sl_SI.po,
	  po/nl.po, po/pl.po, po/it.po, po/pt.po, po/ca.po, po/da.po, po/tr.po,
	  po/ru.po, po/po.mdse, po/de.po, po/sv.po, po/ja.po, po/zh_TW.po,
	  po/id.po, po/zh_CN.po: Updated translations.

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

	* templates/BooGtkSharpProject.xpt.xml, templates/BooLibraryProject.xpt.xml,
	  templates/BooGtkSharpWindow.xft.xml, templates/EmptyBooFile.xft.xml,
	  templates/EmptyBooProject.xpt.xml: Make template categories
	  translatable.

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

	* Gui/ShellTextView.boo: Use PropertyService.ConfigPath instead of
	  hardcoding config location.
	* templates/BooLibraryProject.xpt.xml: Use CodeDOM to generate class file.
	  Fixes "Bug 350626 - Boo templates syntactically incorrect".

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

	* templates/BooGtkSharpWindow.xft.xml: Use ${EscapedIdentifier} instead of
	  ${Name} so that classes/files can be named as language keywords.

2007-12-29 David Makovský (Yakeen) <yakeen@sannyas-on.net>

        * po/cs.po: updated translation

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

	* Gui/ShellTextView.boo: Track api changes.
	* BooBinding.make, BooBinding.mdp, configure: Add missing dependencies.

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

	* configure: Updated add-in versions.

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

	* BooBinding.make, BooBinding.mdp: Synch the makefile with the mdp.

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

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

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

	* configure, BooBinding.make, BooBinding.mdp: Remove cecil dependency. Not
	  needed.

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

	* configure: Use bash to run the config scripts.

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

	* po/Makefile: Fix installation of .mo files.

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

	* configure, BooBinding.make, BooBinding.addin.xml, BooBinding.mdp,
	  BooBinding.mds, Makefile.include, rules.make, Makefile.am,
	  monodevelop-boo.pc.in, Makefile, po, po/gl.po, po/cs.po, po/pt_BR.po,
	  po/fr.po, po/es.po, po/sl_SI.po, po/pl.po, po/it.po, po/pt.po, po/ca.po,
	  po/da.po, po/tr.po, po/ru.po, po/sv.po, po/de.po, po/po.mdse, po/ja.po,
	  po/zh_TW.po, po/Makefile, po/zh_CN.po: Directory reorganization.

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

	* Gui/BooShellModel.boo: Cleanly return from the main thread if an exception
	  is thrown.

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

	* Parser/BooParser.boo: Track LoggingService API changes.

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

	* BooBinding.addin.xml: Bump MD version.

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

	* BooShell/BooShell.boo: Don't try to abort the shell thread if it is
	  already stopped.
	* BooShell/BooShell.mdp: Update.

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

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

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

	* templates/BooGtkSharpWindow.xft.xml, templates/EmptyBooFile.xft.xml: Use
	  tango file icons. Removed obsolete icons.

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

	* BooBinding.mdp, BooBinding.mds, templates/BooGtkSharpProject.xpt.xml,
	  templates/BooLibraryProject.xpt.xml, templates/EmptyBooProject.xpt.xml,
	  Makefile.am, icons/Boo.Project.Form, icons/Boo.Project.EmptyProject,
	  icons/boo-icon-32.png, icons/Boo.ProjectIcon: Updated project icons. Use
	  the base project icon with an overlay to show the type.

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

	* Gui/BooTextEditorExtension.boo: When completing 'as', don't try to resolve
	  empty expressions. Fixes bug #324224.

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

	* Parser/Resolver.boo, Parser/Visitor.boo: Track API changes.

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

	* BooBinding.addin.xml: Bump MD version.

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

	* BooBinding.addin.xml: Added an Other section in the MD property dialog and
	  moved some options there to avoid too many branches.

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

	* BooAmbience.boo: Track api changes.
	* BooBinding.mdp, BooShell/BooShell.mdp: Updated.

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

	* Gui/BooTextEditorExtension.boo: Track api changes.
	* BooShell/BooShell.boo: Don't propagate abort exception to the gtk thread.

2007-09-04  Michael Hutchinson <MHutchinson@novell.com>

	* BooShell/BooShell.boo: Catch ThreadAbortException when killing 
	  remote process.

2007-09-03  Michael Hutchinson <MHutchinson@novell.com>

	* Properties/ShellProperties.boo: better workaround for Boo compiler 
	  bug.

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

	* Gui/ShellTextView.boo, Properties/ShellProperties.boo, 
	  Gui/OptionPanels/CodeCompilationPanel.boo: Track Properties API 
	  changes. May have unavoidably introduced some instability in working 
	  around Boo compiler bug http://jira.codehaus.org/browse/BOO-856 
	  (incorrect resolution of overloaded generic methods).
	  
	* Parser/ExpressionTypeVisitor.boo: Track Boo AST library API change. 

2007-08-31  Michael Hutchinson <m.j.hutchinson@gmail.com>

	* Gui/ShellTextView.boo, Properties/ShellProperties.boo: Track API 
	  changes.

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

	* BooBinding.addin.xml, BooBinding.mdp, BooShell/Makefile.am, Makefile.am:
	  Reorganized the extension point hierarchy. Embedded all add-in manifests
	  as resources.

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

	* BooBinding.addin.xml, BooShellPadContent.boo: Updated pad icons.

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

	* Gui/ShellTextView.boo: Track api changes.

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

	* templates/BooLibraryProject.xpt.xml: Get template icon from
	  resources.

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

	* BooBinding.mdp, Makefile.am: Make sure the correct Mono.Cecil dll is
	  referenced.

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

	* BooShellPadContent.boo: Added null check.

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

	* BooBinding.mdp, BooShell/BooShell.mdp, BooShell/Makefile.am,
	  Makefile.am: Added missing references.

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

	* BooBinding.mdp: Copy the .addins.xml file to the output dir.

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

	* BooBinding.mdp, BooShell/BooShell.mdp, BooShell/Makefile.am,
	  Makefile.am: Fix the build, again.

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

	* BooBinding.mdp, BooShell/BooShell.mdp, BooShell/Makefile.am,
	  Makefile.am: Fix build.

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

	* BooBinding.mdp, BooShell/BooShell.mdp, BooShell/Makefile.am,
	  Makefile.am: Reference shared assemblies from the correct location.
	* BooShellPadContent.boo: Fix the build.

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

	* Gui/OptionPanels/GeneralBooShellPanel.boo,
	  Gui/OptionPanels/GeneralShellPanel.boo,
	  Gui/OptionPanels/CodeCompilationPanel.boo, BooBinding.addin.xml,
	  BooBinding.mdp, BooShellPadContent.boo, BooShell/BooShell.mdp,
	  BooShell/Makefile.am, Makefile.am: Migration to Mono.Addins.

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

	* BooBinding.mdp, BooShell/BooShell.mdp: Don't copy referenced
	  assemblies.

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

	* FormattingStrategy/BooFormattingStrategy.boo: Track api changes.

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

	* BooBinding.addin.xml: Change add-in versions to 0.13.
	* BooShell/Makefile.am: Flush.

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

	* BooBinding.mdp, BooShell/BooShell.mdp, BooShell/Makefile.am,
	  Makefile.am: Synchronized the MD project and the Makefile
	* BooBinding.mds: Updated.

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

	* Gui/BooTextEditorExtension.boo: Handle code completion only for boo
	  files.

2007-02-09  Peter Johanson  <latexer@gentoo.org>

	* BooBinding.addin.xml:
	* Gui/BooTextEditorExtension.boo:
	* Makefile.am:

	Add new BooTextEditorExtension to start supporting minimal completion
	again.

	* Parser/BooParser.boo:
	* Parser/Resolver.boo:

	Beginnings of an implementation of IsAsResolve, needs finishing at
	some point.

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

	* Gui/ShellTextView.boo: Temporarily disabled code completion in the
	  shell. Some changes are needed to use the new api.
	* Parser/TypeMembers.boo, Parser/Visitor.boo: Track api changes.

2007-01-02  Mart Roosmaa <roosmaa@gmail.com>

	* Parser/Resolver.boo: Adopt to changes made in rev 62253.

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

	* Parser/Resolver.boo, Parser/ReturnType.boo, Parser/BooParser.boo,
	  Parser/TypeMembers.boo, Parser/Tree.boo, Parser/Visitor.boo:
	  Renamed Abstract* classes to Default*. Removed some unnecessary
	  Default* subclasses.

2006-11-11 David Makovský (Yakeen) <yakeen@sannyas-on.net>

        * Gui/OptionPanels/CodeCompilationPanel.boo: fix for bug 79199

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

	* Gui/ShellTextView.boo: Track API changes.

2006-09-19 Jacob Ilsø Christensen <jacobilsoe@gmail.com>

	* .: Added svn:ignore for BooBinding.pidb
	* BooShell: Added svn:ignore for BooShell.pidb

2006-09-12 Jacob Ilsø Christensen <jacobilsoe@gmail.com>

	* BooAmbience.boo: Track changes in Ambience.

2006-08-10 Lluis Sanchez Gual  <lluis@novell.com> 

	* Gui/ShellTextView.boo: Provide the ambience to use for code
	  completion.

2006-07-11 Philip Turnbull <philip.turnbull@gmail.com>

	* BooBinding/BooAmbience.cs:
	Track API changes in Ambience.

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

	* Parser/BooParser.boo:
	* BooBindingCompilerServices.boo: Track changes in ProjectReference.

2006-07-05 Matej Urbas <matej.urbas@gmail.com>

	* Parser/Visitor.boo: Updated to use ReturnType as BaseTypes in IClass
	  instances.

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

	* BooBinding.addin.xml: Updated versions.

2006-06-15 Lluis Sanchez Gual  <lluis@novell.com>

	* BooBinding.addin.xml: Use the DataType element instead fof Class
	  to declare serializable types.

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

	* Makefile.am:
	* BooBinding.mdp: Removed SharpRefactory reference.

2006-05-04 Lluis Sanchez Gual  <lluis@novell.com>

	* BooBinding.addin.xml: Updated versions.
	
	* BooShell/BooShell.mdp:
	* BooBinding.mdp: Updated.

2006-04-21 Lluis Sanchez Gual <lluis@novell.com> 

	* BooLanguageBinding.cs: Implement GetSupportedClrVersions.

2006-04-07  David Makovský (Yakeen) <yakeen@sannyas-on.net>

	* BooBinding.addin.xml: renamed attribute in FileFilter Extension

2006-04-03 Lluis Sanchez Gual  <lluis@novell.com>

	* BooBinding.addin.xml: Add boo assembly dependency.

2006-03-30 Lluis Sanchez Gual <lluis@novell.com> 

	* BooBinding.addin.xml: Updated references.

2006-03-24 Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* BooShell/: Added Makefile and Makefile.in to svn:ignore.

2006-03-24 Lluis Sanchez Gual  <lluis@novell.com>   

	* BooShell/BooShell.mdp:
	* BooBinding.mdp:
	* BooBinding.mds: Updated.
	* Makefile.am: Use an unified format. Patch by Matze Braun.
	* BooBinding.addin.xml: Updated add-in versions.

2006-02-24 Lluis Sanchez Gual  <lluis@novell.com>   

	* BooBinding/BooShell/BooShell.mdp:
	* BooBinding/BooBinding.mdp: Updated references.

2005-02-07  Peter Johanson  <latexer@gentoo.org>

	* BooBinding.addin.xml: Update imports to get BooShell.dll to be
	bundled as well.

2006-01-30 Lluis Sanchez Gual  <lluis@novell.com>   

	* Parser/BooParser.boo: 
	* Parser/Resolver.boo: Track changes in parser api.

2006-01-11 Lluis Sanchez Gual  <lluis@novell.com>   

	* Parser/ExpressionFinder.boo:
	* Parser/BooParser.boo: Track api changes.

2006-01-10 Lluis Sanchez Gual  <lluis@novell.com>   

	* BooBinding.mdp: Updated references.
	* Parser/BooParser.boo: Track api changes.

2005-12-19  Peter Johanson  <latexer@gentoo.org>

	* Parser/Resolver.boo: Add overload for doing a deep search for a
	type.
	* Parser/ExpressionTypeVisitor.boo: Do deep searches for members, as
	we may have a member of a type not found in explicitly referenced
	assemblies.

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

	* Parser/BooParser.boo: Track changes in the api.
	* BooLanguageBinding.boo: Implemented the new methods in
	IDotNetLanguageBinding.
	* templates/*: Set the correct category, language and project type.

2005-11-25  Rodrigo B. de Oliveira <rodrigobamboo@gmail.com>

	* Gui/ShellTextView.boo: 'in' operator now requires a proper array argument
	* Parser/ExpressionTypeVisitor.boo: AsExpression -> TryCastExpression,
	TernaryExpression -> ConditionalExpression

2005-11-16  Peter Johanson  <latexer@gentoo.org>

	* Parser/Resolver.boo: Remove some unneeded code, and properly resolve
	'self' and 'super' when inside a static context.

2005-11-16  Rodrigo B. de Oliveira <rodrigobamboo@gmail.com>

	* Gui/ShellTextView.boo: fix EndIter error that caused prompt not to
	be displayed
	
2005-11-04  Lluis Sanchez Gual  <lluis@novell.com> 

	* Gui/ShellTextView.boo: Fix gtksourceview warning.

2005-11-01  Peter Johanson  <latexer@gentoo.org> 

	* BooShell/BooShell.boo: Actually handle exceptions thrown during
	excecution of user input, and toss back a sanitized string of the
	exception.

2005-10-30  Peter Johanson  <latexer@gentoo.org> 

	* FormattingStrategy/*:
	* BooBinding.addin.xml:
	* Makefile.am: Initial smart formatting support. Still *very* basic.

2005-10-11  Lluis Sanchez Gual  <lluis@novell.com> 

	* BooBinding.addin.xml: Fixed addin header information.
	Use "id" attribuet instead of "name" to identify addins.

2005-10-06  Lluis Sanchez Gual  <lluis@novell.com> 

	* BooBinding.addin.xml:
	* BooLanguageBinding.cs: Register serializable types in the addin
	configuration file.

2005-10-04  Lluis Sanchez Gual  <lluis@novell.com> 

	* BooBinding.addin.xml: Added addin dependencies.

2005-09-23  Peter Johanson  <latexer@gentoo.org> 

	* Gui/BooShellModel.boo: Wrap all access to remote process object in
	try/except to handle nasty remoting exception. Not really a fix.

2005-08-29  Peter Johanson  <latexer@gentoo.org> 

	* Parser/Visitor.boo: Fix line number off-by-one error.

2005-08-23  Peter Johanson  <latexer@gentoo.org> 

	* BooBindingCompilerServices.boo: Add support for compiling in
	embedded resources from projects.

2005-08-21  Peter Johanson  <latexer@gentoo.org> 

	* tempaltes/*: Fix icon references to use new resource naming
	convention.

2005-08-21  Peter Johanson  <latexer@gentoo.org> 

	* Makefile.am: Use new -embedres option in boo.
	* BooShell/BooShell.boo: Fix foreach over a CollectionBase.
	* Gui/OptionPanels/CodeCompilationPanel.boo: Fix required for boo's
	new method invocation changes.

2005-08-20  Peter Johanson  <latexer@gentoo.org> 

	* templates/BooGtkSharpProject.xpt.xml: Fix gtk-sharp references to
	match new assembly versions.

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

	* templates/*:
	* BooBinding.addin.xml: Properly reference resource icons and
	templates.
	* Makefile.am: Embed icon and templates as resources.

2005-08-15  Peter Johanson  <latexer@gentoo.org>

	* Gui/ShellTextvView: Fix file sharing violation that killed multiple
	MD instances when the boo shell was enabled.

2005-08-10  Peter Johanson  <latexer@gentoo.org>

	* Gui/ShellTextView.boo: Fix small problem with
	blank lines being accept, and causing errors in the interpreter.

2005-08-10  Peter Johanson  <latexer@gentoo.org>

	* Parser/ExpressionTypeVisitor.boo:
	* Parser/Resolver.boo:
	* Parser/ReturnType.boo:
	* Parser/ExpressionFinder.boo:
	* Parser/BooParser.boo:
	* Parser/VariableLookupVisitor.boo:
	* Parser/Visitor.boo: Add better error reporting via logging by type.

2005-08-09  Lluis Sanchez Gual  <lluis@novell.com>

	* Parser/ReturnType.boo:
	* Parser/ExpressionTypeVisitor.boo:
	* Parser/Resolver.boo:
	* Parser/BooParser.boo:
	* Gui/ShellTextView.boo: Use the new IParserContext API.

2005-07-20  Lluis Sanchez Gual  <lluis@novell.com>

	* Gui/OptionPanels/GeneralShellPanel.boo:
	* Gui/OptionPanels/GeneralBooShellPanel.boo:
	* Gui/OptionPanels/CodeCompilationPanel.boo:
	Removed unused namespace import.

2005-07-20  Peter Johanson  <latexer@gentoo.org>

	* Gui/IShellModel.boo:
	* Gui/ShellTextView.boo:
	* Gui/BooShellModel.boo:
	* Gui/OptionPanels/CodeCompilationPanel.boo:
	* Properties/ShellProperties.boo:
	* Parser/Resolver.boo:
	* Parser/BooParser.boo:
	* BooShellPadContent.boo:
	* BooShell/BooShell.boo: Lots of cleanup, and add initial support for
	code completion in the shell.
	* Makefile.am: Revert makefile change that snuck in.

2005-07-19  Peter Johanson  <latexer@gentoo.org>

	* templates/BooGtkSharpWindow.xft.xml: Fix small typo.

2005-07-19  Peter Johanson  <latexer@gentoo.org>

	* BooAmbience: Changes to consolidate code, and actually markup the
	items if IncludePangoMarkup is set.

2005-07-18  Peter Johanson  <latexer@gentoo.org>

	* BooBinding.addin.xml: Put the boo shell on the bottom by default.

2005-07-18  Peter Johanson  <latexer@gentoo.org>

	* Parser/Resolver.boo:
	* BooLanguageBinding.boo: Remove some extraneous ';' characters, and
	use the new 'char()' literal instead of the previous hack for getting
	a char.

2005-07-13  Lluis Sanchez Gual  <lluis@novell.com>

	* BooShellPadContent.boo: Make sure all shell controls are visible.

2005-07-11  Lluis Sanchez Gual  <lluis@novell.com>

	* Project/BooCompilerParameters.boo: Implement ICloneable.
	* BooLanguageBinding.boo: CreateCompilationParameters now returns an
	ICloneable.

2005-06-04  Peter Johanson <latexer@gentoo.org>

	* Gui/OptionPanels/CodeCompilationPanel.boo:
	* Project/BooCompilerParameters.boo: Remove compiler selection items,
	as they are unneeded now that we use Boo's API for compilation

2005-06-02  Peter Johanson <latexer@gentoo.org>

	* Parser/BooParser.boo: Re-apply change to include
	ProcessMethodBodies step in the visitor. Problems this change caused
	have been resolved elsewhere.
	* Parser/Visitor.boo: Use the region of the property if the region for
	the getter/setter is null (happens with [Getter()], etc AST
	attributes).

2005-05-31  Peter Johanson <latexer@gentoo.org>

	* BooBindingCompilerServices.boo: Make sure we
	only generate the assembly in the file, not
	loaded into memory.

2005-05-30  Peter Johanson <latexer@gentoo.org>

	* Parser/TypeMembers.boo: Cleanup, and add handling
	of get/set for properties properly.
	* Parser/Visitor.boo: Handling of get/set for properties,
	move to using FullName where appropriate for class members,
	and set enum return types to null.

2005-05-30  Peter Johanson <latexer@gentoo.org>

	* Parser/Visitor.boo: Only abort parsing on parser
	errors. We may have type binding errors that should be
	ignored, since we do the resolving of those ourselves.
	* Parser/TypeMembers.boo: Constructors should have a fully
	qualified name of 'ctor', not '#ctor'.
	* Parser/Resolver.boo: Fix problem with 'super' not always
	finding the super class.
	
2005-05-29  Peter Johanson <latexer@gentoo.org>

	* BooBindingCompilerServices.boo: Redo most of the
	compiler stuff to use the Boo API instead of calling
	out to booc in a seperate process. Is faster, and removes
	the gross regexes previously used to parse errors.

2005-05-27  Peter Johanson <latexer@gentoo.org>

	* Parser/*: Various cleanups of print statements,
	as well as various fixes to improve resolution of
	fields and local variables.

2005-05-24  Peter Johanson <latexer@gentoo.org>

	* Parser/BooParser.boo: One small fix to return
	a new CompilationUnit instead of null in case
	of a failed parse attempt.

2005-05-24  Peter Johanson <latexer@gentoo.org>

	* Parser/Visitor.boo: Cull out compiler
	generated fields, and note if errors occured
	before this visitor and return immediate if so.
	* Parser/BooParser.boo: Keep a cache of successful
	parser results, and return those for any files that
	error out due to syntax errors, etc.

2005-05-22  Peter Johanson <latexer@gentoo.org>

	* Parser/Resolver.boo: More cleanups,
	and make static/non-static member showing work
	properly.

2005-05-22  Peter Johanson <latexer@gentoo.org>

	* Parser/BooParser.boo:
	* Parser/Resolver.boo: Various small cleanups
	* Parser/Visitor.boo: Some small cleanups, and parse
	events now as well.

2005-05-21  Peter Johanson <latexer@gentoo.org>

	* BooShellPadContent.cs: Make the pad placement
	easier to find when first viewing the shell.

2005-05-21  Peter Johanson <latexer@gentoo.org>

	* Parser/BooParser.boo: Move filename assignment to
	after parsing is complete. Makes the class browser (mostly)
	work now.

2005-05-19  Peter Johanson <latexer@gentoo.org>

	* BooBinding.mp{p,s}:
	* BooShell/BooShell.mp{p,s}:
	Add project files for compiling the BooBinding using MD.

2005-05-10  Peter Johanson <latexer@gentoo.org>

	* Gui/ShellTextView.boo: Use a normal StreamWriter
	instead of the Boo.IO stuff, since Boo.IO has moved
	in current Boo SVN to Boo.Lang.IO

2005-05-04  Peter Johanson <latexer@gentoo.org>

	* BooShell/BooShell.boo: Make sure we 
	dispose of the worker thread.

2005-05-04  Peter Johanson <latexer@gentoo.org>

	* Gui/BooShellModel.boo: Don't join the aborted
	thread. This isn't needed, and hangs mono-1.1.7 and
	newer.

2005-05-03  Peter Johanson <latexer@gentoo.org>

	* BooShell/BooShell.boo: Make sure we don't get
	disposed prematurely.

2005-05-02  Peter Johanson <latexer@gentoo.org>

	* Remoting/*:
	* Gui/BooShellModel.boo:
	* BooShell/BooShell.boo:
	* Makefile.am: Switch over to using the new
	RemoteProcessObject API. Removes the need for
	all of BooShell.Remoting, and simplifies things
	elsewhere.

2005-05-02  Peter Johanson <latexer@gentoo.org>

	* Gui/BooShellModel.boo: Fix from lluis to make
	MD not crash when right clicking the shell with
	no projects open.

2005-05-02  Peter Johanson <latexer@gentoo.org>
	
	* BooShell/BooShell.boo: Convert to using Monitor instead
	of just lock(), prevents the 100% utilization by mono
	as reported by several folks.
	* Gui/BooShellModel.boo: Some Monitor fixes, and a small
	fix to make pasted input with multiple lines get processed
	properly.

2005-04-28  Rafael Monoman Teixeira <rafaelteixeirabr@hotmail.com>

	* Makefile.am: added missing dependency for target $(ASSEMBLY)

2005-04-25  Peter Johanson <latexer@gentoo.org>

	* BooShellServer/BooShellServer.boo:
	Small fix to make sure the shell server
	doesn't exit unexpectedly.

2005-04-25  Peter Johanson <latexer@gentoo.org>

	* Properties/GeneralShellProperties.boo:
	* Gui/*: Lots of changes to handle new shell
	handling, as well as adding the ability to
	load the assemblies generated by the currently
	open solution/combine.
	* Remoting/*: Library for doing remoting
	using unix sockets
	* BooShell/BooShell.boo: New shell object
	created out of process from MD for projection
	* BooShellServer/BooShellServer.boo: Remoting
	server for serving up the BooShell objects

2005-04-25  Peter Johanson <latexer@gentoo.org>

	* Initial import of the Boo addin.