| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | | | | | | Initial Weather service skeleton | Avamander | 2021-12-04 | 2 | -0/+300 | |
| | |/ / / / / / | ||||||
| | * | | | | | | Clock: add missing Settings include | Reinhold Gschweicher | 2021-12-02 | 1 | -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 icon | Steveis | 2021-12-02 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | Standardise notification icon to display in top left. | |||||
| | * | | | | | | Paddle: add a little randomization in the dy speed | Reinhold Gschweicher | 2021-12-02 | 1 | -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 'paint-colorchange-vibration' of ↵ | Jean-François Milants | 2021-12-02 | 2 | -3/+9 | |
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | git://github.com/clemensvonmolo/InfiniTime into clemensvonmolo-paint-colorchange-vibration # Conflicts: # src/displayapp/screens/InfiniPaint.h | |||||
| | | * | | | | | | change paint vibration to 35ms | Clemens von Molo | 2021-11-01 | 1 | -1/+1 | |
| | | | | | | | | | ||||||
| | | * | | | | | | color rotation using modulo, ran clang-format for InfiniPaint | Clemens von Molo | 2021-11-01 | 2 | -6/+11 | |
| | | | | | | | | | ||||||
| | | * | | | | | | InfiniPaint vibrate on colorchange, fix color rotation | Clemens von Molo | 2021-10-31 | 2 | -6/+7 | |
| | | | |_|/ / / | | |/| | | | | ||||||
| | * | | | | | | Metronome: add missing include for Screen.h | Reinhold Gschweicher | 2021-12-02 | 1 | -0/+1 | |
| | | | | | | | | ||||||
| | * | | | | | | WatchFaceDigital: remove unused include for ScreenList.h | Reinhold Gschweicher | 2021-12-02 | 1 | -1/+0 | |
| | | | | | | | | ||||||
| | * | | | | | | WatchFaceDigital: add missing include to Settings.h | Reinhold Gschweicher | 2021-12-02 | 1 | -0/+1 | |
| | | | | | | | | ||||||
| | * | | | | | | WatchFaceAnalog: remove unused ScreenList, add needed includes | Reinhold Gschweicher | 2021-12-02 | 2 | -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 declare | Reinhold Gschweicher | 2021-12-02 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove unused `ScreenList.h` include and add a forward declaration for the `MotionController` class. | |||||
| | * | | | | | | QuickSettings: remove unused imports | Reinhold Gschweicher | 2021-12-02 | 1 | -2/+0 | |
| | | | | | | | | ||||||
| | * | | | | | | About : Remove misleading info | Steveis | 2021-11-28 | 1 | -5/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed Steps which is hard coded to display 0. Could be misleading and is using up memory. | |||||
| | * | | | | | | Merge branch 'restructure_includes' of ↵ | Jean-François Milants | 2021-11-28 | 76 | -150/+152 | |
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/NeroBurner/InfiniTime into NeroBurner-restructure_includes # Conflicts: # doc/contribute.md # src/displayapp/screens/BatteryInfo.h | |||||
| | | * | | | | | | Move up file header include to top | Reinhold Gschweicher | 2021-11-15 | 4 | -4/+4 | |
| | | | | | | | | | ||||||
| | | * | | | | | | remove unused libs/ prefix from lvgl includes as not needed | Reinhold Gschweicher | 2021-11-15 | 4 | -6/+6 | |
| | | | | | | | | | ||||||
| | | * | | | | | | Add missing standard includes | Reinhold Gschweicher | 2021-11-15 | 2 | -0/+2 | |
| | | | | | | | | | ||||||
| | | * | | | | | | Update includes to to be relative to src directory | Reinhold Gschweicher | 2021-11-15 | 75 | -144/+144 | |
| | | | |_|_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Don't use relative imports like `../foo.h` as those depend on the relative position of both files. Rather than that use imports relative to the `src` directory, which explicitly is part of the include directories. | |||||
| | * / | | | | | BatteryInfo: remove unused FreeRTOS.h and timer.h includes | Reinhold Gschweicher | 2021-11-15 | 1 | -2/+0 | |
| | |/ / / / / | ||||||
| | * | | | / | Fix Alarm app crashing on buttonpress | Riku Isokoski | 2021-11-09 | 1 | -1/+3 | |
| | | |_|_|/ | |/| | | | ||||||
| | * | | | | Memory savings by replacing strings | Riku Isokoski | 2021-10-29 | 2 | -17/+21 | |
| | |/ / / | ||||||
| * | | | | resolves conflicts | SteveAmor | 2022-01-02 | 2 | -2/+2 | |
| | | | | | ||||||
| * | | | | Chimes option | SteveAmor | 2021-11-07 | 3 | -1/+116 | |
| |/ / / | ||||||
| * | | | Merge pull request #740 from Riksu9000/flashlight_brightness | JF | 2021-10-23 | 3 | -31/+101 | |
| |\ \ \ | |_|/ |/| | | Flashlight brightness control | |||||
| | * | | Flashlight brightness control | Riku Isokoski | 2021-10-13 | 3 | -31/+101 | |
| | | | | ||||||
| * | | | Merge pull request #507 from Riksu9000/fit_more_tasks | JF | 2021-10-16 | 1 | -5/+8 | |
| |\ \ \ | | | | | | | | | Fit more tasks in SystemInfo | |||||
| | * \ \ | Merge branch 'develop' into fit_more_tasks | Riku Isokoski | 2021-08-28 | 28 | -447/+306 | |
| | |\ \ \ | ||||||
| | * \ \ \ | Merge branch 'develop' into fit_more_tasks | Riku Isokoski | 2021-07-25 | 20 | -97/+120 | |
| | |\ \ \ \ | ||||||
| | * | | | | | Fix | Riku Isokoski | 2021-07-21 | 1 | -2/+1 | |
| | | | | | | | ||||||
| | * | | | | | Fit more tasks in SystemInfo | Riku Isokoski | 2021-07-21 | 1 | -4/+8 | |
| | | | | | | | ||||||
| * | | | | | | Merge pull request #655 from NeroBurner/paddle_hor_fix | JF | 2021-10-16 | 1 | -2/+2 | |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | Paddle: compare ballX coordinate with horizontal resolution | |||||
| | * | | | | | | Paddle: compare ballX coordinate with horizontal resolution | Reinhold Gschweicher | 2021-10-11 | 1 | -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. | |||||
| * | | | | | | | Replaced "JF002" in github URLs with "InfiniTimeOrg" | mabuch | 2021-10-15 | 2 | -2/+3 | |
| |/ / / / / / | ||||||
| * | | | | | | Merge branch 'update_touch_driver' of git://github.com/Riksu9000/InfiniTime ↵ | Jean-François Milants | 2021-10-10 | 4 | -4/+83 | |
| |\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into Riksu9000-update_touch_driver # Conflicts: # src/displayapp/Apps.h | |||||
| | * | | | | | Merge branch 'develop' into update_touch_driver | Riku Isokoski | 2021-10-05 | 10 | -30/+63 | |
| | |\ \ \ \ \ | | | |_|_|/ | | |/| | | | ||||||
| | * | | | | | Merge branch 'develop' into update_touch_driver | Riku Isokoski | 2021-09-18 | 3 | -1/+309 | |
| | |\ \ \ \ \ | ||||||
| | * | | | | | | Fix Error screen and optimize GetTouchInfo | Riku Isokoski | 2021-09-15 | 2 | -5/+0 | |
| | | | | | | | | ||||||
| | * | | | | | | Merge branch 'develop' into update_touch_driver | Riku Isokoski | 2021-09-14 | 73 | -313/+589 | |
| | |\ \ \ \ \ \ | ||||||
| | * \ \ \ \ \ \ | Merge branch 'develop' into update_touch_driver | Riku Isokoski | 2021-08-28 | 13 | -25/+17 | |
| | |\ \ \ \ \ \ \ | | | |_|_|_|_|/ | | |/| | | | | | ||||||
| | * | | | | | | | Automatic error detection | Riku Isokoski | 2021-08-18 | 2 | -0/+76 | |
| | | | | | | | | | ||||||
| | * | | | | | | | Merge branch 'develop' into update_touch_driver | Riku Isokoski | 2021-08-17 | 37 | -520/+410 | |
| | |\ \ \ \ \ \ \ | ||||||
| | * \ \ \ \ \ \ \ | Merge branch 'develop' into update_touch_driver | Riku Isokoski | 2021-07-15 | 2 | -32/+33 | |
| | |\ \ \ \ \ \ \ \ | | | |_|_|_|_|/ / | | |/| | | | | | | ||||||
| | * | | | | | | | | Update touchpad driver | Riku Isokoski | 2021-07-14 | 2 | -5/+13 | |
| | | | | | | | | | | ||||||
| * | | | | | | | | | Setting SetDate/SetTime : replace #defines by constexpr variables, NULL by ↵ | Jean-François Milants | 2021-10-10 | 4 | -85/+61 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nullptr and other small cleanings. | |||||
| * | | | | | | | | | Merge with develop and fix conflicts from timaios:set-datetime-manually. | Jean-François Milants | 2021-10-10 | 5 | -5/+455 | |
| |\ \ \ \ \ \ \ \ \ | ||||||
| | * \ \ \ \ \ \ \ \ | Merge branch 'JF002:develop' into set-datetime-manually | Tim | 2021-08-08 | 31 | -245/+240 | |
| | |\ \ \ \ \ \ \ \ \ | ||||||
| | * | | | | | | | | | | Code optimizations in SettingSetDate and SettingSetTime | Tim Taenny | 2021-07-09 | 2 | -13/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of calling lv_obj_align after each button click, the labels have their auto_realign property set. | |||||
| | * | | | | | | | | | | Code optimizations in SettingSetTime | Tim Taenny | 2021-07-09 | 1 | -9/+17 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The positions of the labels are controlled by #define's, just like in SettingSetDate. | |||||
