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
2019-02-18Implemented .po editor as document controllerLluis Sanchez
2019-02-15Track API changesLluis Sanchez
All services are now referenced from the IdeServices class
2018-11-12More loctherzok
2017-10-27CID114236 - Fix redundant null check.therzok
2017-02-16Fix threading issue in PO editor widgetLluis Sanchez
2017-02-16String optimizations (#1881)Marius Ungureanu
* [Core] Remove ToLower where applicable. * [Core] Remove ToUpper where applicable. * [View] Fix possible crash in no selection tolower/toupper Instead of getting just 1 char, we get a possible huge string, depending on the caret's offset in a document. * [Ide] Fix lots of intermediate strings being created on keybindings panel filtering * [Ide] Remove string.ToLower where applicable. * [Ide] Remove string.ToUpper where applicable. * [Editor] Remove string.ToLower where applicable. * [Addins] Remove string.ToLower string.ToUpper where applicable.
2017-01-12[Gettext] Changed line counting when opening references in PO Editor from 0 to 1F. Phoenix
Additional to 7d161b23a287120d8fbd6c829077f66041984536
2016-09-18[Ide] Don't dispose List/TreeStore as we don't own it, the treeview does.Marius Ungureanu
2016-04-14Rename Skin to ThemeLluis Sanchez
2016-04-04[PO] Fix undo/redo in PO editor.therzok
Bug 4608 - "undo"-ing in po editor textbox causes crash.
2016-03-10[Gettext] Fixed compiler warnings.Mike Krüger
2016-01-16[Gettext] Dark stylesVaclav Vancura
2016-01-15Merge remote-tracking branch 'origin/master' into roslyn-dark-skinMarius Ungureanu
2016-01-14[Gettext] New light colorsVaclav Vancura
2015-12-02Revert "[Ide] Cleanup CommandManager."Marius Ungureanu
This reverts commit 26f52de488283cae580c9bab44634fae4aefe296.
2015-11-29[Gettext] Add dark skin supportVsevolod Kukol
2015-11-29[Gettext] Use stock icons from IDEVsevolod Kukol
2015-11-25Asynchronize document load and save operationsLluis Sanchez
2015-11-25[Ide] Sanitize the ViewContentApiLluis Sanchez
Removed innecessary methods and events. Added convenience overloads.
2015-11-25Converted content interfaces to classesLluis Sanchez
The new BaseViewContent class replaces IBaseViewContent, IAttachableViewContent, AbstractBaseViewContent and AbstractAttachableViewContent. The ViewContent class replaces IViewContent and AbstractViewContent.
2015-11-25[Ide] Cleanup CommandManager.Marius Ungureanu
2015-11-23[Ide] Cleanup more APIMarius Ungureanu
2015-04-20Merge remote-tracking branch 'origin/roslyn' into new-project-modelLluis Sanchez Gual
2015-03-23Rename UserTask -> TaskListEntryLluis Sanchez Gual
2015-02-19[Ide] Ported task system to roslyn.Mike Krüger
Renamed Task -> TaskListEntry. With the new task based APIs it was really annoying to have a custom 'Task' class.
2015-01-16Merge remote-tracking branch 'origin/master' into new-project-modelLluis Sanchez Gual
Conflicts: main/external/debugger-libs main/external/fsharpbinding main/external/mono-addins main/external/nrefactory main/src/addins/CSharpBinding/MonoDevelop.CSharp.Refactoring.CodeActions/MDRefactoringContext.cs main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/BreakpointPropertiesDialog.cs main/src/addins/MonoDevelop.PackageManagement/MonoDevelop.PackageManagement/PackageUpdateChecker.cs main/src/addins/TextTemplating/MonoDevelop.TextTemplating/TextTemplatingFileGenerator.cs main/src/addins/TextTemplating/MonoDevelop.TextTemplating/TextTemplatingFilePreprocessor.cs main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.csproj main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/VersionControlCommandHandler.cs main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/VersionControlItem.cs main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/MSBuildProject.cs main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/MSBuildProjectHandler.cs main/src/core/MonoDevelop.Core/MonoDevelop.Projects.SharedAssetsProjects/SharedAssetsProjectMSBuildHandler.cs main/src/core/MonoDevelop.Core/MonoDevelop.Projects/DotNetCompilerParameters.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.FindInFiles/FindReplace.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.FindInFiles/Scope.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/StatusProgressMonitor.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.ProgressMonitoring/BaseProgressMonitor.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Tasks/UserTasksView.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/IdeStartup.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/RootWorkspace.cs main/tests/UnitTests/MonoDevelop.Projects/ProjectTests.cs
2015-01-12Merge master into xs6-editor-roslynDavid Karlaš
Conflicts: main/src/addins/CSharpBinding/MonoDevelop.CSharp.Completion/MemberCompletionData.cs main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/BreakpointPropertiesDialog.cs main/src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor/TextMarker/DebugTextMarker.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.FindInFiles/SearchResultWidget.cs
2015-01-05[Icons] Simplifying icon namesVaclav Vancura
2014-10-21Initial drop of the new project modelLluis Sanchez
2014-07-09[Ide] Removed the IEncodedTextContent interface.Mike Krüger
The text system can now properly handle the encodings. The view contents are now using the FileOpenInformation that already contained information about the encoding used. I added the FileSaveInformation class that contains the same information for the save operation. Using classes where more information can be added stabilizes the API more. The old view content/pad system should be reconsidered. We should use classes instead of interfaces for implementing the view contents.
2014-07-08[SourceEditor] Updated source editor to use the new option model.Mike Krüger
That was a big change because the source editor contained too much responsibility for managing the editor options. But now the TextEditorViewContent does the update handling.
2014-07-07[Ide] Renamed DocumentFactory to TextEditorFactory/implemented textMike Krüger
source snapshotting.
2014-07-07[Ide] Removed IEditorActionHost from the public API. Editor actionsMike Krüger
can now be done using the static EditActions class.
2014-07-05[Ide] Removed RequestRedraw() from the TextEditor.Mike Krüger
That was a left over from a very old version where the text editor wasn't smart enough to handle the redrawing itself. (That's why it was used in only very few places). There was only 1 case where it was needed - that's now handled differently.
2014-06-27[Ide] TextEditor is now a Control.Mike Krüger
2014-06-27[Ide] TextEditor is now using the new platform independent 'Control'Mike Krüger
class for the native UI.
2014-06-23[Core] Renamed TextLocation -> DocumentLocation.Mike Krüger
The line/column representation isn't used on the text level. It's used on the Document level - therefore that makes more sense - and it's better in line with the Mono.TextEditor API we're used to.
2014-06-23[Gettext] Track API changes.Mike Krüger
2014-06-20[Gettext] Ported to new editor infrastructure.Mike Krüger
2014-04-04[Ide] TextEditor is now using a decorator pattern.Mike Krüger
2014-04-03[Gettext] Track editor API changes.Mike Krüger
2014-02-05More retina icon supportLluis Sanchez
Replaced CellRendererIcon and CellRendererPixbuf by the new CellRendererImage
2014-02-05Remove ImageService.GetPixbufLluis Sanchez
2014-01-30[Icons] [MonoDevelop.Gettext] New done, error and warning iconsVaclav Vancura
2013-11-14Merge remote-tracking branch 'origin/master' into retinaLluis Sanchez
Conflicts: main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/ExceptionCaughtDialog.cs version-checks
2013-11-12[Cleanup] Try and streamline most DllImports by using shared lib names.Therzok
2013-08-21Merge remote-tracking branch 'origin/master' into retinaLluis Sanchez
Conflicts: main/src/addins/CSharpBinding/MonoDevelop.CSharp/PathedDocumentTextEditorExtension.cs main/src/addins/MonoDevelop.AssemblyBrowser/MonoDevelop.AssemblyBrowser/TreeNodes/AssemblyReferenceNodeBuilder.cs main/src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor/SourceEditorView.cs main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Views/ChangeSetView.cs main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/VersionControlNodeExtension.cs main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/VersionControlService.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/DocumentSwitcher.cs
2013-08-12[Gettext] Hide non public API.Mike Krüger
2013-07-25More Image/Pixbuf changesLluis Sanchez
2012-10-01[Windows] Fix all remaining p/invokesAlan McGovern
We need to use cdecl