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-11-15Merge remote-tracking branch 'origin/master' into macgtkMichael Hutchinson
Conflicts: main/src/addins/MonoDevelop.MacDev/MonoDevelop.MacDev.PlistEditor/CustomPropertiesWidget.cs
2011-11-10[Ide] Reduce file content string duplication in FindInFilesJeffrey Stedfast
2011-11-08Merge remote-tracking branch 'origin/master' into macgtkMichael Hutchinson
Conflicts: extras/GtkSourceViewEditor/MonoDevelop.SourceEditor.addin.xml main/src/addins/MonoDevelop.AssemblyBrowser/MonoDevelop.AssemblyBrowser/AssemblyBrowserWidget.cs main/src/core/Mono.Texteditor/Mono.TextEditor/GtkWorkarounds.cs
2011-10-27[Ide] Search results use PadTreeView and Context Menu APIMichael Hutchinson
Also de-stetic the widget - it was trivial.
2011-10-18[Ide] Better fix for replacing with an empty stringAlan McGovern
Redo the change in 96c55e so we can properly detect a replace with empty string versus a plain old file. Whenever the 'Replace' button is clicked we ensure a non-null string is passed as the replace pattern. If 'Find' is clicked, we pass in null. This means we need to use replacePattern == null checks instead of string.IsNullOrEmpty checks.
2011-10-18Fixed 'Bug 1479 - Find-in-Files fails with an Exception '.Mike Krüger
2011-10-26[Undo] Removed begin/end atomic undo action functions & replaced themMike Krüger
with an IDispoable pattern.
2011-10-03[Ide] Fix using Replace with an empty 'replace' stringAlan McGovern
It is perfectly valid to do a Replace where you replace 'foo' with '' therefore we should not avoid calling BeginEdit/EndEdit if the replace pattern is empty. Fixes bug #1170.
2011-10-02[Ide] Clean up Find in Files dialog show/hide logicMichael Hutchinson
2011-10-01[Ide] Do proper mimetype checking to filter binary files from searchAlan McGovern
Nuke the old crufty method which used to be in DirectoryScope and instead use the fancy new methods in DesktopService which do proper mimetype checking.
2011-09-30[Ide] Fix Find in Files for current projectMichael Hutchinson
2011-09-30[Ide] Fixed search in current project.Mike Krüger
2011-09-28[Ide] Respect 'Include Binary Files' for Project and Solution search scopesAlan McGovern
Fixes #1014 so that searching in Project and Solution scopes does not always include binary files.
2011-08-02Improve detection of binary filesLluis Sanchez Gual
The mime type of some xml files is like application/blah+xml. Those files are properly considered as text now.
2011-05-29Renamed highlighting.Style to ColorSheme because of Gtk.Style nameMike Krüger
clash. This makes it much easier to work with the color shemes.
2011-05-05Fix warnings.Lluis Sanchez Gual
2011-04-28Fix possible null reference exception.Mike Krüger
The references finder doesn't need a monitor to work - now that case is handled.
2011-04-26The find references operation can now be canceled.Mike Krüger
2011-04-20Worked on references finder.Mike Krüger
2011-04-01Fixed 'Bug 683732 - Cannot find in files after opening a project'.Mike Krüger
2011-03-31Added options parameter to OpenDocumentLluis Sanchez Gual
Replaced the old bringToFront and hilightCaret boolean parameters by a new options parameter which have those and other options.
2011-03-30Removed the scope - selection autoselection if something is selected.Mike Krüger
2011-03-21Fixed 'Bug 681061 - Replace in files tries to open directories andMike Krüger
fails completely'.
2011-03-11Fixed 'Bug 678741 - Renaming overloaded method often yields multiplemkrueger
copies of name'.
2011-03-11[Ide] Fix search pad pinning iconMichael Hutchinson
2011-03-10* CSharpParser.cs: Removed debug message.Mike Krüger
* ReferencesFinder.cs: * RenameItemDialog.cs: * RenameRefactoring.cs: Fixed 'Bug 678393 - Rename command shows an empty search pad'.
2011-03-03Fixed some possible issues in search & replace.mkrueger
2011-02-28Fixed 'Bug 674898 - Rename command hangs GUI while findingmkrueger
references'.
2011-02-09Overworked find all references model. It's now per file (=mime type)Mike Krüger
instead of per project. Change was required for supporting references in files that are part of the project but are embedded in another language - see 'Bug 663095 - Find References does not find method references in ASPX'.
2010-11-26Fixed some issues in find & replace in files.Mike Krüger
2010-10-26Clean up dialog placementMichael Hutchinson
2010-10-07Handled errors in search results nicer.Mike Krüger
2010-09-17Handled file errors more nicelyMike Krüger
2010-08-22Transformed text editor line/column coordinate system.Mike Krüger
Now any line/column in monodevelop is 1 based.
2010-08-19check for files smaller than the search pattern.Mike Krüger
2010-08-13Markup line numbers too.Mike Krüger
2010-08-12Some minor adjustments to the search output.Mike Krüger
Lines are now part of the file name (saves up space) + removed indentation of the search output (saves space too).
2010-08-12fixed build on linux.Mike Krüger
2010-08-12Fixed dead lock on windows & improved speed a lot.Mike Krüger
2010-08-06Track API changes.Mike Krüger
2010-07-18* Makefile.am:Mike Krüger
* MonoDevelop.Ide.csproj: * MonoDevelop.Ide.Gui/Document.cs: * MonoDevelop.Ide.Gui/Workbench.cs: * MonoDevelop.Ide.Gui/TextEditor.cs: * MonoDevelop.Ide.FindInFiles/Scope.cs: * MonoDevelop.Ide.Commands/EditCommands.cs: * MonoDevelop.Ide.Commands/ViewCommands.cs: * MonoDevelop.Ide.Tasks/CommentTasksView.cs: * MonoDevelop.Ide.Gui/ViewCommandHandlers.cs: * MonoDevelop.Ide.FindInFiles/FileProvider.cs: * MonoDevelop.Ide.CodeTemplates/CodeTemplate.cs: * MonoDevelop.Ide.CodeTemplates/ExpansionObject.cs: * MonoDevelop.Ide.Gui.Content/TextEditorExtension.cs: * MonoDevelop.Ide.Commands/CustomStringTagProvider.cs: * MonoDevelop.Ide.Navigation/NavigationHistoryService.cs: * MonoDevelop.Ide.StandardHeader/StandardHeaderService.cs: * MonoDevelop.Ide.CodeFormatting/CodeFormattingCommands.cs: * MonoDevelop.Ide.Gui.Content/CompletionTextEditorExtension.cs: Replaced old text editor reminders with mono.texteditor & renamed the texteditordata property to editor. svn path=/trunk/monodevelop/; revision=160541
2010-07-07Fix array index exception when searching.Levi Bard
svn path=/trunk/monodevelop/; revision=159994
2010-05-22* src/addins/WelcomePage/WelcomePageView.cs:Michael Hutchinson
* src/addins/NUnit/Services/NUnitService.cs: * src/addins/MonoDevelop.Autotools/Commands.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Ide/MessageService.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Ide/ProjectOperations.cs: * src/addins/MonoDevelop.Autotools/TarballBuilderEditorWidget.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/DefaultWorkbench.cs: * src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/DebuggingService.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Ide.FindInFiles/FindInFilesDialog.cs: * src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext/GettextFeatureWidget.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Components.Commands/LinkCommandEntry.cs: * src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore.Dialogs/BindDesignDialog.cs: * src/addins/MonoDevelop.Refactoring/MonoDevelop.Refactoring/RefactoryCommands.cs: * src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: * src/addins/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport/ToolboxService.cs: * src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore.Dialogs/SelectRenamedClassDialog.cs: * src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore.Dialogs/ConfirmWindowDeleteDialog.cs: * src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment.Commands/Commands.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors/CollectionEditor.cs: * src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors/FlagsSelectorDialog.cs: * src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment.Gui/DeployOperations.cs: * src/addins/MonoDevelop.WebReferences/MonoDevelop.WebReferences.Dialogs/WebReferenceDialog.cs: * src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/CommitCommand.cs: * src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.NodeBuilders/TranslationProjectNodeBuilder.cs: * src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/PublishCommand.cs: * src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/CheckoutCommand.cs: * src/addins/MonoDevelop.Refactoring/MonoDevelop.Refactoring.ExtractMethod/ExtractMethodRefactoring.cs: * src/addins/MonoDevelop.WebReferences/MonoDevelop.WebReferences.Commands/WebReferenceCommandHandler.cs: * src/addins/Deployment/MonoDevelop.Deployment.Linux/MonoDevelop.Deployment.Linux/DotDesktopViewWidget.cs: * src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Dialogs/SelectRepositoryDialog.cs: * src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion.Gui/UserPasswordDialog.cs: * src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion.Gui/SslServerTrustDialog.cs: * src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion.Gui/ClientCertificateDialog.cs: * src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion.Gui/ClientCertificatePasswordDialog.cs: More dialog placing. * src/core/MonoDevelop.Ide/gtk-gui/objects.xml: Flush. svn path=/trunk/monodevelop/; revision=157758
2010-05-22* MonoDevelop.Ide/MonoDevelop.Ide/MessageService.cs:Michael Hutchinson
* MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/OptionsDialog.cs: * MonoDevelop.Ide/MonoDevelop.Ide.FindInFiles/FindInFilesDialog.cs: Mac dialog placement tweaks. svn path=/trunk/monodevelop/; revision=157753
2010-05-19* MonoDevelop.Ide.FindInFiles/SearchResultWidget.cs: Set the activeLluis Sanchez
location list every time a search is started. svn path=/trunk/monodevelop/; revision=157533
2010-05-12* Makefile.am:Lluis Sanchez
* MonoDevelop.Ide.csproj: * MonoDevelop.Ide.Navigation: * MonoDevelop.Ide.Gui/Workbench.cs: * MonoDevelop.Ide.Tasks/TaskStore.cs: * MonoDevelop.Ide.Gui.Content/INavigable.cs: * MonoDevelop.Ide.Gui.Content/ILocationList.cs: * MonoDevelop.Ide.Commands/NavigationCommands.cs: * MonoDevelop.Ide.Gui/DocumentNavigationPoint.cs: * MonoDevelop.Ide.Gui/TextFileNavigationPoint.cs: * MonoDevelop.Ide.Gui/NavigationHistoryService.cs: * MonoDevelop.Ide.FindInFiles/SearchResultWidget.cs: Moved navigation service to a new namespace. * MonoDevelop.Ide.Navigation/HistoryList.cs: * MonoDevelop.Ide.Navigation/NavigationPoint.cs: * MonoDevelop.Ide.Navigation/NavigationHistoryItem.cs: * MonoDevelop.Ide.Navigation/TextFileNavigationPoint.cs: * MonoDevelop.Ide.Navigation/DocumentNavigationPoint.cs: * MonoDevelop.Ide.Navigation/NavigationHistoryService.cs: Properly dispose navigation points. svn path=/trunk/monodevelop/; revision=157249
2010-05-10* MonoDevelop.Ide.FindInFiles/SearchResultWidget.cs: Search resultsMike Krüger
now have exacter navigation points. svn path=/trunk/monodevelop/; revision=157024
2010-04-20* MonoDevelop.Ide.FindInFiles/FindInFilesDialog.cs: Remove duplicateLluis Sanchez
log write. * MonoDevelop.Ide.Gui/MonoDevelopStatusBar.cs: Draw the resize grip using the shaded background color. * MonoDevelop.Ide.Gui/DefaultWorkbench.cs: The resize grip must always be visible in Mac. On other platforms show it only when not maximized. svn path=/trunk/monodevelop/; revision=155784
2010-04-19* MonoDevelop.Ide.Gui/ProgressMonitors.cs:Lluis Sanchez
* MonoDevelop.Ide.Gui.Components/LogView.cs: * MonoDevelop.Ide.Gui/MonoDevelopStatusBar.cs: * MonoDevelop.Ide.Gui/StatusProgressMonitor.cs: * MonoDevelop.Ide.Gui.Pads/DefaultMonitorPad.cs: * MonoDevelop.Ide.FindInFiles/FindInFilesDialog.cs: * MonoDevelop.Ide.FindInFiles/SearchProgressMonitor.cs: When clicking over the status bar, activate the pad that generated the status message being shown. For example, if the status bar shows "Build: 1 error", show the errors pad when clicking on that. * MonoDevelop.Ide/ProjectOperations.cs: * MonoDevelop.Ide.Gui.Pads.ProjectPad/FolderNodeBuilder.cs: Fix warning. * MonoDevelop.Ide.Gui.Pads/TaskListPad.cs: Fix nullref. svn path=/trunk/monodevelop/; revision=155730
2010-04-07* MonoDevelop.Ide.FindInFiles/SearchResultWidget.cs: Fixed 'BugMike Krüger
559804 - Strings in search result pad are near-invisible' svn path=/trunk/monodevelop/; revision=154961