Ryan 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								41c50bb653 
								
							 
						 
						
							
							
								
								Change keyboard level include guards to pragma once ( #14248 )  
							
							 
							
							... 
							
							
							
							* Change keyboard level include guards to `pragma once`
And clean up a lot of layout macros
* Oops
* Remove dangling endif 
							
						 
						
							2021-09-01 19:03:14 +10:00  
						
						
							 
							
							
							
								 
							 
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									James Young 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								4b453dca92 
								
							 
						 
						
							
							
								
								Remove MIDI Configuration boilerplate ( #11151 )  
							
							 
							
							... 
							
							
							
							* remove keyboard-level instances of `MIDI_ENABLE = no`
Command:
```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e  '/^[ #]*MIDI_ENABLE[ \t]*=[ \t]*no/d' {} +
```
Co-Authored-By: Nick Brassel <nick@tzarc.org>
* fix case-sensitivity issues on MIDI_ENABLE
Change instances of `MIDI_ENABLE = YES` to `MIDI_ENABLE = yes`.
Command:
```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;MIDI_ENABLE[ \t]*=[ \t]*[Yy][Ee][Ss];MIDI_ENABLE = yes;g' {} +
```
* replace `# MIDI controls` with `# MIDI support`
Replace `# MIDI controls` with `# MIDI support` in keyboard-level `rules.mk` files.
Command:
```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;#[ \t]*MIDI[ \t]*\(controls\|support\).*;# MIDI support;g' {} +
```
* align inline comments
Aligns the inline comments to the length used by the QMK AVR rules.mk template.
Command:
```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;MIDI_ENABLE *= *yes.*;MIDI_ENABLE = yes           # MIDI support;g'  {} +
```
* remove commented instances of `MIDI_ENABLE` from keyboard `rules.mk` files
Commands:
```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;#\([ \t]*MIDI_ENABLE\) = yes; \1 = no ;' {} +
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;^\([ \t]*\)\(MIDI_ENABLE = no\);\2\1;' {} +
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e '/^[ #]\+MIDI_ENABLE *= *no/d' {} +
```
* remove MIDI configuration boilerplate from keyboard config.h files
Co-authored-by: Nick Brassel <nick@tzarc.org> 
							
						 
						
							2021-08-16 06:51:13 +10:00  
						
						
							 
							
							
							
								 
							 
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Joel Challis 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								790f94533c 
								
							 
						 
						
							
							
								
								Refactor to use led config - Part 6 ( #12115 )  
							
							 
							
							... 
							
							
							
							* Convert to config
* Convert to config
* Convert to config
* Convert to config
* Convert to config
* Convert to config
* Convert to config
* Convert to config
* revert changes 
							
						 
						
							2021-03-10 22:48:18 +00:00  
						
						
							 
							
							
							
								 
							 
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Ryan 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								6937f1d70e 
								
							 
						 
						
							
							
								
								Remove MIDI_ENABLE_STRICT from keyboards' config.h ( #11679 )  
							
							 
							
							
							
						 
						
							2021-01-27 17:26:26 +11:00  
						
						
							 
							
							
							
								 
							 
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Ryan 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								62f304a225 
								
							 
						 
						
							
							
								
								Remove DESCRIPTION, H-J ( #11616 )  
							
							 
							
							
							
						 
						
							2021-01-20 00:38:12 +11:00  
						
						
							 
							
							
							
								 
							 
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Ryan 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								bff56aa46c 
								
							 
						 
						
							
							
								
								Remove "ugly hack in usb_main.c" comments ( #8296 )  
							
							 
							
							
							
						 
						
							2020-03-02 23:56:46 +00:00  
						
						
							 
							
							
							
								 
							 
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Drashna Jaelre 
								
							 
						 
						
							
							
							
							
								
							
							
								faaaa134fd 
								
							 
						 
						
							
							
								
								Replace DEBOUNCING_DELAY (deprecated) with DEBOUNCE ( #5997 )  
							
							 
							
							
							
						 
						
							2019-06-06 12:09:56 -07:00  
						
						
							 
							
							
							
								 
							 
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									zvecr 
								
							 
						 
						
							
							
							
							
								
							
							
								fc06986989 
								
							 
						 
						
							
							
								
								Remove CUSTOM_MATRIX option from diode direction ( #5090 )  
							
							 
							
							... 
							
							
							
							* Remove CUSTOM_MATRIX refs from DIODE_DIRECTION
* Remove '#define DIODE_DIRECTION CUSTOM_MATRIX'
* Remove CUSTOM_MATRIX refs from DIODE_DIRECTION documentation 
							
						 
						
							2019-02-18 08:49:51 -08:00  
						
						
							 
							
							
							
								 
							 
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Drashna Jaelre 
								
							 
						 
						
							
							
							
							
								
							
							
								b05c0e46c6 
								
							 
						 
						
							
							
								
								Adds a default value for IS_COMMAND for COMMAND feature ( #4301 )  
							
							 
							
							... 
							
							
							
							* Add default value for IS_COMMAND for COMMAND feature
* Cleanup and consistency
* Update Templates to reflect change
* Fix IS_COMMAND in template
* Fix IS_COMMAND define
* Use consistent IS_COMMAND block in templates
* Remove unnecessary `#undef IS_COMMAND` directives
* Fix compile issue on orthodox
* Reomve IS_COMMAND option for newer boards
* Remove all existing definitions of IS_COMMAND if they use default LSHIFT and RSHIFT setting
* Remove a couple of additional IS_COMMAND defines
* Remove remaining redundant IS_COMMAND definitions
* Remove #undef IS_COMMAND from orthodox:drashna and whitefox:konstantin
* Remove multiple empty lines in modified config.h files
* Update additional boards
* Reomve IS_COMMAND from newer boards
* Update Alice keyboard
* Remove IS_COMMAND from additional boards
Jan 24th edition 
							
						 
						
							2019-01-26 15:49:45 -08:00  
						
						
							 
							
							
							
								 
							 
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									bakageta 
								
							 
						 
						
							
							
							
							
								
							
							
								76f3a10eec 
								
							 
						 
						
							
							
								
								Keyboard: Add support for bpiphany's HID Liberation Device ( #3470 )  
							
							 
							
							... 
							
							
							
							* Keyboard: Added support for HID Liberation Device
* Keymap: Custom (bakageta) layout for HID Liberation Device
* Updated with requested changes 
							
						 
						
							2018-07-30 23:37:34 -07:00