From 5b9667a4bfae068f2b6d17156403e2135f4dbd3e Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Tue, 30 Apr 2019 09:18:11 -0700 Subject: Ignore VSCode ipsh folder (#5741) --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index b1f9277078..7cd7fa8015 100644 --- a/.gitignore +++ b/.gitignore @@ -54,6 +54,7 @@ util/Win_Check_Output.txt .vscode/tasks.json .vscode/last.sql .vscode/temp.sql +.vscode/ipch/ .stfolder .tags -- cgit v1.2.3 From a25dd58bc56b0c4010673723ac44eaff914979bb Mon Sep 17 00:00:00 2001 From: skullydazed Date: Mon, 15 Jul 2019 12:14:27 -0700 Subject: QMK CLI and JSON keymap support (#6176) * Script to generate keymap.c from JSON file. * Support for keymap.json * Add a warning about the keymap.c getting overwritten. * Fix keymap generating * Install the python deps * Flesh out more of the python environment * Remove defunct json2keymap * Style everything with yapf * Polish up python support * Hide json keymap.c into the .build dir * Polish up qmk-compile-json * Make milc work with positional arguments * Fix a couple small things * Fix some errors and make the CLI more understandable * Make the qmk wrapper more robust * Add basic QMK Doctor * Clean up docstrings and flesh them out as needed * remove unused compile_firmware() function --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 7cd7fa8015..140bf4aa7e 100644 --- a/.gitignore +++ b/.gitignore @@ -70,3 +70,6 @@ util/Win_Check_Output.txt secrets.tar id_rsa_* /.vs + +# python things +__pycache__ -- cgit v1.2.3 From 29d7f9b1632fb15a7849762aa27b7f81af29c2b2 Mon Sep 17 00:00:00 2001 From: Burak Can Date: Sun, 22 Sep 2019 14:32:52 +0300 Subject: Correct casing for DS_Store in .gitignore (#6787) --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 140bf4aa7e..1f8f9dc74b 100644 --- a/.gitignore +++ b/.gitignore @@ -25,7 +25,7 @@ quantum/version.h CMakeLists.txt cmake-build-debug doxygen/ -.DS_STORE +.DS_Store /util/wsl_downloaded /util/win_downloaded /keyboards/*/Makefile -- cgit v1.2.3 From 3fd919c53661e53018d9121683c74716af54f43e Mon Sep 17 00:00:00 2001 From: Gouty Date: Fri, 25 Oct 2019 19:48:59 +0100 Subject: [Docs] Update hand wire guide (#7044) * Reorganised Hand Wire Guide Added some images and put the "Matrix" section in a hidden
section * Actually adding images this time removed .jpg from .gitignore * Hand wire guide updated Incomplete, but started making the guide more general. Will continue to add images (in imgur as requested) * Removed some more images from gitignore * testing image changes (temporary) * Update hand_wire.md * added techniques table * Tweaking the table * Finished soldering guide * Fixed some links, change image scaling * More of the same * resizing images * updated images * Update hand_wire.md * Resizing images * Update hand_wire.md * Update hand_wire.md * Create ribbon_cable.jpg * Minor updates to links * Updated firmware and flashing guidelines * Updated images to imgur links and re-added images to gitignore * Implemented requested changes. Improved wording * Added handwire helpers info and split KB info * Update hand_wire.md * Removed "the" from "the QMK toolbox" * Fixed handwire helper table and image size * Fixed a heading --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 1f8f9dc74b..7b15615625 100644 --- a/.gitignore +++ b/.gitignore @@ -60,8 +60,8 @@ util/Win_Check_Output.txt # ignore image files *.png -*.jpg *.gif +*.jpg # Do not ignore MiniDox left/right hand eeprom files !keyboards/minidox/*.eep -- cgit v1.2.3 From 74e3cad72829f673b6398dc18257f9d05bdaa3fe Mon Sep 17 00:00:00 2001 From: fauxpark Date: Wed, 5 Feb 2020 13:30:57 +1100 Subject: Remove entries for Minidox eep files from gitignore (#8077) --- .gitignore | 3 --- 1 file changed, 3 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 7b15615625..c2738311bd 100644 --- a/.gitignore +++ b/.gitignore @@ -63,9 +63,6 @@ util/Win_Check_Output.txt *.gif *.jpg -# Do not ignore MiniDox left/right hand eeprom files -!keyboards/minidox/*.eep - # things travis sees secrets.tar id_rsa_* -- cgit v1.2.3 From 26eef35f07698d23aafae90e1c230b52e100a334 Mon Sep 17 00:00:00 2001 From: James Young Date: Sat, 29 Feb 2020 12:00:00 -0800 Subject: 2020 February 29 Breaking Changes Update (#8064) --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index c2738311bd..0e80cdb6c4 100644 --- a/.gitignore +++ b/.gitignore @@ -70,3 +70,6 @@ id_rsa_* # python things __pycache__ + +# prerequisites for updating ChibiOS +/util/fmpp* -- cgit v1.2.3 From e990863296c1fafaacccd4e2d7dffd9bdcbba09c Mon Sep 17 00:00:00 2001 From: Ryan Date: Wed, 15 Apr 2020 19:03:49 +1000 Subject: Miscellaneous stuff: remove clang-complete and autocomplete.sh, fix some rules.mk comments (#8784) --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 0e80cdb6c4..2d2621f420 100644 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,7 @@ quantum/version.h .idea/ CMakeLists.txt cmake-build-debug +.clang_complete doxygen/ .DS_Store /util/wsl_downloaded -- cgit v1.2.3 From 5a45627e17d8ed914b5cd2ac5c50d349c88d7d6b Mon Sep 17 00:00:00 2001 From: Ryan Date: Thu, 16 Apr 2020 09:32:40 +1000 Subject: Remove old setup scripts (#8811) --- .gitignore | 1 - 1 file changed, 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 2d2621f420..20437224f1 100644 --- a/.gitignore +++ b/.gitignore @@ -48,7 +48,6 @@ doxygen/ *.iml .browse.VC.db* *.stackdump -util/Win_Check_Output.txt # Let these ones be user specific, since we have so many different configurations .vscode/c_cpp_properties.json .vscode/launch.json -- cgit v1.2.3 From f11437aef392dc44573bf45a738ae758784d2f1b Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Wed, 15 Jul 2020 23:45:50 -0700 Subject: Allow for user song list (#9281) --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 20437224f1..91d283e69b 100644 --- a/.gitignore +++ b/.gitignore @@ -73,3 +73,6 @@ __pycache__ # prerequisites for updating ChibiOS /util/fmpp* + +# Allow to exist but don't include it in the repo +user_song_list.h -- cgit v1.2.3 From 0c42f91f4ccf98a37f055afb777ed491da56335e Mon Sep 17 00:00:00 2001 From: Zach White Date: Sun, 25 Oct 2020 14:48:44 -0700 Subject: Generate api data on each push (#10609) * add new qmk generate-api command, to generate a complete set of API data. * Generate api data and push it to the keyboard repo * fix typo * Apply suggestions from code review Co-authored-by: Joel Challis * fixup api workflow * remove file-changes-action * use a more mainstream github action * fix yaml error * Apply suggestions from code review Co-authored-by: Erovia * more uniform date handling * make flake8 happy * Update lib/python/qmk/decorators.py Co-authored-by: Erovia Co-authored-by: Joel Challis Co-authored-by: Erovia --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 91d283e69b..d6846cf63b 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ *.swp tags *~ +api_data/v1 build/ .build/ *.bak -- cgit v1.2.3 From 417a07c22db39dc544f00f9a8b71a7fe1479981e Mon Sep 17 00:00:00 2001 From: Luis Moreno Date: Sun, 25 Apr 2021 22:46:28 +0200 Subject: [Config] Add VSCode workspace files to .gitignore (#12469) --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index d6846cf63b..90f3d67527 100644 --- a/.gitignore +++ b/.gitignore @@ -50,6 +50,7 @@ doxygen/ .browse.VC.db* *.stackdump # Let these ones be user specific, since we have so many different configurations +*.code-workspace .vscode/c_cpp_properties.json .vscode/launch.json .vscode/tasks.json -- cgit v1.2.3 From b5419bd574600565bf4b2479bf07c7cc39dbfeea Mon Sep 17 00:00:00 2001 From: Andrew Kannan Date: Mon, 26 Apr 2021 15:18:17 -0400 Subject: Add python-version to gitignore (#12678) --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 90f3d67527..da74bdec83 100644 --- a/.gitignore +++ b/.gitignore @@ -72,6 +72,7 @@ id_rsa_* # python things __pycache__ +.python-version # prerequisites for updating ChibiOS /util/fmpp* -- cgit v1.2.3