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-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-21[Windows] Fix dark search entry caretVsevolod 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[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[Gettext] Implement unicode unescapingmhutch
2015-12-16fixed ambiguous PropertyChangedEventArgsnosami
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-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 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.
2015-12-14Bug 36921 - Go to Definition uses wrong file pathDavid Karlaš
2015-12-14[Git] Modify rootpath of a repository to not be the .git folder.Marius Ungureanu
2015-12-14[Git] Fix a bug where an empty request was being reiterated indefinitelyMarius Ungureanu
This fixes the TFS connection heuristics to not cycle indefinitely if the endpoint is not reachable. This fixes cloning private repositories over https from github. Bug 36760 - Cannot Checkout Git Repo
2015-12-14[Ide] Adding new Windows menu icons:Vaclav Vancura
* Find Next * Start Debugging * Debug Current Project * Go To Line * Run Unit Tests * VCS: Update * VCS: Push * Solution Options * Project Options * New File * New Workspace * Revert File * 1 Column * 2 Columns * Open Log Directory * Check for Updates * Find Previous * Find Next * Jump to File * Navigate To * Go To Matching Brace
2015-12-14[Ide] Removing obsolete Windows menu icons:Vaclav Vancura
* Create Package * Save As * Tip of the Day * Find in Files
2015-12-14[Windows] Fix some erratic behaviour in searchbar.Marius Ungureanu
2015-12-14[Windows] New toolbar colorsVaclav Vancura
2015-12-14[Mac] Fix crasher caused by logging code.Marius Ungureanu
Bug 36871 - [Roslyn]: Getting fatal error "A fatal error has occurred" when Pressing to 'cmd' + '.' buttons.
2015-12-14[Windows] Fix some searchbar behaviour.Marius Ungureanu
Focus the searchbar whenever setting the category, to fix a bug with input on Windows. Select the search text on focus as per 36765. Send activated event to controller. Bug 36765 - Windows toolbar - previous search text not selected when unified search text box gets focus
2015-12-14[Windows] Don't call present on getting window focusMarius Ungureanu
The searchbar (and possibly any other text box for that matter) needs to force the gtk window to Present itself. This caused a weird issue on the initial focus set that caused the window to reset its allocation. Bug 36755 - Unable to start Xamarin Studio maximized
2015-12-12[NuGet] Change NuGet addin namespace.Matt Ward
Change the namespace from ICSharpCode.PackageManagement to MonoDevelop.PackageManagement
2015-12-12[NuGet] Rename classes named after SharpDevelop.Matt Ward
2015-12-12[CSharpBinding] Ported encapsulate field refactorings.Mike Krüger
Older versions of RefactoringEssentials provided the action but it got removed because of duplicates in VS.NET. Now we're using the same action than VS.NET for that operation.
2015-12-11[Icons] [Ide] Using gtk-execute instead of obsolete gtk-media-playVaclav Vancura
2015-12-11[Icons] [Ide] Removing obsolete gtk-page-setupVaclav Vancura
2015-12-11[AspNet] Windows scale factor fixes for New Project dialog wizard pageMatt Ward
Fixed bug #33774 - Handle Windows scale factor in ASP.NET wizard dialog https://bugzilla.xamarin.com/show_bug.cgi?id=33774 Widgets should now be scaled based on the Windows scale factor. There are still some alignment problems with the labels and the radio buttons and check boxes when the scale factor is 1.5.
2015-12-11[CSharpBinding] Fixing NRE exception found while debugging other stuffDavid Karlaš
2015-12-11[CSharpBinding] Removed debug message.Mike Krüger
2015-12-11Fixed 'Bug 9867 - Shorter aliases for global search'.Mike Krüger
2015-12-11Fixed 'Bug 36834 - Roslyn branch: editor settings are ignored unlessMike Krüger
the file is closed and opened again.'
2015-12-11Fixed 'Bug 34179 - [roslyn] Shared projects don't work'.Mike Krüger
2015-12-11[Windows] Focus menu on left Alt onlyVsevolod Kukol
2015-12-10Merge remote-tracking branch 'origin/master' into roslyn-dark-skinVsevolod Kukol
2015-12-10Bug 28899 - References with same Assembly Name do not reference correct platformDavid Karlaš
2015-12-10[Gettext] Fix being unable to load or create translation projects.Matt Ward
2015-12-10Merge remote-tracking branch 'origin/master' into roslyn-dark-skinVsevolod Kukol
2015-12-10[CSharpBinding] Handled NewLinesForBracesInAccessors formattingMike Krüger
option.
2015-12-10Rename msbuild project namespaceLluis Sanchez
2015-12-10[CSharpBinding] Fixed possible null reference exception.Mike Krüger
2015-12-10[Mac] Fix searchbar text set logging.Marius Ungureanu
2015-12-10[Windows] Add icon styles supportVsevolod Kukol
2015-12-10[Windows] Initial dark theme supportVsevolod Kukol
2015-12-10[Windows] Fix statusbar text wrappingVsevolod Kukol
2015-12-10Fixed 'Bug 36745 - [Roslyn] Unable to Use Added Reference in Project'.Mike Krüger
2015-12-10Fixed 'Bug 36796 - NRE in assembly browser'.Mike Krüger