forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
* upstream/master: (479 commits) Added SoyuzXL Macropad (qmk#23075) Added Soyuz Macropad WWA (qmk#23072) [Keyboard] Add Mercury Macropad (qmk#23071) [Keyboard] Add Artifact LvL 1 HS (qmk#22964) El Cantor HS. Update info.json (qmk#23020) Add Sha keyboard (qmk#22664) WS2812: Better error message when trying to use `bitbang` driver on RP2040 (qmk#23025) KK65 VID Correction (qmk#23007) Add GreatPad macropad under gkeyboard (qmk#22696) [Keyboard] Add dnworks numpad (qmk#22882) Add ScottoDeck handwired macropad (qmk#22935) Add Valhalla v2 PCB support (qmk#22914) Add Doio KB04 (qmk#22754) Theone keyboard (qmk#22749) [Keyboard] Add mntre_v3 (qmk#22739) add ISO layouts for alfredlabs/swift65/solder (qmk#22672) add matrix diagram for hineybush/h101 (qmk#22252) [Keyboard] Add Kimiko Rev2 (qmk#21719) [Keyboard] Add Zed1800 platform PCB (qmk#19250) [Keyboard] Add Synth Labs 065 Keyboard (qmk#21040) ...
- Loading branch information
Showing
9,750 changed files
with
120,320 additions
and
458,280 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,36 @@ | ||
# Look for a json keymap file | ||
ifneq ("$(wildcard $(MAIN_KEYMAP_PATH_5)/keymap.json)","") | ||
KEYMAP_JSON := $(MAIN_KEYMAP_PATH_5)/keymap.json | ||
KEYMAP_PATH := $(MAIN_KEYMAP_PATH_5) | ||
KEYMAP_JSON_PATH := $(MAIN_KEYMAP_PATH_5) | ||
else ifneq ("$(wildcard $(MAIN_KEYMAP_PATH_4)/keymap.json)","") | ||
KEYMAP_JSON := $(MAIN_KEYMAP_PATH_4)/keymap.json | ||
KEYMAP_PATH := $(MAIN_KEYMAP_PATH_4) | ||
KEYMAP_JSON_PATH := $(MAIN_KEYMAP_PATH_4) | ||
else ifneq ("$(wildcard $(MAIN_KEYMAP_PATH_3)/keymap.json)","") | ||
KEYMAP_JSON := $(MAIN_KEYMAP_PATH_3)/keymap.json | ||
KEYMAP_PATH := $(MAIN_KEYMAP_PATH_3) | ||
KEYMAP_JSON_PATH := $(MAIN_KEYMAP_PATH_3) | ||
else ifneq ("$(wildcard $(MAIN_KEYMAP_PATH_2)/keymap.json)","") | ||
KEYMAP_JSON := $(MAIN_KEYMAP_PATH_2)/keymap.json | ||
KEYMAP_PATH := $(MAIN_KEYMAP_PATH_2) | ||
KEYMAP_JSON_PATH := $(MAIN_KEYMAP_PATH_2) | ||
else ifneq ("$(wildcard $(MAIN_KEYMAP_PATH_1)/keymap.json)","") | ||
KEYMAP_JSON := $(MAIN_KEYMAP_PATH_1)/keymap.json | ||
KEYMAP_PATH := $(MAIN_KEYMAP_PATH_1) | ||
KEYMAP_JSON_PATH := $(MAIN_KEYMAP_PATH_1) | ||
endif | ||
|
||
ifneq ($(QMK_USERSPACE),) | ||
ifneq ("$(wildcard $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_5)/keymap.json)","") | ||
KEYMAP_JSON := $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_5)/keymap.json | ||
KEYMAP_PATH := $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_5) | ||
else ifneq ("$(wildcard $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_4)/keymap.json)","") | ||
KEYMAP_JSON := $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_4)/keymap.json | ||
KEYMAP_PATH := $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_4) | ||
else ifneq ("$(wildcard $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_3)/keymap.json)","") | ||
KEYMAP_JSON := $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_3)/keymap.json | ||
KEYMAP_PATH := $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_3) | ||
else ifneq ("$(wildcard $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_2)/keymap.json)","") | ||
KEYMAP_JSON := $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_2)/keymap.json | ||
KEYMAP_PATH := $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_2) | ||
else ifneq ("$(wildcard $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_1)/keymap.json)","") | ||
KEYMAP_JSON := $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_1)/keymap.json | ||
KEYMAP_PATH := $(QMK_USERSPACE)/$(MAIN_KEYMAP_PATH_1) | ||
endif | ||
endif |
Oops, something went wrong.