Small change

This commit is contained in:
aandrew-me 2022-09-15 18:02:50 +06:00
parent 955e94ec1b
commit 1108cd8ff4
3 changed files with 5 additions and 4 deletions

View File

@ -235,10 +235,10 @@ input[type="checkbox"]{
.submitBtn { .submitBtn {
padding: 15px; padding: 15px;
border-radius: 10px; border-radius: 10px;
background-color: rgb(49, 179, 49); background-color: rgb(4, 207, 21);
color: white; color: white;
border: none; border: none;
border-bottom: 5.5px solid rgb(37, 135, 37); border-bottom: 5.5px solid rgb(13, 133, 13);
font-size: large; font-size: large;
cursor: pointer; cursor: pointer;
display: inline-block; display: inline-block;

View File

@ -5,7 +5,7 @@
"yt-dlp-wrap-extended": "^2.3.12" "yt-dlp-wrap-extended": "^2.3.12"
}, },
"name": "ytdownloader", "name": "ytdownloader",
"version": "3.4.0", "version": "3.4.1",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {
"start": "electron .", "start": "electron .",

View File

@ -558,7 +558,8 @@ function download(type) {
} }
filename += letter; filename += letter;
} }
filename = filename.slice(0,100) + Math.random().toFixed(3).toString().slice(2); filename = filename.slice(0,100)
// + Math.random().toFixed(3).toString().slice(2);
let audioFormat; let audioFormat;