updated description and other info

This commit is contained in:
huangjx
2021-09-10 22:34:33 +08:00
parent c19dd9de63
commit 845db37e6a
3 changed files with 10 additions and 14 deletions

View File

@@ -2,11 +2,4 @@
namespace OCA\NCDownloader\AppInfo; namespace OCA\NCDownloader\AppInfo;
\OC::$server->getNavigationManager()->add([
'id' => 'ncdownloader',
'order' => 10,
'href' => \OC::$server->getURLGenerator()->linkToRoute('ncdownloader.Main.Index'),
'icon' => \OC::$server->getURLGenerator()->imagePath('ncdownloader', 'ncdownloader.svg'),
'name' => 'ncdownloader'
]);

View File

@@ -3,8 +3,9 @@
<id>ncdownloader</id> <id>ncdownloader</id>
<name>NCDownloader</name> <name>NCDownloader</name>
<summary>Aria2 and youtube-dl web gui for nextcloud</summary> <summary>Aria2 and youtube-dl web gui for nextcloud</summary>
<description><![CDATA[Nexcloud Frontend for Aria2 and Youtube-dl]]></description> <description>built-in torrent search;Start and stop Aria2 process, manage Aria2 from the web;
<version>0.0.1</version> Download videos from youtube, twitter and other sites;</description>
<version>0.0.2</version>
<licence>agpl</licence> <licence>agpl</licence>
<author mail="freefallbenson@gmail.com" homepage="https://github.com/shiningw">jiaxinhuang</author> <author mail="freefallbenson@gmail.com" homepage="https://github.com/shiningw">jiaxinhuang</author>
<namespace>NCDownloader</namespace> <namespace>NCDownloader</namespace>
@@ -12,14 +13,16 @@
<website>https://github.com/shiningw/ncdownloader</website> <website>https://github.com/shiningw/ncdownloader</website>
<bugs>https://github.com/shiningw/ncdownloader/issues</bugs> <bugs>https://github.com/shiningw/ncdownloader/issues</bugs>
<screenshot>https://user-images.githubusercontent.com/3911975/132008248-dbb6036e-e3c2-4e5c-9274-d2b1ae091373.png</screenshot> <screenshot>https://user-images.githubusercontent.com/3911975/132008248-dbb6036e-e3c2-4e5c-9274-d2b1ae091373.png</screenshot>
<screenshot>https://user-images.githubusercontent.com/3911975/132008308-dec2a7ba-4387-441e-9ded-538d61fbccf0.png</screenshot>
<repository>https://github.com/shiningw/ncdownloader</repository> <repository>https://github.com/shiningw/ncdownloader</repository>
<dependencies> <dependencies>
<nextcloud min-version="18" max-version="22"/> <nextcloud min-version="18" max-version="22"/>
</dependencies> </dependencies>
<navigations> <navigations>
<navigation> <navigation>
<name>ncdownloader</name> <name>NCDownloader</name>
<route>ncdownloader.Main.Index</route> <route>ncdownloader.Main.Index</route>
<icon>ncdownloader.svg</icon>
</navigation> </navigation>
</navigations> </navigations>
<settings> <settings>

View File

@@ -26,7 +26,7 @@ class torrentSearch
if (!$value) { if (!$value) {
continue; continue;
} }
$value['actions'][] = array("name" => 'add', 'path' => '/index.php/apps/ncdownloader/new'); $value['actions'][] = array("name" => 'download', 'path' => '/index.php/apps/ncdownloader/new');
} }
} }