Skip to content

Commit 775538a

Browse files
committed
v0.9.260
1 parent b2a4eb8 commit 775538a

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,9 @@ Work is in progress...
229229

230230
---
231231
## Version history
232+
#### v0.9.260
233+
- fixed date display bug for ILI9488/ILI9486 displays
234+
232235
#### v0.9.259
233236
- fixed a hang bug when switching to SD mode after removing the SD
234237
- fixed a hangup error when the connection to the stream was lost in WEB mode

yoRadio/src/core/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 YOVERSION "0.9.259"
4+
#define YOVERSION "0.9.260"
55

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

yoRadio/src/displays/displayILI9488.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ void DspCore::_clockSeconds(){
103103

104104
void DspCore::_clockDate(){
105105
if(_olddateleft>0)
106-
dsp.fillRect(_olddateleft, clockTop+10, _olddatewidth, CHARHEIGHT, config.theme.background);
106+
dsp.fillRect(_olddateleft, clockTop+14, _olddatewidth, CHARHEIGHT*2, config.theme.background);
107107
setTextColor(config.theme.date, config.theme.background);
108108
setCursor(_dateleft, clockTop+15);
109109
setTextSize(2);

0 commit comments

Comments
 (0)