You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -226,6 +226,15 @@ Work is in progress...
226
226
227
227
---
228
228
## Version history
229
+
#### v0.9.220
230
+
- fixed SD prelist indexing error when switching Web>>SD
231
+
- fixed a bug of switching to the next track when accidentally playing SD
232
+
- fixed import of large playlists (tried). PS: import playlist size is limited by SPIFFS size (SPIFFS.totalBytes()/100*65-SPIFFS.usedBytes() = approximately 60kb )
233
+
- new url parameter - http://YPRADIOIP/?clearspiffs - for clearing tails from SD playlist
234
+
- optimization of the issuance of the WEB-interface
235
+
- brought back the functionality of the track slider
Copy file name to clipboardExpand all lines: yoRadio/src/ST7920/ST7920.cpp
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
#include"../core/options.h"
2
-
#include"../core/player.h"
2
+
#include"../core/spidog.h"
3
3
#if DSP_MODEL==DSP_ST7920
4
4
5
5
#include"Adafruit_GFX.h"
@@ -10,8 +10,8 @@
10
10
//This display is split into two halfs. Pages are 16bit long and pages are arranged in that way that are lied horizontaly instead of verticaly, unlike SSD1306 OLED, Nokia 5110 LCD, etc.
11
11
//After 8 horizonral page is written, it jumps to half of the screen (Y = 32) and continues until 16 lines of page have been written. After that, we have set cursor in new line.
0 commit comments