Changes between Version 53 and Version 54 of Docs/825gen2/Dev/DeveloperNews
- Timestamp:
- 04/14/25 07:16:52 (5 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/825gen2/Dev/DeveloperNews
v53 v54 5 5 The 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. 6 6 7 To insure apps work properly in dark mode apps should not be coded withfixed 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.7 To insure apps work properly in dark mode apps should generally be coded without using 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. 8 8 9 9 From ssh apps can be tested in normal or dark mode by setting the environment variable DARKMODE as 0 or 1. For example to run //myapp// in dark mode: