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
2011-12-03Updated package version to 2.9.1Xamarin Release Manager
2011-12-02[Stetic] Changed 2 makefiles/fix build.Mike Krüger
For some reason they fail on my system with the .mdb assembly.
2011-12-02[MacDev] Tracked nrefactory API/model changes.Mike Krüger
2011-12-02[CBinding] Track nrefactory API changes.Mike Krüger
2011-12-02[CSharpBinding.AspNet] Track API changes.Mike Krüger
2011-12-02[AssemblyBrowser] Tracked NRefactory API changes.Mike Krüger
2011-12-02[AspNet.Mvc] Track nrefactory api changes.Mike Krüger
2011-12-02[Stetic] Track nrefactory api changes.Mike Krüger
2011-12-02[NUnit] Track nrefactory api changes.Mike Krüger
2011-12-02[CSharpBinding] Track nrefactory API changes.Mike Krüger
2011-12-02[Ide] Improved nrefactory usage.Mike Krüger
2011-12-02[DocFood] Track API changes.Mike Krüger
2011-12-02[CodeMetrics] Track API changes.Mike Krüger
2011-12-01[Moonlight] Track API changes.Mike Krüger
2011-12-01[AspNet] Track nrefactory API changes.Mike Krüger
2011-12-01[VersionControl] Track API changes.Mike Krüger
2011-12-01[CSharpBinding] Track nrefactory API changes.Mike Krüger
2011-12-01[Refactoring] Track API changes.Mike Krüger
2011-12-01[SourceEditor] Updated nrefactory API changes.Mike Krüger
2011-12-01[DesignerService] Updated nrefactory api.Mike Krüger
2011-11-30[Ide] Adjusted to new nrefactory.Mike Krüger
2011-11-30[Core] Adjusted to new nrefactory.Mike Krüger
2011-11-29[MacDev] Work around a bug when creating NSData objectsAlan McGovern
The current code throws an exception if the source array is of length zero, so work around that until it's fixed.
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-29[MacDev] Do not make xcode steal focus when it's updatedAlan McGovern
If Xcode is open and the user is modifying the project from MonoDevelop we should ensure that it does not steal focus. It will still gain focus when it is start for the first time though.
2011-11-28Fixes build with master mcsMarek Safar
2011-11-25Merge branch 'master' into newresolverMike Krüger
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[WebReferences] Do not update the webreferences while blocking the UIAlan McGovern
WebReferences are now updated in a background thread. The call to the WebReferencesChanged event is proxied to the main UI thread if it is not on the UI thread so that everywhere which hooks into this event does not have to be modified to sync back.
2011-11-23Merge branch 'master' into newresolverMike Krüger
2011-11-23[CSharpBinding] Improved the parameter auto indenting behavior.Mike Krüger
2011-11-23Fixed build for windows.Mike Krüger
2011-11-23Merge branch 'master' into newresolverMike Krüger
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-23[MacDev] Fix a bug where a new xib/storyboard would not sync outAlan McGovern
When we add files to a monomac/monotouch project while the project is open in xcode, we need to ensure that the freshly added files are synced to the *new* directory, not the old directory. We also need to ensure that xcode remains open after the sync happens.
2011-11-23[Debugger] Remove LogWriter from new custom transport APIMichael Hutchinson
2011-11-22[Gtk] Workaround for Bug 2157 - flaky context menu Michael Hutchinson
2011-11-22[Debugger] Allow custom soft debugger transportsMichael Hutchinson
2011-11-22[MacDev] Add some more sanity checks to try prevent xcode re-openingAlan McGovern
Add checks in the applescript itself to ensure we don't restart xcode in the event it is shut down by the time the applescript actually executeis. Partial fix for bug #1648.
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] Add comment regarding window hint workaroundMichael Hutchinson
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-22[Debugger] Mark value tooltips as popups so Mac GTK allows keyboard focusMichael Hutchinson