update version info

This commit is contained in:
Derek Macias 2015-12-20 01:58:44 -07:00
parent 5f67432a0f
commit eaf10debb4
2 changed files with 20 additions and 3 deletions

View File

@ -3,7 +3,7 @@
<!DOCTYPE PLUGIN [ <!DOCTYPE PLUGIN [
<!ENTITY name "speedtest"> <!ENTITY name "speedtest">
<!ENTITY author "dmacias72"> <!ENTITY author "dmacias72">
<!ENTITY version "2015.12.11c"> <!ENTITY version "2015.12.19">
<!ENTITY launch "Settings/&name;"> <!ENTITY launch "Settings/&name;">
<!ENTITY gitURL "https://raw.githubusercontent.com/&author;/unRAID-plugins/master"> <!ENTITY gitURL "https://raw.githubusercontent.com/&author;/unRAID-plugins/master">
<!ENTITY pluginURL "&gitURL;/plugins/&name;.plg"> <!ENTITY pluginURL "&gitURL;/plugins/&name;.plg">
@ -21,6 +21,11 @@ This Plugin installs speedtest-cli for unRaid 6.1 All dependencies are installe
--> -->
<CHANGES> <CHANGES>
###2015.12.19
- changed icon thanks to hernandito
- convert to stand alone script for cron jobs
- rearrange setting page layout
- one click remove
###2015.12.11c ###2015.12.11c
- update package name - update package name
- update install and remove scripts - update install and remove scripts
@ -74,7 +79,14 @@ The 'plugin' package MD5 hash.
The 'install' script. The 'install' script.
--> -->
<FILE Run="/bin/bash"> <FILE Run="/bin/bash">
<INLINE> <INLINE>
#Verify unRAID Version
source /etc/unraid-version
if [[ ${version:0:3} == 6.0 ]]; then
echo "unRAID version 6.1 or higher is required"
exit 1
fi
# Verify and install plugin package # Verify and install plugin package
sum1=$(/usr/bin/md5sum &plgpath;/&plgname;.txz) sum1=$(/usr/bin/md5sum &plgpath;/&plgname;.txz)
sum2=$(/usr/bin/cat &plgpath;/&plgname;.md5) sum2=$(/usr/bin/cat &plgpath;/&plgname;.md5)

View File

@ -11,8 +11,13 @@ This plugin interacts with the command line interface for testing internet bandw
</Description> </Description>
<Support>http://lime-technology.com/forum/index.php?topic=43500.0</Support> <Support>http://lime-technology.com/forum/index.php?topic=43500.0</Support>
<Icon>https://raw.githubusercontent.com/dmacias72/unRAID-plugins/master/plugins/speedtest.png</Icon> <Icon>https://raw.githubusercontent.com/dmacias72/unRAID-plugins/master/plugins/speedtest.png</Icon>
<Date>2015-12-11</Date> <Date>2015-12-19</Date>
<Changes> <Changes>
###2015.12.19
- changed icon thanks to hernandito
- convert to stand alone script for cron jobs
- rearrange setting page layout
- one click remove
###2015.12.11 ###2015.12.11
- update package name - update package name
- update install and remove scripts - update install and remove scripts