Skip to content

Commit

Permalink
v0.4.323
Browse files Browse the repository at this point in the history
  • Loading branch information
e2002 committed Mar 8, 2022
1 parent 42ea7d9 commit 0778a4a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,10 @@ download _http://\<yoradioip\>/data/playlist.csv_ and _http://\<yoradioip\>/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

Expand All @@ -255,7 +259,7 @@ download _http://\<yoradioip\>/data/playlist.csv_ and _http://\<yoradioip\>/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)_
Expand Down
4 changes: 2 additions & 2 deletions yoRadio/data/www/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion yoRadio/options.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 0778a4a

Please sign in to comment.