aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #903 from Riksu9000/improved_notif_timeoutJF2022-01-264-18/+49
|\ | | | | Improved notification timeout
| * Improved notification timeoutRiku Isokoski2022-01-014-18/+49
| |
* | Merge pull request #939 from NeroBurner/buttonHandler_relative_includeJF2022-01-262-2/+2
|\ \ | | | | | | ButtonHandler: includes relative to src dir
| * | ButtonHandler: includes relative to src dirReinhold Gschweicher2022-01-162-2/+2
| | |
* | | Merge pull request #940 from NeroBurner/systemTask_queue_includeJF2022-01-261-0/+1
|\ \ \ | | | | | | | | SystemTask: add missing queue.h include for QueueHandle_t
| * | | SystemTask: add missing queue.h include for QueueHandle_tReinhold Gschweicher2022-01-161-0/+1
| |/ /
* | | Merge pull request #944 from NeroBurner/no_generated_files_in_source_dirJF2022-01-262-1/+3
|\ \ \ | | | | | | | | Create Version.h in binary dir instead of src dir
| * | | Create Version.h in binary dir instead of src dirReinhold Gschweicher2022-01-172-1/+3
| |/ / | | | | | | | | | | | | Don't use source directory for generated files. Use the binary (build) directory instead.
* | | Merge pull request #948 from Riksu9000/watchfacecleanupJF2022-01-264-118/+79
|\ \ \ | |/ / |/| | PTS and digital watchface code cleanups
| * | PTS and digital watchface code cleanupsRiku Isokoski2022-01-204-118/+79
|/ /
* | Set version to 1.8.0Jean-François Milants2022-01-071-1/+1
| |
* | Merge pull request #916 from Riksu9000/shake_menuoptionJF2022-01-071-1/+1
|\ \ | | | | | | Update shakewake menu option
| * | Update shakewake menu optionRiku Isokoski2022-01-061-1/+1
|/ /
* | Merge pull request #912 from SteveAmor/chimesradioJF2022-01-051-0/+4
|\ \ | | | | | | Updates radio button style for Chimes Option
| * | Updates radio button styleSteveAmor2022-01-041-0/+4
| | |
* | | Merge branch 'geekbozu-ShakeWake' into developJean-François Milants2022-01-0412-26/+262
|\ \ \
| * | | Merge branch 'ShakeWake' of https://github.com/geekbozu/InfiniTime into ↵Jean-François Milants2022-01-0412-26/+262
|/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | geekbozu-ShakeWake # Conflicts: # src/CMakeLists.txt # src/displayapp/Apps.h # src/displayapp/DisplayApp.cpp # src/displayapp/screens/settings/Settings.cpp
| * | | Fix setting removing it self from wake settings when opening calibration ↵Tim Keller2022-01-042-3/+4
| | | | | | | | | | | | | | | | window twice.
| * | | Made calibration window enable Accel wakeups for setting and calibration ↵Tim Keller2022-01-042-1/+9
| | | | | | | | | | | | | | | | even when wake mode is inactive.
| * | | Remove "fancy" settings display and always show ShakeWakeThresholdSettingTim Keller2022-01-041-14/+10
| | | |
| * | | Fixed button color changingTim Keller2022-01-042-9/+9
| | | |
| * | | Added visual aide for shake strengthTim Keller2022-01-042-37/+60
| | | | | | | | | | | | | | | | Added delay to starting calibration
| * | | Raise calibration timeout to 7.5 secondsTim Keller2022-01-041-15/+15
| | | | | | | | | | | | | | | | Added button toggle state for cleaner user interaction
| * | | Fix crash upon leaving app.Tim Keller2022-01-043-34/+28
| | | | | | | | | | | | | | | | Code formatting
| * | | Make arc moveable, and clear previous setting on calibrateTim Keller2022-01-041-2/+5
| | | |
| * | | Actually save the thresholdTim Keller2022-01-043-8/+23
| | | | | | | | | | | | | | | | Prevent a few crashes due to an LV task being active when it shouldnt be.
| * | | Better Sensitivity UI, Calibration button addedTim Keller2022-01-046-67/+87
| | | |
| * | | Add averaging to wake threshold. Makes it take more then just a "flick" to ↵Tim Keller2022-01-043-3/+7
| | | | | | | | | | | | | | | | turn on
| * | | Add start of settings app for senstivity.Tim Keller2022-01-0410-8/+145
| | | | | | | | | | | | | | | | | | | | really just debugging. I want to make it more configurable then high med low. Position of setting needs a new location...dynamicly adding it currently at the end. Which honestly im fine with.
| * | | CleanupTim Keller2022-01-042-5/+1
| | | |
| * | | Added Shake to wakeTim Keller2022-01-046-14/+55
| | |/ | |/|
* | | Merge pull request #813 from SteveAmor/chimesJF2022-01-0412-5/+193
|\ \ \ | |/ / |/| / | |/ Chimes option
| * Adds enum class for chimes optionSteveAmor2022-01-043-12/+21
| |
| * resolve conflictsSteveAmor2022-01-021-3/+0
| |
| * resolves conflictsSteveAmor2022-01-02236-1542/+4106
| |\ | |/ |/|
* | Ran clang-formatStephanie2021-12-303-9/+14
| |
* | Renamed confusing variables and general cleanupStephanie2021-12-304-21/+18
| |
* | Changed text to left padStephanie2021-12-301-7/+9
| |
* | Moved trip meter update to MotionController and changed trip meter logicStephanie2021-12-303-15/+13
| |
* | Changed lap counter to trip meterStephanie2021-12-303-33/+43
| |
* | Added "lap" button to step counterStephanie2021-12-303-8/+57
| |
* | Use CMake universal build commandJackson2021-12-301-6/+3
| | | | | | Rather than using generator-specific build commands (ex. `make` or `ninja`), the CI build now uses `cmake --build` for a more modern, best practices approach.
* | Switch CI/CD to build using ninja vs. makeJackson2021-12-301-4/+4
| | | | | | By switching the CI/CD workflow to use CMake's `ninja` backend, the build time goes down considerably (~4.5 minutes to ~2) compared to GNU Make
* | Add missing breakRiku Isokoski2021-12-301-0/+1
| |
* | Improve gesture consistency across the firmwareRiku Isokoski2021-12-303-6/+24
| |
* | Merge pull request #718 from kieranc/pts-settingsJF2021-12-3010-403/+334
|\ \ | | | | | | Integrate color picker into PineTimeStyle watchface
| * \ Merge remote-tracking branch 'upstream/develop' into pts-settingsKieran Cawthray2021-12-0946-241/+1960
| |\ \
| * | | Include Colors.hKieran Cawthray2021-12-061-0/+1
| | | |
| * | | Merge remote-tracking branch 'upstream/develop' into pts-settingsKieran Cawthray2021-12-05191-702/+576
| |\ \ \
| * | | | Improve notification icon alignmentKieran Cawthray2021-11-161-1/+1
| | | | |