Skip to content

Commit

Permalink
v0.9.342b
Browse files Browse the repository at this point in the history
  • Loading branch information
e2002 committed Nov 27, 2024
1 parent 663ece1 commit fd6c1ea
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 @@ -230,6 +230,9 @@ Work is in progress...

---
## Version history
#### v0.9.342b
- fixed compilation error for OLED displays

#### v0.9.340b
- fixed compilation error audioVS1053Ex.cpp:181:5: error: 'sdog' was not declared in this scope

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.340b"
#define YOVERSION "0.9.342b"

/*******************************************************
DO NOT EDIT THIS FILE.
Expand Down
2 changes: 1 addition & 1 deletion yoRadio/src/displays/tools/oledcolorfix.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
config.theme.plcurrent = TFT_BG;
config.theme.plcurrentbg = TFT_FG;
config.theme.plcurrentfill = TFT_FG;
for(byte i=0;i<5;i++) config.theme.playlist[i] = TFT_FG;
for(uint8_t i=0;i<5;i++) config.theme.playlist[i] = TFT_FG;


#endif

0 comments on commit fd6c1ea

Please sign in to comment.