change log on the plugins manager..
I note there's a section for changelog entries in the plugins manager, and
on the website.
Is there an extra element I need to add to my plugin.xml in order to fill
this information out?
Mark
Please sign in to leave a comment.
Mark Derricutt wrote:
>.. changelog entries in the plugins manager,
>Is there an extra element I need to add to my plugin.xml in order to fill
>this information out?
>
Yep. In plugin.xml, just add something like this :
...
<idea-version min="4.0" max="4.x"/>
<change-notes>
<![CDATA[
- change 1
- change 2
]]>
</change-notes>
...
Alain
On Sat, 24 Jan 2004 23:09:43 -0100, Alain Ravet wrote:
Excellent. Is that actually a DocType / DTD for the plugin.xml format at
all? Would be good if this change-notes element took a version=""
attribute.
Mark
>..Is that actually a DocType / DTD for the plugin.xml format at
>all? ..
>
plugin.xml's DTD is:
http://plugins.intellij.net/plugin.dtd
(also: http://plugins.intellij.net/help/dtds/)
Alain