| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-03-27 | Set chime to 5 minutes | Michele Bini | |
| 2022-03-27 | Undocumented tweaks for chimes (12 minutes...) | Michele Bini | |
| 2022-03-27 | Adding back chimes and torch | Michele Bini | |
| 2022-03-27 | Sans shakewake and leftover modifications: Size: 228360 | Michele Bini | |
| 2022-03-26 | Help compilation of simulator | Michele Bini | |
| 2022-03-26 | sans alarm | Michele Bini | |
| 2022-03-26 | sans steps | Michele Bini | |
| 2022-03-26 | sans heart | Michele Bini | |
| 2022-03-26 | compactify app list | Michele Bini | |
| 2022-03-26 | no persist time | Michele Bini | |
| 2022-03-26 | sans fs; sans settings persist | Michele Bini | |
| 2022-03-25 | sans airplane mode and related support code | Michele Bini | |
| 2022-03-25 | sans chimes | Michele Bini | |
| 2022-03-25 | Remove stopwatch and countdown timer | Michele Bini | |
| 2022-03-24 | Disable bonding; Another try to disable secure pairing | Michele Bini | |
| 2022-02-20 | Merge branch 'airplane-mode' of https://github.com/evergreen22/InfiniTime ↵ | Jean-François Milants | |
| into evergreen22-airplane-mode Apply a few changes that were requested in the PR during the review. # Conflicts: # src/CMakeLists.txt # src/displayapp/Apps.h # src/displayapp/DisplayApp.cpp # src/displayapp/Messages.h # src/displayapp/screens/settings/Settings.cpp | |||
| 2022-02-20 | Merge branch 'airplane-mode' of https://github.com/evergreen22/InfiniTime ↵ | Jean-François Milants | |
| into evergreen22-airplane-mode # Conflicts: # src/CMakeLists.txt # src/displayapp/Apps.h # src/displayapp/DisplayApp.cpp # src/displayapp/Messages.h # src/displayapp/screens/settings/Settings.cpp | |||
| 2022-02-19 | SystemTask: forward declare BatteryController to fix of cyclic dependency | Reinhold Gschweicher | |
| SystemTask.h included BatteryController.h, and BatteryController.h included SystemTask.h. If unlucky the class SystemTask isn't created yet when BatteryController wants to use it. Fix that cyclic dependency by forward declaring the BatteryController class and including it in the SystemTask.cpp file, where it is needed. | |||
| 2022-02-19 | SystemTask: remove unused ble includes | Reinhold Gschweicher | |
| Remove unused includes. The firmware still compiles fine without the includes. | |||
| 2022-02-12 | SystemTask: fix static cast missing brackets syntax | Reinhold Gschweicher | |
| The static_cast syntax requires brackets around the input variable. The implementation worked because the used input are defines, which add the missing brackets like the following: ```cpp #define GPIO_PIN_CNF_SENSE_Low (3UL) ``` | |||
| 2022-01-26 | Merge pull request #949 from Riksu9000/fix_alarm | JF | |
| Fix alarm on time change | |||
| 2022-01-26 | Merge pull request #903 from Riksu9000/improved_notif_timeout | JF | |
| Improved notification timeout | |||
| 2022-01-22 | Fix alarm on time change | Riku Isokoski | |
| 2022-01-04 | Merge branch 'ShakeWake' of https://github.com/geekbozu/InfiniTime into ↵ | Jean-François Milants | |
| geekbozu-ShakeWake # Conflicts: # src/CMakeLists.txt # src/displayapp/Apps.h # src/displayapp/DisplayApp.cpp # src/displayapp/screens/settings/Settings.cpp | |||
| 2022-01-04 | Adds enum class for chimes option | SteveAmor | |
| 2022-01-04 | Add start of settings app for senstivity. | Tim Keller | |
| 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. | |||
| 2022-01-04 | Cleanup | Tim Keller | |
| 2022-01-04 | Added Shake to wake | Tim Keller | |
| 2022-01-02 | resolves conflicts | SteveAmor | |
| 2022-01-01 | Improved notification timeout | Riku Isokoski | |
| 2021-12-24 | Add airplane mode feature | James A. Jerkins | |
| Implements 'Airplane mode' feature to disable and enable bluetooth/ble Adds airplaneMode as a non-persisted setting Adds a setting menu for switching airplane mode on and off Displays an airplane symbol on the Digital watch face and the PineTimeStyle watch face when airplane mode is enabled Always enables bluetooth/ble on boot (disable airplane mode) Alphabetizes the settings menu options Style cleanups Closes #632 | |||
| 2021-12-10 | List Dir works? | Tim Keller | |
| 2021-12-09 | Fixed unpopped diagnostic | Avamander | |
| 2021-12-09 | Improved format specifiers, bracing, removed C-style casts, whitespace fixes ↵ | Avamander | |
| and removed Tiles shadowing | |||
| 2021-12-09 | Break not return thanks @FintasticMan | Tim Keller | |
| 2021-12-09 | Adjust systemtask to respect doNotGoToSleep. | Tim Keller | |
| 2021-12-09 | Adjust BLE/LL stacks, style, comments, refactoring | James A. Jerkins | |
| Increase BLE task stack +200 and decrease LL task stack -200 more braces! | |||
| 2021-12-09 | Persist bond between reboots | James A. Jerkins | |
| Save bond information in the FS after a disconnect or encryption change if the bond is not already stored. The bond is restored on boot enabling automatic reconnection to a previously bonded central. Two consecutive watch reboots with the central out of range (or BLE off) will remove the stored bond from the watch. | |||
| 2021-12-09 | Connect and bond with a passkey | James A. Jerkins | |
| This commit adds the following: Passkey pairing - passkey is displayed on watch Swipe down to clear passkey screen Connection encryption Connection bonding Automatic reconnects to a bonded peripheral Trusted device on Android Note that persisting the bond between reboots is NOT included in this commit. Therefore, rebooting the watch will cause reconnect failures. You must delete the bond from the phone to reconnect/pair. | |||
| 2021-11-15 | Update includes to to be relative to src directory | Reinhold Gschweicher | |
| 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. | |||
| 2021-11-07 | Fix previous commit, call touchPanel.Init() even if we disabled the touch ↵ | Jean-François Milants | |
| controller boot error. | |||
| 2021-11-07 | Disable the warning that is displayed when the initialization of the touch ↵ | Jean-François Milants | |
| controller fails, as some users reported that it was displayed when a valid touch controller was installed. | |||
| 2021-11-07 | format changes | SteveAmor | |
| 2021-11-07 | Chimes option | SteveAmor | |
| 2021-10-25 | Make it so special actions can be input while sleeping, like in #480 | Riku Isokoski | |
| 2021-10-25 | Only wake up on press. Fixes issue with longer press and sleep | Riku Isokoski | |
| 2021-10-25 | Return button action instead of pushing messages | Riku Isokoski | |
| 2021-10-25 | Use enum classes, remove old comment | Riku Isokoski | |
| 2021-10-25 | Newer buttonhandler | Riku Isokoski | |
| 2021-10-17 | Add MotionService : expose step count and RAW X/Y/Z values to the host. | Jean-François Milants | |
