summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/settings
AgeCommit message (Collapse)Author
2021-10-18Fix settings merge errorKieran Cawthray
2021-10-18Merge remote-tracking branch 'upstream/develop' into pts-settingsKieran Cawthray
2021-10-13Flashlight brightness controlRiku Isokoski
2021-10-10Setting SetDate/SetTime : replace #defines by constexpr variables, NULL by ↵Jean-François Milants
nullptr and other small cleanings.
2021-10-10Merge with develop and fix conflicts from timaios:set-datetime-manually.Jean-François Milants
2021-10-03Remove old PineTimeStyle settings appKieran Cawthray
2021-09-12Toggle notifications only, keep vibrations.Riku Isokoski
2021-09-02Update Settings.cppItai Nelken
2021-08-28Settings : use enums instead of ints to store colors. Group all PTS settings ↵Jean-François Milants
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-colorpickerJF002
Add color picker for PineTimeStyle watchface
2021-08-28Merge branch 'develop' into refresh_reworkRiku Isokoski
2021-08-18Merge branch 'develop' into new_touch_handlerRiku Isokoski
2021-08-15Merge remote-tracking branch 'upstream/develop' into pinetimestyle-colorpickerKieran Cawthray
2021-08-15Fix potential edge case of sidebar being set blackKieran Cawthray
2021-08-15More tidying following reviewKieran Cawthray
2021-08-15Avoid setting the sidebar blackKieran Cawthray
2021-08-15Remove duplicate code, minor fixesKieran Cawthray
2021-08-15Merge branch 'develop' into refresh_reworkRiku Isokoski
2021-08-15Add check for randomise button in case colors clashKieran Cawthray
2021-08-15Clean up using variablesRiku Isokoski
2021-08-15Ui updateRiku Isokoski
2021-08-15Add randomise button to color pickerKieran Cawthray
2021-08-08Merge branch 'JF002:develop' into set-datetime-manuallyTim
2021-08-03Merge branch 'develop' into refresh_reworkRiku Isokoski
2021-08-01ImprovementsRiku Isokoski
2021-08-01Merge branch 'develop' into HEADRiku Isokoski
2021-07-28Merge remote-tracking branch 'upstream/develop' into pinetimestyle-colorpickerKieran Cawthray
2021-07-25Merge branch 'develop' into new_touch_handlerRiku Isokoski
2021-07-25Add new unique icons for some appsRiku Isokoski
2021-07-25Code cleanup (#466)Riku Isokoski
* Code cleanup * Remove override again
2021-07-24Merge branch 'fix_touchevent_tap' of git://github.com/Riksu9000/InfiniTime ↵Jean-François Milants
into Riksu9000-fix_touchevent_tap # Conflicts: # src/displayapp/DisplayApp.cpp
2021-07-24Add extra screen in settings to show scrollbar correctlyKieran Cawthray
2021-07-20Merge remote-tracking branch 'upstream/develop' into pinetimestyle-colorpickerKieran Cawthray
2021-07-19Refresh reworkRiku Isokoski
2021-07-15Fix gesturesRiku Isokoski
2021-07-15New touch handler, with issuesRiku Isokoski
2021-07-14Multiple wakeup sources (#290)Kozova1
* Allow multiple wakeup modes at the same time. This commit adds multiple wakeup modes support. It does so by storing them as a uint8_t bitfield enum. It changes the following functions: Since multiple modes can be on now, older version would not cut it: WakeUpMode getWakeupMode() -> std::bitset<3> getWakeUpModes() Where each bit corresponds to a WakeUpMode We still need a way to check whether a specific wakeup mode is on, so: bool isWakeUpModeOn(const WakeUpMode mode) This function was changed to work correctly with the new implementation. setWakeUpMode(WakeupMode mode, bool enable) Previously, systemtask would exit SystemTask::OnTouchEvent() if the wake up mode was None or RaiseWrist, to prevent waking up when a touch was received. However, after enabling using multiple WakeUpModes, this caused a bug where when RaiseWrist was checked with SingleTap or DoubleTap, the tap detection wouldn't work. This commit fixes that bug. Next commit will update the settings WakeUpMode select UI to reflect these changes. Signed-off-by: Kozova1 <mug66kk@gmail.com> * Updated UI to reflect multiple WakeUp sources being available. Signed-off-by: Kozova1 <mug66kk@gmail.com>
2021-07-14Merge branch 'develop' into fix_touchevent_tapRiku Isokoski
2021-07-12Merge remote-tracking branch 'upstream/develop' into pinetimestyle-colorpickerKieran Cawthray
2021-07-09Code optimizations in SettingSetDate and SettingSetTimeTim Taenny
Instead of calling lv_obj_align after each button click, the labels have their auto_realign property set.
2021-07-09Code optimizations in SettingSetTimeTim Taenny
The positions of the labels are controlled by #define's, just like in SettingSetDate.
2021-07-09Modified Settings menu as per suggestionTim Taenny
Moved "Set date" and "Set time" to the second page of the Settings menu.
2021-07-09Code optimizations in SettingSetDateTim Taenny
Using static method of DateTimeController for retrieving month texts instead of implementing it in SettingSetDate again.
2021-07-09Code optimizations in SettingSetTimeTim Taenny
2021-07-09Code optimizations in SettingSetDateTim Taenny
2021-07-09Added new menu entries to Settings pagetimaios
2021-07-09Added new screen: SettingSetDatetimaios
2021-07-09Added new screen: SettingSetTimetimaios
2021-07-07LVGL use system tickRiku Isokoski
2021-07-02Fixed a bunch of format specifiersAvamander