summaryrefslogtreecommitdiff
path: root/src/displayapp
AgeCommit message (Collapse)AuthorFilesLines
2021-10-23Merge pull request #740 from Riksu9000/flashlight_brightnessJF4-32/+102
Flashlight brightness control
2021-10-16Merge pull request #746 from Quantum-cross/recovery-fixJF1-0/+2
fix building of Recovery image
2021-10-16Merge pull request #507 from Riksu9000/fit_more_tasksJF1-5/+8
Fit more tasks in SystemInfo
2021-10-16Merge pull request #655 from NeroBurner/paddle_hor_fixJF1-2/+2
Paddle: compare ballX coordinate with horizontal resolution
2021-10-15Replaced "JF002" in github URLs with "InfiniTimeOrg"mabuch2-2/+3
2021-10-14fix building of Recovery image.Quantum-cross1-0/+2
2021-10-13Flashlight brightness controlRiku Isokoski4-32/+102
2021-10-11Paddle: compare ballX coordinate with horizontal resolutionReinhold Gschweicher1-2/+2
Fix the comment as the comparison checks if the ball is at the right side of the screen. Compare the x coordinate of the ball with the horizontal resolution of the screen, instead of the vertical resolution. On the PinePhone this does make no difference as we have square 240x240 screen. Change it anyways to be completely correct.
2021-10-10Merge branch 'update_touch_driver' of git://github.com/Riksu9000/InfiniTime ↵Jean-François Milants7-10/+103
into Riksu9000-update_touch_driver # Conflicts: # src/displayapp/Apps.h
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 Milants7-6/+468
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-05Merge branch 'develop' into update_touch_driverRiku Isokoski12-54/+67
2021-10-03Merge pull request #623 from Riksu9000/lvgl_queuetimeoutJF2-23/+4
Let LVGL control queueTimeout
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 Isokoski14-36/+356
2021-09-21Remove unused variableRiku Isokoski1-1/+0
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-18Merge branch 'develop' into update_touch_driverRiku Isokoski9-2/+332
2021-09-18Fix DisplayAppRecovery : add AlarmController to ctor().Jean-François Milants2-0/+3
2021-09-16resolve conflict in src/systemtask/Messages.hMark Russell8-33/+23
2021-09-16Revert "Merge upstream"Mark Russell8-23/+33
This reverts commit 1d43adcdfa7bd15ba45c0c9d7c59c0ff99176b9c.
2021-09-16Merge upstreamMark Russell8-33/+23
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-15Fix Error screen and optimize GetTouchInfoRiku Isokoski2-5/+0
2021-09-14Merge branch 'develop' into disable_notif_onlyRiku Isokoski2-13/+20
2021-09-14Merge branch 'develop' into update_touch_driverRiku Isokoski80-334/+653
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-13Fix DisplayAppRecovery : fix include error by forward declaring Controllers ↵Jean-François Milants2-13/+20
in header file.
2021-09-13Merge branch 'develop' into disable_notif_onlyRiku Isokoski5-18/+1
2021-09-12Merge pull request #602 from Riksu9000/del_unusedJF0023-12/+1
Remove unused variables
2021-09-12Merge pull request #580 from Riksu9000/timer_battery_readingJF0023-6/+0
Make battery reading periodic
2021-09-12Toggle notifications only, keep vibrations.Riku Isokoski2-7/+3
2021-09-10Created basic alarm appMark Russell7-2/+277
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 Isokoski77-304/+635
2021-08-29Let lvgl control queueTimeoutRiku Isokoski2-22/+4
2021-08-28Settings : use enums instead of ints to store colors. Group all PTS settings ↵Jean-François Milants6-96/+116
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-colorpickerJF0028-17/+432
Add color picker for PineTimeStyle watchface
2021-08-28Merge branch 'develop' into refresh_reworkRiku Isokoski19-98/+66