2.2.7 Change Volume

This commit is contained in:
CICD - Pipeline 2023-05-04 22:12:49 +02:00
parent 3e89e43d6b
commit 738020b16f
3 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,13 @@
<h1><u>Subsonics 2.2.7</u></h1>
<p>Sortie le : 04/05/2022</p>
<h2 style="font-size: 18px;">Ajouts & Fixes :</h2>
<ul>
<li><strong>[CHANGE]</strong> : Volume : Possibilité d'aller à 200%</li>
</ul>
<hr>
<h1><u>Subsonics 2.2.6</u></h1> <h1><u>Subsonics 2.2.6</u></h1>
<p>Sortie le : 04/05/2022</p> <p>Sortie le : 04/05/2022</p>
<h2 style="font-size: 18px;">Ajouts & Fixes :</h2> <h2 style="font-size: 18px;">Ajouts & Fixes :</h2>

View File

@ -1,6 +1,6 @@
{ {
"name": "subsonics-manager", "name": "subsonics-manager",
"version": "2.2.6", "version": "2.2.7",
"description": "Manager for subsonics", "description": "Manager for subsonics",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {

View File

@ -595,7 +595,7 @@ ipc.on("actualize", (ev, data) => {
if(data.volume) { if(data.volume) {
volCursor.step = 1 volCursor.step = 1
volCursor.max = 100 volCursor.max = 200
volCursor.value = Math.trunc(data.volume / 10) volCursor.value = Math.trunc(data.volume / 10)
volPct.innerHTML = Math.trunc(data.volume / 10) + "%" volPct.innerHTML = Math.trunc(data.volume / 10) + "%"