Browse Source

Display name of AddIns: "Subversion AddIn" instead of "ICSharpCode.Svn"

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@914 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 20 years ago
parent
commit
34680425f9
  1. 2
      AddIns/ICSharpCode.SharpDevelop.addin
  2. 2
      src/AddIns/BackendBindings/Boo/BooBinding/Project/BooBinding.addin
  3. 2
      src/AddIns/BackendBindings/CSharpBinding/Project/CSharpBinding.addin
  4. 2
      src/AddIns/BackendBindings/ILAsmBinding/Project/ILAsmBinding.addin
  5. 2
      src/AddIns/BackendBindings/VBNetBinding/Project/VBNetBinding.addin
  6. 2
      src/AddIns/DisplayBindings/FormsDesigner/Project/FormsDesigner.addin
  7. 2
      src/AddIns/DisplayBindings/ResourceEditor/Project/ResourceEditor.addin
  8. 2
      src/AddIns/DisplayBindings/XmlEditor/Project/XmlEditor.addin
  9. 2
      src/AddIns/Misc/AddInManager/Project/AddInManager.addin
  10. 7
      src/AddIns/Misc/AddInManager/Project/Src/AboutForm.cs
  11. 2
      src/AddIns/Misc/AddinScout/Project/AddInScout.addin
  12. 2
      src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Debugger.AddIn.addin
  13. 2
      src/AddIns/Misc/FiletypeRegisterer/Project/FiletypeRegisterer.addin
  14. 2
      src/AddIns/Misc/HighlightingEditor/Project/HighlightingEditor.addin
  15. 12
      src/AddIns/Misc/HtmlHelp2/Project/HtmlHelp2.addin
  16. 2
      src/AddIns/Misc/MbUnitPad/Project/MbUnitPad.addin
  17. 2
      src/AddIns/Misc/NAntAddIn/Project/NAnt.addin
  18. 2
      src/AddIns/Misc/RegExpTk/Project/RegExpTk.addin
  19. 2
      src/AddIns/Misc/StartPage/Project/StartPage.addin
  20. 6
      src/AddIns/Misc/SubversionAddIn/Project/ICSharpCode.Svn.addin

2
AddIns/ICSharpCode.SharpDevelop.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "SharpDevelop"
author = "Mike Krueger"
copyright = "GPL"
copyright = "prj:///doc/copyright.txt"
url = "http://www.icsharpcode.net"
description = "SharpDevelop main module">

2
src/AddIns/BackendBindings/Boo/BooBinding/Project/BooBinding.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "Boo Binding"
author = "Daniel Grunwald"
copyright = "GPL"
copyright = "prj:///doc/copyright.txt"
url = "http://boo.codehaus.org/Boo+AddIn+For+SharpDevelop"
description = "Backing binding for Boo">

2
src/AddIns/BackendBindings/CSharpBinding/Project/CSharpBinding.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "C# Binding"
author = "Mike Krueger"
copyright = "GPL"
copyright = "prj:///doc/copyright.txt"
description = "Backing binding for C#">
<Manifest>

2
src/AddIns/BackendBindings/ILAsmBinding/Project/ILAsmBinding.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "ILAsm binding"
author = "Mike Krueger"
copyright = "GPL"
copyright = "prj:///doc/copyright.txt"
description = "Backing binding for IL Assembler">
<Manifest>

2
src/AddIns/BackendBindings/VBNetBinding/Project/VBNetBinding.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "VB Binding"
author = "Mike Krueger, Markus Palme"
copyright = "GPL"
copyright = "prj:///doc/copyright.txt"
description = "Backing binding for VB.NET">
<Manifest>

2
src/AddIns/DisplayBindings/FormsDesigner/Project/FormsDesigner.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "Forms Designer"
author = "Mike Krueger"
copyright = "GPL"
copyright = "prj:///doc/copyright.txt"
description = "Windows Forms Designer">
<Manifest>

2
src/AddIns/DisplayBindings/ResourceEditor/Project/ResourceEditor.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "Resource Editor"
author = "Mike Krueger"
copyright = "GPL"
copyright = "prj:///doc/copyright.txt"
description = "A Display binding for *.resources and *.resx files.">
<Runtime>

2
src/AddIns/DisplayBindings/XmlEditor/Project/XmlEditor.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "Xml Editor"
author = "Matt Ward"
copyright = "GPL"
copyright = "prj:///doc/copyright.txt"
description = "Xml Editor">
<Manifest>

2
src/AddIns/Misc/AddInManager/Project/AddInManager.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "AddInManager"
author = "Daniel Grunwald"
copyright = "GNU General Public License"
copyright = "prj:///doc/copyright.txt"
description = "Can install, enable, disable and uninstall AddIns">
<Manifest>

7
src/AddIns/Misc/AddInManager/Project/Src/AboutForm.cs

@ -46,9 +46,16 @@ namespace ICSharpCode.AddInManager @@ -46,9 +46,16 @@ namespace ICSharpCode.AddInManager
}
if (addIn.Properties["copyright"].Length > 0) {
if (!addIn.Properties["copyright"].StartsWith("prj:")) {
titles.Add("Copyright");
values.Add(addIn.Properties["copyright"]);
}
}
if (addIn.Properties["license"].Length > 0) {
titles.Add("License");
values.Add(addIn.Properties["license"]);
}
if (addIn.Properties["url"].Length > 0) {
titles.Add("Website");

2
src/AddIns/Misc/AddinScout/Project/AddInScout.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "AddInScout"
author = "Satguru P Srivastava"
copyright = "GPL"
copyright = "prj:///doc/copyright.txt"
url = "http://home.mchsi.com/~ssatguru"
description = "Display AddIn Information">

2
src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Debugger.AddIn.addin

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
<AddIn name="Debugger" author="David Srbecký" copyright="GPL" url="" description="SharpDevelop Managed Debugger">
<AddIn name="Debugger" author="David Srbecký" copyright="prj:///doc/copyright.txt" description="SharpDevelop Managed Debugger">
<Manifest>
<Identity name = "ICSharpCode.Debugger"/>
</Manifest>

2
src/AddIns/Misc/FiletypeRegisterer/Project/FiletypeRegisterer.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "Filetype Registerer"
author = "Georg Brandl"
copyright = "GPL"
copyright = "prj:///doc/copyright.txt"
description = "Registers files in the Windows Explorer for #Develop">
<Manifest>

2
src/AddIns/Misc/HighlightingEditor/Project/HighlightingEditor.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "Highlighting Editor"
author = "Georg Brandl"
copyright = "GPL"
copyright = "prj:///doc/copyright.txt"
description = "Editor for syntax highlighting styles for the text editor">
<Manifest>

12
src/AddIns/Misc/HtmlHelp2/Project/HtmlHelp2.addin

@ -45,8 +45,11 @@ @@ -45,8 +45,11 @@
</Path>
<Path name = "/SharpDevelop/Workbench/MainMenu/Help">
<MenuItem id = "HtmlHelp2Separator2"
type = "Separator"
insertafter = "TipOfTheDay"/>
<MenuItem id = "TocPadCommand"
insertafter = "Separator1"
insertafter = "HtmlHelp2Separator2"
label = "${res:AddIns.HtmlHelp2.Contents}"
icon = "HtmlHelp2.16x16.Toc"
shortcut = "Control|Alt|F1"
@ -68,11 +71,8 @@ @@ -68,11 +71,8 @@
icon = "HtmlHelp2.16x16.IndexResults"
shortcut = "Shift|Alt|F2"
class = "HtmlHelp2.ShowIndexResultsMenuCommand"
insertafter = "SearchPadCommand"/>
<MenuItem id = "HtmlHelp2Separator2"
type = "Separator"
insertafter = "IndexResultsPadCommand"
insertbefore = "ViewGPL"/>
insertafter = "SearchPadCommand"
insertbefore = "Separator1"/>
</Path>
<Path name = "/SharpDevelop/ViewContent/Browser/Toolbar">

2
src/AddIns/Misc/MbUnitPad/Project/MbUnitPad.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "MbUnit-Addin"
author = "Daniel Grunwald"
copyright = "GNU General Public License"
copyright = "prj:///doc/copyright.txt"
description = "Runs MbUnit and NUnit tests inside #Develop">
<Manifest>

2
src/AddIns/Misc/NAntAddIn/Project/NAnt.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "NAnt Add-in"
author = "Matt Ward"
copyright = "GPL"
copyright = "prj:///doc/copyright.txt"
description = "NAnt integration for SharpDevelop.">
<Manifest>

2
src/AddIns/Misc/RegExpTk/Project/RegExpTk.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "Regular expressions toolkit"
author = "Markus Palme"
copyright = "GPL"
copyright = "prj:///doc/copyright.txt"
description = "Testing toolkit for regular expressions">
<Manifest>

2
src/AddIns/Misc/StartPage/Project/StartPage.addin

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<AddIn name = "Start Page"
author = "Georg Brandl"
copyright = "GPL"
copyright = "prj:///doc/copyright.txt"
description = "VS like Start Page for #develop">
<Manifest>

6
src/AddIns/Misc/SubversionAddIn/Project/ICSharpCode.Svn.addin

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
<AddIn name = "ICSharpCode.Svn"
<AddIn name = "Subversion AddIn"
author = "Mike Krueger"
copyright = "GPL"
description = "Subversion plugin">
copyright = "prj:///doc/copyright.txt"
description = "Adds support for Subversion to the project browser">
<Manifest>
<Identity name = "ICSharpCode.Svn"/>

Loading…
Cancel
Save