| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-03-25 | sans animations | Michele Bini | |
| 2022-03-25 | sans airplane mode and related support code | Michele Bini | |
| 2022-03-25 | Revert "include copy of lvgl" | Michele Bini | |
| This reverts commit 0d1d67d00715232e0a17e37a05c77bf83d50a2e2. | |||
| 2022-03-25 | sans lv table, about ~140b saved | Michele Bini | |
| 2022-03-25 | include copy of lvgl | Michele Bini | |
| 2022-03-25 | sans sysinfo | Michele Bini | |
| 2022-03-25 | sans battinfo | Michele Bini | |
| 2022-03-25 | sans torch | Michele Bini | |
| 2022-03-25 | sans chimes | Michele Bini | |
| 2022-03-25 | sans infinipaint | Michele Bini | |
| 2022-03-25 | remove paint | Michele Bini | |
| 2022-03-25 | Remove stopwatch and countdown timer | Michele Bini | |
| 2022-03-25 | Remove settime and setdate | Michele Bini | |
| 2022-03-25 | single watch face | Michele Bini | |
| 2022-03-25 | One more step in the same direction... | Michele Bini | |
| 2022-03-24 | Disable bonding; Another try to disable secure pairing | Michele Bini | |
| 2022-03-24 | Remove weather service | Michele Bini | |
| 2022-03-24 | Removed QCBOR weather dependency | Michele Bini | |
| 2022-03-24 | sans music navigation metronome twos | Michele Bini | |
| 2022-03-24 | sans infinitimestyle | Michele Bini | |
| 2022-03-24 | src/components/settings/Settings.h | Michele Bini | |
| 2022-03-24 | sans paddle and analog watchface | Michele Bini | |
| 2022-03-24 | Remove WatchFaceTerminal | Michele Bini | |
| 2022-03-24 | Revert "Analog24 watchface" | Michele Bini | |
| This reverts commit a62b893469765923a113acdf85627ce39322880f. | |||
| 2022-03-24 | Revert "analog24wip" | Michele Bini | |
| This reverts commit 9df60a6f45efd447e51ade9be3269903ca3680fd. | |||
| 2022-03-24 | analog24wip | Michele Bini | |
| 2022-03-23 | Analog24 watchfaceHEADdevelop | Michele Bini | |
| 2022-03-14 | Merge pull request #1038 from NeroBurner/analog_local_variables | JF | |
| WatchFaceAnalog: local date/time variables | |||
| 2022-03-14 | Merge pull request #1033 from NeroBurner/music_override_warning | JF | |
| Music: fix warning about overridden function | |||
| 2022-03-14 | Merge pull request #1034 from NeroBurner/twos_comparison_warning | JF | |
| Twos: fix warning about extra paranthesis | |||
| 2022-03-14 | WatchFaceAnalog: local date/time variables | Reinhold Gschweicher | |
| Use local date and time variables. No need to store them in the object. | |||
| 2022-03-14 | WatchFaceAnalog: const ref to dateTimeController | Reinhold Gschweicher | |
| The clock app only reads from the dateTimeController, never modifies it. | |||
| 2022-03-14 | DateTimeController: make possible functions const | Reinhold Gschweicher | |
| MonthShortToString and DayOfWeekShortToString don't change the underlying object. Those are just getters and can be declared `const`. | |||
| 2022-03-13 | Twos: fix warning about extra paranthesis | Reinhold 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-13 | Music: fix warning about overridden function | Reinhold 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-09 | Merge pull request #1026 from NeroBurner/fix_settings_chimes | JF | |
| Fix SettingChimes cbOption array size | |||
| 2022-03-09 | Merge pull request #1005 from aveeryy/notifications-as-text | JF | |
| Terminal watchface: replace notifications icon with a text entry | |||
| 2022-03-08 | Fix SettingChimes cbOption array size | Reinhold 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-08 | Update navigation font readme section | Riku Isokoski | |
| 2022-03-08 | Add ExtraBold font ttf | Riku Isokoski | |
| 2022-03-08 | Further updates to font readme. | Riku Isokoski | |
| 2022-03-08 | Update font readme, update fonts, add missing files | Riku Isokoski | |
| 2022-03-08 | SystemMonitor: implement FreeRtosMonitor only if trace facility is set | Reinhold Gschweicher | |
| Split SystemMonitor into h and cpp file and move the logging code of the `Process` function into the cpp file. Depending of the `configUSE_TRACE_FACILITY` define from `src/FreeRTOSConfig.h` create either a "FreeRtosMonitor" or a "DummyMonitor". Make the `Process()` function non-const, as the FreeRtosMonitor changes the member variable `lastTick`. In `SystemTask.h` we then only need to use `SystemMonitor`, without knowledge of the `configUSE_TRACE_FACILITY` define. | |||
| 2022-03-08 | Add missing nrf_log.h includes shadowed by SystemMonitor.h | Reinhold Gschweicher | |
| Some components were missing a `nrf_log.h` include. This missing include was accidentally provided by the SystemMonitor.h header, which was included by Systemtask.h | |||
| 2022-03-06 | Remove unnecessary line | avery | |
| 2022-03-06 | Merge branch 'develop' into notifications-as-text | avery | |
| 2022-03-05 | Replace notif entry with "You have mail." text | avery | |
| 2022-03-03 | removed SetClockFace from watchface Constructors | Yehoshua Pesach Wallach | |
| 2022-03-03 | Settings: more specific read and write mode | Reinhold Gschweicher | |
| For each filesystem interaction be more specific if we want to read from the file or write to it. Doing a non-creating read on the loading of the settings file, otherwise an empty file could be created, and when reading that empty file for the initial settings I would expect an error (or random data) when reading. | |||
| 2022-03-03 | Update README.md | medeyko | |
| More imperative tone | |||
