summaryrefslogtreecommitdiff
path: root/src/displayapp
AgeCommit message (Collapse)Author
2022-04-11Update letters A B D F M O R UMichele Bini
2022-04-11Update letters A F M O R UMichele Bini
2022-04-11Flashlight starts on at full brightness; to save energy use backed-up ↵Michele Bini
brightness when flashlight is off
2022-04-11Tweak heartrate display for digital and analog24 watchfacesMichele Bini
2022-04-10Improve watch font sizesMichele Bini
2022-04-10battery statsMichele Bini
2022-04-10neofont tweakMichele Bini
2022-04-10Add jumpscore appMichele Bini
2022-04-10New chimes engineMichele Bini
2022-04-10Display deciseconds in digital watchfaceMichele Bini
2022-04-10Watchface digital display: seconds and temperatureMichele Bini
2022-04-10Add more symbols...Michele Bini
2022-04-10Bluetooth Passkey Toggle settingMichele Bini
2022-04-10lowercase charactersMichele Bini
2022-04-10neofont: don't try to print non-printable characters with code < 0x20Michele Bini
2022-04-10Persist brightness level of flashlight, and start as onMichele Bini
2022-04-10mix workMichele Bini
2022-04-10add bluetooth iconMichele Bini
2022-04-10fix for previous commitMichele Bini
2022-04-10allow custom glyphs for neofontMichele Bini
2022-04-10Use neofontsMichele Bini
2022-04-10Add neofont{0|1|15|2|3}[mono]Michele Bini
2022-04-10src/displayapp/fonts/neofont.cMichele Bini
2022-04-10integration fixesMichele Bini
2022-04-10Improved alarm alert handlingRiku Isokoski
2022-04-10Integrate hatmajster's timer codeMichele Bini
2022-04-09Integrate FintasticMan's RaiseWake and LowerToSleep modsMichele Bini
2022-04-09Merge branch 'develop' of https://github.com/InfiniTimeOrg/InfiniTime into ↵Michele Bini
develop
2022-04-02Replace airplane mode with a bluetooth toggleRiku Isokoski
2022-03-30Steps and heartbeat for analog24 watchfaceMichele Bini
2022-03-30Merge remote-tracking branch 'upstream/develop' into developMichele Bini
2022-03-28Timer App : add background label to ensure that the app will be displayed ↵Jean-François Milants
correctly after a full refresh (HW scrolling transition). Code cleaning and rename methods.
2022-03-28DisplayApp : Call the event handler of the current app before loading the ↵Jean-François Milants
new one. This way, we ensure that lv_task_handler() is called before sending event to the newly loaded app.
2022-03-23Analog24 watchfaceHEADdevelopMichele Bini
2022-03-14Merge pull request #1038 from NeroBurner/analog_local_variablesJF
WatchFaceAnalog: local date/time variables
2022-03-14Merge pull request #1033 from NeroBurner/music_override_warningJF
Music: fix warning about overridden function
2022-03-14Merge pull request #1034 from NeroBurner/twos_comparison_warningJF
Twos: fix warning about extra paranthesis
2022-03-14WatchFaceAnalog: local date/time variablesReinhold Gschweicher
Use local date and time variables. No need to store them in the object.
2022-03-14WatchFaceAnalog: const ref to dateTimeControllerReinhold Gschweicher
The clock app only reads from the dateTimeController, never modifies it.
2022-03-13Twos: fix warning about extra paranthesisReinhold Gschweicher
We have a comparison like `if (( a == b ))`, which is a parenthesis too much, which generates the following warning ``` InfiniTime/src/displayapp/screens/Twos.cpp:133:35: warning: equality comparison with extraneous parentheses [-Wparentheses-equality] if ((grid[newRow][newCol].value == grid[oldRow][oldCol].value)) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ InfiniTime/src/displayapp/screens/Twos.cpp:133:35: note: remove extraneous parentheses around the comparison to silence this warning if ((grid[newRow][newCol].value == grid[oldRow][oldCol].value)) { ~ ^ ~ ```
2022-03-13Music: fix warning about overridden functionReinhold Gschweicher
Clang warns on `OnTouchEvent()` function, which is overridden, but is missing the `override` keyword ``` In file included from InfiniTime/src/displayapp/screens/Music.cpp:18: InfiniTime/src/displayapp/screens/Music.h:43:14: warning: 'OnTouchEvent' overrides a member function but is not marked 'override' [-Winconsistent-missing-override] bool OnTouchEvent(TouchEvents event); ^ ```
2022-03-12Rename PineTimeStyle to WatchFacePineTimeStylemabuch
2022-03-09Merge pull request #1026 from NeroBurner/fix_settings_chimesJF
Fix SettingChimes cbOption array size
2022-03-09Merge pull request #1005 from aveeryy/notifications-as-textJF
Terminal watchface: replace notifications icon with a text entry
2022-03-08Fix SettingChimes cbOption array sizeReinhold Gschweicher
There are 3 options, but the array-size is set to 2. This leads to memory corruption in the initialization of the SettingChimes screen when assigning the third option object pointer. Found in https://github.com/InfiniTimeOrg/InfiniSim/issues/11
2022-03-08Update navigation font readme sectionRiku Isokoski
2022-03-08Add ExtraBold font ttfRiku Isokoski
2022-03-08Further updates to font readme.Riku Isokoski
2022-03-08Update font readme, update fonts, add missing filesRiku Isokoski
2022-03-06Remove unnecessary lineavery