<feed xmlns='http://www.w3.org/2005/Atom'>
<title>qmk_firmware.git/keyboards/m10a/keymaps, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/qmk_firmware.git/'/>
<entry>
<title>Normalise Dynamic Macro keycodes (#18939)</title>
<updated>2022-11-03T23:01:06+00:00</updated>
<author>
<name>Ryan</name>
<email>fauxpark@gmail.com</email>
</author>
<published>2022-11-03T23:01:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/qmk_firmware.git/commit/?id=fe18df9d4186c7f2c97a2bfccf3cc0e11615c728'/>
<id>fe18df9d4186c7f2c97a2bfccf3cc0e11615c728</id>
<content type='text'>
* `DYN_REC_START1` -&gt; `QK_DYNAMIC_MACRO_RECORD_START_1`

* `DYN_REC_START2` -&gt; `QK_DYNAMIC_MACRO_RECORD_START_2`

* `DYN_MACRO_PLAY1` -&gt; `QK_DYNAMIC_MACRO_PLAY_1`

* `DYN_MACRO_PLAY2` -&gt; `QK_DYNAMIC_MACRO_PLAY_2`

* `DYN_REC_STOP` -&gt; `QK_DYNAMIC_MACRO_RECORD_STOP`

* Update docs</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* `DYN_REC_START1` -&gt; `QK_DYNAMIC_MACRO_RECORD_START_1`

* `DYN_REC_START2` -&gt; `QK_DYNAMIC_MACRO_RECORD_START_2`

* `DYN_MACRO_PLAY1` -&gt; `QK_DYNAMIC_MACRO_PLAY_1`

* `DYN_MACRO_PLAY2` -&gt; `QK_DYNAMIC_MACRO_PLAY_2`

* `DYN_REC_STOP` -&gt; `QK_DYNAMIC_MACRO_RECORD_STOP`

* Update docs</pre>
</div>
</content>
</entry>
<entry>
<title>Remove legacy sendstring keycodes (#18749)</title>
<updated>2022-10-17T12:45:23+00:00</updated>
<author>
<name>Ryan</name>
<email>fauxpark@gmail.com</email>
</author>
<published>2022-10-17T12:45:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/qmk_firmware.git/commit/?id=bad8c5992bf68b6f2218b9b7a0b31c6ee7a03796'/>
<id>bad8c5992bf68b6f2218b9b7a0b31c6ee7a03796</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>RESET -&gt; QK_BOOT user keymaps (#17940)</title>
<updated>2022-08-21T22:55:30+00:00</updated>
<author>
<name>Joel Challis</name>
<email>git@zvecr.com</email>
</author>
<published>2022-08-21T22:55:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/qmk_firmware.git/commit/?id=bbc3bc55f2d52b90881470695ee132f5a57bfaa3'/>
<id>bbc3bc55f2d52b90881470695ee132f5a57bfaa3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make default layer size 16-bit (#15286)</title>
<updated>2022-06-18T21:37:51+00:00</updated>
<author>
<name>Drashna Jaelre</name>
<email>drashna@live.com</email>
</author>
<published>2022-06-18T21:37:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/qmk_firmware.git/commit/?id=0da6562c4df570729889690e21061229c5648b73'/>
<id>0da6562c4df570729889690e21061229c5648b73</id>
<content type='text'>
Co-authored-by: James Young &lt;18669334+noroadsleft@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: James Young &lt;18669334+noroadsleft@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Remove Full Bootmagic (#13846)</title>
<updated>2021-08-07T06:59:56+00:00</updated>
<author>
<name>James Young</name>
<email>18669334+noroadsleft@users.noreply.github.com</email>
</author>
<published>2021-08-07T06:59:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/qmk_firmware.git/commit/?id=a03aa301def77c867ae6c6c840f7fc82b26d91d6'/>
<id>a03aa301def77c867ae6c6c840f7fc82b26d91d6</id>
<content type='text'>
* disambiguate Bootmagic rules in keymaps

The files edited by this commit were added at a point in time where `BOOTMAGIC_ENABLE = yes` enabled full Bootmagic.

This commit edits the files to specify that full Bootmagic is intended.

* remove BOOTMAGIC_ENABLE=full setting

* unify commented BOOTMAGIC_ENABLE rules in keyboards

Explicitly sets `BOOTMAGIC_ENABLE = no` in keyboards where the rule was commented out.

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;#[ \t]*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-zA-Z]\+\).*;\1 = no       # Virtual DIP switch configuration;g' {} +
```

* remove commented Bootmagic rules from keymap/user level

Command:

```
find keyboards/ layouts/ users/ -type f -name 'rules.mk' -exec sed -i -e '/#.*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*/d' {} +
```

* update keyboard BOOTMAGIC_ENABLE rule formatting

Sets the formatting of BOOTMAGIC_ENABLE rules to `BOOTMAGIC_ENABLE = [value]`, without the inline comments (which will be replaced later).

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
```

* update keyboards' BOOTMAGIC_ENABLE settings

Updates keyboard `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used.

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = \)full;\1lite;g' '{}' +
```

* update keymap/user BOOTMAGIC_ENABLE settings

Updates keymap/user `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used.

Commands:

```
find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' +
find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' +
```

* remove and replace inline comments in keyboards and keymap/user files

Removes and replaces the inline comments, which have been updated to read `Enable Bootmagic Lite`.

Commands:

```
find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = lite\);\1     # Enable Bootmagic Lite;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = yes\);\1      # Enable Bootmagic Lite;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = no\);\1       # Enable Bootmagic Lite;g' '{}' +
```

* rename improperly named makefiles

Some files intended to be used as makefiles had improper names causing them to not be used as intended when building.

This commit corrects the filenames of the affected files.

* update renamed file with new rule formatting

* update QMK's template files

Updates QMK's `rules.mk` templates to use the new inline comment.

* update QMK Docs

- remove documentation of full Bootmagic
- update links to Bootmagic Lite doc
- add doc for Magic Keycodes

* rules.mk patch for coarse/ixora and coarse/vinta</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* disambiguate Bootmagic rules in keymaps

The files edited by this commit were added at a point in time where `BOOTMAGIC_ENABLE = yes` enabled full Bootmagic.

This commit edits the files to specify that full Bootmagic is intended.

* remove BOOTMAGIC_ENABLE=full setting

* unify commented BOOTMAGIC_ENABLE rules in keyboards

Explicitly sets `BOOTMAGIC_ENABLE = no` in keyboards where the rule was commented out.

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;#[ \t]*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-zA-Z]\+\).*;\1 = no       # Virtual DIP switch configuration;g' {} +
```

* remove commented Bootmagic rules from keymap/user level

Command:

```
find keyboards/ layouts/ users/ -type f -name 'rules.mk' -exec sed -i -e '/#.*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*/d' {} +
```

* update keyboard BOOTMAGIC_ENABLE rule formatting

Sets the formatting of BOOTMAGIC_ENABLE rules to `BOOTMAGIC_ENABLE = [value]`, without the inline comments (which will be replaced later).

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
```

* update keyboards' BOOTMAGIC_ENABLE settings

Updates keyboard `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used.

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = \)full;\1lite;g' '{}' +
```

* update keymap/user BOOTMAGIC_ENABLE settings

Updates keymap/user `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used.

Commands:

```
find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' +
find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' +
```

* remove and replace inline comments in keyboards and keymap/user files

Removes and replaces the inline comments, which have been updated to read `Enable Bootmagic Lite`.

Commands:

```
find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = lite\);\1     # Enable Bootmagic Lite;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = yes\);\1      # Enable Bootmagic Lite;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = no\);\1       # Enable Bootmagic Lite;g' '{}' +
```

* rename improperly named makefiles

Some files intended to be used as makefiles had improper names causing them to not be used as intended when building.

This commit corrects the filenames of the affected files.

* update renamed file with new rule formatting

* update QMK's template files

Updates QMK's `rules.mk` templates to use the new inline comment.

* update QMK Docs

- remove documentation of full Bootmagic
- update links to Bootmagic Lite doc
- add doc for Magic Keycodes

* rules.mk patch for coarse/ixora and coarse/vinta</pre>
</div>
</content>
</entry>
<entry>
<title>[Bug] Develop - Change uint32_t to layer_state_t  (#13596)</title>
<updated>2021-07-19T16:50:55+00:00</updated>
<author>
<name>Xelus22</name>
<email>17491233+Xelus22@users.noreply.github.com</email>
</author>
<published>2021-07-19T16:50:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/qmk_firmware.git/commit/?id=b73a29aaeabe1004423a2ea6180a94a95a1f0d91'/>
<id>b73a29aaeabe1004423a2ea6180a94a95a1f0d91</id>
<content type='text'>
* fix sat75

* update uint32_t to layer_state</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* fix sat75

* update uint32_t to layer_state</pre>
</div>
</content>
</entry>
<entry>
<title>Remove `API_SYSEX_ENABLE`s from rules.mk (#13389)</title>
<updated>2021-07-01T06:30:42+00:00</updated>
<author>
<name>Ryan</name>
<email>fauxpark@gmail.com</email>
</author>
<published>2021-07-01T06:30:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/qmk_firmware.git/commit/?id=44260c34140768974541a09cfc81f781496c5350'/>
<id>44260c34140768974541a09cfc81f781496c5350</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>M10-A refactor (#12242)</title>
<updated>2021-03-15T08:25:00+00:00</updated>
<author>
<name>James Young</name>
<email>18669334+noroadsleft@users.noreply.github.com</email>
</author>
<published>2021-03-15T08:25:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/qmk_firmware.git/commit/?id=52b7ebd6be2532fc41ef1593be8e22c5f39d9a1e'/>
<id>52b7ebd6be2532fc41ef1593be8e22c5f39d9a1e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove FAUXCLICKY feature (deprecated) (#11829)</title>
<updated>2021-02-09T17:49:05+00:00</updated>
<author>
<name>Drashna Jaelre</name>
<email>drashna@live.com</email>
</author>
<published>2021-02-09T17:49:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/qmk_firmware.git/commit/?id=7161d650705afb86b0874d95d72d15cf134f4148'/>
<id>7161d650705afb86b0874d95d72d15cf134f4148</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added VIA keymap for Ramaworks M10-A (#8255)</title>
<updated>2020-03-07T09:38:08+00:00</updated>
<author>
<name>Wilba</name>
<email>Jason.S.Williams@gmail.com</email>
</author>
<published>2020-03-07T09:38:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/qmk_firmware.git/commit/?id=c4d8e5692837e8c0377d9111b37308f55cf3edba'/>
<id>c4d8e5692837e8c0377d9111b37308f55cf3edba</id>
<content type='text'>
* Added VIA keymap for Ramaworks M10-A

* change vendor/product in base config.h

* #pragma once

* Uee LAYOUT() in keymaps</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Added VIA keymap for Ramaworks M10-A

* change vendor/product in base config.h

* #pragma once

* Uee LAYOUT() in keymaps</pre>
</div>
</content>
</entry>
</feed>
