From 942bc1cf743cf91c197deb4254dc3dfd0e59d130 Mon Sep 17 00:00:00 2001 From: e2002 Date: Fri, 2 Jun 2023 14:01:01 +0300 Subject: [PATCH] v0.9.236 --- README.md | 3 +++ yoRadio/src/core/netserver.h | 2 +- yoRadio/src/core/options.h | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6e364a7..5a7bcb2 100644 --- a/README.md +++ b/README.md @@ -226,6 +226,9 @@ Work is in progress... --- ## Version history +#### v0.9.236 +- fix compilation error 'class NetServer' has no member named 'resetQueue' + #### v0.9.235 - SD card playlist moved from SPIFFS to SD card - new parameter #define SD_MAX_LEVELS - Search depth for files on SD card diff --git a/yoRadio/src/core/netserver.h b/yoRadio/src/core/netserver.h index 6589505..44b7da2 100644 --- a/yoRadio/src/core/netserver.h +++ b/yoRadio/src/core/netserver.h @@ -66,8 +66,8 @@ class NetServer { #if IR_PIN!=255 void irToWs(const char* protocol, uint64_t irvalue); void irValsToWs(); - void resetQueue(); #endif + void resetQueue(); private: requestType_e request; QueueHandle_t nsQueue; diff --git a/yoRadio/src/core/options.h b/yoRadio/src/core/options.h index 7968230..5c28133 100644 --- a/yoRadio/src/core/options.h +++ b/yoRadio/src/core/options.h @@ -1,7 +1,7 @@ #ifndef options_h #define options_h -#define YOVERSION "0.9.235" +#define YOVERSION "0.9.236" /******************************************************* DO NOT EDIT THIS FILE.