Plugin Changelogs - liachmodded/Updatifier GitHub Wiki
##Plugin Changelogs
If enabled, Updatifier has the ability to display the changelogs of plugins when an update becomes available. This will only work if the plugin implements support for it.
###Implementing Plugin Changelogs
Implementing plugin changelogs is as simple as adding a few lines of text to your GitHub release body. To indicate that a plugin changelog is being started, type <!--
into your release body. Next, insert each line of the changelog, separated by a semicolon (;
). To end the changelog, type -->
into the release body. The changelog will not be visible when viewing the release on GitHub. An example changelog implementation can be found below.
<!--
Added automatic downloads;Added custom changelogs;Switched to Sponge code style;
-->
Note that you can add write each changelog line on a separate line. (Example below)
<!--
Added automatic downloads;
Added custom changelogs;
Switched to Sponge code style;
-->