summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2022-05-10fontgen: update README.md to remove patch advanced optionsYehoshua Pesach Wallach1-1/+1
2022-05-10fontgen: changes to allow CMake to work from other projectYehoshua Pesach Wallach1-4/+4
2022-05-10fontgen: remove advanced (format string, process as list) from patchingYehoshua Pesach Wallach2-13/+2
2022-05-10fontgen: verify lv_font_conv at cmakeYehoshua Pesach Wallach1-1/+1
2022-05-10fontgen: remove double-asterisk in readmeYehoshua Pesach Wallach1-1/+1
2022-05-10fontgen: assume plain .patch for single string patchYehoshua Pesach Wallach2-5/+12
2022-05-10fotngen: check for lv_font_convYehoshua Pesach Wallach1-0/+3
2022-05-10fontgen: remove "feature" featureYehoshua Pesach Wallach3-15/+1
2022-05-10fontgen: remove "generating the fonts" sectionYehoshua Pesach Wallach1-7/+0
2022-05-10fontgen: move lv_font_conv docYehoshua Pesach Wallach1-6/+1
2022-05-10fontgen: generate font .c files in build dirYehoshua Pesach Wallach2-4/+9
2022-05-10fontgen: generate fonts at runtime with CMakeYehoshua Pesach Wallach9-6892/+17
2022-05-10fonts: update README.md to match new methodYehoshua Pesach Wallach1-74/+20
2022-05-10fontgen: simplfy json after removed external features keyYehoshua Pesach Wallach2-93/+95
2022-05-10fontgen: minor changesYehoshua Pesach Wallach1-2/+2
2022-05-10fontgen: remove .c from requested font if thereYehoshua Pesach Wallach1-2/+5
2022-05-10fontgen: simplify enabled fontsYehoshua Pesach Wallach1-7/+6
2022-05-10fontgen: use patch file for jetbrains 0 fixYehoshua Pesach Wallach3-31/+7
2022-05-10fontgen: removed ability of removing .c extYehoshua Pesach Wallach1-8/+0
2022-05-10fontgen: move features into fontsYehoshua Pesach Wallach2-21/+13
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 Wallach1-0/+6
2022-05-10fontgen: Added ability to choose fonts with .cYehoshua Pesach Wallach1-1/+11
2022-05-10Added FontAwesome5-Solid+Brands+Regular.woff to gitYehoshua Pesach Wallach1-0/+0
2022-05-10Added font auto-generate scriptYehoshua Pesach Wallach3-0/+190
2022-05-08Fix and test workflowRiku Isokoski1-2/+2
2022-05-08Systemtask : replace enum SystemTaskState by an enum class.Jean-François Milants2-25/+25
2022-05-08Simplify systemtask statesRiku Isokoski2-37/+34
2022-05-08Disable clip_corner, because it is slow.Riku Isokoski1-1/+2
2022-05-08Fix dropdown graphical issues.Riku Isokoski2-11/+2
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 Isokoski20-92/+22
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 Isokoski2-5/+3
2022-05-04List: add missing array includeReinhold Gschweicher1-1/+1
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-29Fix large blacklevel step. Lower 25% of shades are now accessible.Riku Isokoski9-14/+16
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 Isokoski61-1392/+145
2022-04-25Fix warningsRiku Isokoski11-25/+25
2022-04-25Replace app_timer with FreeRTOS timersRiku Isokoski3-64/+29
2022-04-25Keep the paddle on screen in wholeReinhold Gschweicher1-1/+8
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 Isokoski2-2/+2
2022-04-25Remove now unused position overrideRiku Isokoski1-3/+0
It gets overridden later anyway
2022-04-25Update track progress in MusicService. Fix #127Riku Isokoski4-28/+27
2022-04-25Improve PTS color matching after gamma changeRiku Isokoski1-6/+6
2022-04-25Tweak gamma on ST7789 and match UI colorsRiku Isokoski29-88/+96
This change will increase the color accuracy of the PineTime and make UI development with the simulator easier.
2022-04-25Use centisecondsRiku Isokoski1-4/+5
2022-04-25Stopwatch fixesRiku Isokoski2-37/+22
2022-04-25Fix timer layoutRiku Isokoski1-16/+11
2022-04-25Firmware update screen fixesRiku Isokoski1-11/+10
2022-04-24SpiNorFlash: use C++ style struct in C++ only headerReinhold Gschweicher1-2/+2
`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 branch 'develop' into remove-nm-referenceMax Friedrich90-1075/+1587
2022-04-18Replace lv_label_set_text where possibleRiku Isokoski22-104/+98
2022-04-18Merge pull request #1009 from ↵Riku Isokoski1-1/+2
NeroBurner/AlarmController_allow_less_precice_system_time AlarmController: allow loss of precision for alarmTime cast