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-12-05Bump the version number to 2.8.4.1.Duncan Mak
2011-12-03Bump version-checks for md-addins to release hashAlex Corrado
2011-12-01Add the missing IronPythonExecutionHandler.cs filemonodevelop-2.8.4Carlos Alberto Cortez
I'm such an idiot.
2011-12-01make dist should not makeMichael Hutchinson
2011-11-30Bump Mac DMG background image for 2.8.4Alex Corrado
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-29[Debugger] Log the previously removed CWL with the logging service instead.Jeffrey Stedfast
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[Debugger] Remove debugging CWLsJeffrey Stedfast
2011-11-29[Svn] Use the TextFile api to open the diff fileAlan McGovern
Potential fix for bug #1766, though without a testcase it's hard to tell.
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-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-29Merge pull request #133 from carlosalberto/masterLluis Sanchez
Allow the users to use IronPython when using the PyBinding addin
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-29Fix build error on Windows (mcs didn't spot it)Michael Hutchinson
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-29[Debugger] Fixed crash when expanding debugger tooltipsJeffrey Stedfast
Fixes bug #2078
2011-11-28Bump md-addins.Rolf Bjarne Kvinge
2011-11-27Fixed 'Bug 627 - When renaming a file, only select the name and not the ↵Pavlos Touboulidis
extension'
2011-11-26[PyBinding] Let the user select the python runtime path.Carlos Alberto Cortez
This is specially useful when any of the python runtime is *not* in the PATH.
2011-11-26[PyBinding] Add IronPython to the supported runtimes.Carlos Alberto Cortez
2011-11-25Merge pull request #132 from rohdef/masterAlex Rønne Petersen
Made some basic autocompletion work again for Python
2011-11-25Fixed bug causing python exception:Rohde Fischer
for unknow reasons it says: "unexpeted keyword argument", even though the keyword is documented. Keyword argument though is redundant.
2011-11-25Fixed self-dot completion bugRohde Fischer
2011-11-25[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-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-24Bump md-addins versionAlan McGovern
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-23[CSharpBinding] Improved the parameter auto indenting behavior.Mike 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-23Bump md-addins to get correct profiler version checksRolf Bjarne Kvinge
2011-11-23Bump md-addins to get profilerRolf Bjarne Kvinge
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