Nerdpack fix support link, add toggle perl for vim

This commit is contained in:
dmacias72 2017-02-06 08:20:14 -07:00
parent f6b6ace8bc
commit 95a89c2af2
3 changed files with 12 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "NerdPack">
<!ENTITY author "dmacias72">
<!ENTITY version "2017.01.31">
<!ENTITY version "2017.02.06">
<!ENTITY launch "Settings/&name;">
<!ENTITY gitURL "https://raw.githubusercontent.com/&author;/unRAID-plugins/master">
<!ENTITY pluginURL "&gitURL;/plugins/&name;.plg">
@ -18,6 +18,9 @@
<CHANGES>
##&name;
###&version;
- fix support link
- add perl toggle for vim
###2017.01.31
- move local tablesorter to cdn
- add support link to readme
###2016.10.20

View File

@ -11,8 +11,11 @@ This plugin allows installation of extra packages, mostly CLI, for advanced user
</Description>
<Support>http://lime-technology.com/forum/index.php?topic=37541.0</Support>
<Icon>https://raw.githubusercontent.com/dmacias72/unRAID-plugins/master/plugins/NerdPack.png</Icon>
<Date>2017.01.31</Date>
<Date>2017.02.06</Date>
<Changes>
###2017.02.06
- fix support link
- add perl toggle for vim
###2017.01.31
- move local tablesorter to cdn
- add support link to readme

View File

@ -159,4 +159,8 @@ function checkDepends() {
$('#python').switchButton({checked: true});
$('#python', '.pkgvalue').val('yes');
}
if ($('#vim')[0].checked) {
$('#perl').switchButton({checked: true});
$('#perl', '.pkgvalue').val('yes');
}
}