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-06-05Merge pull request #7791 from mono/pr-david-fix901091Lluis Sanchez
Fix 901424: After click in the document navigation editor doesn't get focus
2019-06-05Fix 901424: After click in the document navigation bar and select any method ↵David Karlaš
next click on the Editor doesn't work
2019-06-05Fixes VSTS Bug 901464: Copy/paste is broken in "authors" tab (wrongMike Krüger
text or nothing happens) https://devdiv.visualstudio.com/DevDiv/_workitems/edit/901464
2019-06-05Fixes VSTS Bug 901463: Copy and paste is broken or copies wrong textMike Krüger
in "Changes" window Bug 901463: Copy and paste is broken or copies wrong text in "Changes" window DiffView was still using the old SharpDevelop clipboard command system for cut/copy/paste. Moved to monodevelop command handlers.
2019-06-05Merge pull request #7708 from mono/master-DisposedTokenMike Krüger
[Ide] Added a disposed token to the document controller API.
2019-06-05Merge pull request #7786 from mono/jstedfast-async-competion-data-api-fixupJeffrey Stedfast
[Debugger] Fix the async GetCodeCompletionData API to have an Async m…
2019-06-05Fixes VSTS #789402: TfsSmartSession - should use HttpClientProvider (#7777)Mike Krüger
https://devdiv.visualstudio.com/DevDiv/_workitems/edit/789402
2019-06-04[Debugger] Fix the async GetCodeCompletionData API to have an Async method ↵Jeffrey Stedfast
suffix
2019-06-04Merge pull request #7774 from mono/pr-david-fixSnippetsAaron Bockover
Fix 901093: Completing a snippet adds a newline
2019-06-04Merge pull request #7513 from mono/fix-823695Vsevolod Kukol
[GTC] Fixes current window child hierarchy (parents) using RunCustomDialog
2019-06-04[Ide] Added a disposed token to the document controller API.Mike Krüger
The disposed token can be used by continue with calls that shouldn't continue on disposed instances.
2019-06-03Fix 901093: Completing a snippet adds a newlineDavid Karlaš
Fix 901091: Caret jumps to previous line after completing a prop snippet
2019-05-31Merge pull request #7707 from mono/pr-david-fix895583Aaron Bockover
Fix 895583: Breakpoints not visible after renaming file
2019-05-31Merge pull request #7605 from mono/master-vsts866898Lluis Sanchez
Fixes VSTS Bug 866898: Project file not reloaded in editor after
2019-05-31Fix the binding definition of the ProcessSerialNumber struct (#7666)Marius Ungureanu
Doesn't affect the code, but matches results of NSWorkspace.DidLaunchApplicationNotification.
2019-05-31Fix 895583: Breakpoints not visible after renaming fileDavid Karlaš
This is two part fix, part is in DebuggingService which is updating actual breakpoint to new file And other part is in new editor breakpoint integration which now doesn't use `readonly string file` but instead `textDocument.FilePath` which is mutable and updates when file is renamed and also listens for additional event.
2019-05-31[Mac] ObjCMarshalledException is still not reported rightMarius Ungureanu
The app crashes before the handler is reached, fix this by reporting it as fatal - usually the app really just does crash.
2019-05-30Merge pull request #7739 from mono/pr-david-changeMarginAaron Bockover
Integrate Changed lines margin and map used colors
2019-05-30Merge pull request #7694 from mono/nuget-5.1Marius Ungureanu
[NuGet] Update to NuGet 5.1
2019-05-30Merge pull request #7733 from mono/exception-handling-betterLluis Sanchez
Handle exceptions coming in from glib and objc in a better way
2019-05-30Merge pull request #7734 from mono/stray-processLluis Sanchez
[Mac] Use the main DispatchQueue when processing memory pressure events
2019-05-30Merge pull request #7595 from mono/vsdbg-exceptionsJeffrey Stedfast
Vsdbg exceptions
2019-05-30Fix build error on Windows in AccessibilityElementProxy (#7726)monojenkins
2019-05-30[Mac] Use the main DispatchQueue when processing memory pressure eventstherzok
Processing this on a background thread will cause an AppKit NSEventThread to spin up on a background thread, which would never finish running This thread would also be running at 100% CPU, causing a specific thread to loop and burn until the process ends Fixes VSTS #894581 - VS Mac processes still running after quitting the app? Fixes VSTS #802626 - [Feedback] VS usually consumes an entire CPU core when idle, killing battery life (and making my lap hot)
2019-05-30Apply the same fix for objc exceptions.therzok
2019-05-30Integrate Changed lines margin and map used colorsDavid Karlaš
2019-05-30[Debugger] Don't call Show() in the DebugApplicationDialog constructorVsevolod Kukol
Window.Show () should not be called in the constructor because it initializes the Gdk window hidden in the background that immediately steals the native focus on Mac. In general Window.Show() should never be called in a ctor. Fixes VSTS #899539
2019-05-30Merge pull request #7714 from mono/pr-anvod-gotolineAaron Bockover
Fixes VSTS 733501: Go To Line Number
2019-05-30Merge pull request #7650 from mono/fix-780731Lluis Sanchez
[A11y] Check the functions have been set correctly before calling
2019-05-29Fixes https://devdiv.visualstudio.com/DevDiv/_workitems/edit/861121 - ↵Kirill Osenkov
"System.NullReferenceException" when closing a solution while a json file is open & the solution doesn't close. This is the MonoDevelop side of the fix for 861121. For non-C# files they could still be a part of WebEditorRoslynWorkspace, and not MonoDevelopWorkspace, and we need to gracefully deal with that.
2019-05-29Lighting up Go To LineAnže Vodovnik
2019-05-29Merge pull request #7701 from mono/pr-sandy-suggestions-vs-nuget-round-2Aaron Bockover
Packaging: More thread-safety in NuGetPackageServicesProxy
2019-05-29Fixes VSTS Bug 897623: Unable to save changes after undoing changesMike Krüger
for reloaded file https://devdiv.visualstudio.com/DevDiv/_workitems/edit/897623 This patch profits from the changes made for bug 866898 therefore adding it to that PR.
2019-05-29Merge pull request #7679 from mono/master-vsts895926Vsevolod Kukol
Fixes VSTS Bug 895926: Version Control > Log jumps to wrong tag
2019-05-29Packaging: More thread-safety in NuGetPackageServicesProxySandy Armstrong
Remove more unnecessary or problematic uses of Runtime.RunInMainThread, again due to Roslyn blocking the main thread, and then calling services like this from async tasks it also blocks on. Interesting note: the async call in GetInstalledVersions is actually entirely synchronous, but we cannot change all the methods involved because they are implementing interfaces from NuGet. So running it on the threadpool is totally unnecessary, but protects us in case things change in the future. Fixes https://devdiv.visualstudio.com/DevDiv/_workitems/edit/900631
2019-05-28Merge pull request #7671 from mono/fix-slow-document-loadLluis Sanchez
Fix issues when opening a document
2019-05-28Merge pull request #7692 from ↵Ian Toal
mono/FixExternalConsoleIssueInAspDotNetCoreProjects Enable ASP.Net Core projects to run on external console Fixes https://devdiv.visualstudio.com/DevDiv/_workitems/edit/850047 Derive AspNetCoreExecutionCommand from DotNetCoreExecutionCommand as they are identical apart from the ApplicationURLs property. This change enables the external console handling code in DotNetCoreProjectExtension::OnExecuteDotNetCoreCommand to work correctly with all .Net Core projects.
2019-05-28Break if the condition fails to executenosami
2019-05-28Fix buildnosami
2019-05-28Fix condition evaluation in case of external codeMichael Belyaev
2019-05-28[VSCodeDebugProtocol] stylistic fixesJeffrey Stedfast
2019-05-28Refactor long condition to local functionMichael Belyaev
2019-05-28Support "Include subclasses" not only for System.Exception; get rid ofMichael Belyaev
regex parsing; remove condition calculation for regular breakpoints as the debugger already does it.
2019-05-28Support exception catchpoint conditionsMichael Belyaev
2019-05-28Add support for breakpoint conditions in VSCodeDebuggerSessionMichael Belyaev
2019-05-28Support System.Exception with subclassesMichael Belyaev
2019-05-28Workaround for .NET Core debugger which doesn't support exception type filteringMichael Belyaev
2019-05-28[NuGet] Update to NuGet 5.1Matt Ward
Update to NuGet 5.1.0.6013 Fixes VSTS #899305 - Bump to NuGet 5.1
2019-05-28Merge pull request #7653 from mono/enable-new-propertypadLluis Sanchez
[DesignerSupport] Finish migration to the new property editing hash
2019-05-28Derive AspNetCoreExecutionCommand from DotNetCoreExecutionCommand as they ↵Ian Toal
are identical apart from the ApplicationURLs property. This change enables the external console handling code in DotNetCoreProjectExtension::OnExecuteDotNetCoreCommand to work correctly with all .Net Core projects.