102 Commits

Author SHA1 Message Date
Arjun Patel 901e99719a Revert "changing core keys like ctrl, alt, and windows/mac-cmd"
This reverts commit f510c225a8.
2026-06-23 15:27:21 -07:00
talksik f510c225a8 changing core keys like ctrl, alt, and windows/mac-cmd 2024-11-22 11:15:38 -08:00
ReFil 0c975742d1 Changelog update (#448) 2024-04-16 18:15:28 +01:00
ReFil b9b694c9dd Minor docs update (#445) 2024-04-15 12:36:47 +01:00
Keeley Hoek 41e734c1ee Document new layer colors and modifier color configuration option (#431)
Co-authored-by: ReFil <31960031+ReFil@users.noreply.github.com>
2024-04-15 12:27:42 +01:00
ReFil 8b0cf4e55b Zephyr 3.5 Update (#426)
* Zephyr 3.5 update

* Changelog
2024-04-15 12:17:43 +01:00
David Whetstone 742d19ef63 Fix Makefile errors that prevent builds on macOS (#409) 2024-04-02 21:31:29 +01:00
Thomas Huber dd3da03b9d Fix version.dtsi is reset after local firmware build (#385)
In #376 a new step was introduced for local builds to undo changes
to the version.dtsi file after a build in order to reduce noise to the repo.

Unfortunately the way used to execute the step causes the version.dtsi
file to be reset too early and therefore causes an incorrect version
number to be used for the version macro when run locally. This went
unfortunately undiscovered as the checked in version.dtsi was the same
on the day the change in #376 was tested and was not noticed until
I build a new change to my keymap locally a few days ago.

The git command introduced in #376 is wrapped into a shell function.

However what was missed is that commands run by the shell function are run when
the function calls are expanded by make. This causes the version.dtsi file to be reset
before the firmware build process is even started which resultes in the version.dtsi
currently checked in to the repo to be used for local builds instead of the
newly generated file when make starts.

This change updates how the git command to reset the version.dtsi
is being called. It is no longer called within a shell function to ensure it
does run in the order it is defined after the firmware build is complete.

Builds run through GitHub actions are not impacted and always used the correct version.dtsi

For more information and context see:
  - https://www.gnu.org/software/make/manual/html_node/Shell-Function.html
  - https://www.gnu.org/software/make/manual/html_node/Reading-Makefiles.html
2024-02-20 09:24:58 +00:00
ReFil b4165d65c8 Update build workflows (#376) 2024-02-15 12:53:39 +00:00
Thomas Huber cbc0656668 Makefile enhancements to optimize local workflows (#363)
- Enhance the Makefile to enable firmware building exclusively for the left side.

To modify the keymap, flashing only the left side's firmware suffices.

This change facilitates the creation of firmware for the left side only,
thereby expediting the build process.

Usage: make left

This update maintains existing functionality. Without specifying the
left target, firmware for both halves will be generated.

- Add separate make targets to clean firmware and docker image

Add targets clean_firmware and clean_image independently while maintaing clean to run both

- Ensure files modified by the build process are reset at the end

The current build process dynamically generates the content of the version macro
in config/version.dtsi to enable users to print out the precise version and commit
the firmware was built on via a keybinding on the keymap.

This change ensurs that the changes to this macro file are reset at the end of the
build process to ensure it isn't shown as modified and added to keymap commit changes.
2024-02-05 09:55:24 +00:00
ReFil 0737d53e01 Update Makefile variables (#335) 2024-01-16 16:43:55 +00:00
ReFil 4a5003a0d4 Base ZMK update (#326) 2024-01-14 19:12:15 +00:00
Jim Jowdy 1728a660ce Prefer tr to ${char^^}, which does not work on older bash versions (#303)
* Prefer `tr` to ${char^^}, which does not work on older bash versions

* Update CHANGELOG.md

---------

Co-authored-by: ReFil <31960031+ReFil@users.noreply.github.com>
2023-12-27 12:59:59 +00:00
ReFil 7287c4daf6 Add version macro (#300) 2023-12-15 10:47:12 +00:00
ReFil e6df7b4508 Add pull request template (#293)
* Add pull request template

* Update CHANGELOG.md
2023-12-15 10:38:04 +00:00
ReFil 9becf801cf Revert "Updated keymap"
This reverts commit 9fc6c6239c.
2023-12-13 11:11:19 +00:00
ReFil 3a356154a2 Revert "Updated keymap"
This reverts commit 18e664a839.
2023-12-13 11:11:16 +00:00
adv360proapp[bot] 18e664a839 Updated keymap 2023-12-11 22:58:29 +00:00
adv360proapp[bot] 9fc6c6239c Updated keymap 2023-12-11 22:43:28 +00:00
David Whetstone 11932126d4 Make get_version use bash from $PATH (#287)
* Make get_version use bash from $PATH

* Update CHANGELOG.md

---------

Co-authored-by: ReFil <31960031+ReFil@users.noreply.github.com>
2023-12-07 09:14:49 +00:00
ReFil 2055aa2498 Update bluetooth settings in light of user feedback (#289) 2023-12-06 09:18:26 +00:00
ReFil d0ffaf89f8 Revert "Add version macro to keymap.json (#269)"
This reverts commit 7adf0629f7.
2023-11-18 15:09:38 +00:00
ReFil 7adf0629f7 Add version macro to keymap.json (#269)
* Update keymap.json to reflect version macro

* Update CHANGELOG.md
2023-11-17 11:36:33 +00:00
ReFil 5ebf383690 Changelog new base ZMK update (#268) 2023-11-16 09:36:31 +00:00
ReFil cdcec22e60 Version compiled FW with automatic macro (#267)
* Version compiled FW with hash

Auto generates a macro to type out version info, local and github compilation now includes commit hash and timestamp in final uf2 files

* Fix local builds

makefile doesn't like the script returning the macro, directed to null for local builds as version.dtsi file accessible
2023-11-16 07:49:39 +00:00
ReFil 44a42af666 Document new NKRO settings (#264)
* Document new NKRO settings

* Update CHANGELOG.md
2023-11-08 13:45:26 +00:00
ReFil b7ee938784 Improve documentation based on feedback (#260)
* Improve documentation based on feedback

* Update README.md

* Update CHANGELOG.md
2023-11-02 20:13:39 +00:00
ReFil 95477ea74b Update reset file
Improves reset performance after last minor ZMK update
2023-10-30 20:42:39 +00:00
ReFil 71a5ba15e5 Update ZMK (#248)
Tweaks to point to new ZMK branch, changes to support this.
2023-10-20 21:55:37 +01:00
ReFil 82494e7740 Further documentation work (#241)
* Minor cleanup, change date format, add beta testing

* Update CHANGELOG.md
2023-10-09 09:34:58 +00:00
S0AndS0 8e2e77b638 Fix shell check warnings (#242)
* Fix SC2002 Shell Check warning

* Fix SC2086 Shell Check warnings
2023-10-09 08:25:25 +00:00
ReFil 45fca6f601 Readme rewrite (#222) 2023-09-07 09:09:48 +00:00
ReFil 581cf8380e Add CHANGELOG (#221) 2023-09-07 08:55:41 +00:00
Santhosh Kannan 2d369451ae Add instructions for upgrading from V2 to V3 in README (#197)
This commit adds a new section in the README.md file detailing instructions for users upgrading from V2 to V3.
2023-07-28 08:58:15 +00:00
ReFil 771d68f3a6 V3.0 Update
refactor(board): Update to z3.2

Major update to underlying code requires change to the repo, brought in line with zmk pr for commonality, fixed indentation to comply with zmk pre-commit formatting reqs

Update settings-reset, change RGB modes

Add Update instructions, Assets folder
2023-07-06 17:41:42 +01:00
ReFil e407190556 Refactor(boards): cleanup pins and keys
Remove unmapped keys from matrix, remap transform in line with this, unmap associated IO, bring keymap in line with manual
2023-05-25 21:42:01 +01:00
ReFil 8c143179ca Merge pull request #128 from tplunket/tplunket/update-readme
Provide flashing instructions, point at GUI editor, and format support links.
2023-04-07 23:50:10 +01:00
Tom Plunket 9a5d22ca99 Refine wording of steps in firmware flashing. 2023-04-07 08:37:58 -07:00
Tom Plunket 603133f060 Provide flashing instructions, point at GUI editor, and format support links. 2023-04-02 20:14:04 -07:00
ReFil 1a5041d570 Remove unnecessary keys from GUI 2023-03-25 21:53:40 +00:00
ReFil d9854e825a Merge pull request #116 from ReFil/add-pedal2
Fix config files to add extra pedal keys
2023-03-06 10:19:21 +00:00
ReFil eac52a197c Fix json files 2023-03-06 10:06:53 +00:00
ReFil 80885e63c1 Merge pull request #114 from ReFil/add-pedal2
Add additional pedal keys
2023-03-04 20:42:02 +00:00
ReFil bdfd6475b4 Add additional pedal keys
Adds pedal2 keys on left and right back into matrix
2023-03-04 14:20:59 +00:00
ReFil 09ff934f7d Merge pull request #101 from ReFil/disable-log
Disable USB logging
2023-02-14 08:13:10 +00:00
ReFil b8f123aa37 Disable logging 2023-02-10 11:55:47 +00:00
ReFil 06e684cbf2 Merge pull request #91 from ReFil/Fix-osx
Disable SELinux support on OS X
2023-01-25 18:20:54 +00:00
ReFil caeede0f56 Merge pull request #92 from nickcoutsos/patch-1
Correct column alignment for generated keymaps
2023-01-16 17:39:59 +00:00
ReFil d011eea953 use $(strip to remove whitespace 2023-01-13 21:21:47 +00:00
Nick Coutsos 8d45b53bee Fix alignment of space thumb key 2023-01-12 18:34:52 -05:00