Skip to content

Commit

Permalink
v0.9.260
Browse files Browse the repository at this point in the history
  • Loading branch information
e2002 committed Jun 16, 2023
1 parent b2a4eb8 commit 775538a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,9 @@ Work is in progress...

---
## Version history
#### v0.9.260
- fixed date display bug for ILI9488/ILI9486 displays

#### v0.9.259
- fixed a hang bug when switching to SD mode after removing the SD
- fixed a hangup error when the connection to the stream was lost in WEB mode
Expand Down
2 changes: 1 addition & 1 deletion yoRadio/src/core/options.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef options_h
#define options_h

#define YOVERSION "0.9.259"
#define YOVERSION "0.9.260"

/*******************************************************
DO NOT EDIT THIS FILE.
Expand Down
2 changes: 1 addition & 1 deletion yoRadio/src/displays/displayILI9488.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ void DspCore::_clockSeconds(){

void DspCore::_clockDate(){
if(_olddateleft>0)
dsp.fillRect(_olddateleft, clockTop+10, _olddatewidth, CHARHEIGHT, config.theme.background);
dsp.fillRect(_olddateleft, clockTop+14, _olddatewidth, CHARHEIGHT*2, config.theme.background);
setTextColor(config.theme.date, config.theme.background);
setCursor(_dateleft, clockTop+15);
setTextSize(2);
Expand Down

0 comments on commit 775538a

Please sign in to comment.