v0.9.273
This commit is contained in:
@@ -229,6 +229,9 @@ Work is in progress...
|
||||
|
||||
---
|
||||
## Version history
|
||||
#### v0.9.273
|
||||
- fixed an "Guru Meditation Error" when playing streams with installed the ESP32 v2.0.10 and higher core installed
|
||||
|
||||
#### v0.9.260
|
||||
- fixed date display bug for ILI9488/ILI9486 displays
|
||||
|
||||
|
||||
@@ -316,10 +316,7 @@ void Audio::setDefaults() {
|
||||
vector_clear_and_shrink(m_playlistContent);
|
||||
m_hashQueue.clear(); m_hashQueue.shrink_to_fit(); // uint32_t vector
|
||||
if(config.getMode()!=PM_SDCARD){
|
||||
client.stop();
|
||||
client.flush(); // release memory
|
||||
clientsecure.stop();
|
||||
clientsecure.flush();
|
||||
if(_client) _client->stop();
|
||||
_client = static_cast<WiFiClient*>(&client); /* default to *something* so that no NULL deref can happen */
|
||||
}
|
||||
playI2Sremains();
|
||||
|
||||
@@ -1613,10 +1613,7 @@ void Audio::setDefaults(){
|
||||
vector_clear_and_shrink(m_playlistURL);
|
||||
vector_clear_and_shrink(m_playlistContent);
|
||||
if(config.getMode()!=PM_SDCARD){
|
||||
client.stop();
|
||||
client.flush(); // release memory
|
||||
clientsecure.stop();
|
||||
clientsecure.flush();
|
||||
if(_client) _client->stop();
|
||||
_client = static_cast<WiFiClient*>(&client); /* default to *something* so that no NULL deref can happen */
|
||||
}
|
||||
m_f_ctseen=false; // Contents type not seen yet
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef options_h
|
||||
#define options_h
|
||||
|
||||
#define YOVERSION "0.9.260"
|
||||
#define YOVERSION "0.9.273"
|
||||
|
||||
/*******************************************************
|
||||
DO NOT EDIT THIS FILE.
|
||||
|
||||
Reference in New Issue
Block a user