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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-11-10Updated add-ins version to 2.9.0Xamarin Release Manager
2011-10-27Updated add-ins version to 2.8.2Xamarin Release Manager
2011-10-11Updated add-ins version to 2.8.1Xamarin Release Manager
2011-09-29Updated add-ins version to 2.8Xamarin Release Manager
2011-09-22Updated add-ins version to 2.7.22Xamarin Release Manager
2011-09-13Updated add-ins version to 2.7.21Xamarin Release Manager
2011-09-08Updated add-ins version to 2.7.20Xamarin Release Manager
2011-08-09Bump MonoDevelop versionLluis Sanchez Gual
2011-08-02Update add-in versionsLluis Sanchez Gual
2011-05-24Fix build. Had to disable a vi command in source editor.Mike Krüger
I need to merge refactoring + source editor - maybe merging it into the Ide dll.
2011-05-23Worked on naming convention visitor based on AnalysisCore.Mike Krüger
2011-05-23fix null reference in analysis core.Mike Krüger
2011-02-02Upgraded to .NET 4.0Lluis Sanchez Gual
2011-01-13Bump MD version to 2.6Lluis Sanchez Gual
2010-09-16[Build] Don't local-copy muliple Mono.AddinsMichael Hutchinson
Mono.Addins refs get local copied if it's not in the GAC, so make sure it only gets copied once.
2010-08-22Transformed text editor line/column coordinate system.Mike Krüger
Now any line/column in monodevelop is 1 based.
2010-08-12Adjust the visibility and category of some add-ins.Lluis Sanchez
2010-08-12Added missing cairo reference.Mike Krüger
Required for the windows build.
2010-08-11Track API changes.Mike Krüger
2010-07-30Reorganize the AnalysisSource file & class layoutMichael Hutchinson
Moved files into folders and classes into namespaces to improve the layout. Renamed some classes and made some classes nonpublic.
2010-07-30Added a GUI for enabling/disabling source analysisMichael Hutchinson
2010-07-30Fix project and sln configs that should be AnyCPUMichael Hutchinson
Some projects were Platform=x86 because of MD doesn't deal well with creating new projects' configurations in mixed platform solutions. Fixed them, and removed the corresponding phantom configurations that had been created in the sln.
2010-07-30Added a Show Fixes (Control-.) command.Michael Hutchinson
2010-07-30Made fixes separate from fix actions and handlers.Michael Hutchinson
Abstracted results' fixes from their handlers and the actions generated by those handlers. Cleaned up presentation of the actions in the menu.
2010-07-30Implemented quick fixes and simple menu commandMichael Hutchinson
2010-07-30Added a tooltip provider for resultsMichael Hutchinson
2010-07-30Add a README and a TODO.Michael Hutchinson
2010-07-30Fix displaying analysis errors inline in the doc.Michael Hutchinson
Fixes some races and offset errors that caused results not to display and update in the document.
2010-07-30Get adapters and rules working.Michael Hutchinson
Got adapters and rules working. Made them distinct addin nodes. Fixed various small issues including the DynamicMethod IL.
2010-07-30Implemented the results editor extensionMichael Hutchinson
Still untested. Also fixed some buglets.
2010-07-30New AnalysisCore protypeMichael Hutchinson
AnalysisCore is intended to provide mechanisms for background analysis of source files and other things. Currently it provides an extension point for registering "rules" that can process one input type into another. It can build a "analysis tree" for any given root input by linking input and outputs af available rules in order to combine all the IEnumerable<Result>s from the leaves. This is highly extensible, because preprocessor rules can generate intermediate objects for multiple other rules to consume, and adaptor rules can adapt input types into types consumed by existing generic rules. There is also a stub for a TextEditorExtension that will analyse ParsedDocuments from the parser service and display them in the editor. In future there will hopefully also be - a scheduling service for background parallel analysis - per-solution policies to configure which rules are used, and options - the ability for rules to post suggestions/quick fixes