diff --git a/README.md b/README.md index d9d7aac..a0644f6 100644 --- a/README.md +++ b/README.md @@ -239,6 +239,10 @@ download _http://\/data/playlist.csv_ and _http://\/data --- ## 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 - fixed garbage in MQTT payload @@ -255,7 +259,7 @@ download _http://\/data/playlist.csv_ and _http://\/data - fixed js/html bugs (a [full update](#update) is required) #### 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 - 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)_ diff --git a/yoRadio/data/www/script.js b/yoRadio/data/www/script.js index 14e7274..14f22e3 100644 --- a/yoRadio/data/www/script.js +++ b/yoRadio/data/www/script.js @@ -165,12 +165,12 @@ function onRangeBalChange(el){ } function showSettings(){ document.getElementById('pleditorwrap').hidden=true; - document.getElementById('equalizerbg').hidden=true; + document.getElementById('equalizerbg').setAttribute('class','hidden'); document.getElementById('settings').hidden=false; } function showEditor(){ document.getElementById('settings').hidden=true; - document.getElementById('equalizerbg').hidden=true; + document.getElementById('equalizerbg').setAttribute('class','hidden'); initPLEditor(); document.getElementById('pleditorwrap').hidden=false; } diff --git a/yoRadio/options.h b/yoRadio/options.h index 2f31b0b..75449d2 100644 --- a/yoRadio/options.h +++ b/yoRadio/options.h @@ -1,7 +1,7 @@ #ifndef options_h #define options_h -#define VERSION "0.4.322" +#define VERSION "0.4.323" #if __has_include("myoptions.h") #include "myoptions.h" // <- write your variable values here