Skip to content

Commit 0778a4a

Browse files
committed
v0.4.323
1 parent 42ea7d9 commit 0778a4a

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,10 @@ download _http://\<yoradioip\>/data/playlist.csv_ and _http://\<yoradioip\>/data
239239

240240
---
241241
## Version history
242+
#### v0.4.323
243+
- fixed bug [Equalizer not come visible after go to playlist](https://github.com/e2002/yoradio/issues/1) \
244+
(a [full update](#update) is required)
245+
242246
#### v0.4.322
243247
- fixed garbage in MQTT payload
244248

@@ -255,7 +259,7 @@ download _http://\<yoradioip\>/data/playlist.csv_ and _http://\<yoradioip\>/data
255259
- fixed js/html bugs (a [full update](#update) is required)
256260

257261
#### v0.4.298
258-
- fixed playlist scrollbar in Chrome (required [full update](#update))
262+
- fixed playlist scrollbar in Chrome (a [full update](#update) is required)
259263

260264
#### v0.4.297
261265
- 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)_

yoRadio/data/www/script.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,12 @@ function onRangeBalChange(el){
165165
}
166166
function showSettings(){
167167
document.getElementById('pleditorwrap').hidden=true;
168-
document.getElementById('equalizerbg').hidden=true;
168+
document.getElementById('equalizerbg').setAttribute('class','hidden');
169169
document.getElementById('settings').hidden=false;
170170
}
171171
function showEditor(){
172172
document.getElementById('settings').hidden=true;
173-
document.getElementById('equalizerbg').hidden=true;
173+
document.getElementById('equalizerbg').setAttribute('class','hidden');
174174
initPLEditor();
175175
document.getElementById('pleditorwrap').hidden=false;
176176
}

yoRadio/options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef options_h
22
#define options_h
33

4-
#define VERSION "0.4.322"
4+
#define VERSION "0.4.323"
55

66
#if __has_include("myoptions.h")
77
#include "myoptions.h" // <- write your variable values here

0 commit comments

Comments
 (0)