aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | Improved documentationAvamander2021-12-041-0/+20
| | | | | | | | | |
| * | | | | | | | | Removed an instance of shadowingAvamander2021-12-041-4/+4
| | | | | | | | | |
| * | | | | | | | | Clarified a few commentsAvamander2021-12-041-5/+6
| | | | | | | | | |
| * | | | | | | | | Specified how values should be interpreted betterAvamander2021-12-041-2/+7
| | | | | | | | | |
| * | | | | | | | | Removed unnecessary change in CMakeListsAvamander2021-12-041-1/+1
| | | | | | | | | |
| * | | | | | | | | Added new precipitation and obscuration typesAvamander2021-12-041-2/+12
| | | | | | | | | |
| * | | | | | | | | Fixed an incorrect decode in HumidityAvamander2021-12-041-1/+1
| | | | | | | | | |
| * | | | | | | | | Improved debug UI.Avamander2021-12-042-1/+25
| | | | | | | | | |
| * | | | | | | | | Implemented parsing of all defined weather data typesAvamander2021-12-041-19/+181
| | | | | | | | | |
| * | | | | | | | | Improved UI and fixed a bugAvamander2021-12-042-10/+31
| | | | | | | | | |
| * | | | | | | | | Bunch of bugs fixed, improved error handling, debug UI additionAvamander2021-12-045-129/+182
| | | | | | | | | |
| * | | | | | | | | Improved error handling and fixed incompatibility with co.nstant.in:cbor libraryAvamander2021-12-042-8/+11
| | | | | | | | | |
| * | | | | | | | | Fixed recovery buildAvamander2021-12-041-1/+2
| | | | | | | | | |
| * | | | | | | | | Removed versioning because it's not necessaryAvamander2021-12-041-8/+1
| | | | | | | | | |
| * | | | | | | | | Changed UUID so it wouldn't conflict with MotionAvamander2021-12-041-3/+3
| | | | | | | | | |
| * | | | | | | | | Fixed a few compilation errors, fixed UUID.Avamander2021-12-045-14/+25
| | | | | | | | | |
| * | | | | | | | | Implemented a few functions.Avamander2021-12-044-41/+85
| | | | | | | | | |
| * | | | | | | | | Few formatting fixesAvamander2021-12-043-8/+8
| | | | | | | | | |
| * | | | | | | | | Started initial work on the UIAvamander2021-12-044-177/+80
| | | | | | | | | |
| * | | | | | | | | Added autodetection for clang-format versionAvamander2021-12-041-8/+7
| | | | | | | | | |
| * | | | | | | | | Brace style and whitespace fixesAvamander2021-12-045-5/+5
| | | | | | | | | |
| * | | | | | | | | Switched to non-deprecated math headerAvamander2021-12-041-0/+1
| | | | | | | | | |
| * | | | | | | | | Fixed a few bugs, enabled UsefulBuf library optimizationsAvamander2021-12-045-24/+43
| | | | | | | | | |
| * | | | | | | | | Minor style improvementAvamander2021-12-041-1/+2
| | | | | | | | | |
| * | | | | | | | | Skeleton of the receiving logicAvamander2021-12-043-76/+145
| | | | | | | | | |
| * | | | | | | | | Removed redundant comments from NrfLoggerAvamander2021-12-041-2/+1
| | | | | | | | | |
| * | | | | | | | | Tidied up and added Weather to CMakeLists.txtAvamander2021-12-041-0/+6
| | | | | | | | | |
| * | | | | | | | | Initial Weather service skeletonAvamander2021-12-048-0/+992
| | | | | | | | | |
| * | | | | | | | | Added QCBOR dependencyAvamander2021-12-042-2/+28
|/ / / / / / / / /
* | | | | | | | | Clock: add missing Settings includeReinhold Gschweicher2021-12-021-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add missing include in `Clock.cpp` for `Settings.h`. The Settings class is forward declared in the header file, but it needs to be included in the cpp file.
* | | | | | | | | WatchFaceAnalog : move notification iconSteveis2021-12-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Standardise notification icon to display in top left.
* | | | | | | | | Paddle: add a little randomization in the dy speedReinhold Gschweicher2021-12-021-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To make the game a bit more challenging an less predictable add a little bit of randomness to the `dy` value. When hitting the right wall add a random number (one of [-1, 0, 1]) to the `dy` value. To keep the difficulty level managable limit the dy value to be in the range from -5 to 5.
* | | | | | | | | Merge branch 'clemensvonmolo-paint-colorchange-vibration' into developJean-François Milants2021-12-023-4/+10
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Merge branch 'paint-colorchange-vibration' of ↵Jean-François Milants2021-12-023-4/+10
|/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | git://github.com/clemensvonmolo/InfiniTime into clemensvonmolo-paint-colorchange-vibration # Conflicts: # src/displayapp/screens/InfiniPaint.h
| * | | | | | | | | change paint vibration to 35msClemens von Molo2021-11-011-1/+1
| | | | | | | | | |
| * | | | | | | | | color rotation using modulo, ran clang-format for InfiniPaintClemens von Molo2021-11-013-7/+12
| | | | | | | | | |
| * | | | | | | | | InfiniPaint vibrate on colorchange, fix color rotationClemens von Molo2021-10-313-7/+8
| | | | | | | | | |
* | | | | | | | | | Metronome: add missing include for Screen.hReinhold Gschweicher2021-12-021-0/+1
| | | | | | | | | |
* | | | | | | | | | Settings: remove unused driver includeReinhold Gschweicher2021-12-021-1/+0
| | | | | | | | | |
* | | | | | | | | | WatchFaceDigital: remove unused include for ScreenList.hReinhold Gschweicher2021-12-021-1/+0
| | | | | | | | | |
* | | | | | | | | | WatchFaceDigital: add missing include to Settings.hReinhold Gschweicher2021-12-021-0/+1
| | | | | | | | | |
* | | | | | | | | | WatchFaceAnalog: remove unused ScreenList, add needed includesReinhold Gschweicher2021-12-022-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove unused `ScreenList.h` include. For `std::abs()` add needed include `<cmath>`. For the forward declared Settings-Controller add the `Settings.h` include to the cpp file.
* | | | | | | | | | PineTimeStyle: remove include and add forward declareReinhold Gschweicher2021-12-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove unused `ScreenList.h` include and add a forward declaration for the `MotionController` class.
* | | | | | | | | | QuickSettings: remove unused importsReinhold Gschweicher2021-12-021-2/+0
| | | | | | | | | |
* | | | | | | | | | Merge branch 'develop' of github.com:JF002/Pinetime into developJean-François Milants2021-12-023-8/+7
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | About : Remove misleading infoSteveis2021-11-281-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed Steps which is hard coded to display 0. Could be misleading and is using up memory.
| * | | | | | | | | | Merge pull request #798 from NeroBurner/motionservice_fix_typo_in_includeJF2021-11-281-1/+1
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | MotionService: fix not needed '/' in include
| | * \ \ \ \ \ \ \ \ \ Merge branch 'develop' into motionservice_fix_typo_in_includeJF2021-11-28194-763/+843
| | |\ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / / | |/| | | | | | | | | |
| * | | | | | | | | | | Fixed container to use clang-format-12 and format on saveStephanie2021-11-281-2/+4
| | | | | | | | | | | |
| | * | | | | | | | | | MotionService: fix not needed '/' in includeReinhold Gschweicher2021-10-301-1/+1
| | | | | | | | | | | |