* added experimental support for Synology Package Source and automated SPK install & update
This commit is contained in:
parent
2d82065d93
commit
7ea595ecb3
|
@ -648,6 +648,7 @@
|
||||||
<replace dir="${dir.dist}/website" encoding="utf-8" summary="yes">
|
<replace dir="${dir.dist}/website" encoding="utf-8" summary="yes">
|
||||||
<include name="**/*.html" />
|
<include name="**/*.html" />
|
||||||
<include name="**/*.php" />
|
<include name="**/*.php" />
|
||||||
|
<include name="**/*.json" />
|
||||||
<replacefilter token="@{version}" value="${version}" />
|
<replacefilter token="@{version}" value="${version}" />
|
||||||
</replace>
|
</replace>
|
||||||
|
|
||||||
|
|
|
@ -353,6 +353,7 @@
|
||||||
</li>
|
</li>
|
||||||
<li>Windows package is available <a target="_blank" href="http://chocolatey.org/packages/filebot/">via Chocolatey</a></li>
|
<li>Windows package is available <a target="_blank" href="http://chocolatey.org/packages/filebot/">via Chocolatey</a></li>
|
||||||
<li>OS X package is available <a target="_blank" href="http://caskroom.io/">via Homebrew Cask</a></li>
|
<li>OS X package is available <a target="_blank" href="http://caskroom.io/">via Homebrew Cask</a></li>
|
||||||
|
<li>Synology NAS package is available <a target="_blank" href="http://packages.filebot.net/syno.json">via Package Center</a></li>
|
||||||
<li>All files and other versions are available at <a target="_blank" href="https://sourceforge.net/projects/filebot/files/filebot/">SourceForge.net</a></li>
|
<li>All files and other versions are available at <a target="_blank" href="https://sourceforge.net/projects/filebot/files/filebot/">SourceForge.net</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
/**
|
||||||
|
* Just add http://packages.filebot.net/syno.json in Package Sources ;)
|
||||||
|
*
|
||||||
|
* Package Center -> Settings -> Package Sources -> Add -> Name: FileBot and Location: http://packages.filebot.net/syno.json -> OK
|
||||||
|
*/
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"dname": "FileBot",
|
||||||
|
"desc": "FileBot is the ultimate tool for organizing and renaming your movies, TV shows or anime, as well as downloading subtitles and artwork. It's smart and just works.",
|
||||||
|
"maintainer": "rednoah",
|
||||||
|
"distributor": "FileBot",
|
||||||
|
"distributor_url": "http://www.filebot.net/",
|
||||||
|
"beta": false,
|
||||||
|
"qinst": true,
|
||||||
|
"qupgrade": true,
|
||||||
|
"qstart": true,
|
||||||
|
"silent_upgrade": true,
|
||||||
|
"icon": "http://i.imgur.com/bxHSJp9.png",
|
||||||
|
"snapshot": [
|
||||||
|
"http://i.imgur.com/FozbUS0.png"
|
||||||
|
],
|
||||||
|
"package": "filebot",
|
||||||
|
"version": "@{version}",
|
||||||
|
"link": "https://downloads.sourceforge.net/project/filebot/filebot/HEAD/FileBot_4.1.2/filebot-4.1-noarch.spk",
|
||||||
|
"size": "31457280",
|
||||||
|
"md5": "32e87d89c960214a61531ff478f8ecf4"
|
||||||
|
}
|
||||||
|
]
|
Loading…
Reference in New Issue