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
2016-07-06[AssemblyBrowser] Fix and optimize navigation historyVsevolod Kukol
* show assembly name and member in navigation menu * file based navigation points * reopen closed tab fixed * fixed initial node selection (fixes bug #40314)
2016-06-28[C#] Improve speed of assemblybrowser and jumptodefinion for assemblybrowser.Marius Ungureanu
Offloaded the parsing of the compilation to a background thread. In the case of an assembly search, we now lookup only the types in the current namespace, not all the types recursively found in child namespaces, as we've already triggered a namespace search previously. If no namespace matching the type that we're looking for is found, we end up returning a LookupResult.Failure. Removed double DFS search from the AssemblyBrowserWidget.
2016-06-10Merge remote-tracking branch 'origin/main-menu-redesign'Vsevolod Kukol
2016-06-07Fixed 'Bug 39070 - Assembly browser context menu shows many irrelevantMike Krüger
commands'
2016-05-23Merge remote-tracking branch 'origin/master' into main-menu-redesignVsevolod Kukol
2016-05-12Change GetReferencedAssemblies APILluis Sanchez
It used to return a string, but we need more information, such as the aliases, so it is now returning a class instance.
2016-05-12Revert "Merge branch 'new-asm-reference'"Lluis Sanchez
This reverts commit b0fcdbb819c5eca8bdbf6dd318cdda73f8e05ad8, reversing changes made to a15ee33360b30e505f5850017de4c523fd30350e.
2016-05-12Change GetReferencedAssemblies APILluis Sanchez
It used to return a string, but we need more information, such as the aliases, so it is now returning a class instance.
2016-05-09Fixed 'Bug 40889 - Go to definition failure with Xamarin.Mac'Mike Krüger
2016-04-21[AssemblyBrowser] Move command to Tools categoryVsevolod Kukol
2016-04-13[AssemblyBrowser] Loading is now lock freeMike Krüger
2016-04-13Fixed 'Bug 40316 - [Cycle 7]User is not able to Search dll in AssemblyMike Krüger
Browser.' widget.CecilLoader.LoadAssembly isn.t thread safe so it needs to run on the main thread.
2016-04-05[AssemblyBrowser] Move command to Tools menuVsevolod Kukol
2016-03-27[Ide] Experimental change from single addchild to packing children updates ↵Marius Ungureanu
in tree view nodes This change is going to bring speed improvements after the optimizations done to AppendValues inside Gtk# are released. Batch calls to AddChild, as the collection insertion is guarded against multiple resorts on insertion.
2016-03-16Fixed 'Bug 39615 - [Regression] Visibility setting in assembly browserMike Krüger
isn't restored correctly'
2016-03-15Fixed 'Bug 39613 - Failure to navigate in assembly browser'Mike Krüger
2016-03-10[AssemblyBrowser] Fixed compiler warnings.Mike Krüger
2016-02-24Fixed 'Bug 39068 - Assembly browser does not remember visibilityMike Krüger
setting' It's not true that it doesn't remember the visibility settings - it just got reset sometimes :/.
2016-02-24Fixed 'Bug 39066 - Many errors from assembly browser'Mike Krüger
2016-02-09Revert "Fixed 'Bug 38539 - Getting error while navigating to assembly windows"Mike Krüger
This reverts commit 164cf3f2f2a0f240ddecd85cd4a2d6d4dc98ea5f.
2016-02-09Fixed 'Bug 38539 - Getting error while navigating to assembly windowsMike Krüger
while clicking on "go to declaration".'.
2016-01-27Remove outdated docs and ChangeLogsMichael Hutchinson
They fill search results with irrelevant information. The docs are almost 10 years out of date, and almost none of them apply to the current code. The ChangeLogs are all in the git history, and haven't been used for 5 years.
2016-01-26[Ide] Added support for the constant icon.Mike Krüger
It was missing in the c# binding & assembly browser as well.
2016-01-13[Ide] Navigation links are now only shown on hover.Mike Krüger
In nav link mode & assembly browser. (It looks much better that way) And fixed warnings in source editor project.
2016-01-12Merge remote-tracking branch 'origin/roslyn-nogtkshell'Marius Ungureanu
2016-01-08Fix case of some commandsLluis Sanchez
Patch by Colby Russell
2015-12-14Merge remote-tracking branch 'origin/master' into roslyn-nogtkshellMarius Ungureanu
2015-12-10Fixed 'Bug 36796 - NRE in assembly browser'.Mike Krüger
2015-12-02Merge remote-tracking branch 'origin/roslyn' into roslyn-nogtkshellMarius Ungureanu
2015-11-25ViewContent now creates Controls instead of GTK widgetsLluis Sanchez
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-24[AssemblyBrowser] No longer show const fields as static.Mike Krüger
2015-11-23Merge remote-tracking branch 'origin/roslyn' into roslyn-nogtkshellMarius Ungureanu
2015-11-23[Ide] Implemented static overlay icon.Mike Krüger
For completion, assembly browser and breadcrumb.
2015-11-23[Ide] Cleanup more APIMarius Ungureanu
2015-11-20Fixed 'Bug 36088 - search results list view from query in search boxMike Krüger
is lame in couple of ways'.
2015-11-18[AssemblyBrowser] Handle non existant files.Mike Krüger
Non existant files caused a crash - now the assembly browser ignores them.
2015-11-16Remove GTK API from ExtensibleTreeViewLluis Sanchez
2015-11-11[AssemblyBrowser] Fixed xml doc ids for various reference types.Mike Krüger
This lead to some links not working inside the assembly browser.
2015-11-11Fixed 'Bug 35762 - Assembly browser has non-functioning links'.Mike Krüger
2015-11-11Fixed 'Bug 35760 - Markup errors in assembly browser'.Mike Krüger
2015-08-13Fixed 'Bug 33025 - Assembly browser should search both types andMike Krüger
members'.
2015-08-13Fixed 'Bug 33022 - Assembly browser should remember visibility andMike Krüger
language options'.
2015-08-13Fixed 'Bug 33027 - Assembly Browser navigation is confusing'.Mike Krüger
2015-08-13[AssemblyBrowser] Creation of NR5 type system is now moved to aMike Krüger
background task. + Fixed some UI issues.
2015-08-13Fixed 'Bug 33041 - Go-to-definition against a type insideMike Krüger
Microsoft.mshtml.dll freezes all of XS'.
2015-06-23Merge remote-tracking branch 'origin/master' into roslynMarius Ungureanu
Conflicts: main/src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor/SourceEditorView.cs main/src/addins/NUnit/Services/UnitTest.cs main/src/core/MonoDevelop.Core/MonoDevelop.Core/Gettext.cs version-checks
2015-06-22[Assemby Browser] Fix some potential Null dereferencesiain holmes
Some fixes for potential null dereferences discovered by Coverity.