This commit is contained in:
e2002
2022-07-04 13:04:38 +03:00
parent 250231db72
commit 1a857cb6fd
6 changed files with 12 additions and 3 deletions

View File

@@ -295,6 +295,12 @@ Work is in progress...
--- ---
## Version history ## Version history
#### v0.6.380
**!!! a [full update](#update-over-web-interface) with Sketch data upload is required. After updating please press CTRL+F5 in browser !!!**
- fixed a bug when saving a playlist with special characters in the name and url
- fixed a bug when saving wifi settings with special characters in the name and password
- fixed css bugs
#### v0.6.357 #### v0.6.357
- remove ZERO WIDTH NO-BREAK SPACE (BOM, ZWNBSP) from stream title - remove ZERO WIDTH NO-BREAK SPACE (BOM, ZWNBSP) from stream title

View File

@@ -2,7 +2,10 @@ void audio_info(const char *info) {
if(config.store.audioinfo) telnet.printf("##AUDIO.INFO#: %s\n", info); if(config.store.audioinfo) telnet.printf("##AUDIO.INFO#: %s\n", info);
if (strstr(info, "failed!") != NULL || strstr(info, " 404") != NULL) { if (strstr(info, "failed!") != NULL || strstr(info, " 404") != NULL) {
config.setTitle("[request failed]"); config.setTitle("[request failed]");
//config.setTitle(info); netserver.requestOnChange(TITLE, 0);
player.setOutputPins(false);
player.setDefaults();
if (player_on_stop_play) player_on_stop_play();
player.mode = STOPPED; player.mode = STOPPED;
player.stopInfo(); player.stopInfo();
} }

View File

@@ -71,7 +71,7 @@
</div><!--player--> </div><!--player-->
<div id="settings"%NOTAPMODE%> <div id="settings"%NOTAPMODE%>
<h2>WiFi Settings</h2> <h2>WiFi Settings</h2>
<form autocomplete="off"> <form autocomplete="off" id="wifiform">
<ul id="credentialwrap"> <ul id="credentialwrap">
<li class="credentialitem"> <li class="credentialitem">
<span>1.</span> <span>1.</span>

Binary file not shown.

Binary file not shown.

View File

@@ -1,7 +1,7 @@
#ifndef options_h #ifndef options_h
#define options_h #define options_h
#define VERSION "0.6.357" #define VERSION "0.6.380"
/******************************************************* /*******************************************************
DO NOT EDIT THIS FILE. DO NOT EDIT THIS FILE.