bump version to 0.8;fixed bugs

This commit is contained in:
huangjx
2022-02-28 18:56:04 +08:00
parent 3ff0f786f3
commit dfb0d3fd9f
3 changed files with 16 additions and 13 deletions

View File

@@ -8,7 +8,7 @@ Search for torrents within the app from mutiple BT sites;
Control Aria2 and manage download tasks from the web;
download videos from 700+ video sites(youtube,youku,vimo,dailymotion,twitter,facebook and the likes
</description>
<version>0.7.8</version>
<version>0.8.0</version>
<licence>agpl</licence>
<author mail="freefallbenson@gmail.com" homepage="https://github.com/shiningw">jiaxinhuang</author>
<namespace>NCDownloader</namespace>

View File

@@ -44,6 +44,9 @@ class sliderkz extends searchBase implements searchInterface
return [];
}
foreach ($data as $item) {
if (empty($item)) {
continue;
}
$items[] = array("title" => $item["tit_art"], "data-link" => $this->getDownloadUrl($item), "duration" => Helper::formatInterval($item["duration"]));
}
unset($data);

View File

@@ -19,7 +19,7 @@ class settingsForm {
this.parent = selector;
return this;
}
create(parent: HTMLElement, element: dataItems):void {
create(parent: HTMLElement, element: dataItems) {
let label = this._createLabel(element.name, element.id)
let input = this._createInput(element);
//let saveBtn = this._createSaveBtn(element.id);