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
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-16Updated reference to xwtvsevolod.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-16Merge pull request #1186 from mhutch/fix-gettext-updateLluis Sanchez
[mdtool] Fix tools that depend on PlatformService
2015-12-16bump fsharpbindingnosami
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[po] Update catalogsmhutch
2015-12-16[Gettext] Implement unicode unescapingmhutch
2015-12-16bump fsharpbindingnosami
2015-12-16fixed ambiguous PropertyChangedEventArgsnosami
2015-12-15[po] Update catalogsmhutch
2015-12-15Merge pull request #1185 from iainx/set-propertyiain
[AutoTest] Add a method to set a property on a queried object
2015-12-15[AutoTest] Add a method to set a property on a queried objectiain holmes
2015-12-15Fix the file filterMiguel de Icaza
2015-12-15Add transifex configurationMiguel de Icaza
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-15Updated references to xamarin-monodevelop-fsharp-addin, md-addinslluis
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-15Revert "bump fsharpbinding - replace GuiDispatch with Runtime.RunInMainThread"nosami
This reverts commit 5dd4015a02e72f2f9c2f2fb34f69c0d24adcef9a.
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-15bump fsharpbinding - replace GuiDispatch with Runtime.RunInMainThreadnosami
2015-12-15Bug 36964 - NullReference in ParameterCompletionWindowDavid Karlaš