Compare commits
No commits in common. "498ceec658a8d29b5e22ced7c285e60262ba6b63" and "3fc84001c12cc97a11af375b31e99a628cddaf96" have entirely different histories.
498ceec658
...
3fc84001c1
7 changed files with 24 additions and 21 deletions
3
app.js
3
app.js
|
@ -3,6 +3,8 @@ var express = require('express');
|
|||
var path = require('path');
|
||||
var cookieParser = require('cookie-parser');
|
||||
var logger = require('morgan');
|
||||
const bodyParser = require('body-parser');
|
||||
|
||||
|
||||
var indexRouter = require('./routes/index');
|
||||
var usersRouter = require('./routes/users');
|
||||
|
@ -17,6 +19,7 @@ app.use(logger('dev'));
|
|||
app.use(express.json());
|
||||
app.use(express.urlencoded({ extended: false }));
|
||||
app.use(cookieParser());
|
||||
app.use(bodyParser.urlencoded({ extended: true }));
|
||||
app.use(express.static(path.join(__dirname, 'public')));
|
||||
|
||||
app.use('/', indexRouter);
|
||||
|
|
|
@ -1,19 +1,22 @@
|
|||
{
|
||||
"name": "jeff-downloader2",
|
||||
"version": "0.2.0",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "node ./bin/www"
|
||||
},
|
||||
"dependencies": {
|
||||
"body-parser": "^1.19.0",
|
||||
"cookie-parser": "~1.4.4",
|
||||
"debug": "~2.6.9",
|
||||
"ejs": "~2.6.1",
|
||||
"express": "~4.16.1",
|
||||
"express-formidable": "^1.2.0",
|
||||
"fluent-ffmpeg": "^2.1.2",
|
||||
"formidable": "^1.2.2",
|
||||
"http-errors": "~1.6.3",
|
||||
"morgan": "~1.9.1",
|
||||
"youtube-dl": "^3.5.0"
|
||||
"youtube-dl": "^3.5.0",
|
||||
"youtube-dl-exec": "^1.2.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -100,3 +100,10 @@ a:hover {
|
|||
background-color: #ff2400;
|
||||
}
|
||||
}
|
||||
|
||||
progress::-webkit-progress-value {
|
||||
-webkit-transition : width 1s ease;
|
||||
-moz-transition : width 1s ease;
|
||||
-o-transition : width 1s ease;
|
||||
transition : width 1s ease;
|
||||
}
|
||||
|
|
8
public/stylesheets/style.css
Normal file
8
public/stylesheets/style.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
body {
|
||||
padding: 50px;
|
||||
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #00B7FF;
|
||||
}
|
|
@ -24,18 +24,6 @@ Come take a look here https://git.namejeff.xyz/Supositware/jeff-downloader for a
|
|||
<title>jeff</title>
|
||||
</head>
|
||||
<body class="has-text-light gradientBG">
|
||||
<ul class="circles">
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
</ul>
|
||||
<section class="section has-text-centered">
|
||||
<div class="container ">
|
||||
<h1 class="title has-text-light">Le epic downloader v<%= version %>%></h1>
|
||||
|
@ -194,13 +182,7 @@ Come take a look here https://git.namejeff.xyz/Supositware/jeff-downloader for a
|
|||
</div>
|
||||
</section>
|
||||
<% } %>
|
||||
<footer class="footer has-background-grey-dark has-text-light has-text-centered">
|
||||
<p>Uses SponsorBlock API from <a href="https://sponsor.ajay.app/">https://sponsor.ajay.app/</a></p>
|
||||
<p>I don't take any accountability for downloads made using this website.</p>
|
||||
<p>Credit to <a href="https://github.com/rg3/youtube-dl/">youtube-dl</a> - My other projects <a href="https://discordapp.com/oauth2/authorize?client_id=377563711927484418&scope=bot&permissions=0">Haha yes</a> & <a href="https://twitter.com/YTPB5k">YTP twitter bot</a> - Numbers of visits: <%= viewCounter %> - Contact <a href="https://discord.gg/cNRh5JQ">Supositware#1616</a> on Discord if you have any issues</p>
|
||||
<p>You can also support me either on <a href="https://www.paypal.me/supositware">Paypal</a> Or by tipping <a href="https://basicattentiontoken.org/">BAT</a> on this website!</p>
|
||||
<p><a href="https://git.namejeff.xyz/Supositware/jeff-downloader">Source code</a></p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
<script>
|
||||
let uuid = uuidv4();
|
||||
|
|
Loading…
Reference in a new issue