Changes between Version 53 and Version 54 of Docs/825gen2/Dev/DeveloperNews


Ignore:
Timestamp:
04/14/25 07:16:52 (5 days ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/825gen2/Dev/DeveloperNews

    v53 v54  
    55The 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.
    66
    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.
     7To 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.
    88
    99From 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: