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
2013-08-27Revert "Upgrade core and addins to 4.5 runtime"Michael Hutchinson
This reverts commit 9656726c1e2b96cdfdbb9506eb1ac1c93b91befd. Reverting until we get the installer updated to check the dependency.
2013-08-27[Subversion] Fixup to Progress Monitoring spamming the Log.Therzok
2013-08-27Fixed 'Bug 14253 - NRE in Find References'.Mike Krüger
2013-08-27[CSHarpBinding] Fixed script selection bug.Mike Krüger
2013-08-26Merge pull request #385 from mono/svnProgressNewUngureanu Marius
[Subversion] Implemented Progress Monitoring for Subversion commands.
2013-08-26[build] Remove some duplicates from our buildAlan McGovern
2013-08-26[Refactoring] Fixed compiler warnings/cleaned up some code.Mike Krüger
2013-08-26[SourceEditor] Added bounds check to the quick task panel.Mike Krüger
2013-08-26[Refactoring] Fixed bug in extension method namespace resolving.Mike Krüger
.Any() suggested a wrong namespace.
2013-08-24[SourceEditor] Close bubble tooltip on scroll event.Mike Krüger
2013-08-24[SourceEditor] Tweaked message bubble shadow a bit.Mike Krüger
2013-08-24[SourceEditor] Ensure that popup window is destroyed, when messageMike Krüger
text marker gets removed.
2013-08-23[AssemblyBrowser] Set local copy flag for NRefactory.Cecil.Mike Krüger
2013-08-23[Subversion] Implemented Progress Monitoring for Subversion commands.Therzok
TODO: Prettify text output and make progress bar indefinite.
2013-08-23[SourceEditor] Worked on error bubble design.Mike Krüger
2013-08-23[Refactoring] Disabled code issue pad for the release.Mike Krüger
2013-08-23[CSharpBinding] Fixed if-else-if formatting bug.Mike Krüger
2013-08-23[MacPlatform] When modifying an internet passwd, need to reset the ↵Jeffrey Stedfast
description attr as well
2013-08-23[MacPlatform] Make Keychain save "Web form password" when the auth type is ↵Jeffrey Stedfast
HTML Form
2013-08-23[MacPlatform] A whole bunch of fixes to KeychainJeffrey Stedfast
1. Fixed support for unicode strings (by manual marshalling) 2. Fixed InternetPasswords to use the protocol & auth type 3. Fixed the path argument to not contain the query or leading / 4. Provide a nice label string for the key when veiwed in Keychain Access 5. Fixed to call CFRelease() on returned items for Find/AddInternetPassword
2013-08-22Add missing fileLluis Sanchez
2013-08-22[HexEditor] User the new debugger visualizer apiLluis Sanchez
2013-08-22[Debugger] Add support for "default" visualizersLluis Sanchez
2013-08-22[Version Control] Refresh status view if it exists for the current context.Therzok
2013-08-22Merge pull request #383 from mono/gitCleanupLluis Sanchez
[Git] Cleanup on files.
2013-08-22[Version Control] Fixed renaming for Subversion.Therzok
2013-08-22Improved 'Bug 14158 - Error while looking up framework types '.Mike Krüger
2013-08-21[Git] Cleanup on files.Therzok
Made some functions static. Removed redundant usings. Added some StringComparison.Ordinal usage.
2013-08-21Merge pull request #381 from mono/mergecsprojUngureanu Marius
[Version Control] Resolve Conflicts command for broken projects/solutions.
2013-08-21[Git] Fixed some NREs in Remotes Dialog and Funny Refname issues.Marius Ungureanu
2013-08-21[Version Control] Bug 13886 - Conflicted project files and MergeView fixes.Therzok
No longer throw exception because we modify children list on destroy. We now have an attachable window for project files which are in a broken project.
2013-08-21[CSharpBinding] Stabilized xml verification routines & switched to the new ↵Mike Krüger
nrefactory library layout.
2013-08-21[HexEditor] Take back workaround, it's now fixed.Mike Krüger
2013-08-21[SourceEditor] Improved message bubble theming.Mike Krüger
2013-08-20Merge pull request #380 from mono/someCleanupUngureanu Marius
Cleanup for Version Control and RootWorkspace
2013-08-20[Version Control Cleanup in Dialog and Views folders.Therzok
Remove redundant usings. Add StringComparison argument. Removed some redundant qualifiers from definitions. Made some functions static. =D
2013-08-20Revert two of the static function conversions as they require API changes.Therzok
2013-08-20[Version Control] Removed unused files AnnotateView and AnnotateCommand.Therzok
They have been replaced by BlameView and BlameCommand apparently.
2013-08-20[Verison Control] Main folder cleanup:Therzok
Removed redundant Using directives. Added StringComparison arguments. Removed unused private function from Repository. Made some functions static.
2013-08-20[MacPlatform] Rely on Xwt.Mac initializing MonoMac for usAlan McGovern
We don't want to call NSApplication.Init multiple times as MonoMac is now going to explicitly prevent this by throwing an exception. It's a bug if we ever do this, especially if we try to delay-init monomac and end up calling NSApplication.Init either on the wrong thread or after we've already tried to use monomac types.
2013-08-20[CodeIssuePad] Show actions immediately if there is only one issue to choose ↵Simon Lindgren
from.
2013-08-20[Refactoring] Run fewer concurrent threads when analyzing.Simon Lindgren
2013-08-20Fix build with mono master.Simon Lindgren
2013-08-20[Refactoring] Add CodeIssue instrumentation.Simon Lindgren
2013-08-20[Refactoring] Handle exceptions better and add more specific error handling ↵Simon Lindgren
in CodeAnalysisBatchRunner.
2013-08-20Fixed 'Bug 14078 - HexEditor tries to get negative byte ranges whenMike Krüger
editor data is too short to fill a page'.
2013-08-20[CSharpBinding] Subissues are now generated on the main thread.Mike Krüger
2013-08-20[Debugger] Fix button images in exceptions dialogMichael Hutchinson
2013-08-20[stetic] Fix displaying images on buttons with empty textMichael Hutchinson
GTK suppresses the image unless the text is null, so don't set it to string.Empty or we get a button with nothing in it.
2013-08-19[MacPlatform] Remove some duplicated NSApplication.Init callsAlan McGovern
We need to enforce that NSApplication is only initalised at application startup. We still call NSApplication.Init more than once and we still do it lazily which is Bad. We can end up (re)initializing on the wrong thread and break monomac. This kills the worst of the issues and should allow MonoDevelop to run again.