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
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutchinson@novell.com>2010-11-12 08:52:10 +0300
committerMichael Hutchinson <mhutchinson@novell.com>2010-11-12 08:52:10 +0300
commit521ee4d8cdbc1f489e7ffccbf0376caa41c1dcee (patch)
tree2f1078a840e2d51344492a8031d3dba7f4827cb8
parentca9a77d0511e37a00cbd9f0d2699990c78fb5b98 (diff)
Fix broken updater backportmonodevelop-2.4.1
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.addin.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.addin.xml b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.addin.xml
index 5169cb3b69..353bd17172 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.addin.xml
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.addin.xml
@@ -290,6 +290,11 @@
<Description>Extensions to the text editor. Classes must be a subclass of TextEditorExtension.</Description>
<ExtensionNode name="Tool" type="MonoDevelop.Ide.Extensions.CustomToolExtensionNode"/>
</ExtensionPoint>
+
+ <ExtensionPoint path = "/MonoDevelop/Ide/Updater" name = "Updater information">
+ <Description>Path of an updateinfo file.</Description>
+ <ExtensionNode name="UpdateInfo" type="MonoDevelop.Ide.Updater.UpdateInfoExtensionNode"/>
+ </ExtensionPoint>
<!-- Extensions -->
@@ -654,6 +659,7 @@
<Extension path = "/MonoDevelop/Ide/StartupHandlers">
<Class class = "MonoDevelop.Ide.Gui.AddinUpdateHandler"/>
<Class class = "MonoDevelop.Ide.Gui.Dialogs.TipOfTheDayStartup"/>
+ <Class class = "MonoDevelop.Ide.Updater.CheckForUpdatesOnStartUpHandler" />
</Extension>
<Extension path = "/MonoDevelop/Ide/Commands">
@@ -1300,6 +1306,10 @@
_label = "_About"
icon = "gtk-about"
_description = "Show about dialog" />
+ <Command id = "MonoDevelop.Ide.Updater.UpdateCommands.CheckForUpdates"
+ defaultHandler = "MonoDevelop.Ide.Updater.CheckForUpdatesHandler"
+ _label = "_Check for Updates"
+ _description = "Check for updates to MonoDevelop and packages it requires" />
</Category>
<!-- SearchCommands -->
@@ -2168,6 +2178,7 @@
<ItemSet id = "Help" _label = "_Help">
<CommandItem id = "MonoDevelop.Ide.Commands.HelpCommands.Help" />
<CommandItem id = "MonoDevelop.Ide.Commands.HelpCommands.TipOfTheDay" />
+ <CommandItem id = "MonoDevelop.Ide.Updater.UpdateCommands.CheckForUpdates" />
<SeparatorItem id = "Separator2" />
<ItemSet id = "Web" _label = "_Web">
<LinkItem id = "MonoDevelop" _label = "MonoDevelop" link = "http://www.monodevelop.com" />