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 {
padding: 15px;
border-radius: 10px;
background-color: rgb(49, 179, 49);
background-color: rgb(4, 207, 21);
color: white;
border: none;
border-bottom: 5.5px solid rgb(37, 135, 37);
border-bottom: 5.5px solid rgb(13, 133, 13);
font-size: large;
cursor: pointer;
display: inline-block;

View File

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

View File

@ -558,7 +558,8 @@ function download(type) {
}
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;