Skip to content

Commit

Permalink
Rename keyboards with uppercase letters (#18268)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored Sep 4, 2022
1 parent a9f8111 commit 3e02b70
Show file tree
Hide file tree
Showing 29 changed files with 9 additions and 21 deletions.
16 changes: 2 additions & 14 deletions data/schemas/definitions.jsonschema
Original file line number Diff line number Diff line change
Expand Up @@ -68,20 +68,8 @@
"type": "number"
},
"keyboard": {
"oneOf": [
{
"type": "string",
"enum": [
"converter/numeric_keypad_IIe",
"emptystring/NQG",
"maple_computing/christmas_tree/V2017"
]
},
{
"type": "string",
"pattern": "^[0-9a-z][0-9a-z_/]*$"
}
]
"type": "string",
"pattern": "^[0-9a-z][0-9a-z_/]*$"
},
"mcu_pin_array": {
"type": "array",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "numeric_keypad_IIe.h"
#include "numeric_keypad_iie.h"
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ Hardware Supported: Internal Numeric Keypad IIe PCB (Apple part 820.0081.c), ATm

Make example for this keyboard (after setting up your build environment):

make converter/numeric_keypad_IIe:default
make converter/numeric_keypad_iie:default

See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
1 change: 0 additions & 1 deletion keyboards/emptystring/NQG/NQG.c

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions keyboards/emptystring/nqg/nqg.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "nqg.h"
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ Hardware Availability: Kits are available from [SA_EndlessGame](http://twitter.c

Make example for this keyboard (after setting up your build environment):

make emptystring/NQG:default
make emptystring/nqg:default

See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
File renamed without changes.
1 change: 0 additions & 1 deletion keyboards/maple_computing/christmas_tree/V2017/V2017.c

This file was deleted.

2 changes: 1 addition & 1 deletion keyboards/maple_computing/christmas_tree/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ Keyboard Maintainer: [That-Canadian](https://github.com/That-Canadian)

Make example for this keyboard (after setting up your build environment):

make maple_computing/christmas_tree/V2017:default
make maple_computing/christmas_tree/v2017:default

See [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) then the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information.
2 changes: 1 addition & 1 deletion keyboards/maple_computing/christmas_tree/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
AUDIO_ENABLE = no # Audio output
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.

DEFAULT_FOLDER = maple_computing/christmas_tree/V2017
DEFAULT_FOLDER = maple_computing/christmas_tree/v2017
1 change: 1 addition & 0 deletions keyboards/maple_computing/christmas_tree/v2017/v2017.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "v2017.h"

0 comments on commit 3e02b70

Please sign in to comment.