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-07Merge remote-tracking branch 'origin/master' into release-8.2monodevelop-8.2.0.707Lluis Sanchez
2019-06-07Merge pull request #7838 from mono/fix910879-new-editor-splitviewLluis Sanchez
[Ide] Use regular Gtk.HPaned for split view with the new editor
2019-06-07Updated reference to KirillOsenkov/vs-editor-api@1bc2074david.karlas
2019-06-07[Ide] Use regular Gtk.HPaned for split view with the new editorVsevolod Kukol
Fixes VSTS #910879
2019-06-07Merge pull request #7836 from mono/workbench-handle-pad-dispose-exceptionLluis Sanchez
[Ide] Handle exception disposing pad on closing the workbench.
2019-06-07Merge pull request #7833 from mono/pr-master-fix-dmg-on-mojave-botsLluis Sanchez
[Mac] Refactor DMG generation to just use a single hdiutil call
2019-06-07Merge pull request #7823 from mono/fix-892087Lluis Sanchez
Fix issue in generate new class refactoring
2019-06-07Updated reference to xamarin/md-addins@ff09c97lluis
2019-06-07Merge pull request #7764 from mono/fix-900933Lluis Sanchez
[Mac] Don't force resize the window when positioning it
2019-06-07[Ide] Handle exception disposing pad on closing the workbench.Matt Ward
An error disposing a pad on closing the workbench results in a fatal exception which may crash the IDE. Handle any error on disposing the pad with a try/catch. Fixes VSTS #911276 - [Watson] Crash in PackageConsolePad
2019-06-07[Mac] Refactor DMG generation to just use a single hdiutil callJo Shields
This fixes 'make dmg' step in VSTS on the Mojave bot pool, where doing the image generation in several steps, including mounting and unmounting, was timing out.
2019-06-07Merge pull request #7822 from mono/jstedfast-debugger-checksumsJeffrey Stedfast
[Debugger] Improved source checksum logic for UNIX and DOS line endings
2019-06-07Updated reference to xamarin/md-addins@e9b91f0abock
2019-06-07Updated reference to xamarin/md-addins@705a8cdabock
2019-06-06[Debugger] Improved source checksum logic for UNIX and DOS line endingsJeffrey Stedfast
Since it is possible that the assemblies being debugged could have been compiled on a different system (potentially with different line endings), compute hashes for the source code in 3 formats: 1. The source code file with line endings as-is 2. The source code file with DOS line endings 3. The source code file with UNIX line endings Note: sometimes source code may have mixed line endings, so it is important to calculate the source code as-is and not just canonicalized UNIX and DOS line endings. Fixes https://devdiv.visualstudio.com/DevDiv/_workitems/edit/642329 Fixes issue #5260
2019-06-06Merge pull request #7512 from mono/bug802073Greg Munn
Catch exception from having a bad LangVersion setting in .csproj
2019-06-06Merge pull request #7696 from mono/updatechannel-gethashcodeGreg Munn
[Core] Improve UpdateChannel's GetHashCode()
2019-06-06Fix issue in generate new class refactoringLluis Sanchez
Fixes VSTS #892087
2019-06-06Updated reference to xamarin/md-addins@6f2cfb8lluis
2019-06-06Updated reference to xamarin/md-addins@2d6be47lluis
2019-06-06[Mac] Don't resize the window frame when placing the windowiain holmes
Calling setFrame on the NSWindow resizes the window, but not the Gtk contents causing offset issues in 8.1 There appears to be a race condition caused by making the startup sequence more async than in previous versions. This is triggered by starting MonoDevelop from Finder by double clicking on a solution file. The call to Ide.OpenFilesAsync occurs earlier in the startup sequence now, and the call to Workbench.Present causes the error. Workbench.Show is called later in the method by OpenWorkbenchItem, and if we remove the first call to Workbench.Present, then the workbench window opens correctly, but slightly later. I am still tracking this down, but removing this setFrame call seems to be the least dangerous fix for this bug until we fully understand what is going on. Fixes VSTS #900933
2019-06-06Merge pull request #7817 from mono/fix-910800Lluis Sanchez
Fix crash when switching configurations
2019-06-06Merge pull request #7809 from mono/pr-retry-unmount-on-mojave-botsRodrigo Moya
[Mac] Retry unmounting because of an issue in the Mojave bots
2019-06-06[Mac] Remove hardcoded thread suspending mode (#7800)Marius Ungureanu
The underlying mono thread suspending bugs seem to be fixed. Let mono choose the new default. Fixes VSTS #706310 - Re-enable hybrid suspend
2019-06-06[Workspace] Swap the order of cache clearing in the manager. (#7810)Marius Ungureanu
By doing so, we ensure that any in-flight operation to update an assembly from disk must happen before we clear the caches.
2019-06-06Fix crash when switching configurationsLluis Sanchez
Fixes VSTS #910800
2019-06-06Merge pull request #7712 from mono/nuget-enabling-restore-commandsMatt Ward
[NuGet] Fix restore menu incorrectly disabled.
2019-06-06[IDE] Overall energy consumption and UI hang improvements (#7695)Marius Ungureanu
* Misc perf improvements immediately after project load * Use ImmutableDictionary<TargetFramework>, CWT won't work - the strings are collected * Dump * Use DefaultScheduler via Task.Run, Task.Factory is context dependent * [AssemblyBrowser] Cleanups, mostly related to task usage * [Debugger, VCS] Some Task.Factory fixes Fixes VSTS #900427 - Review usage of Task.Factory.StartNew * Use ordinal comparisons here * [ASsemblyBrowser] Fix child nodes not appearing in the list * [VCS] Fix improper usage of cancellation token source * Remove unneeded string ordering * [AsssemblyBrowser] Fix workspace leak and delay project loading. It's not common to get to a project item from the IDE, so we can delay loading that while we get everything else setup * [MSBuild] Switch this to Task.Run, so we don't accidentally parse on the UI thread * Add doc comment * [AssemblyBrowser] Massively improve time it takes to open and a couple of fixes Reuse the typesystem created for decompilation. No need to create a new one just to load the treeview. Prefer using AddChildren everywhere rather than Add. This helps not sort the tree every time we're adding an element. Don't bother gathering all the types in an assembly. Most likely we will only need to gather types from just one assembly, so defer that to the namespace node builder. Fix multiple iteration of a type's members when trying to load a project metadata view. And fix nested types to appear in the tree. * Optimize this a bit more * Minor refactors to avoid extra Funcs * Reuse typesystem for loader, add new feature transform to prevent language breaking
2019-06-06Merge pull request #7772 from mono/master-vsts904321Mike Krüger
Fixes VSTS Bug 904321: [Feedback] Xamarin Android Breakpoint not work
2019-06-06[Mac] Force unmount if it's still failing after 5 triesRodrigo Moya
2019-06-06Make CSharpBreakpointSpanResolver internal (#7799)Marius Ungureanu
2019-06-06[Mac] Retry unmounting because of an issue in the Mojave botsRodrigo Moya
With the move to Xcode 10.2, we need to build on Mojave bots, and there's a bug (https://github.com/al45tair/dmgbuild/issues/10) that makes unmounting time out on the bots, which is fixed by just retrying :/
2019-06-06Fixes VSTS Bug 905613: [Feedback] Cannot Copy Results of Find in Files (#7792)Mike Krüger
… https://devdiv.visualstudio.com/DevDiv/_workitems/edit/905613 AppendFormat was wrong there - CopyData is already formatted. AppendFormat can easily throw an exception depending on the text copied. This patch fixes it.
2019-06-05Icon size and padding fixes.Cody Russell
2019-06-05Merge pull request #7787 from mono/jstedfast-breakpoint-span-resolverJeffrey Stedfast
[Debugger] Added new breakpoint span resolver for C#
2019-06-05Updated reference to xamarin/md-addins@115a911abock
2019-06-05Updated reference to xamarin/md-addins@557c5a2abock
2019-06-05Bump md-addinsLluis Sanchez
2019-06-05Merge branch 'master' into release-8.2Lluis Sanchez
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-05Merge pull request #7788 from mono/master-vsts901463Lluis Sanchez
Fixes VSTS Bug 901463: Copy and paste is broken or copies wrong text
2019-06-05Merge pull request #7704 from mono/backport-pr-7697-to-masterRodrigo Moya
[master] Update translations
2019-06-05Merge pull request #7793 from mono/fix-904300Lluis Sanchez
Remove usage of GetTypedParseResultWithTimeout
2019-06-05[Debugger] Added new breakpoint span resolver for C#Jeffrey Stedfast
Fixes https://devdiv.visualstudio.com/DevDiv/_workitems/edit/887700/
2019-06-05Remove usage of GetTypedParseResultWithTimeoutnosami
Fixes VSTS #904300
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…