aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* elapsedTimeBoundary as constexprcodingjourney2025-11-041-1/+1
|
* fixed issues found by the test-format CI jobcodingjourney2025-11-041-5/+10
|
* tweaked some margins to improve aestheticscodingjourney2025-11-041-3/+4
|
* length of lap list adapting to available spacecodingjourney2025-11-044-9/+12
|
* improved layout, improved re-alignment of time fieldscodingjourney2025-11-042-23/+30
|
* fixed layout of lap datacodingjourney2025-11-041-3/+8
|
* upper bound for elapsed timecodingjourney2025-11-042-2/+6
|
* upper bound for lap numberscodingjourney2025-11-043-3/+5
|
* fixed an integer overflow bug in time renderingcodingjourney2025-11-041-6/+6
|
* added missing newlinecodingjourney2025-11-041-1/+1
|
* common method for entering the Paused statecodingjourney2025-11-042-8/+12
|
* fixed issues found by the test-format CI jobcodingjourney2025-11-043-8/+5
|
* render accurate time at pausecodingjourney2025-11-041-0/+1
|
* removed superfluous default values in controllercodingjourney2025-11-041-3/+3
|
* improved naming of lap-related fields and methodscodingjourney2025-11-043-30/+30
|
* lap storage as CircularBuffer, minor fixescodingjourney2025-11-043-21/+13
|
* minor fixes:codingjourney2025-11-043-53/+31
| | | | | | | | | * more consistent function names * lapCapacity as constexpr * LastLap returns std::optional * simplified handling of TickType_t values * removed unused methods * minor fix in lap rendering
* StopWatch: add persistenceJan Hustak2025-11-0413-142/+332
| | | | | # Conflicts: # src/displayapp/screens/StopWatch.h
* ImmediateAlertService: fix latent bug (#2159)Dāvis Mošenkovs2025-11-041-1/+2
| | | | | Include null terminator in the bytes copied. Set notif.size as it is done in AlertNotificationService.cpp and AlertNotificationClient.cpp.
* Removes redundant words to save spaceSteve Amor2025-10-213-3/+3
|
* Fix typos/formattingmark90642025-10-162-13/+18
|
* Remove unused motion subscribed methodmark90642025-10-162-5/+0
|
* Unconditionally calculate shake speedmark90642025-10-153-13/+9
|
* Unconditionally update motionmark90642025-10-152-18/+4
|
* Disable touch panel auto-resetmark90642025-10-141-0/+4
|
* Resolve paint corrupting screen scrollingmark90642025-10-103-1/+11
|
* Remove redundant touchpanel readmark90642025-10-081-8/+11
|
* Setting to disable DFU and FS access (#1891)Dāvis Mošenkovs2025-09-0314-2/+171
| | | | | | | | | | | | | | * Expose SystemTask dependency controllers Expose NotificationManager and Settings for use by the feature in next commit. This is a memory efficient way for accessing SystemTask dependencies from controllers that have SystemTask injected as a dependency. Looks like each direct dependency injection uses 4 bytes RAM. As InfiniTime is close to running out of RAM (using 16 more bytes causes build to fail with "ld: region RAM overflowed with stack") it might be helpful to use this approach more. * Add setting to disable DFU and FS access
* navigation: fix greying out the app icon if not enabledHeiko Stuebner2025-07-0317-3/+64
| | | | | | | | | | | | | | | | Commit 0aead42fdf51 ("navigation: Add is available (#1847)") added the ability to draw the app icon in grey and in a disabled state when some prerequisits were not met. Only the Navigation app was using this mechanism due to its icons being stored in the external memory and possibly missing. Commit 63e0c4f4efb0 ("Application selection at build time") broke this by always setting the state as true: for (const auto& userApp : userApps) { apps[i++] = Screens::Tile::Applications {userApp.icon, userApp.app, true}; } Fix this by creating an isAvailable() strcuture in the app classes, similar to how the Watchfaces handle the same problem of checking availability.
* Dark App Launcher Tiles (#2294)Titus2025-06-291-2/+1
|
* (small) Music App Redesign (#2292)Titus2025-06-292-10/+10
|
* Analog face constexpr fixmark90642025-06-281-1/+4
|
* Initialise DisplayApp components in DisplayApp contextmark90642025-06-282-13/+12
|
* Disable legacy FreeRTOS functionsmark90642025-06-271-1/+1
|
* Pride flag watchface (#2201)Eshe2025-06-199-1/+469
|
* BatteryInfo App Redesign: Fixup (#2310)Titus2025-06-121-6/+9
| | | | * remove leading zeros from battery percentage * add correct colors matching the battery icon color thresholds
* set static text as static text (#2312)lmamane2025-06-121-3/+1
| | | | | and save a few bytes of heap memory Co-authored-by: Lionel Elie Mamane <lionel@mamane.lu>
* DisplayApp: use std::ranges function where possibleReinhold Gschweicher2025-05-301-16/+16
| | | | | Instead of raw for loops use `std::ranges::transform` where possible. And also use `std::ranges::find_if` instead of `std::find_if`.
* Refactors watch faces. Replace lv_tick_get() with xTaskGetTickCount()Steve Amor2025-05-234-6/+6
|
* Fix conflict in NotificationManagerJean-François Milants2025-05-211-1/+1
|\
| * notification: Initialise messageFinlay Davidson2023-03-161-1/+1
| | | | | | | | | | | | Prevents reading uninitialised memory if notification gets cut off due to being more than 100 chars. The last character is assumed to be \0, but it is actually uninitialised.
* | Fix about screen vertical centering.Matt Zrinsky2025-05-191-1/+1
| | | | | | | | | | | | There was a newline at the end of the last line on the third screen, which was causing the label to not be centered vertically. Removing it fixes the centering.
* | Center text on timer button (#2229)Titus2025-05-161-2/+2
| |
* | Remove the vibration while charging (#1768)Max Friedrich2025-05-163-5/+0
| | | | | | | | | | | | | | | | | | | | | | * DisplayApp.cpp: Remove the vibration from OnChargingEvent This fixes a bug where the vibration interupts the physical connection with the charger and therefore triggers a new charging event and vibration, ending in a cycle of vibrations while charging. * remove OnChargingEvent message from DisplayApp --------- Co-authored-by: minacode <minamoto9@web.de>
* | Add background color to progress bar when flashing firmware (#2237)Titus2025-05-151-1/+5
| |
* | Simple calculator (#1483)Max Friedrich2025-05-128-1/+465
| | | | | | | | | | | | Co-authored-by: minacode <minamoto9@web.de> Co-authored-by: Finlay Davidson <finlay.davidson@coderclass.nl> Co-authored-by: SuIông N. <Boteium@users.noreply.github.com> Co-authored-by: mark9064 <30447455+mark9064@users.noreply.github.com>
* | work around g++ version 12, 13 and 14 spurious warning (#2158)lmamane2025-03-141-0/+5
| | | | | | | | | | which is an error since we compile with -Werror Co-authored-by: Lionel Elie Mamane <lionel@mamane.lu>
* | BatteryInfo App Redesign using arc (#2236)Titus2025-03-142-21/+24
| | | | | | | | | | | | | | | | | | | | Redesign BatteryInfo App using an Arch widget instead of a bar. The colors I used are as follows: - Discharging (default): green - Charging: lime - Battery full: blue - Battery low (<10%): red
* | Fix Infineat crash when charging with AOD (#2256)Steveis2025-02-262-2/+6
| | | | | | | | Optimise the battery animation to not use 100% CPU (which causes DisplayApp to spin forever with AOD) (DisplayApp also needs to be fixed in the future so it cannot spin infinitely)
* | Improve no notification text (#2238)Titus2025-02-101-2/+2
| | | | | | Change the "No notification" text to "No notifications"