Skip to content

Commit 1a857cb

Browse files
committed
v0.6.380
1 parent 250231d commit 1a857cb

File tree

6 files changed

+12
-3
lines changed

6 files changed

+12
-3
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,12 @@ Work is in progress...
295295

296296
---
297297
## Version history
298+
#### v0.6.380
299+
**!!! a [full update](#update-over-web-interface) with Sketch data upload is required. After updating please press CTRL+F5 in browser !!!**
300+
- fixed a bug when saving a playlist with special characters in the name and url
301+
- fixed a bug when saving wifi settings with special characters in the name and password
302+
- fixed css bugs
303+
298304
#### v0.6.357
299305
- remove ZERO WIDTH NO-BREAK SPACE (BOM, ZWNBSP) from stream title
300306

yoRadio/audiohandlers.ino

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ void audio_info(const char *info) {
22
if(config.store.audioinfo) telnet.printf("##AUDIO.INFO#: %s\n", info);
33
if (strstr(info, "failed!") != NULL || strstr(info, " 404") != NULL) {
44
config.setTitle("[request failed]");
5-
//config.setTitle(info);
5+
netserver.requestOnChange(TITLE, 0);
6+
player.setOutputPins(false);
7+
player.setDefaults();
8+
if (player_on_stop_play) player_on_stop_play();
69
player.mode = STOPPED;
710
player.stopInfo();
811
}

yoRadio/data/www/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
</div><!--player-->
7272
<div id="settings"%NOTAPMODE%>
7373
<h2>WiFi Settings</h2>
74-
<form autocomplete="off">
74+
<form autocomplete="off" id="wifiform">
7575
<ul id="credentialwrap">
7676
<li class="credentialitem">
7777
<span>1.</span>

yoRadio/data/www/script.js.gz

214 Bytes
Binary file not shown.

yoRadio/data/www/style.css.gz

87 Bytes
Binary file not shown.

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.6.357"
4+
#define VERSION "0.6.380"
55

66
/*******************************************************
77
DO NOT EDIT THIS FILE.

0 commit comments

Comments
 (0)