summaryrefslogtreecommitdiff
path: root/src/displayapp/screens
AgeCommit message (Collapse)AuthorFilesLines
2021-10-10Setting SetDate/SetTime : replace #defines by constexpr variables, NULL by ↵Jean-François Milants4-85/+61
nullptr and other small cleanings.
2021-10-10Merge with develop and fix conflicts from timaios:set-datetime-manually.Jean-François Milants5-5/+455
2021-10-09Merge pull request #701 from ↵JF2-4/+17
maksalees/close-info-popup-with-back-button-in-alarm Alarm: Close the popup with information about the time until alarm with the back button
2021-10-03Merge pull request #638 from Riksu9000/detect_full_chargeJF7-22/+59
Detect full charge and improve watchface battery display
2021-09-29Fixes based on code reviewsMaxim Leshchenko2-8/+9
2021-09-28Alarm: Close the popup with information about the time until alarm with the ↵Maxim Leshchenko2-0/+12
back button Previously, pressing the back button would close the alarm app anyway. Now if you press on it and the popup with information is open, it will first close and the second press will close the application
2021-09-23Merge pull request #664 from Riksu9000/disable_notif_onlyJF0022-7/+3
Toggle notifications only, keep vibrations.
2021-09-22Show plug icon while plugged inRiku Isokoski2-4/+4
2021-09-22Merge branch 'develop' into detect_full_chargeRiku Isokoski8-15/+313
2021-09-18Merge pull request #669 from ↵JF0021-1/+1
NeroBurner/fix_unsigned_comparison_warning_metronome Fix unsigned/signed comparison warning in Metronome.cpp
2021-09-16resolve conflict in src/systemtask/Messages.hMark Russell4-13/+3
2021-09-16Revert "Merge upstream"Mark Russell4-3/+13
This reverts commit 1d43adcdfa7bd15ba45c0c9d7c59c0ff99176b9c.
2021-09-16Merge upstreamMark Russell4-13/+3
2021-09-16Fixes per Riksu9000's feedbackMark Russell2-15/+19
2021-09-16Fix unsigned/signed comparison warning in Metronome.cppReinhold Gschweicher1-1/+1
`xTaskGetTickCount()` returns a `TickType_t`, which is defined as an `uint32_t`. This is compared to the `bpm` variable, which is a `int16_t` in the range of 40 to 220 as defined in the constructor. ```cpp lv_arc_set_range(bpmArc, 40, 220); ``` Just assume that `bpm` is greater than 0, as this would result in a divison by zero or negative values, which would unintentionally underflow to a very large number.
2021-09-13License header fix, add missing bracesMark Russell2-2/+10
2021-09-13Fixes based on code reviews (formatting, UI code)Mark Russell2-52/+92
2021-09-13Merge branch 'develop' into disable_notif_onlyRiku Isokoski3-11/+1
2021-09-12Merge pull request #602 from Riksu9000/del_unusedJF0022-9/+1
Remove unused variables
2021-09-12Merge pull request #580 from Riksu9000/timer_battery_readingJF0021-2/+0
Make battery reading periodic
2021-09-12Toggle notifications only, keep vibrations.Riku Isokoski2-7/+3
2021-09-10Created basic alarm appMark Russell3-1/+257
2021-09-03Use percentage instead of IsFullRiku Isokoski1-1/+1
2021-09-03Auto realign battery icon in Analog watch faceRiku Isokoski1-0/+1
2021-09-03Detect full charge and improve watchface displayRiku Isokoski7-23/+59
2021-09-02Update Settings.cppItai Nelken1-2/+2
2021-08-31Fix notifications that wouldn't auto close when the timeout elapsed (in ↵Jean-François Milants1-1/+0
preview mode).
2021-08-30Merge remote-tracking branch 'upstream/develop' into timer_battery_readingRiku Isokoski73-302/+590
2021-08-28Settings : use enums instead of ints to store colors. Group all PTS settings ↵Jean-François Milants4-96/+79
into a struct. PTS/SettingsPTS : Convert to/from LVGL color and Settings::Color, add functions to reduce code duplication. Adapt SettingPineTimeStyle with the last Screen Interface
2021-08-28Merge pull request #458 from kieranc/pinetimestyle-colorpickerJF0026-16/+425
Add color picker for PineTimeStyle watchface
2021-08-28Merge branch 'develop' into refresh_reworkRiku Isokoski12-23/+15
2021-08-28Merge branch 'develop' into timer_battery_readingRiku Isokoski18-141/+131
2021-08-19Merge remote-tracking branch 'upstream/develop' into pinetimestyle-colorpickerKieran Cawthray1-1/+1
2021-08-19Remove unused variablesRiku Isokoski2-9/+1
2021-08-18Merge branch 'develop' into new_touch_handlerRiku Isokoski14-269/+230
2021-08-18Fix music app buttonsRiku Isokoski1-1/+1
2021-08-15Merge remote-tracking branch 'upstream/develop' into pinetimestyle-colorpickerKieran Cawthray14-268/+229
2021-08-15Fix potential edge case of sidebar being set blackKieran Cawthray1-1/+1
2021-08-15More tidying following reviewKieran Cawthray1-85/+88
2021-08-15Avoid setting the sidebar blackKieran Cawthray1-0/+4
2021-08-15Remove duplicate code, minor fixesKieran Cawthray1-33/+19
2021-08-15Merge branch 'develop' into refresh_reworkRiku Isokoski13-167/+164
2021-08-15Add check for randomise button in case colors clashKieran Cawthray1-0/+5
2021-08-15Adjust inner padding in applistRiku Isokoski1-1/+1
2021-08-15Clean up using variablesRiku Isokoski1-10/+16
2021-08-15Adjust previously missed scrollbar and firmware validation buttonsRiku Isokoski2-11/+11
2021-08-15Ui updateRiku Isokoski9-107/+99
2021-08-15Add randomise button to color pickerKieran Cawthray2-0/+22
2021-08-14Merge branch 'develop' into timer_battery_readingRiku Isokoski5-152/+115
2021-08-14Merge branch 'call-improvements' of https://github.com/Riksu9000/InfiniTime ↵Jean-François Milants4-55/+49
into Riksu9000-call-improvements # Conflicts: # src/displayapp/screens/Metronome.cpp