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
path: root/main/src
AgeCommit message (Collapse)Author
2016-01-03[Icons] [Debugger] New Pad icons:Vaclav Vancura
* pad-call-stack * pad-locals * pad-threads * pad-watch See https://github.com/xamarin/icons/issues/158
2015-12-29[Icons] [Ide] New close and help icons:Vaclav Vancura
* close-all-documents * close-solution * help See https://github.com/xamarin/icons/issues/174
2015-12-29[Ide] Removing unfinished NSColor.CurrentControlTint = graphite implementationVaclav Vancura
2015-12-21[Windows] Fix dark search entry caretVsevolod Kukol
2015-12-21[Ide][Win] No completion tooltip offsetVsevolod Kukol
2015-12-21[Ide] Fix completion popover alignmentVsevolod Kukol
Align the popover next to the alignemnt target rectangle (caret) and not over its border. This happens only when the target is on the left or top side of the popover.
2015-12-18[Ide] Use scaled editor font for code in popoversVsevolod Kukol
2015-12-18[Ide] Fix icon size in SDK location option panelVsevolod Kukol
2015-12-18[Ide][Mac] More native looking text entriesVsevolod Kukol
2015-12-18[Ide] Remove CompletionListRows preferenceVsevolod Kukol
2015-12-18[Ide] Custom completion list category fontVsevolod Kukol
2015-12-18[Ide] Fix completion popover spacingVsevolod Kukol
2015-12-18[Ide] Fix crompletion tooltip pager flickeringVsevolod Kukol
Completion tooltip does not need an update when switching overlays.
2015-12-18[Ide] Clickable popover pager arrowsVsevolod Kukol
(fixes bug #7508)
2015-12-17[Ide][Mac] Revert pressed button gradient changeVsevolod Kukol
2015-12-17[Ide][Mac] Optimize GtkButton designVsevolod Kukol
2015-12-16[Ide] remove experimental Gtk engine featuresVsevolod Kukol
2015-12-16Merge remote-tracking branch 'origin/master' into roslyn-dark-skinVsevolod Kukol
2015-12-16[Windows] Different style colors for titlebar menuVsevolod Kukol
2015-12-16[Windows] Fix menu keybinding text alignmentVsevolod Kukol
2015-12-16[Ide] Fix status icon rendering in ExtensibleTreeViewVsevolod Kukol
* selected state support * zoom support * use default size for multisized icons
2015-12-16Revert "[mdtool] Fix tools that depend on PlatformService"Alan McGovern
2015-12-16[NuGet] Stop using DispatcherService.Matt Ward
The NuGet addin no longer uses the DispatcherService to run package actions in the background. It now uses its own background thread to queue and run these actions. Due to being unable to use the original DispatcherService's BackgroundDispatchAndWait without locking up the UI the PackageManagementProjectOperations.InstallPackages has been changed to return when the package install has started. Previously it would wait until the packages were finished installing. Also the PackageManagementProjectOperations.GetIstalledPackages now returns installed packages as well as those being installed. This prevents a Xamarin Component that installs a NuGet package from showing an error when it is installed. Unfortunately one side effect of this change is that if the NuGet package fails to install the Component does not show an error icon when previously it did since originally the packages were installed and then the list of packages was checked. Now this happens whilst the packages are being installed.
2015-12-16[mdtool] Fix tools that depend on PlatformServicemhutch
e.g. for mimetype lookup
2015-12-16[Core] Remove unnecessary stacktrace from errormhutch
2015-12-16[Gettext] Implement unicode unescapingmhutch
2015-12-16fixed ambiguous PropertyChangedEventArgsnosami
2015-12-15[AutoTest] Add a method to set a property on a queried objectiain holmes
2015-12-15[Ide] Show active configuration in project options dialog.Matt Ward
Fixed bug #11022 - Project Options should mark active configuration in configuration editing combo https://bugzilla.xamarin.com/show_bug.cgi?id=11022 The Configuration drop down box in the Project Options dialog now shows which configuration is currently active in the IDE by appending (Active) text to the combo box. This makes it clearer that changing the editing configuration would change the active configuration.
2015-12-15Hide more DispatchService apiLluis Sanchez
2015-12-15Close most of DispatchServiceLluis Sanchez
Most of the DispatchService functionality has been superseeded by async api and by methods in MonoDevelop.Core.Runtime.
2015-12-15Bug 36966 - Missing semi-colons are not indicated in the sourceDavid Karlaš
First part of this fix seems totally legit to me in sense that if endOffset == offset it should be + 1, so something is marked with error... But second part(expending to next line) is not so legit since it's expending error to first char of next line and rendering waved underlining there, user will still get more then enough of information on what is going on and what to fix, but it would be nicer if it was rendered at end of line beyond last char. Problem is that convincing whole TextSegment rendering system to render beyond last char of line is not so simple and need major changes and that would be enhancement and not bug fix.
2015-12-15[Ide][Win] Fix ComboBoxEntry button alignmentVsevolod Kukol
2015-12-15[Ide][Win] Fix dark ToggleButton designVsevolod Kukol
2015-12-15[Ide][Win] Fix CheckButton without indicator designVsevolod Kukol
2015-12-15[Ide] ImageService.GetIcon size now defaults to IconSize.MenuVaclav Vancura
2015-12-15[Ide] Prevent language keyword being used as new project name.Matt Ward
Fixed bug #15478 - MonoDevelop shouldn't accept language keywords as Project Name https://bugzilla.xamarin.com/show_bug.cgi?id=15478 If a new C# project was created with the name 'try' then the project would not compile since the generated files would have an invalid namespace of 'try'. To prevent this the new project dialog now checks the CodeDomProvider for the template's language to see if the project name is a valid identifier. If this is not the case an error message is displayed and the project cannot be created until its name is changed. Another approach would be to escape the namespace in the SingleFileDescriptionTemplate using the CodeDomProvider's CreateEscapedIdentifier. Whilst that works for C# projects it does not work for F# projects. If you try to create an F# project named 'try' it does not escape the namespace or use the namespace created by the IDE.
2015-12-15Bug 36964 - NullReference in ParameterCompletionWindowDavid Karlaš
2015-12-15Merge pull request #1181 from iainx/fix-36056Lluis Sanchez
[IDE] Use the unsorted path to edit the model
2015-12-15[NuGet] Fix status bar message changing too often on modifying packages.Matt Ward
Fixed bug #36918 - NuGet addin saves project after each change it makes https://bugzilla.xamarin.com/show_bug.cgi?id=36918 The NuGet addin saves the project each time NuGet modifies the project. This results in the "Saving..." message to briefly appear in the status bar and causes the status bar message to appear to blink on and off. To prevent the status bar message changing a different progress monitor is now used when saving the project. This progress monitor does not show the Saving message so the status bar does not appear to blink on and off. The NuGet addin still saves the project more often than it needs to. The original implementation was based on how Visual Studio works, which saves the project on adding a reference, adding an import or removing an import. However saving the project once at the end may be a performance improvement that can be looked at in the future.
2015-12-15[Editor/Debugger] Fix NRE in case of frame being inside corrupted file(with ↵David Karlaš
load last autosaved version)
2015-12-15Bug 36878 - Writing a comment triggers code completionDavid Karlaš
2015-12-15[Ide][Win] Optimize check button designVsevolod Kukol
2015-12-15[Ide][Win] No gradients on widgetsVsevolod Kukol
2015-12-15[Ide][Mac] Use Quartz engine for all checkbuttonsVsevolod Kukol
2015-12-15[Ide][Mac] No gradients on scrolls and buttonsVsevolod Kukol
2015-12-15Bug 36965 - Pressing 'undo' results in corrupt codeDavid Karlaš
2015-12-15Merge pull request #1177 from DavidKarlas/statusNullDavid Karlaš
[CSharpBinding] Fixing NRE exception found while debugging other stuff
2015-12-14[Git] Store the credentials for TFS if the credentials are ok.therzok
Bug 36299 - Popup window asking GitHub credentials opens several times.
2015-12-14[Git] Improve combobox for changes view now that git log is slower.Marius Ungureanu
This adds a mechanism that disables the comboboxes until history is available. It sets the text of the comboboxes to Loading... and the boxes to be insensitive, then switches back to normal behaviour when it finishes loading.