This commit is contained in:
e2002
2022-03-08 12:23:04 +03:00
parent 42ea7d9df8
commit 0778a4a821
3 changed files with 8 additions and 4 deletions

View File

@@ -239,6 +239,10 @@ download _http://\<yoradioip\>/data/playlist.csv_ and _http://\<yoradioip\>/data
--- ---
## Version history ## Version history
#### v0.4.323
- fixed bug [Equalizer not come visible after go to playlist](https://github.com/e2002/yoradio/issues/1) \
(a [full update](#update) is required)
#### v0.4.322 #### v0.4.322
- fixed garbage in MQTT payload - fixed garbage in MQTT payload
@@ -255,7 +259,7 @@ download _http://\<yoradioip\>/data/playlist.csv_ and _http://\<yoradioip\>/data
- fixed js/html bugs (a [full update](#update) is required) - fixed js/html bugs (a [full update](#update) is required)
#### v0.4.298 #### v0.4.298
- fixed playlist scrollbar in Chrome (required [full update](#update)) - fixed playlist scrollbar in Chrome (a [full update](#update) is required)
#### v0.4.297 #### v0.4.297
- fix _"Could not decode a text frame as UTF-8"_ websocket error _//Thanks for [Verholazila](https://4pda.to/forum/index.php?s=&showtopic=1010378&view=findpost&p=113551446)_ - fix _"Could not decode a text frame as UTF-8"_ websocket error _//Thanks for [Verholazila](https://4pda.to/forum/index.php?s=&showtopic=1010378&view=findpost&p=113551446)_

View File

@@ -165,12 +165,12 @@ function onRangeBalChange(el){
} }
function showSettings(){ function showSettings(){
document.getElementById('pleditorwrap').hidden=true; document.getElementById('pleditorwrap').hidden=true;
document.getElementById('equalizerbg').hidden=true; document.getElementById('equalizerbg').setAttribute('class','hidden');
document.getElementById('settings').hidden=false; document.getElementById('settings').hidden=false;
} }
function showEditor(){ function showEditor(){
document.getElementById('settings').hidden=true; document.getElementById('settings').hidden=true;
document.getElementById('equalizerbg').hidden=true; document.getElementById('equalizerbg').setAttribute('class','hidden');
initPLEditor(); initPLEditor();
document.getElementById('pleditorwrap').hidden=false; document.getElementById('pleditorwrap').hidden=false;
} }

View File

@@ -1,7 +1,7 @@
#ifndef options_h #ifndef options_h
#define options_h #define options_h
#define VERSION "0.4.322" #define VERSION "0.4.323"
#if __has_include("myoptions.h") #if __has_include("myoptions.h")
#include "myoptions.h" // <- write your variable values here #include "myoptions.h" // <- write your variable values here