Version 2.1.0 - Edit de valeurs
All checks were successful
Subsonics - Web/pipeline/head This commit looks good
All checks were successful
Subsonics - Web/pipeline/head This commit looks good
This commit is contained in:
parent
ef3d23d7b1
commit
4ed76f3a31
2
node_modules/moonlink.js/dist/src/@Entities/MoonlinkPlayer.js
generated
vendored
2
node_modules/moonlink.js/dist/src/@Entities/MoonlinkPlayer.js
generated
vendored
@ -36,7 +36,7 @@ class MoonlinkPlayer {
|
||||
this.playing = data.playing || false;
|
||||
this.paused = data.paused || false;
|
||||
this.loop = data.loop || 0;
|
||||
this.volume = data.volume || 100;
|
||||
this.volume = data.volume || 80;
|
||||
this.ping = data.ping || 0;
|
||||
this.queue = new (index_1.Structure.get("MoonlinkQueue"))(this.manager, this.guildId);
|
||||
this.current = null;
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "subsonics-web",
|
||||
"author": "Raphix",
|
||||
"version": "2.1.0",
|
||||
"version": "2.1.1",
|
||||
"nodemonConfig": {
|
||||
"ext": "js, html",
|
||||
"ignore": [
|
||||
|
@ -32,6 +32,7 @@ function setup() {
|
||||
|
||||
// Config GETTER
|
||||
|
||||
|
||||
function getConfig(dlog) {
|
||||
|
||||
dlog.step.init("getConfig", "Récupération du fichier de configuration")
|
||||
|
@ -256,7 +256,7 @@ volume.addEventListener("click", () => {
|
||||
|
||||
volume.addEventListener("dblclick", () => {
|
||||
|
||||
post("VOLUME", 100)
|
||||
post("VOLUME", 80)
|
||||
})
|
||||
|
||||
play.addEventListener('click', () => {
|
||||
@ -373,7 +373,7 @@ volIcon.addEventListener('click', () => {
|
||||
if(volume.value > 1) {
|
||||
post("VOLUME", 1)
|
||||
} else {
|
||||
post("VOLUME", 100)
|
||||
post("VOLUME", 80)
|
||||
}
|
||||
})
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user