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
2011-12-05Updated package version to 2.8.4.1monodevelop-2.8.4.1Xamarin Release Manager
2011-11-30Updated add-ins version to 2.8.4Xamarin Release Manager
2011-11-30Updated package version to 2.8.4Xamarin Release Manager
2011-11-30[MacPlatform] Fixed GetUsableMonitorGeometry for vertical screen layouts.Jeffrey Stedfast
Fixes bug #2064
2011-11-29Updated add-ins version to 2.8.3Xamarin Release Manager
2011-11-29Updated package version to 2.8.3Xamarin Release Manager
2011-11-29[Core] Do not blindly assume all SolutionFolders have build configsAlan McGovern
The 'Solution Items' folder used to store files added directly to the root of a solution folder does not have a build config so we cannot just assume it'll be non-null.
2011-11-29[Ide] Don't create multiple 'Solution Items' foldersAlan McGovern
When the user adds files to the root of their solution, re-use any autogenerated 'Solution Items' folders if they exist.
2011-11-29[MacDev] Show an error if xcode 4.2 is not installedAlan McGovern
Fixes bug #1138. The user will be given a proper error message if they try to open a storyboard file or xib without installing xcode.
2011-11-29Merge pull request #134 from pavlos256/masterLluis Sanchez
Fixed 'Bug 627 - When renaming a file, only select the name and not the extension'
2011-11-29[Gtk] Bug 2200 - Cmd-click pops up the context menuMichael Hutchinson
Workaround for old GTK, works fine with newer GTK.
2011-11-29[Ide] Fix About dialog taking 3s to openMichael Hutchinson
Also remove dead code.
2011-11-29[Ide] Fix the About box renderingMichael Hutchinson
Also allow it to have a background image.
2011-11-29[Core] Fix getting branding without fallbackMichael Hutchinson
2011-11-27Fixed 'Bug 627 - When renaming a file, only select the name and not the ↵Pavlos Touboulidis
extension'
2011-11-25Fixed 'Bug 1720 - Right edge of selection is fuzzy'.Mike Krüger
2011-11-24[Core] Handle both vertical and horizontal tabs correctlyAlan McGovern
Additional fix for the previous commit - when the tabs are vertical we should do our checking agaist the Y coordinates, not the X ones.
2011-11-24[Core] Fix the implement of DragNotebook.FindTabAtPositionAlan McGovern
Offscreen widgets still have an allocation > 0 so in order to select the correct widget to display the context menu on the correct tab page we need to walk up/down the tabcontrol from the currently selected page until we hit the first widget satisfying the x/y coordinates. Fixes a bug where scrolling the tab view to the right to put tabs 14-20 in view and right clicking on tab 14 would actually select tab 0 and display the popup for that tab.
2011-11-24[Core] Store the process path in ProcessArgumentBuilder tooAlan McGovern
This simplifies some code as we can now return both the path to a tool and default arguments it requires in one object.
2011-11-24[Ide] Fix Bug 2164 - Context menu submenu shows offscreenMichael Hutchinson
The submenus were lazy-loading during realization, but they needed to lazy-load before size request.
2011-11-23[Core] Fix removal of duplicate msbuild itemsMichael Hutchinson
2011-11-23Remove some duplicate items from the MD project files.Michael Hutchinson
2011-11-22[Gtk] Workaround for Bug 2157 - flaky context menu Michael Hutchinson
2011-11-22[Core] Properly implement Equals/GetHashCode on ProjectReferenceAlan McGovern
Fixes the bug where we could add duplicate references to the project when adding new webreferences as the duplicate check failed.
2011-11-22[Gtk] Opt into fixed modifier handling on new Mac GTKMichael Hutchinson
2011-11-22[Gtk] Better context menu positioningMichael Hutchinson
2011-11-22[Gtk] Better workaround for Mac context menu issuesMichael Hutchinson
2011-11-18[TextEditor] Changed message bubble text color.Mike Krüger
2011-11-17[TextEditor] Fix opt modifier on older GTKsMichael Hutchinson
2011-11-17Work around GTK context menu bugMichael Hutchinson
Triggering context menu from a button press event (which is the correct thing to do) on mac is problematic because the release event sometimes causes the menu to hide again (e.g. sln pad but only when docked on left side). Work around this by triggering it on the release event instead.
2011-11-17Fixed 'Bug 2058 - Adding a project reference in MonoTouch fails toMike Krüger
create code completion for added project reference'.
2011-11-17[Ide] The label in our alert dialog should not be tab focusableAlan McGovern
Disable tab focus for the secondary text label but still allow the user to select with the mouse.
2011-11-16Merge branch 'macgtk'Michael Hutchinson
2011-11-16Fixed 'Bug 68 - Hovering over comment shows weird text'.Mike Krüger
2011-11-16Implemented 'Bug 1165 - MonoDevelop doesn't have a GUID generator. '.Mike Krüger
2011-11-16Fixed 'Bug 1355 - NullReferenceException when minimising MonoDevelop'.Mike Krüger
2011-11-15Merge remote-tracking branch 'origin/master' into macgtkMichael Hutchinson
Conflicts: main/src/addins/MonoDevelop.MacDev/MonoDevelop.MacDev.PlistEditor/CustomPropertiesWidget.cs
2011-11-15[Ide] Refresh the displayed template after it is editedAlan McGovern
We need to refresh what is displayed to the user right after the template edit dialog has been closed so the fresh changes are visible to the user.
2011-11-11[Core] Handle cleaning projects with readonly bin directoriesAlan McGovern
2011-11-11[Core] Ensure we can handle when the built assembly is readonlyAlan McGovern
Strip the readonly attribute from the built assembly in case the user has done something silly like adding the 'bin' directory to a VCS which sets readonly attributes on all files.
2011-11-11[Core] Delete the existing file before copying the new oneAlan McGovern
It is possible (though unlikely) that the user can make files in the bin folder readonly and so we should be sure to remove the attribute and delete the file before copying over the new one. Potential fix for bug #1625.
2011-11-10[TextEditor] Detect GTK micro versionMichael Hutchinson
2011-11-10[TextEditor] Add some docs for key mappingMichael Hutchinson
2011-11-10[TextEditor] Better mapping of keyboard inputMichael Hutchinson
2011-11-10[Ide] Handled recent file storage exceptions.Mike Krüger
Exceptions in recent files could've caused that a loading/saving operation didn't occur - an error in the recent files isn't enough to justify that. However the question is, should a message box be displayed or not.
2011-11-10Fixed "Bug 1291 - Go to declaration and Navigate to... don't positionMike Krüger
correctly".
2011-11-10Fixed "Bug 1964 - Crasher clicking in source code".Mike Krüger
2011-11-10[Ide] Reduce file content string duplication in FindInFilesJeffrey Stedfast
2011-11-09[CSharpBinding] Parser now updates on empty document. (Part 2 of "BugMike Krüger
1963 - Replacing collapsed code acts strangely").
2011-11-09[TextEditor] Fixed bug in segment tree (Part of "Bug 1963 - ReplacingMike Krüger
collapsed code acts strangely").