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-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-21[Deployment] Hide the "Packaging" feature. It is not that useful and is ↵Lluis Sanchez Gual
confusing.
2011-09-21[Deployment] Use correct platform idLluis Sanchez Gual
2011-09-21Hide extensions that only make sense on linux.Lluis Sanchez Gual
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-08-02Fix some nullrefs.Lluis Sanchez Gual
2011-08-01Flush project format fixesMichael Hutchinson
2011-07-17[Core] Move Platform detection code to Platform classMichael Hutchinson
This means we can detect the platform without initializing the PropertyService.
2011-06-15Flush changes in stetic "invariant" formatMichael Hutchinson
2011-04-06Replaced the Mono.Cecil.Decompiler with ICSharpCode.Decompiler.Mike Krüger
2011-04-04Moved the old nrefactory to another namespace.Mike Krüger
The new nrefactory uses the same namespace - this'll prevent namespace clashes and will make sure that that version is outdated and'll be replaced over time.
2011-03-31Added options parameter to OpenDocumentLluis Sanchez Gual
Replaced the old bringToFront and hilightCaret boolean parameters by a new options parameter which have those and other options.
2011-03-31Support external display bindings as defaultMichael Hutchinson
2011-03-29Translation and view label fixesMichael Hutchinson
2011-03-29[Ide] Add support for external display bindingsMichael Hutchinson
Adds external display bindings, which allows us to explicitly register external apps for opening files. Also support node ordering for display bindings.
2011-03-22Improved output pad reuse.Lluis Sanchez Gual
Added new method for getting an output pad for tools. Instead of having an output pad specific for each tool, now all can share the same pad. Also added an Id argument to GetOutputProgressMonitor. This id is used when building an Id for the corresponding key binding. Until now, we were using the monitor title for this, but it doesn't work well since the title is localized.
2011-03-17Don't check for arithmetic overflows.Lluis Sanchez Gual
2011-03-14Track api changes.Lluis Sanchez Gual
2011-02-02Upgraded to .NET 4.0Lluis Sanchez Gual
2011-01-13More MD version bumping.Lluis Sanchez Gual
2011-01-13Bump MD version to 2.6Lluis Sanchez Gual
2010-11-16Fix bug #653977 - MonoDevelop not copying App.config to build target directoryLluis Sanchez Gual
Copy app.config to the output, even if it doesn't have the CopyToOutput flag.
2010-11-13Make FUSE commands cancellableMichael Hutchinson
2010-11-13Fix sshfs deploy handler on MacMichael Hutchinson
2010-11-13Disable sshfs deploy handler on WindowsMichael Hutchinson
2010-11-12More dialog placement fixingMichael Hutchinson
2010-11-04Flush stetic changes.Lluis Sanchez Gual
2010-10-27Fix tarball generation issues on WindowsLluis Sanchez Gual
Tarball entries must use slashes, not backslashes. Set some sane default file mode for files.
2010-10-27Fix bug 638702 - error when creating package on windowsLluis Sanchez Gual
Replaced invocations to the tar command by calls to the SharpZipLib classes.
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-09-14* NUnitAssemblyGroupProject.cs:Lluis Sanchez
* UnknownSolutionItem.cs: * TranslationProject.cs: * PackagingProject.cs: Remove unrequired override. * SolutionFolder.cs: * CompiledAssemblyProject.cs: Track changes in method visibility. * DotNetProject.cs: Override RunTarget is not overridable anymore. The method to override is OnRunTarget. * Project.cs: Remove DoRunTarget, since SolutionItem already delegates the execution of unknown targets to the item handler. If custom handling is required, the method to override is OnRunTarget. * ProjectService.cs: Remove Clean and Build overrides. Those targets are now executed by the solution item through OnRunTarget. * SolutionEntityItem.cs: Handle the execution of Build and Clean custom commands. * SolutionItem.cs: Added default implementation of OnRunTarget, which executes the OnClean and OnBuild overridables. Changed visibility of OnClean and OnBuild since they don't have to be called from outside the class anymore.
2010-09-08Make Project.RunTarget actually work.Michael Hutchinson
Implement RunTarget on the default project service extension, and handle it using OnRunTarget methods on projects, like Build/Clean etc.
2010-08-19Fix sshfs deploymentMichael Hutchinson
Fix some strange sshfs deployment problems by using a temp dir with a semi-random, name, instead of creating temp file and using its name.
2010-08-12Adjust the visibility and category of some add-ins.Lluis Sanchez
2010-08-04Get the output file list using the new Project.GetOutputFilesLluis Sanchez
method. This includes the output assembly, but also the debug info file and satellite assemblies.
2010-06-01* NUnit/templates/NUnitAssemblyGroup.xpt.xml:Lluis Sanchez
* MonoDevelop.Gettext/templates/TranslationProject.xpt.xml: * Deployment/MonoDevelop.Deployment/templates/PackagingProject.xpt.xml: Don't include the assembly name in the project type name since it doesn't work well when running on .NET svn path=/trunk/monodevelop/; revision=158278
2010-05-28* src/addins/MonoDevelop.Autotools/Commands.cs:Lluis Sanchez
* src/addins/MacPlatform/Updater/UpdateService.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Ide/ProjectOperations.cs: * src/addins/AspNet/MonoDevelop.AspNet.Mvc/Gui/AddViewDialog.cs: * src/addins/AspNet/MonoDevelop.AspNet/MonoDevelop.Html/PathCompletion.cs: * src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/DebuggingService.cs: * src/addins/AspNet/MonoDevelop.AspNet.Mvc/Gui/FolderNodeBuilderExtension.cs: * src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext/GettextFeatureWidget.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Components/ProjectFileEntry.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects/ProjectFileSelectorDialog.cs: * src/addins/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport/ToolboxService.cs: * src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment.Commands/Commands.cs: * src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment.Gui/DeployOperations.cs: * src/addins/MonoDevelop.Debugger.Soft/MonoDevelop.Debugger.Soft/RemoteSoftDebuggerSession.cs: * src/addins/MonoDevelop.WebReferences/MonoDevelop.WebReferences.Dialogs/WebReferenceDialog.cs: * src/addins/AspNet/MonoDevelop.AspNet/MonoDevelop.AspNet/MasterContentFileDescriptionTemplate.cs: * src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/CommitCommand.cs: * src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.NodeBuilders/TranslationProjectNodeBuilder.cs: * src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/PublishCommand.cs: * src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/CheckoutCommand.cs: * src/addins/Deployment/MonoDevelop.Deployment.Linux/MonoDevelop.Deployment.Linux/DotDesktopViewWidget.cs: * src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Dialogs/SelectRepositoryDialog.cs: * src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion.Gui/UserPasswordDialog.cs: * src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion.Gui/SslServerTrustDialog.cs: * src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion.Gui/ClientCertificateDialog.cs: * src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion.Gui/ClientCertificatePasswordDialog.cs: Fix incorrect use of ShowCustomDialog/RunCustomDialog. svn path=/trunk/monodevelop/; revision=158092
2010-05-22* src/addins/WelcomePage/WelcomePageView.cs:Michael Hutchinson
* src/addins/NUnit/Services/NUnitService.cs: * src/addins/MonoDevelop.Autotools/Commands.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Ide/MessageService.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Ide/ProjectOperations.cs: * src/addins/MonoDevelop.Autotools/TarballBuilderEditorWidget.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/DefaultWorkbench.cs: * src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/DebuggingService.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Ide.FindInFiles/FindInFilesDialog.cs: * src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext/GettextFeatureWidget.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Components.Commands/LinkCommandEntry.cs: * src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore.Dialogs/BindDesignDialog.cs: * src/addins/MonoDevelop.Refactoring/MonoDevelop.Refactoring/RefactoryCommands.cs: * src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: * src/addins/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport/ToolboxService.cs: * src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore.Dialogs/SelectRenamedClassDialog.cs: * src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore.Dialogs/ConfirmWindowDeleteDialog.cs: * src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment.Commands/Commands.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors/CollectionEditor.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors/FlagsSelectorDialog.cs: * src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment.Gui/DeployOperations.cs: * src/addins/MonoDevelop.WebReferences/MonoDevelop.WebReferences.Dialogs/WebReferenceDialog.cs: * src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/CommitCommand.cs: * src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.NodeBuilders/TranslationProjectNodeBuilder.cs: * src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/PublishCommand.cs: * src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/CheckoutCommand.cs: * src/addins/MonoDevelop.Refactoring/MonoDevelop.Refactoring.ExtractMethod/ExtractMethodRefactoring.cs: * src/addins/MonoDevelop.WebReferences/MonoDevelop.WebReferences.Commands/WebReferenceCommandHandler.cs: * src/addins/Deployment/MonoDevelop.Deployment.Linux/MonoDevelop.Deployment.Linux/DotDesktopViewWidget.cs: * src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Dialogs/SelectRepositoryDialog.cs: * src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion.Gui/UserPasswordDialog.cs: * src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion.Gui/SslServerTrustDialog.cs: * src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion.Gui/ClientCertificateDialog.cs: * src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion.Gui/ClientCertificatePasswordDialog.cs: More dialog placing. * src/core/MonoDevelop.Ide/gtk-gui/objects.xml: Flush. svn path=/trunk/monodevelop/; revision=157758
2010-05-22* src/addins/CBinding/Makefile.am:Michael Hutchinson
* src/addins/CBinding/CBinding.csproj: * src/addins/CBinding/gtk-gui/gui.stetic: * src/addins/CBinding/Gui/AddPathDialog.cs: * src/addins/CBinding/Gui/AddLibraryDialog.cs: * src/addins/CBinding/Gui/OutputOptionsPanel.cs: * src/addins/CBinding/Gui/CodeGenerationPanel.cs: * src/addins/CBinding/gtk-gui/CBinding.AddPathDialog.cs: * src/addins/CBinding/gtk-gui/CBinding.AddLibraryDialog.cs: * src/addins/ChangeLogAddIn/CommitDialogExtensionWidget.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/Workbench.cs: * src/addins/CBinding/gtk-gui/CBinding.OutputOptionsPanel.cs: * src/addins/CBinding/gtk-gui/CBinding.CodeGenerationPanel.cs: * src/addins/AspNet/MonoDevelop.AspNet.Mvc/Gui/AddViewDialog.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Ide/ProjectOperations.cs: * src/addins/NUnit/Gui/NUnitAssemblyGroupConfigurationNodeBuilder.cs: * src/addins/CBinding/ProjectPad/ProjectPackagesFolderNodeBuilder.cs: * src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/DebugCommands.cs: * src/addins/MonoDevelop.XmlEditor/MonoDevelop.XmlEditor/XmlEditorService.cs: * src/addins/AspNet/MonoDevelop.AspNet/MonoDevelop.AspNet.Deployment/WebDeployService.cs: * src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor.OptionPanels/HighlightingPanel.cs: * src/addins/AspNet/MonoDevelop.AspNet/MonoDevelop.AspNet.Deployment/WebDeployOptionsPanelWidget.cs: * src/addins/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport.Toolbox/ComponentSelectorDialog.cs: Clean up dialog placement. * src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects/ProjectFileSelectorDialog.cs: Added docs and convenience API. * src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor/SourceEditorDisplayBinding.cs: Clea up path API. * src/addins/MonoDevelop.WebReferences/Makefile.am: * src/addins/MonoDevelop.Moonlight/gtk-gui/gui.stetic: * src/core/MonoDevelop.Ide/gtk-gui/MonoDevelop.Ide.Projects.ConfirmProjectDeleteDialog.cs: * src/addins/MonoDevelop.Debugger/gtk-gui/MonoDevelop.Debugger.BreakpointPropertiesDialog.cs: * src/addins/MonoDevelop.Refactoring/gtk-gui/MonoDevelop.Refactoring.EncapsulateFieldDialog.cs: * src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.GeneralOptionsPanel.cs: * src/addins/Deployment/MonoDevelop.Deployment.Linux/gtk-gui/MonoDevelop.Deployment.Linux.DotDesktopViewWidget.cs: Flush. * src/core/MonoDevelop.Core/MonoDevelop.Core/FileService.cs: New ToFilePathArray extension method. * src/core/MonoDevelop.Ide/MonoDevelop.Components.Extensions/ISelectFileDialog.cs: Added ability to set filters in the dialogs. * src/core/MonoDevelop.Ide/MonoDevelop.Components/FolderDialog.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Components/FileSelector.cs: Make internal. People should be using the platform file dialog API. * src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects/AddFileDialog.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/OpenFileDialog.cs: Use file filters. * src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Pads.ProjectPad/FolderNodeBuilder.cs: Track dialog API. * src/core/MonoDevelop.Ide/MonoDevelop.Ide/MessageService.cs: New APIs for showing/running dialogs, and placing dialogs. svn path=/trunk/monodevelop/; revision=157750
2010-04-29* MonoDevelop.Deployment.Linux/DotDesktopView.cs: IViewContentMike Krüger
widgets are now destroyed by the workspace window. svn path=/trunk/monodevelop/; revision=156422
2010-04-26* MonoDevelop.Deployment.Targets/CommandPackageBuilder.cs: Track apiLluis Sanchez
changes. svn path=/trunk/monodevelop/; revision=156116
2010-03-22Bumped MD version.Lluis Sanchez
svn path=/trunk/monodevelop/; revision=153988