Prep for update

pull/164/head v3.14.0
Andrew 3 years ago
parent 800b799338
commit 453a90e7ed

@ -37,6 +37,7 @@
<content_rating type="oars-1.1" />
<releases>
<release version="3.14.0" date="2023-5-17" />
<release version="3.13.0" date="2023-4-25" />
<release version="3.12.2" date="2023-4-8" />
<release version="3.12.1" date="2023-3-24" />

@ -94,9 +94,9 @@
</select>
<br>
<div id="typeSelectBox">
<label>Select video type</label>
<select id="videoTypeSelect">
<option value="auto">Auto</option>
<label id="videoQualityTxt">Select video quality</label>
<select id="videoTypeSelect" class="select">
<option value="auto" id="autoTxt">Auto</option>
<option value="mp4">Mp4</option>
<option value="webm">WebM</option>
</select>
@ -108,7 +108,7 @@
<div id="audioBox">
<label id="audioFormat">Select Audio format </label>
<select id="audioSelect">
<select id="audioSelect" class="select">
<option value="mp3">Mp3</option>
<option value="aac">Aac</option>
<option value="m4a">M4a</option>

@ -4,7 +4,7 @@
"yt-dlp-wrap-plus": "^2.3.16"
},
"name": "ytdownloader",
"version": "3.14.0-beta",
"version": "3.14.0",
"main": "main.js",
"scripts": {
"start": "electron .",
@ -97,7 +97,8 @@
"win": {
"target": [
"nsis",
"msi"
"msi",
"zip"
],
"artifactName": "${productName}_Win.${ext}"
},

@ -558,7 +558,7 @@ getId("preferenceWin").textContent = i18n.__("Preferences");
getId("aboutWin").textContent = i18n.__("About");
getId("homeWin").textContent = i18n.__("Homepage");
getId("linkTitle").textContent = i18n.__("Link:");
getId("videoFormat").textContent = i18n.__("Select Video Format ");
getId("videoFormat").textContent = i18n.__("Select Quality");
getId("audioFormat").textContent = i18n.__("Select Audio Format ");
getId("download").textContent = i18n.__("Download");
@ -579,6 +579,8 @@ getId("errorBtn").textContent = i18n.__("Error Details") + " ▼";
getId("clText").textContent = i18n.__("Current download location - ")
getId("selectLocation").textContent = i18n.__("Select Download Location");
getId("themeTxt").textContent = i18n.__("Theme");
getId("autoTxt").textContent = i18n.__("Auto");
getId("videoQualityTxt").textContent = i18n.__("Select Video Format ");
getId("lightTxt").textContent = i18n.__("Light");
getId("darkTxt").textContent = i18n.__("Dark");

Loading…
Cancel
Save