fix package description file name

This commit is contained in:
Derek Macias 2016-01-10 03:40:26 -07:00
parent 0495315d4f
commit 3819551c82
3 changed files with 7 additions and 3 deletions

View File

@ -3,7 +3,7 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "NerdPack">
<!ENTITY author "dmacias72">
<!ENTITY version "2016.01.10">
<!ENTITY version "2016.01.10a">
<!ENTITY launch "Settings/&name;">
<!ENTITY gitURL "https://raw.githubusercontent.com/&author;/unRAID-plugins/master">
<!ENTITY pluginURL "&gitURL;/plugins/&name;.plg">
@ -16,6 +16,8 @@
<PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;">
<CHANGES>
###2016.01.10a
- fix name of package description file
###2016.01.10
- added dynamic package description tootips
- updated tablesorter to v2.25.0
@ -88,7 +90,7 @@
The Github repo packages file.
-->
<FILE Name="&plgpath;/packages.json">
<URL>&gitURL;/plugins/packages.json</URL>
<URL>&gitURL;/plugins/packages/packages.json</URL>
</FILE>
<!--

View File

@ -13,6 +13,8 @@ This plugin allows installation of extra packages, mostly CLI, for advanced user
<Icon>https://raw.githubusercontent.com/dmacias72/unRAID-plugins/master/plugins/NerdPack.png</Icon>
<Date>2016-01-10</Date>
<Changes>
###2016.01.10a
- fix name of package description file
###2016.01.10
- added dynamic package description tootips
- updated tablesorter to v2.25.0

View File

@ -12,7 +12,7 @@ $pkg_path = "$plg_path/packages"; // package path
$pkg_repo = "https://api.github.com/repos/eschultz/unraid6-nerdpack/contents/packages";
$repo_file= "$pkg_path/packages.json";
$pkg_desc = "https://raw.githubusercontent.com/dmacias72/unRAID-plugins/master/plugins/NerdPack-desc";
$pkg_desc = "https://raw.githubusercontent.com/dmacias72/unRAID-plugins/master/plugins/packages-desc";
$desc_file= "$pkg_path/packages-desc";
get_content_from_github($pkg_repo, $repo_file);