| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
| |
Inspired by:
https://www.klipper3d.org/CONTRIBUTING.html#format-of-commit-messages
|
| |
|
|
|
|
|
| |
Denser instructions for absolute beginners. Links to GitHub docs.
Add PR checklist and commit conventions sections based on the
maintainer's guide.
|
| | |
|
| | |
|
| |
|
|
|
|
| |
The time used to be yellow while paused. Changing it to white made the
paused state less distinct. Blinking the time while paused makes the
state distinct again.
|
| |
|
|
|
|
|
|
| |
The workflow checks that the buildsize comparison succeeds. The download
artifact step also checks that all of the main workflow succeeds. This
isn't necessary, and causes the comment not to be created when the
simulator build fails. This change disabled the success conclusion
requirement.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The previous version failed, because it looked for the check from the
branch in the fork, but looked for it in the main repo. Now uses the sha
to get the commit on which checks were run.
Previous description
This works by uploading the data from the main workflow with low
permissions as an artifact, then downloading the data in a workflow with
higher permissions to post the comment.
Third party actions are fixed at a commit, in case they get compromised.
Also set the build-firmware VM to ubuntu-22.04, which was missed when
updating workflow deps earlier.
|
| |
|
|
| |
This reverts commit 012c3d25f313148734b4720e376ec24ff6089453.
|
| |
|
|
|
|
|
|
|
|
|
| |
This works by uploading the data from the main workflow with low
permissions as an artifact, then downloading the data in a workflow with
higher permissions to post the comment.
Third party actions are fixed at a commit, in case they get compromised.
Also set the build-firmware VM to ubuntu-22.04, which was missed when
updating workflow deps earlier.
|
| |\ |
|
| | |
| |
| |
| |
| |
| | |
gcc_nrf52-mcuboot.ld.
The only change between the 2 linker scripts is the ORIGIN address of the flash memory allocated to InfiniTime. The MCUBoot one starts at 0x8000, which is the address that will be loaded by MCUBoot after the boot process. This linker script allow to run the application without MCUBoot by setting the origin address to 0x00. The APP_SIZE is the same for both linker scripts, but it could be set to a higher value in this one for development purposes.
|
| | | |
|
| | |
| |
| | |
Co-authored-by: JF <JF002@users.noreply.github.com>
|
| | |
| |
| | |
Co-authored-by: JF <JF002@users.noreply.github.com>
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| |
| |
| |
| | |
Condensed paddings with pad_all
No visual changes
|
| | | |
|
| | |
| |
| |
| |
| |
| |
| |
| | |
The github.event.pull_request.base.sha in the workflow doesn't get
updated when there are new commits in the base branch. Instead always
checkout the branch to check the sha manually and cache only the build.
The ownership fix seems to still be necessary
|
| | |
| |
| |
| | |
Missing characters
|
| | |
| |
| |
| | |
The watchface cannot be enabled without the correct font anyway.
|
| | | |
|
| | | |
|
| | |
| |
| |
| | |
Setting local style is more efficient
|
| | | |
|
| | |
| |
| |
| | |
Reduce code duplication massively
|
| | |
| |
| |
| |
| |
| | |
Fix warnings.
Some clang-formatting was necessary.
DebugPins is unused and was removed.
|
| | |
| |
| |
| | |
Values calculated using multiple tests on 3 PineTimes
|
| | | |
|
| | |
| |
| |
| |
| | |
Cleaned up the list of things you can help with.
Added a few points
|
| | |
| |
| |
| |
| | |
The list of development docs was getting long, so move docs more
intended for maintainers to a separate section.
|
| | | |
|
| | | |
|
| | | |
|
| | |
| |
| |
| |
| |
| | |
Replace separate SettingSetDate and SettingSetTime with a combined screenlist.
Add DotIndicators. Similar to PageIndicator, but for use when separating screens instead of pages of a list.
Co-authored-by: Riku Isokoski <riksu9000@gmail.com>
|
| | |
| |
| |
| | |
contact links.
|
| | |
| |
| | |
When people suggest a solution to a generic issue they encounter, they have to open a feature request, which is not optimal. Submitting an issue through this new form will require writing about the issue that led to the idea, which will make it easier to discuss different solutions.
|
| | | |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
* Update workflow dependencies
ubuntu-latest vm has been updated from 20.04 to 22.04.
To avoid sudden issues, use 22.04 explicitly.
CMake doesn't need to be updated on 22.04, but ninja must be installed separately in the simulator workflow.
actions/checkout@v2 uses deprecated Node.js 12.
Update to v3 which uses 16
|
| | | |
|
| | |
| |
| |
| | |
In my PR updating clang-format, I forgot to also format the headers.
|
| | | |
|
| | |
| |
| |
| |
| |
| |
| |
| | |
Due to a security concern, comments can only be created in the context
of branches in the repo. PRs from forks can't get the comment.
https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#restrictions-on-repository-forks
https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Add .github/workflows/getSize.sh to extract sizes of sections from the
objfile
build-firmware uses getSize.sh to output the section sizes.
get-base-ref-size job added, which builds the base branch of the PR and
outputs the section sizes. Caches are used to avoid unnecessary builds
when the base branch hasn't been updated.
leave-build-size-comment job added, which creates or updates a comment
on the PR with the build size information from other jobs.
|