Changes between Version 47 and Version 48 of Docs/825gen2/Dev/DeveloperNews
- Timestamp:
- 04/11/25 07:52:11 (8 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/825gen2/Dev/DeveloperNews
v47 v48 3 3 == 2025-04-11 Dark Mode for new style apps == 4 4 5 **Comming Soon...** 6 7 arm825beta lib825ev is updated to allow new style apps to run in dark mode (light text on black background). Previously legacy recompiled apps used dark mode, but new style apps used a white background. 5 arm825beta lib825ev is updated to allow new style apps to run in dark mode (light text on black background). Previously legacy recompiled apps used dark mode, but new style apps used a white background. A new patch will be coming soon that updates the startup preferences settings to have a dark mode selection. 8 6 9 7 To insure apps work properly in dark mode apps should not be coded with fixed colors. For example, //SetBkColor(nColorWhite);// should be changed to //SetBkColor(COLOR_BKGND)//. //SetCurColor(nColorBlack);// should be changed to //SetCurColor(COLOR_INFO);// or some other non-fixed color identifier.