summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-05-10fonts: update README.md to match new methodYehoshua Pesach Wallach
2022-05-10fontgen: simplfy json after removed external features keyYehoshua Pesach Wallach
2022-05-10fontgen: minor changesYehoshua Pesach Wallach
2022-05-10fontgen: remove .c from requested font if thereYehoshua Pesach Wallach
2022-05-10fontgen: simplify enabled fontsYehoshua Pesach Wallach
2022-05-10fontgen: use patch file for jetbrains 0 fixYehoshua Pesach Wallach
2022-05-10fontgen: removed ability of removing .c extYehoshua Pesach Wallach
2022-05-10fontgen: move features into fontsYehoshua Pesach Wallach
Also, removed feature existance cheking (since it now depends on a font, so may end up being inside (only) a font not being used currently - which is an allowed usage)
2022-05-10fontgen: added missing requested font checkYehoshua Pesach Wallach
2022-05-10fontgen: Added ability to choose fonts with .cYehoshua Pesach Wallach
2022-05-10Added FontAwesome5-Solid+Brands+Regular.woff to gitYehoshua Pesach Wallach
2022-05-10Added font auto-generate scriptYehoshua Pesach Wallach
2022-05-08Fix and test workflowRiku Isokoski
2022-05-08Ignore deleted files in format testRiku Isokoski
Otherwise clang-format would fail with an error and exit the script prematurely.
2022-05-08Add formatting test workflowRiku Isokoski
2022-05-08Systemtask : replace enum SystemTaskState by an enum class.Jean-François Milants
2022-05-08Simplify systemtask statesRiku Isokoski
2022-05-08Disable clip_corner, because it is slow.Riku Isokoski
2022-05-08Fix dropdown graphical issues.Riku Isokoski
The scrollbar would go out of bounds if DROPDOWN_PART_LIST had uneven padding. Also enable clip_corner feature to stop the selected item from overflowing.
2022-05-08Force full screen refresh with a rounder functionRiku Isokoski
When the screen switches, the full screen needs to be refreshed for the hardware scrolling to work. This was enforced with backgroundLabels, but is simpler to do with a rounder function.
2022-05-08Remove lcd from DisplayAppRiku Isokoski
2022-05-04List: add missing array includeReinhold Gschweicher
List.h uses `std::array` as container, but is missing the `<array>` include. Add it to make the header self contained. The `memory` include is unused and can be removed.
2022-04-30Mention that InfiniLink is searching for devsFintasticMan
2022-04-30Update link to InfiniLink and mention that it is unmaintainedFintasticMan
2022-04-29Fix large blacklevel step. Lower 25% of shades are now accessible.Riku Isokoski
There is a large step in brightness from level zero to level one. After experimenting with various ST7789 options, I found that decreasing VDV to 0x10 (-0.4V) fixes this issue. The gamma change reduced the average error in brightness, but with the underlying issue fixed, the gamma change has been reverted.
2022-04-25New sharper batteryicon. Remove old unused batteryiconsRiku Isokoski
2022-04-25Fix warningsRiku Isokoski
2022-04-25Replace app_timer with FreeRTOS timersRiku Isokoski
2022-04-25Keep the paddle on screen in wholeReinhold Gschweicher
As suggested in https://github.com/InfiniTimeOrg/InfiniTime/issues/1062 in point 3. The paddle should be kept on screen and not travel out of the screen boundaries. Co-authored-by: Riku Isokoski <riksu9000@gmail.com>
2022-04-25Make functions const againRiku Isokoski
2022-04-25Remove now unused position overrideRiku Isokoski
It gets overridden later anyway
2022-04-25Update track progress in MusicService. Fix #127Riku Isokoski
2022-04-25Improve PTS color matching after gamma changeRiku Isokoski
2022-04-25Tweak gamma on ST7789 and match UI colorsRiku Isokoski
This change will increase the color accuracy of the PineTime and make UI development with the simulator easier.
2022-04-25Use centisecondsRiku Isokoski
2022-04-25Stopwatch fixesRiku Isokoski
2022-04-25Fix timer layoutRiku Isokoski
2022-04-25Firmware update screen fixesRiku Isokoski
2022-04-24SpiNorFlash: use C++ style struct in C++ only headerReinhold Gschweicher
`SpiNorFlash.h` is a C++ header, but the `Identification` struct is created in a C style using `typedef struct`. Clang issues a warining about this discrepancy: ``` In file included from /home/nero/repos/pinetime/InfiniSim/InfiniTime/src/systemtask/SystemTask.cpp:13: /home/nero/repos/pinetime/InfiniSim/sim/drivers/SpiNorFlash.h:16:21: warning: anonymous non-C-compatible type given name for linkage purposes by typedef declaration; add a tag name here [-Wnon-c-typedef-for-linkage] typedef struct __attribute__((packed)) { ^ Identification /home/nero/repos/pinetime/InfiniSim/sim/drivers/SpiNorFlash.h:17:9: note: type is not C-compatible due to this default member initializer uint8_t manufacturer = 0; ^~~~~~~~~~~~~~~~~~~~ /home/nero/repos/pinetime/InfiniSim/sim/drivers/SpiNorFlash.h:20:9: note: type is given name 'Identification' for linkage purposes by this typedef declaration } Identification; ^ 1 warning generated. ``` The easy fix is to use a C++ style struct. Also includes code style fix from Riksu9000 Co-authored-by: Riku Isokoski <riksu9000@gmail.com>
2022-04-19Merge pull request #997 from minacode/remove-nm-referenceRiku Isokoski
Remove unused reference
2022-04-18Merge branch 'develop' into remove-nm-referenceMax Friedrich
2022-04-18Merge pull request #1044 from Riksu9000/replace-lv_set_textRiku Isokoski
Replace lv_label_set_text where possible
2022-04-18Replace lv_label_set_text where possibleRiku Isokoski
2022-04-18Merge pull request #1009 from ↵Riku Isokoski
NeroBurner/AlarmController_allow_less_precice_system_time AlarmController: allow loss of precision for alarmTime cast
2022-04-18Merge pull request #1031 from ↵Riku Isokoski
mabuch/rename-PineTimeStyle-to-WatchFacePineTimeStyle Rename PineTimeStyle to WatchFacePineTimeStyle
2022-04-18resolved merge conflict after renaming PineTimeStyle to WatchFacePineTimeStylemabuch
2022-04-17Differentiate time adjustment (< 3h for example time zone change when ↵Michele Bini
crossing a border or because of daylight saving) and time setting (for example when the firmware is booted for the first time and the companion app sends the time)
2022-04-17Remove app_timer component from compilationMichele Bini
2022-04-17Switch MotorController and TimerController to FreeRTOS timersMichele Bini
2022-04-17Use FreeRTOS timer for AlarmControllerMichele Bini