bump version to 0.8;fixed bugs
This commit is contained in:
@@ -8,7 +8,7 @@ Search for torrents within the app from mutiple BT sites;
|
|||||||
Control Aria2 and manage download tasks from the web;
|
Control Aria2 and manage download tasks from the web;
|
||||||
download videos from 700+ video sites(youtube,youku,vimo,dailymotion,twitter,facebook and the likes
|
download videos from 700+ video sites(youtube,youku,vimo,dailymotion,twitter,facebook and the likes
|
||||||
</description>
|
</description>
|
||||||
<version>0.7.8</version>
|
<version>0.8.0</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>
|
||||||
|
|||||||
@@ -44,6 +44,9 @@ class sliderkz extends searchBase implements searchInterface
|
|||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
foreach ($data as $item) {
|
foreach ($data as $item) {
|
||||||
|
if (empty($item)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
$items[] = array("title" => $item["tit_art"], "data-link" => $this->getDownloadUrl($item), "duration" => Helper::formatInterval($item["duration"]));
|
$items[] = array("title" => $item["tit_art"], "data-link" => $this->getDownloadUrl($item), "duration" => Helper::formatInterval($item["duration"]));
|
||||||
}
|
}
|
||||||
unset($data);
|
unset($data);
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ class settingsForm {
|
|||||||
this.parent = selector;
|
this.parent = selector;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
create(parent: HTMLElement, element: dataItems):void {
|
create(parent: HTMLElement, element: dataItems) {
|
||||||
let label = this._createLabel(element.name, element.id)
|
let label = this._createLabel(element.name, element.id)
|
||||||
let input = this._createInput(element);
|
let input = this._createInput(element);
|
||||||
//let saveBtn = this._createSaveBtn(element.id);
|
//let saveBtn = this._createSaveBtn(element.id);
|
||||||
|
|||||||
Reference in New Issue
Block a user