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
2012-01-14Updated required md-addins revision to tagged commitmonodevelop-2.8.6.1Xamarin Release Manager
2012-01-14Bump Mac DMG background image for 2.8.6.1Alex Corrado
2012-01-14Updated add-ins version to 2.8.6.1Xamarin Release Manager
2012-01-14Updated package version to 2.8.6.1Xamarin Release Manager
2012-01-14[Docking] Fix a case where a widget could be parented twiceMichael Hutchinson
The DockItem widgets can be parented into a floating window, the DockFrame's DockContainer, or an AutoHideDock. In the latter two cases, it's possible that a race could cause the widget to be added to its new parent before it's removed from its old parent. May fix bug 1445 - MD crashes with SIGABRT occasionally when stopping debugging
2012-01-14[Ide] Revert my previous widget.Unparent() fix. It seems to cause breakage.Jeffrey Stedfast
2012-01-14[Ide] Fix another bad usage of Widget.Unparent ()Alan McGovern
Whilest this code should never execute as the Widget should be removed from the floatingWindow before it is set to null, change this from Unparent to a 'Remove' call as this is will not trigger bug #1445.
2012-01-14[Ide] Prevent some null derefs after autohide windows have been destroyedAlan McGovern
Final fixes required for bug #1445.
2012-01-14[Ide] Don't use Gtk.Widget.Unparent(), use widget.Parent.Remove() instead.Jeffrey Stedfast
This allows the parent to be notified that the child has been removed.
2012-01-14[Ide] Override OnRemoved() for CustomFrame so we can null the child.Jeffrey Stedfast
2012-01-14[Ide] Fixed default viewer selection in FileSelectorDialog.Jeffrey Stedfast
2012-01-11Updated required md-addins revision to tagged commitmonodevelop-2.8.6Xamarin Release Manager
2012-01-09Updated required md-addins revision to tagged commitXamarin Release Manager
2012-01-06Updated md-addins dependency revision.Jeffrey Stedfast
2012-01-06[Ide & Debugger] Fixed OpenDocument optimization.Jeffrey Stedfast
Turns out the Debugger's OpenDocument() logic didn't use OpenDocumentOptions.Default.
2012-01-06Bump the md-addins hash in version-checks for the 2.8.6 releaseAlex Corrado
2012-01-06[MacDev] Renamed the ReleaseOutlets() method to ReleaseDesignerOutlets().Jeffrey Stedfast
2012-01-06[MacDev] Auto-generate a ReleaseOutlets() methodJeffrey Stedfast
Part of the fix for bug #2657.
2012-01-05[Ide] Revert 219a0f8cAlan McGovern
This behaviour is what we want in #2739.
2012-01-05[Ide] Don't assume the node.DataItem exists in objects.Jeffrey Stedfast
Fixes bug #126.
2012-01-05Bump Mac DMG image for 2.8.6Alex Corrado
2012-01-05Updated add-ins version to 2.8.6Xamarin Release Manager
2012-01-05Updated package version to 2.8.6Xamarin Release Manager
2012-01-05[Ide] Don't Gtk.Widget.Show() in the widget ctor.Jeffrey Stedfast
2012-01-05[Ide] Add the MONODEVELOP_TEST_CRASH_REPORTING env var for testing crash ↵Alan McGovern
reporting If this env var is non-null, clicking on 'Send Feedback' will generate an unhandled exception. If the value is equal to 'prompt', you will always be prompted to opt in/out of crash reporting regardless of the previously selected value.
2012-01-05[MacInterop] Add the ability to add/retrieve passwords from the keychainAlan McGovern
This will be useful for storing passwords for various VCS.
2012-01-05[Core] Put back in handling for when the user opts out of crash diagnosticsAlan McGovern
If the user clicks no, we should not keep prompting them to opt in.
2012-01-05[VersionControl] Handle renaming a directory which is staged for addingAlan McGovern
If a directory is renamed which contains files in the VCS, we need to move them within the VCS.
2012-01-05[Core] Add an env var to allow easy testing of crash reportingAlan McGovern
If the 'MONODEVELOP_FEEDBACK_THROWS_EXCEPTION' env var has a non-null value, then clicking on the feedback button in the bottom right of MonoDevelop will create an exception which will be processed as a normal unhandled exception.
2012-01-05[Core] Ensure crash report uploading is not done on the main thread.Alan McGovern
2012-01-05[VCS] Implement proper support for renaming files in VCSAlan McGovern
If a file is renamed we should treat it exactly as if it were moved. i.e. we need to remove any pending 'add' if there is one and stage it again for adding. Fixes bug #2547.
2012-01-05Fix the makefile buildMichael Hutchinson
2012-01-05[Ide] Remove unused codeMichael Hutchinson
2012-01-05[Ide] Add button mnemonics to error report dialogMichael Hutchinson
2012-01-05[Ide] Improve wording of error reporting dialogMichael Hutchinson
2012-01-05[Ide] Improve wording of error reporting settings panelMichael Hutchinson
2012-01-05[Ide] Add an env var to test the error reporterMichael Hutchinson
Set MONODEVELOP_CRASHREPORTER_TEST=true and click on the Feedback button.
2012-01-05[Core] Don't lose error reporting settingsMichael Hutchinson
2012-01-05[Ide] Clean up the error reporting dialogMichael Hutchinson
2012-01-05[Ide] Slight optimizations to document loading on startup.Jeffrey Stedfast
2012-01-05[Debugger] Allow ToString calls when refreshing values in the tree.Jeffrey Stedfast
This should fix an issue reported in assistly.
2012-01-04[MonoMac] Place the 'Empty MonoMac' project template with the rest of themAlan McGovern
2012-01-04MonoMac launcher fix: implement the suggestion from bug #2727Miguel de Icaza
2012-01-04[Core] Fixed previous commitJeffrey Stedfast
2012-01-04[Core] Added commandline parser APIs to ProcessArgumentBuilder.Jeffrey Stedfast
2012-01-03[Ide] Use GLib.Markup.EscapeText() instead of a custom function.Jeffrey Stedfast
2012-01-03Fixed "Bug 2639 - No keys / commands to scroll page up/down and moveMike Krüger
caret at the same time ".
2012-01-03Updated MonoMac to January 2nd 2012 codebase from monomac ↵Miguel de Icaza
1a68d230edfef2eca96a343fe9485b68e223eca3 and maccore 5dbf53b58d5eb1afcd6101128047e88c20258478
2012-01-03[Decompiler] Turned off local copy reference flag.Mike Krüger
2012-01-02[Ide] Fixed an issue where in category mode a "random" item wasMike Krüger
choosen instead of the first one in the list.