summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-03-26Removing unused fonts though it doesn't affect compilation size in the ↵Michele Bini
current setup
2022-03-26sans alarmMichele Bini
2022-03-26sans stepsMichele Bini
2022-03-26sans heartMichele Bini
2022-03-26compactify app listMichele Bini
2022-03-26no persist timeMichele Bini
2022-03-26sans fs; sans settings persistMichele Bini
2022-03-25sans animationsMichele Bini
2022-03-25sans airplane mode and related support codeMichele Bini
2022-03-25Revert "include copy of lvgl"Michele Bini
This reverts commit 0d1d67d00715232e0a17e37a05c77bf83d50a2e2.
2022-03-25sans lv table, about ~140b savedMichele Bini
2022-03-25include copy of lvglMichele Bini
2022-03-25sans sysinfoMichele Bini
2022-03-25sans battinfoMichele Bini
2022-03-25sans torchMichele Bini
2022-03-25sans chimesMichele Bini
2022-03-25sans infinipaintMichele Bini
2022-03-25remove paintMichele Bini
2022-03-25Remove stopwatch and countdown timerMichele Bini
2022-03-25Remove settime and setdateMichele Bini
2022-03-25single watch faceMichele Bini
2022-03-25One more step in the same direction...Michele Bini
2022-03-24Disable bonding; Another try to disable secure pairingMichele Bini
2022-03-24Remove weather serviceMichele Bini
2022-03-24Removed QCBOR weather dependencyMichele Bini
2022-03-24sans music navigation metronome twosMichele Bini
2022-03-24sans infinitimestyleMichele Bini
2022-03-24src/components/settings/Settings.hMichele Bini
2022-03-24sans paddle and analog watchfaceMichele Bini
2022-03-24Remove WatchFaceTerminalMichele Bini
2022-03-24Revert "Analog24 watchface"Michele Bini
This reverts commit a62b893469765923a113acdf85627ce39322880f.
2022-03-24Revert "analog24wip"Michele Bini
This reverts commit 9df60a6f45efd447e51ade9be3269903ca3680fd.
2022-03-24analog24wipMichele Bini
2022-03-24Merge ../../InfiniTime into HEADMichele Bini
2022-03-23Analog24 watchfaceHEADdevelopMichele Bini
2022-03-20Analog24 watchfaceDorian Wolf
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-14Merge pull request #1039 from NeroBurner/datetime_const_and_analog_const_refJF
Datetime const and analog const ref
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-14DateTimeController: make possible functions constReinhold Gschweicher
MonthShortToString and DayOfWeekShortToString don't change the underlying object. Those are just getters and can be declared `const`.
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-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-08CI: lv_sim: initialize libpng submodule for WITH_PNG=ON screenshotReinhold Gschweicher
InfiniSim PR https://github.com/InfiniTimeOrg/InfiniSim/pull/10 adds support for screenshots in png/bmp format using `libpng` submodule. This new submodule must be added to the lv_sim workflow as well.
2022-03-08Update navigation font readme sectionRiku Isokoski