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

ChangeLog « MonoDevelop.Autotools « Extras - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7fa4bfb0fed4475688b499caea3411b0423948af (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
2007-06-07  Ankit Jain  <jankit@novell.com>

	* AutotoolsContext.cs (NormalizeRelativePath): Moved to Runtime.FileService .
	Track api change.
	* SimpleProjectMakefileHandler.cs: Track api change.
	* SolutionDeployer.cs: Track api change.

2007-05-31  Ankit Jain  <jankit@novell.com>

	* SimpleProjectMakefileHandler.cs: Comment out all .pc file generation
	related code. It is handled by the deployment infrastructure.
	* SolutionDeployer.cs (GenerateFiles): Remove code related to .pc file
	generation.

	SolutionOptionsPanel.cs is not used now.
	* Makefile.am: Remove SolutionOptionsPanel.cs from the list of files.
	* MonoDevelop.Autotools.mdp: Likewise
	* MonoDevelop.Autotools.addin.xml: Remove extensions related to
	SolutionOptionsPanel.

2007-05-29  Ankit Jain  <jankit@novell.com>

	* SimpleProjectMakefileHandler.cs (Deploy): GetDeployFiles can return
	duplicates, ignore them. Update code for change in GetProjectConfig.
	(GetProjectConfig): Look for project's config in ParentCombine's
	configs.

2007-05-29  Ankit Jain  <jankit@novell.com>

	* SimpleProjectMakefileHandler.cs (Deploy): Enumerate solution level
	configs, and use the corresponding project config for emitting Makefile.am
	(GetProjectConfig): New.
	* AutotoolsContext.cs (EscapeStringForAutoconf): Escape '|' .

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

	* MonoDevelop.Autotools.mdp,
	  gtk-gui/MonoDevelop.Autotools.TarballBuilderEditorWidget.cs,
	  gtk-gui/MonoDevelop.Autotools.MakefileOptionPanelWidget.cs,
	  gtk-gui/gui.stetic: Updated.
	* Handler.cs: Report an error when the project can't be exported. This
	  fixes bug #81755.
	* TarballBuilderEditorWidget.cs: Make it work when the selected root
	  entry is not a combine.

2007-05-24  Ankit Jain  <jankit@novell.com>

	* SolutionMakefileHandler.cs (Deploy): Emit an empty initializer for
	EXTRA_DIST in makefiles for projects which have their own directory.
	Include project specific makefile only if required.
	* SimpleProjectMakefileHandler.cs (Deploy): Don't emit a project
	specific *.make file.

	* templates/Makefile.include (EXTRA_DIST): Use = instead of +=.
	* templates/Project.make.template: Remove the file and move contents .. 
	* templates/Makefile.am.project.template: .. here.
	* Makefile.am: Update.
	* MonoDevelop.Autotools.mdp: Update.

2007-05-24  Ankit Jain  <jankit@novell.com>
	    Raja R Harinath  <rharinath@novell.com>
	
	* SolutionMakefileHandler.cs (Deploy): If a project is in the same
	directory as the solution, then directly "include" the project specific
	makefile in the solution's Makefile.am .
	* SimpleProjectMakefileHandler.cs (Deploy): Treat all assembly
	references as globalReferencedFiles. Emit path relative to $(BUILD_DIR).
	Emit deploy-files path relative to project's directory.
	Emit project specific makefiles.
	* SolutionDeployer.cs: Normalize paths emitted.

	* AutotoolsContext.cs (AddGlobalReferencedFile): New.
	* Makefile.cs (Write): Write variables before the "content".
	* Makefile.am: Add new Project.make.template .
	* MonoDevelop.Autotools.mdp: Update.

	* templates/Makefile.include (EXTRA_DIST): Use += .
	(DISTCLEANFILES): Add $(BUILD_DIR)/* . 
	* templates/Makefile.am.project.template: Add placeholder for including
	project specific makefile. Move older contents to ..
	* templates/Project.make.template: .. here.

2007-05-22  Ankit Jain  <jankit@novell.com>
	    Raja R Harinath  <rharinath@novell.com>

	* SimpleProjectMakefileHandler.cs (Deploy): Emit resgen script name.
	Emit resourceId if required.
	* templates/Makefile.include, templates/Makefile.am: Several improvements.
	Added support for compiling resx resources with custom resource ids.

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

	* MonoDevelop.Autotools.addin.xml: Removed empty extension element.
	* PropertyProvider.cs: Added a more complete description of the
	  IncludeInMakefile property.

2007-05-16  Ankit Jain  <jankit@novell.com>

	* AutotoolsContext.cs (EscapeAndUpperConfigName): New.
	(EscapeStringForAutoconf): Escape ' ' also.
	* SolutionMakefileHandler.cs: Use EscapeAndUpperConfigName when emitting
	config name.
	* SimpleProjectMakefileHandler.cs: Likewise.
	* SolutionDeployer.cs: Likewise.

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

	* MonoDevelop.Autotools.mdp: Don't copy project references.
	* Makefile.am: Updated.

2007-05-10  Michael Hutchinson <m.j.hutchinson@gmail.com> 

	* MonoDevelop.Autotools.mdp: Add MonoDevelop.Autotools.addin.xml
	  back to the file list, but exclude from makefile synching.

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

	* MonoDevelop.Autotools/Makefile.am: Eliminate duplication of 
	MonoDevelop.Autotools.addin.xml target.
	Fix dependencies for DATA_FILE_BUILD.

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

	* MonoDevelop.Autotools.addin.xml: Added missing dependency.
	* MonoDevelop.Autotools.mdp, Makefile.am: Updated assembly references.
	* MakefileData.cs: Use top_srcdir to reference files not generated at
	  build time.

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

	* Mono.Addins.mdp: Updated.
	* Mono.Addins/ExtensionContext.cs: Fixed GetExtensionObjects overload
	  which was not using the correct reuseCachedInstance value.
	* Mono.Addins/ExtensionTree.cs: Improved error message. When looking
	  for a type in an assembly, avoid throwing an exception too early,
	  since it may be found in other assemblies.
	* Mono.Addins.Database/AddinDatabase.cs: In the addin info cache, also
	  store information about unsuccessful lookups, to avoid looking for
	  an add-in again if we found that it doesn't exist. In Update(),
	  don't use verbose output by default.

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

	* MonoDevelop.Autotools.addin.xml, MonoDevelop.Autotools.mdp,
	  SimpleProjectMakefileHandler.cs, gtk-gui/objects.xml, Makefile.am:
	  Migration to Mono.Addins.

2007-04-28  Michael Hutchinson <m.j.hutchinson@gmail.com> 

	* MakefileData.cs: Use InvariantCulture for string sorting to stop 
	  reordering of file lists on different systems.

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

	* SolutionMakefileHandler.cs: Make sure that makefiles are generated in
	  the same order in which they will be built, since there is some
	  data collected by the context that it is important to get in the
	  correct order (e.g. list of built files).
	* Set.cs: Avoid unneeded boxing.

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

	* SimpleProjectMakefileHandler.cs, SolutionDeployer.cs,
	  templates/Makefile.include, templates/Makefile.am.project.template,
	  AutotoolsContext.cs: Fixed several problems in the autotools file
	  generation. Files to be deployed are now copied to the build
	  directory (doing the change name if necessary), and they are
	  installed from there. Fixes bug #81470.

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

	* Handler.cs, SolutionDeployer.cs: Fixed CanBuild method. Any combine
	  entry for which there is a IMakefileHandler can be deployed.

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

	* MonoDevelop.Autotools.addin.xml, MonoDevelop.Autotools.mdp,
	  MakefileIntegrationFeatureWidget.cs, Handler.cs,
	  MakefileIntegrationFeature.cs,
	  gtk-gui/MonoDevelop.Autotools.MakefileIntegrationFeatureWidget.cs,
	  gtk-gui/objects.xml, gtk-gui/gui.stetic, Makefile.am: Added classes
	  for supporting a makefile integration project feature, but it is
	  not yet enabled.

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

	* MonoDevelop.Autotools.mdp, Makefile.am: Synchronized project with
	  makefile.
	* Handler.cs, SolutionDeployer.cs: Allow creating a tarball from
	  autotools files already generated, instead of always generating new
	  files.
	* MakefileProjectServiceExtension.cs: Include referenced makefiles when
	  exporting a project.
	* TarballBuilderEditorWidget.cs, TarballTargetEditorWidget.cs,
	  gtk-gui/MonoDevelop.Autotools.TarballBuilderEditorWidget.cs,
	  gtk-gui/gui.stetic: Implemented the tarball configuration editor
	  using stetic.
	* gtk-gui/objects.xml: Updated.
	* MakefileData.cs: Fixed warning.

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

	* SimpleProjectMakefileHandler.cs, TarballTargetEditorWidget.cs: Track
	  api changes.
	* Handler.cs: Track api changes. Added support for exporting a
	  selection of projects from a solution.

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

	* MonoDevelop.Autotools.addin.xml, Commands.cs,
	  TarballTargetEditorWidget.cs: Track api changes in deployment api.
	* MonoDevelop.Autotools.mdp, gtk-gui/gui.stetic, Makefile.am: Added
	  dependency to MonoDevelop.Deployment.
	* SolutionMakefileHandler.cs: Allow generating makefiles a combine even
	  if it contains unsupported projects. Those will be ignored.
	* SimpleProjectMakefileHandler.cs, Handler.cs, SolutionDeployer.cs,
	  templates/Makefile.include: Use the new deployment api to get the
	  list of files to deploy.
	* FileNodeBuilderExtension.cs, MakefileData.cs: Moved makefile
	  integration check to MakefileData.
	* AutotoolsContext.cs: Keep a list of directories to deploy. Store the
	  DeployContext in a field.
	* PropertyProvider.cs: New property provider which allows setting the
	  makefile integration flag for each file.
	* gtk-gui/objects.xml: Updated.

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

	* Handler.cs: Remove unused namespace.

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

	* Handler.cs, MonoDevelop.Autotools.addin.xml: Track API changes.
	* MonoDevelop.Autotools.mdp: Don't local-copy references.

2007-03-29  Ankit Jain  <jankit@novell.com>

	* MakefileOptionPanelWidget.cs: Ensure reference combos are disabled for
	non-dotnet projects even when enabling for the first time.

2007-03-28  Ankit Jain  <jankit@novell.com>

	* MakefileOptionPanelWidget.cs: Disable References combos etc for
	non-dotnet projects.

2007-03-28  Ankit Jain  <jankit@novell.com>

	* MakefileOptionPanelWidget.cs (FillCombos): Sort list of variables.

2007-03-28  Ankit Jain  <jankit@novell.com>

	* CustomMakefile.cs (InitVarToValuesDict): Skip blank entries.
	* MakefileData.cs: Replace StartsWith with direct comparisons for small
	strings. For references, ignore empty entries.
	(ParseReference):
	(GacRefToString): Catch specific exceptions for AssemblyName.GetAssemblyName

2007-03-21  Ankit Jain  <jankit@novell.com>

	* MakefileData.cs (PkgCheckModulesRegex): Fix regex to correctly handle
	strings like 'PKG_CHECK_MODULES(FOO,foo0 >= 2.4 foo1 foo2)', this should
	give 3 packages : foo0, foo1 and foo2.

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

	* MonoDevelop.Autotools/Handler.cs: make strings translatable.

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

	* gtk-gui/MonoDevelop.Autotools.MakefileOptionPanelWidget.cs,
	* gtk-gui/gui.stetic: make all strings in option panel translatable.

2007-02-28  Ankit Jain <jankit@novell.com> 

	* MakefileData.cs (WriteFiles): Ignore directory entries.

2007-02-22  Ankit Jain  <jankit@novell.com>

	* MakefileOptionPanelWidget.cs: Disable the AssemblyName and OutputDir
	combos, as they are not being used right now.
	* gtk-gui/*: Update.

2007-02-21  Ankit Jain  <jankit@novell.com>

	* CustomMakefile.cs: Avoid adding extra spaces for empty variables.

2007-02-20  Ankit Jain  <jankit@novell.com>

	* MakefileData.cs: Support escaping filenames. Escaping only '\' and '#'
	currently.

2007-02-20  Ankit Jain  <jankit@novell.com>

	* MakefileOptionPanelWidget.cs: Ensure that entry boxes for make targets
	are activated only if required when loading the gui. These should be
	activated only if a valid makefile is specified.

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

	* MonoDevelop.Autotools.addin.xml: Change add-in versions to 0.13.

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

	* MakefileProjectServiceExtension.cs: Don't run make if the build
	  target is not specified.
	* MonoDevelop.Autotools.addin.xml, FileNodeBuilderExtension.cs,
	  Commands.cs, MakefileData.cs: Allow excluding a file from the
	  makefile integration. Added menu option for enabling/disabling the
	  exclusion.
	* MakefileOptionPanelWidget.cs,
	  gtk-gui/MonoDevelop.Autotools.MakefileOptionPanelWidget.cs,
	  gtk-gui/gui.stetic: Added checkboxes for enabling/disabling
	  makefile targets.
	* MonoDevelop.Autotools.mdp, Makefile.am: Added new file.

2007-02-13  Ankit Jain  <jankit@novell.com>

	* MakefileData.cs: Add support for custom regexes for compiler messages.
	* MakefileOptionPanelWidget.cs: Add widgets for custom regex.
	* MakefileProjectServiceExtension.cs: Use the new custom regexes
	MakefileData.

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

	* SimpleProjectMakefileHandler.cs: Fix spelling.

2007-02-09  Ankit Jain <jankit@novell.com> 

	* MakefileData.cs: Avoid unnecessary add/remove for references.

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

	* CustomMakefile.cs: Avoid adding or removing blank lines around
	  variables.

2007-02-09  Ankit Jain <jankit@novell.com> 

	* MakefileOptionPanelWidget.cs: Add a null check.
	* MakefileData.cs: Refactor encodeValues into a property. Initiliaze it
	  outside UpdateProject.

2007-02-09  Ankit Jain <jankit@novell.com> 

	* MakefileData.cs: Keep the list of references sorted in the makefile.
	* CustomMakefile.cs: Write to the makefile only if something changed.

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

	* MakefileProjectServiceExtension.cs: After reading a project, reset
	  the needs building flag (to ignore changes done while loading)
	* Makefile.am: distckeck fixes.

2007-02-08  Ankit Jain <jankit@novell.com> 

	* MakefileData.cs: OutputFileName can be null for generic projects.

2007-02-08  Ankit Jain <jankit@novell.com> 

	* CustomMakefile.cs: Make Regex for makefile variables static.

2007-02-08  Ankit Jain  <jankit@novell.com>

	* MakefileProjectServiceExtension.cs (Load): Resolve project references
	once the top-level combine has loaded.
	* MakefileData.cs: Cache gac refererences to prevent repeats. Remove
	repeats from the project file, if any. Save the makefile after resolving
	project references.
	Add only valid assemblies as Gac refs, others could be project references.
	Prevent repeats for assembly/project references.

2007-02-08  Ankit Jain  <jankit@novell.com>

	* MakefileOptionPanelWidget.cs (.ctor): Don't set .Sensitive for
	fileEntryMakefilePath.

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

	* MakefileProjectServiceExtension.cs: Reset the needs building flag
	  after successfully building a project.
	* MakefileData.cs: Cosmetic fixes. Remove "./" from relative names, and
	  keep file lists sorted.

2007-02-07  Ankit Jain  <jankit@novell.com>

	* MakefileOptionPanelWidget.cs (Store): Save 'disabled' state.

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

	* MakefileProjectServiceExtension.cs: Track api changes. In
	  GetNeedsBuilding, return what the default implementation provides.
	* MonoDevelop.Autotools.addin.xml: Unregistered the makefile reader.
	* MonoDevelop.Autotools.mdp: Minor update.

2007-02-07  Ankit Jain  <jankit@novell.com>

	* CustomMakefile.cs: Fix regex to allow empty variables.

2007-02-07  Ankit Jain  <jankit@novell.com>

	* MakefileData.cs (encodeValues): New. Dictionary to keep track of which
	variables to encode when emitting.
	(UpdateProject): Initialize encodeValues.
	(ReadFilesActual): Keep track of whether encoding is required or not.
	(ParseReference): Likewise. Alter signature to take a MakefileVar param.
	(ResolveBuildVars): Add a ref param 'varFound'
	(WriteFiles): EncodeFilename only if required.
	(AsmRefToString): Likewise.

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

	* MakefileData.cs: Write the resource id to the makefile only when
	  really necessary.

2007-02-07  Ankit Jain  <jankit@novell.com>

	* MakefileProjectServiceExtension.cs (ParseOutput): Add a 'baseDir'
	param.
	(CreateCompilerErrorFromString): Use baseDir to convert relative paths
	to absolute.

2007-02-06  Ankit Jain  <jankit@novell.com>

	* MakefileProjectServiceExtension.cs (Execute): New.
	* MakefileOptionPanelWidget.cs: Add ExecuteTargetName and update.
	Trim () strings from entry boxes.
	* gtk-gui/*: Update.
	* MakefileData.cs (.ctor): Set default value for buildTargetName to "all".

2007-02-06  Ankit Jain  <jankit@novell.com>

	* MakefileOptionPanel.cs (CheckNonEmptyFileVar): Remove. Has been moved
	to MakefileOptionPanelWidget.cs 
	* MakefileData.cs: Emit resourceId while writing only if atleast one of
	the resources had it when reading.
	* CustomMakefile.cs (Save): Remove dead code. Use StreamWriter.Write
	instead of StreamWriter.WriteLine

2007-02-06  Ankit Jain  <jankit@novell.com>

	* MakefileOptionPanelWidget.cs: Combo boxes for file variables should
	react to change in 'Sync' checkbox.
	* gtk-gui/*: Updated.

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

	* MakefileOptionPanel.cs, MakefileOptionPanelWidget.cs: Moved all
	  validation code from MakefileOptionPanel to
	  MakefileOptionPanelWidget, so it can be reused by the import
	  dialog.
	* ImportMakefileDialog.cs: New dialog for importing makefiles.
	* MonoDevelop.Autotools.addin.xml: Registered new extension.
	* MonoDevelop.Autotools.mdp, Makefile.am: Added new files.
	* MakefileReaderExtension.cs: Extension for importing makefiles into
	  projects.
	* gtk-gui/MonoDevelop.Autotools.MakefileOptionPanelWidget.cs,
	  gtk-gui/gui.stetic: Updated.
	* MakefileProject.cs: New project class.

2007-02-05  Ankit Jain  <jankit@novell.com>

	* MakefileProjectServiceExtension.cs: New.
	* MakefileData.cs: New.
	* MakefileVar.cs: New.
	* CustomMakefile.cs: New.
	* MakefileOptionPanel.cs: New.
	* MakefileOptionPanelWidget.cs: New.
	* gtk-gui/*: New.
	Initial implementation of support for limited Makefile Integration.

	* Makefile.am: Update.
	* MonoDevelop.Autotools.addin.xml: Update.
	* MonoDevelop.Autotools.mdp: Update.

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

	* Handler.cs: Track api changes.

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

	* SimpleProjectMakefileHandler.cs, SolutionDeployer.cs: Use the
	  FileService for copying and deleting files.

2006-11-24  Scott Ellington  <scott.ellington@gmail.com> 

	* SolutionDeployer.cs: 
	* AutotoolsContext.cs:
	escape for periods for autoconf variables besides the version
	(fixes #79857)
	* templates/configure.ac.template: add a line to end of file to
	avoid bug http://www.mail-archive.com/bug-m4@gnu.org/msg01841.html

2006-09-28  Matej Urbas <matej.urbas@gmail.com>

	* SolutionDeployer.cs: fixed the case of autotooling empty projects
	  i.e. projects with no active configuration.
	* MonoDevelop.Autotools.mdp: Added...

2006-08-31 Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* SimpleProjectMakefileHandler.cs: Win32 pathing vs autotools fixes.
	* SolutionDeployer.cs: Win32 pathing vs autotools fixes, syscall workaround.
	* SolutionMakefileHandler.cs: Win32 pathing fixes.

2006-08-19  Scott Ellington  <scott.ellington@gmail.com> 

	* SimpleProjectMakefileHandler.cs: 
	* SolutionMakefileHandler.cs:
	don't handle configurations which are not in the top-level deployed
	solution
	* SolutionDeployer.cs: provide combine configurations to AutotoolsContext.
	always provide _LIB autoconf variables
	* AutotoolsContext.cs: store supported configurations
	* templates/exe.wrapper.in.template: cd into installed directory

2006-08-14  Scott Ellington  <scott.ellington@gmail.com> 

	* SolutionDeployer.cs: 
	* SimpleProjectMakefileHandler.cs: 
	* MonoDevelop.Autotools.addin.xml:
	* templates/Makefile.include:
	* SolutionOptionsPanel.cs:
	add support for creating pc files per library

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

	* SimpleProjectMakefileHandler.cs:
	* templates/Makefile.include:
	* templates/Makefile.am.project.template: Add support for project files
	  with the FileCopy build action.

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

	* SimpleProjectMakefileHandler.cs: Track changes in the SystemAssemblyService
	  class.

2006-07-12  Scott Ellington  <scott.ellington@gmail.com> 

	* SolutionDeployer.cs: 
	* templates/package.pc.template: 
	add Libraries variable

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

	* Handler.cs: Track changes in the deployment api.
	* MonoDevelop.Autotools.addin.xml: Updated versions.

2006-06-28  Scott Ellington  <scott.ellington@gmail.com> 

	* Makefile.cs: can append values to variables
	* SolutionDeployer.cs: implement pkgconfig stuff
	* MonoDevelop.Autotools.addin.xml: add option panel and store pref
	* templates/package.pc.template: template for pc file
	* Makefile.am: add new files
	* SolutionOptionsPanel.cs: new option panel

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

	* TarballTargetEditorWidget.cs: Added null check. Fix the build for
	  gtk# 2.4.

2006-06-20  Scott Ellington  <scott.ellington@gmail.com> 

	* AutotoolsContext.cs:
	* templates/Makefile.am.project.template:
	* SimpleProjectMakefileHandler.cs: copy resources outside of
	autotools hierarchy into project directory
	* templates/Makefile.include: include files of 
	BuildAction.Nothing in distribution

2006-06-19  Scott Ellington  <scott.ellington@gmail.com> 

	* SimpleProjectMakefileHandler.cs: 
	* AutotoolsContext.cs: 
	* SolutionDeployer.cs: 
	use the new CombineEntry.Version property
	* TarballTargetEditorWidget.cs: default to active config

2006-06-16  Scott Ellington  <scott.ellington@gmail.com> 

	* SolutionDeployer.cs: Deploy and GenerateFiles can now
	take a configuration parameter
	* Makefile.am: added new file.
	* TarballTargetEditorWidget.cs:
	* Handler.cs:
	Add option to set a default configuration at deployment.

2006-06-15  Scott Ellington  <scott.ellington@gmail.com> 
	
	* SolutionDeployer.cs: always run autogen.sh on Deploy
	* templates/Makefile.include: clean up

2006-06-15  Scott Ellington  <scott.ellington@gmail.com> 

	* SimpleProjectMakefileHandler.cs:
	* templates/exe.wrapper.in.template:
	pass runtime parameters on to exe wrapper
	* Handler.cs:
	* SolutionDeployer.cs:
	* MonoDevelop.Autotools.addin.xml:
	* Commands.cs:
	Moved 'make dist' functionality into SolutionDeployer to
	be consumed by the new IDeployHandler interface and removed
	'Create Distributable' command.	
	* Makefile.am: rename DeployHandler to Commands and
	removed a trailing space.

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

	* Handler.cs: Implemented a basic IDeployHandler and the
	  needed support classes.
	* MonoDevelop.Autotools.addin.xml: Registered the new deploy
	  handler to the deploy service.
	* Makefile.am: Added Handler.cs and updated references.
	
2006-06-15  Scott Ellington  <scott.ellington@gmail.com> 

	* SimpleProjectMakefileHandler.cs:
	* SolutionDeployer.cs:
	* templates/Makefile.include:
	* templates/Makefile.am.project.template:
	* templates/configure.ac.template:
	* ISimpleAutotoolsSetup.cs:
	* AutotoolsContext.cs:
	* SolutionMakefileHandler.cs:
	Handle project configurations

2006-06-13  Scott Ellington  <scott.ellington@gmail.com> 

	* SimpleProjectMakefileHandler.cs: 
	remove Console.WriteLine
	* SolutionDeployer.cs:
	* MonoDevelop.Autotools.addin.xml:
	* DeployHandler.cs:
	* Makefile.am:
	Add new functionality which wraps 'make dist'
	and other changes

2006-06-09  Scott Ellington  <scott.ellington@gmail.com> 

	* SimpleProjectMakefileHandler.cs:
	* SolutionDeployer.cs:
	* IMakefileHandler.cs:
	* DeployHandler.cs:
	* templates/Makefile.include:
	* templates/Makefile.am.project.template:
	* Set.cs:
	* AutotoolsContext.cs:
	* SolutionMakefileHandler.cs:
	Add a IProgressMonitor and fixes for various project types.

2006-06-08  Scott Ellington  <scott.ellington@gmail.com> 

	* AutotoolsContext.cs: fix loading of templates to allow readonly

2006-06-07  Scott Ellington  <scott.ellington@gmail.com> 

	* Makefile.am: removed CSharpBinding dll ref

2006-06-05  Scott Ellington  <scott.ellington@gmail.com> 

	Added Autotools Addin.