Compare commits
2 commits
0a83662ef2
...
538e606cf5
Author | SHA1 | Date | |
---|---|---|---|
538e606cf5 | |||
90b6531d76 |
3 changed files with 9 additions and 12 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jeff-downloader2",
|
"name": "jeff-downloader2",
|
||||||
"version": "0.3.0",
|
"version": "0.3.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node ./bin/www"
|
"start": "node ./bin/www"
|
||||||
|
|
|
@ -105,7 +105,7 @@ router.get('/format', function (req, res ,next) {
|
||||||
return;
|
return;
|
||||||
|
|
||||||
i++;
|
i++;
|
||||||
formats.push({ext: format.ext, id: format.format_id, note: format.format_note});
|
formats.push({ext: format.ext, id: format.format_id, note: `${format.width}x${format.height}`});
|
||||||
});
|
});
|
||||||
|
|
||||||
return res.send(formats);
|
return res.send(formats);
|
||||||
|
|
|
@ -51,15 +51,6 @@ Come take a look here https://git.namejeff.xyz/Supositware/jeff-downloader for a
|
||||||
<div class="field-body">
|
<div class="field-body">
|
||||||
<div class="field is-expanded">
|
<div class="field is-expanded">
|
||||||
<div class="field has-addons">
|
<div class="field has-addons">
|
||||||
<p class="control">
|
|
||||||
<div class="select">
|
|
||||||
<select name="format" id="format">
|
|
||||||
<option value="mp4">MP4</option>
|
|
||||||
<option value="mp3">MP3</option>
|
|
||||||
<option value="flac">FLAC</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</p>
|
|
||||||
<p class="control is-expanded">
|
<p class="control is-expanded">
|
||||||
<input type="text" id="url" name="url" class="downloadurl input is-rounded" placeholder="Link" onkeyup="CheckFormat()">
|
<input type="text" id="url" name="url" class="downloadurl input is-rounded" placeholder="Link" onkeyup="CheckFormat()">
|
||||||
</p>
|
</p>
|
||||||
|
@ -68,8 +59,14 @@ Come take a look here https://git.namejeff.xyz/Supositware/jeff-downloader for a
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="select">
|
||||||
|
<select name="format" id="format">
|
||||||
|
<option value="mp4">MP4</option>
|
||||||
|
<option value="mp3">MP3</option>
|
||||||
|
<option value="flac">FLAC</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="field has-addon">
|
<div class="field has-addon">
|
||||||
<div class="control">
|
<div class="control">
|
||||||
|
|
Loading…
Reference in a new issue