Compare commits
No commits in common. "538e606cf5aa4b491888be2b96229747f47b4d27" and "0a83662ef23c628b0ffff82001a8388857bc8502" have entirely different histories.
538e606cf5
...
0a83662ef2
3 changed files with 12 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jeff-downloader2",
|
||||
"version": "0.3.1",
|
||||
"version": "0.3.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "node ./bin/www"
|
||||
|
|
|
@ -105,7 +105,7 @@ router.get('/format', function (req, res ,next) {
|
|||
return;
|
||||
|
||||
i++;
|
||||
formats.push({ext: format.ext, id: format.format_id, note: `${format.width}x${format.height}`});
|
||||
formats.push({ext: format.ext, id: format.format_id, note: format.format_note});
|
||||
});
|
||||
|
||||
return res.send(formats);
|
||||
|
|
|
@ -51,6 +51,15 @@ Come take a look here https://git.namejeff.xyz/Supositware/jeff-downloader for a
|
|||
<div class="field-body">
|
||||
<div class="field is-expanded">
|
||||
<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">
|
||||
<input type="text" id="url" name="url" class="downloadurl input is-rounded" placeholder="Link" onkeyup="CheckFormat()">
|
||||
</p>
|
||||
|
@ -59,15 +68,9 @@ Come take a look here https://git.namejeff.xyz/Supositware/jeff-downloader for a
|
|||
</p>
|
||||
</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 class="field has-addon">
|
||||
<div class="control">
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue