July 14, 201510 yr As per title. When I make a new commit to github what needs to happen in order for the plugin to show as needing an update in the unRAID UI?
July 14, 201510 yr The version string, within the <PLUGIN> tag needs to be higher (in terms of an alphabetic sort order).
July 16, 201510 yr This is my plg http://linuxserver.io/aesir/aesir-cache.plg I have: <!ENTITY plgVersion "2015-07-15.1"> When I make an update, if it's a new day it sets the version to date.1 as above, or it increments the .1, but it never seems to show the plugin as having an update available, am I doing that wrong? *edit* Ok, so that needs to be version, not plgVersion, no idea whos I copied to get that, will update it now
July 16, 201510 yr Changed plgVersion to just version and tried 2015-07-16.1 to 2015.07.16.1 and still nothing
July 16, 201510 yr Cant remember the ntry off the top of my head, but if you look on the plg for CA you'll see the date at the top of it
July 16, 201510 yr Use the following at the start of your PLG file <!DOCTYPE PLUGIN [ <!ENTITY name "plugin-name"> <!ENTITY author "author-name"> <!ENTITY version "2015.07.17"> [i][font=arial]<-- Changing the date to newer allows the plugin manager to recognize a newer version, e.g. 2015.07.18[/font][/i] <!ENTITY launch "Settings/page-name"> [i][font=arial]<-- This is optional and allows a direct link from plugins page to your plugin page (e.g. settings)[/font][/i] <!ENTITY pluginURL "https://raw.github.com/path/to/your/&name;.plg"> [i][font=arial]<-- a valid path to the online PLG file is required, this allows the plugin manager to download and compare versions[/font][/i] ]> <PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;">
July 16, 201510 yr Isn't that basically what I have? <?xml version='1.0' standalone='yes'?> <!DOCTYPE PLUGIN [ <!ENTITY name "Aesir"> <!ENTITY displayName "Aesir WebGUI"> <!ENTITY author "Kode"> <!ENTITY version "2015.07.16.2"> <!ENTITY pluginURL "https://linuxserver.io/aesir/aesir-cache.plg"> <!ENTITY appURL "https://github.com/linuxserver/Aesir/archive/d298abc15d088fb5e61b4898b4fee468f42c6423.zip"> <!ENTITY installDir "/mnt/cache/appdata"> ]> <PLUGIN name="&name;" author="&author;" version="&version;" pluginURL="&pluginURL;" installDir="&installDir;" >
July 16, 201510 yr Yeah, but your URL referencing the PLG file doesn't work ... Motherfscker - Thanks bonienl *edit* I'm used to all my urls being on https
Archived
This topic is now archived and is closed to further replies.