aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Steps: Update UIRiku Isokoski2023-02-011-5/+7
|
* stopwatch: Update UIRiku Isokoski2023-02-013-52/+91
| | | | | | The time used to be yellow while paused. Changing it to white made the paused state less distinct. Blinking the time while paused makes the state distinct again.
* Merge branch 'aleexxzeero-proper-mcuboot-app-size' into developJean-François Milants2023-01-291-4/+4
|\
| * #1463 Updated CMakeLists.txt for building images with expected alignmentAlex Dolzhenkov2022-12-291-4/+4
| |
* | SettingChimes: Use CheckboxListRiku Isokoski2023-01-292-66/+48
| |
* | SettingBluetooth: Use CheckboxListRiku Isokoski2023-01-292-79/+42
| |
* | LittleVgl: Small cleanupRiku Isokoski2023-01-292-10/+6
| |
* | theme: Replace LV_DPX with a constexpr variantRiku Isokoski2023-01-291-0/+13
| |
* | theme: Cleanup unused stylesRiku Isokoski2023-01-291-40/+6
| | | | | | | | | | Condensed paddings with pad_all No visual changes
* | theme: Remove unused parametersRiku Isokoski2023-01-293-28/+10
| |
* | infineat: Fix 12-hour timeRiku Isokoski2023-01-261-1/+1
| | | | | | | | Missing characters
* | infineat: Remove use with builtin fontsRiku Isokoski2023-01-261-35/+8
| | | | | | | | The watchface cannot be enabled without the correct font anyway.
* | infineat: Battery display simplificationRiku Isokoski2023-01-261-6/+2
| |
* | infineat: Use set_text_static where applicableRiku Isokoski2023-01-261-8/+8
| |
* | infineat: Remove batterystyleRiku Isokoski2023-01-262-13/+7
| | | | | | | | Setting local style is more efficient
* | infineat: Remove unnecessary background colorizationRiku Isokoski2023-01-262-8/+0
| |
* | infineat: Optimize lv_linesRiku Isokoski2023-01-262-186/+33
| | | | | | | | Reduce code duplication massively
* | src: Enable unused parameter warningRiku Isokoski2023-01-2441-159/+110
| | | | | | | | | | | | Fix warnings. Some clang-formatting was necessary. DebugPins is unused and was removed.
* | batt: Improve discharge curve valuesFinlay Davidson2023-01-231-9/+4
| | | | | | | | Values calculated using multiple tests on 3 PineTimes
* | Combine Date and Time Settings (#1465)John Quigley2023-01-1412-35/+170
| | | | | | | | | | | | Replace separate SettingSetDate and SettingSetTime with a combined screenlist. Add DotIndicators. Similar to PageIndicator, but for use when separating screens instead of pages of a list. Co-authored-by: Riku Isokoski <riksu9000@gmail.com>
* | List: Update list style and make it grayRiku Isokoski2023-01-121-23/+27
| |
* | SetingTimeFormat use CheckboxList, reduce duplicationRiku Isokoski2023-01-123-70/+48
| |
* | Format header filesFinlay Davidson2023-01-0955-0/+144
| | | | | | | | In my PR updating clang-format, I forgot to also format the headers.
* | Fix returning to the same screenRiku Isokoski2023-01-051-2/+7
| |
* | Implement a return app stackRiku Isokoski2023-01-054-54/+104
| | | | | | | | | | | | Each opened app (screen) is pushed on a stack, which is then popped from when returning instead of hard coded "previous apps". Return swipe and refresh directions are automatically determined from the app transition.
* | Update clang-{format,tidy} to 14Finlay Davidson2023-01-0413-0/+22
| | | | | | | | | | Also add configuration options only available in 13 and 14. Fixes warning about -fstack-usage in clang-tidy check.
* | Revert "prepare cmake unity build"Riku Isokoski2022-12-312-29/+0
| | | | | | | | This reverts commit 21f3bd708261ece47096961039e65d5b6f113c73.
* | prepare cmake unity buildtnixeu2022-12-272-0/+29
| | | | | | | | Exclude files from unity build which currently cause compile erros because of redefinitions.
* | Include algorithm and cstring for std::memcpy and std::minJean-François Milants2022-12-271-0/+2
| |
* | Update src/systemtask/SystemTask.cppMax Friedrich2022-12-271-4/+4
| | | | | | Co-authored-by: JF <JF002@users.noreply.github.com>
* | hopefully fixed crash on notificationminacode2022-12-271-1/+1
| |
* | formatminacode2022-12-271-1/+2
| |
* | removed magic numberminacode2022-12-271-1/+1
| |
* | formatminacode2022-12-271-1/+0
| |
* | changed to boolminacode2022-12-272-3/+8
| |
* | fixed a comment, set threshold to 15%minacode2022-12-272-2/+2
| |
* | cutout scaling hackminacode2022-12-271-5/+0
| |
* | added punctuationminacode2022-12-271-2/+2
| |
* | formatminacode2022-12-271-1/+1
| |
* | added message, changed UIminacode2022-12-274-8/+12
| |
* | add percentage rescalingminacode2022-12-271-1/+7
| |
* | formatminacode2022-12-271-11/+9
| |
* | added low battery messageminacode2022-12-274-0/+19
| |
* | Fix formattingtgc-dk2022-12-261-2/+1
| |
* | Put common code into DismissToBlack helper functionTomas Groth2022-12-262-15/+14
| |
* | Make it possible to dismiss new notificationsTomas Groth2022-12-262-2/+25
| |
* | Small fixup for cmake cleanupRiku Isokoski2022-12-261-11/+10
| |
* | Clean up target compile option assignmentsJonathan Vander Mey2022-12-261-51/+65
| | | | | | | | | | | | Removed/simplified some generator expressions that had more repeated elements than they needed to. Extracted some repeated sets of options into separate variables as well.
* | Split warning flags from commonJonathan Vander Mey2022-12-261-25/+26
| | | | | | | | | | Only enable the warning flags when building InfiniTime firmware, not when building third-party libraries.
* | Update clang-tidy configuration and fix some warnings (#1474)Riku Isokoski2022-12-1823-133/+136
| | | | | | | | | | Don't enable coding conventions from unrelated projects. Only enable generic checks.