This commit is contained in:
Derek Macias 2016-06-23 15:44:08 -06:00
parent c756e9064e
commit c60a456b04
2 changed files with 14 additions and 9 deletions

View File

@ -3,7 +3,7 @@
<!DOCTYPE PLUGIN [ <!DOCTYPE PLUGIN [
<!ENTITY name "qnotify"> <!ENTITY name "qnotify">
<!ENTITY author "dmacias72"> <!ENTITY author "dmacias72">
<!ENTITY version "2016.05.28"> <!ENTITY version "2016.06.23">
<!ENTITY launch "Settings/QNotify"> <!ENTITY launch "Settings/QNotify">
<!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">
@ -16,11 +16,13 @@
<PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;"> <PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;">
<CHANGES> <CHANGES>
###2016.06.23
- fix: compile separate Python 3.5.1 for unRAID 6.1
###2016.05.28 ###2016.05.28
- add log file - add: log file
###2016.05.22 ###2016.05.22
- fix: get token from notification settings - fix: get token from notification settings
- fix: clear settings when stopping - fix: settings clearing when stopping
###2016.05.20 ###2016.05.20
- add: dynamix plugin update api - add: dynamix plugin update api
###2016.05.19 ###2016.05.19
@ -31,9 +33,9 @@
This plugin uses PyQuassel to send Pushbullet notifications for Quassel Core Server This plugin uses PyQuassel to send Pushbullet notifications for Quassel Core Server
--> -->
<FILE Name="/boot/config/plugins/NerdPack/packages/6.1/python3-3.5.1-x86_64-2.txz"> <FILE Name="/boot/config/plugins/NerdPack/packages/6.1/python3-3.5.1-x86_64-1.txz">
<URL>&pkgURL;/6.2/python3-3.5.1-x86_64-2.txz</URL> <URL>&pkgURL;/6.1/python3-3.5.1-x86_64-1.txz</URL>
<MD5>a2b6f257cbb6dea91df4d422cc7b2b0b</MD5> <MD5>e19803aa714dcea6dd8f922089d4e996</MD5>
</FILE> </FILE>
@ -110,7 +112,8 @@ if [ "${sum1:0:32}" != "${sum2:0:32}" ]; then
else else
if [[ $VER == 6.1 ]]; then if [[ $VER == 6.1 ]]; then
echo "\nInstalling dependencies for unRAID 6.1" echo "\nInstalling dependencies for unRAID 6.1"
upgradepkg --install-new /boot/config/plugins/NerdPack/packages/$VER/python3-3.5.1-x86_64-2.txz rm -f /boot/config/plugins/NerdPack/packages/6.1/python3-3.5.1-x86_64-2.txz
upgradepkg --install-new /boot/config/plugins/NerdPack/packages/$VER/python3-3.5.1-x86_64-1.txz
fi fi
if [[ $VER == 6.2 ]]; then if [[ $VER == 6.2 ]]; then

View File

@ -11,8 +11,10 @@ The Quassel Notify plugin allows you to receive Pushbullet notifications based o
</Description> </Description>
<Support>http://lime-technology.com/forum/</Support> <Support>http://lime-technology.com/forum/</Support>
<Icon>https://raw.githubusercontent.com/dmacias72/unRAID-plugins/master/plugins/qnotify.png</Icon> <Icon>https://raw.githubusercontent.com/dmacias72/unRAID-plugins/master/plugins/qnotify.png</Icon>
<Date>2016-05-28</Date> <Date>2016-06-23</Date>
<Changes> <Changes>
###2016.06.23
- fix: compile separate Python 3.5.1 for unRAID 6.1
###2016.05.28 ###2016.05.28
- add log file - add log file
###2016.05.22 ###2016.05.22