summaryrefslogtreecommitdiffstats
path: root/License-Clarification.md
blob: 449bd63d24e8ba746d55e3eff4d4fe1b253e13e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
# Overview

As raised in #1038 and other issues, the licensing status of QMK is not clear. In an effort to remove ambiguity and to clarify the licensing status of the quantum code we are identifying the providence of our source code files and clarifying what license applies to each one.

# Signoff

This section documents the people who need to sign off on applying the GPL to one or more of their contributions. 

Username | # Lines | Files | Sign Off Date |
---------|---------|-------|---------------|
@Vifon | 231 | quantum/dynamic_macro.h | |
@wez | 37 | quantum/dynamic_macro.h | |
@DidierLoiseau | 563 | quantum/keymap_extras/keymap_canadian_multilingual.h<br>quantum/keymap_extras/keymap_bepo.h | |
@h-youhei | 62 | quantum/keymap_extras/keymap_jp.h | |
@kuel | 240 | quantum/keymap_extras/keymap_unicode_cyrillic.h<br>quantum/keymap_extras/keymap_russian.h | |
@eltang | 155 |  quantum/config_common.h<br>quantum/matrix.c<br>quantum/quantum.c<br>quantum/quantum.h<br>quantum/rgblight.c<br>quantum/rgblight.h<br>quantum/template/config.h | |
@fredizzimo | 112 | quantum/config_common.h<br>quantum/keycode_config.h<br>quantum/keymap.h<br>quantum/keymap_common.c<br>quantum/keymap_common.c<br>quantum/matrix.c<br>quantum/quantum.h<br>quantum/rgblight.c<br>quantum/rgblight.h<br>quantum/api/api_sysex.c | |
@jackhumbert | 2841 | quantum/config_common.h<br>quantum/keycode_config.h<br>quantum/keymap.h<br>quantum/keymap_common.c<br>quantum/light_ws2812.c<br>quantum/light_ws2812.h<br>quantum/matrix.c<br>quantum/quantum.c<br>quantum/quantum.h<br>quantum/quantum_keycodes.h<br>quantum/rgblight.c<br>quantum/rgblight.h<br>quantum/api/api_sysex.c<br>quantum/audio/audio.c<br>quantum/audio/audio.h<br>quantum/audio/audio_pwm.c<br>quantum/audio/audio_pwm.c<br>quantum/audio/voices.c<br>quantum/audio/voices.h<br>quantum/keymap_extras/keymap_colemak.h<br>quantum/keymap_extras/keymap_dvorak.h<br>quantum/keymap_extras/keymap_fr_ch.h<br>quantum/keymap_extras/keymap_french.h<br>quantum/keymap_extras/keymap_french_osx.h<br>quantum/keymap_extras/keymap_german.h<br>quantum/keymap_extras/keymap_german_ch.h<br>quantum/keymap_extras/keymap_german_osx.h<br>quantum/keymap_extras/keymap_neo2.h<br>quantum/keymap_extras/keymap_nordic.h<br>quantum/keymap_extras/keymap_plover.h<br>quantum/keymap_extras/keymap_spanish.h<br>quantum/keymap_extras/keymap_uk.h<br>quantum/process_keycode/process_midi.c<br>quantum/process_keycode/process_music.c<br>quantum/process_keycode/process_tap_dance.c<br>quantum/process_keycode/process_tap_dance.h<br>quantum/process_keycode/process_unicode.c<br>quantum/process_keycode/process_unicode.h<br>quantum/template/config.h<br>quantum/template/template.c<br>quantum/template/template.h | |
@ofples | 1 | quantum/config_common.h | |
@IBnobody | 1491 | quantum/keycode_config.h<br>quantum/matrix.c<br>quantum/quantum.c<br>quantum/audio/audio.c<br>quantum/audio/audio.h<br>quantum/audio/audio_pwm.c<br>quantum/audio/audio_pwm.c<br>quantum/audio/voices.c<br>quantum/audio/voices.h<br>quantum/template/config.h<br>quantum/template/template.c | |
@Wilba6582 | 330 | quantum/keymap.h<br>quantum/keymap_common.c<br>quantum/quantum_keycodes.h | |
@yangliu | 465 | quantum/light_ws2812.c<br>quantum/light_ws2812.h<br>quantum/rgblight.c<br>quantum/rgblight.h | |
@ezuk | 118 | quantum/matrix.c<br>quantum/quantum.c<br>quantum/quantum.h<br>quantum/quantum_keycodes.h<br>quantum/rgblight.c<br>quantum/rgblight.h<br>quantum/keymap_extras/keymap_colemak.h<br>quantum/keymap_extras/keymap_nordic.h |
@yoyoerx | 6 | quantum/matrix.c<br>quantum/template/template.c | |
Gergely Nagy | 380 | quantum/quantum.c<br>quantum/quantum.h<br>quantum/process_keycode/process_tap_dance.c<br>quantum/process_keycode/process_tap_dance.h<br>quantum/process_keycode/process_unicode.c<br>quantum/process_keycode/process_unicode.h | |
Ofer Plesser | 2 | quantum/quantum.c | |
Pavlos Vinieratos | 33 | quantum/quantum.c<br>quantum/quantum.h<br>quantum/process_keycode/process_tap_dance.c<br>quantum/process_keycode/process_tap_dance.h | |
Priyadi Iman Nurcahyo | 96 | quantum/quantum.c<br>quantum/process_keycode/process_unicode.c<br>quantum/process_keycode/process_unicode.h | |
Smilliam | 12 | quantum/quantum.c | |
TerryMathews | 52 | quantum/quantum.c | |
Wojciech Siewierski | 12 | quantum/quantum.c | |
Jordi Orlando | 311 | quantum/rgblight.c | |
Scott Wilson | 3 | quantum/rgblight.c<br>quantum/rgblight.h | |
@skullydazed | 2 | quantum/rgblight.c | |
JeeBak Kim | 8 | quantum/audio/audio_pwm.c | |
Vivien Alger | 2 | quantum/keymap_extras/keymap_bepo.h | |
Jonathan A. Kollasch | 24 | quantum/keymap_extras/keymap_dvorak.h<br>quantum/keymap_extras/keymap_fr_ch.h<br>quantum/keymap_extras/keymap_french.h<br>quantum/keymap_extras/keymap_german.h<br>quantum/keymap_extras/keymap_german_ch.h<br>quantum/keymap_extras/keymap_nordic.h<br>quantum/keymap_extras/keymap_spanish.h<br>quantum/keymap_extras/keymap_uk.h | |
Keller-Laminar | 1 | quantum/keymap_extras/keymap_dvorak.h | |
Vincent Pochet | 96 | quantum/keymap_extras/keymap_fr_ch.h | |
Kévin Letord | 1 | quantum/keymap_extras/keymap_french.h | |
Sébastien Pérochon | 76 | quantum/keymap_extras/keymap_french_osx.h | |
Matthias Schmitt | 100 | quantum/keymap_extras/keymap_german.h<br>quantum/keymap_extras/keymap_neo2.h | |
plgruener | 58 | quantum/keymap_extras/keymap_german.h<br>quantum/keymap_extras/keymap_neo2.h | |
heartsekai | 100 | quantum/keymap_extras/keymap_german_ch.h | |
Stephan Bösebeck | 96 | quantum/keymap_extras/keymap_german_osx.h | |
Andreas Lindé | 2 | quantum/keymap_extras/keymap_nordic.h<br>quantum/keymap_extras/keymap_norwegian.h | |
Fernando Mendonca | 3 | quantum/keymap_extras/keymap_nordic.h | |
joar | 40 | quantum/keymap_extras/keymap_norwegian.h | |
James 'Twey' Kay | 31 | quantum/keymap_extras/keymap_plover.h | |
Rubén Díaz-Jorge | 2 | quantum/keymap_extras/keymap_spanish.h | |
Adam Gausmann | 3 | quantum/process_keycode/process_midi.c | |
Robert Dale | 6 | quantum/process_keycode/process_music.c | |
coderkun | 5 | quantum/process_keycode/process_unicode.c | |
Damien Pollet | 11 | quantum/template/template.c<br>quantum/template/template.h | |
@NoahAndrews | 1 | quantum/template/template.h | |

# Single Author Files

These are the single author files that still need to have their license clarified.

* quantum/dynamic_macro.h: @Vifon
* quantum/pincontrol.h: @wez
* quantum/keymap_extras/keymap_canadian_multilingual.h: @DidierLoiseau
* quantum/keymap_extras/keymap_jp.h: @h-youhei
* quantum/keymap_extras/keymap_unicode_cyrillic.h: @kuel
* quantum/keymap_extras/keymap_russian.h: @kuel

# Multi Author Files

Each file listed below has more than one author and needs to have copyright resolved. The number of lines contributed by each author is shown as determined by:

```git blame <file> | cut -f 2 -d '(' | cut -f 1 -d '2' | sort | uniq -c | sed 's/^ */* /'```

## quantum/config_common.h 

* 24 Eric Tang
* 2 Fred Sundvik
* 58 Jack Humbert
* 1 ofples

## quantum/keycode_config.h 

* 5 IBNobody
* 20 Jack Humbert
* 1 fredizzimo

## quantum/keymap.h 

* 39 Jack Humbert
* 6 Wilba6582
* 8 fredizzimo

## quantum/keymap_common.c 

* 1 Fred Sundvik
* 162 Jack Humbert
* 11 Wilba6582
* 3 fredizzimo

## quantum/light_ws2812.c 

* 163 Jack Humbert
* 168 Yang Liu

## quantum/light_ws2812.h 

* 11 Jack Humbert
* 70 Yang Liu

## quantum/matrix.c 

* 3 Erez Zukerman
* 15 Eric Tang
* 239 IBNobody
* 152 Jack Humbert
* 2 fredizzimo
* 2 yoyoerx

## quantum/quantum.c 

* 38 Erez Zukerman
* 96 Eric Tang
* 49 Gergely Nagy
* 68 IBNobody
* 4 Jack & Erez
* 561 Jack Humbert
* 2 Ofer Plesser
* 14 Pavlos Vinieratos
* 2 Priyadi Iman Nurcahyo
* 12 Smilliam
* 52 TerryMathews
* 12 Wojciech Siewierski

## quantum/quantum.h 

* 23 Erez Zukerman
* 4 Eric Tang
* 1 Fred Sundvik
* 3 Gergely Nagy
* 86 Jack Humbert
* 2 Pavlos Vinieratos
* 5 fredizzimo

## quantum/quantum_keycodes.h 

* 2 Erez Zukerman
* 2 Jack Humbert
* 313 Wilba6582

## quantum/rgblight.c 

* 13 Erez Zukerman
* 5 Eric Tang
* 39 Fred Sundvik
* 101 Jack Humbert
* 311 Jordi Orlando
* 1 Scott Wilson
* 147 Yang Liu
* 2 skullY

## quantum/rgblight.h 

* 3 Erez Zukerman
* 2 Eric Tang
* 6 Fred Sundvik
* 12 Jack Humbert
* 2 Scott Wilson
* 80 Yang Liu

## quantum/api/api_sysex.c 

* 44 Fred Sundvik
* 13 Jack Humbert

## quantum/audio/audio.c 

* 318 IBNobody
* 164 Jack Humbert

## quantum/audio/audio.h 

* 15 IBNobody
* 76 Jack Humbert

## quantum/audio/audio_pwm.c 

* 642 IBNobody
* 1 Jack Humbert

## quantum/audio/song_list.h 

* 101 IBNobody
* 16 Jack Humbert
* 8 JeeBak Kim

## quantum/audio/voices.c 

* 24 IBNobody
* 256 Jack Humbert

## quantum/audio/voices.h 

* 3 IBNobody
* 32 Jack Humbert

## quantum/keymap_extras/keymap_bepo.h 

* 308 Didier Loiseau
* 1 Jack Humbert   
* 2 Vivien Alger

## quantum/keymap_extras/keymap_colemak.h 

* 31 Erez Zukerman
* 44 Jack Humbert

## quantum/keymap_extras/keymap_dvorak.h 

* 69 Jack Humbert
* 15 Jonathan A. Kollasch
* 1 Keller-Laminar

## quantum/keymap_extras/keymap_fr_ch.h 

* 1 Jack Humbert
* 1 Jonathan A. Kollasch
* 96 Vincent Pochet

## quantum/keymap_extras/keymap_french.h 

* 80 Jack Humbert
* 2 Jonathan A. Kollasch
* 1 Kévin Letord

## quantum/keymap_extras/keymap_french_osx.h 

* 1 Jack Humbert
* 76 Sébastien Pérochon

## quantum/keymap_extras/keymap_german.h 

* 1 Jack Humbert
* 1 Jonathan A. Kollasch
* 58 Matthias Schmitt
* 39 plgruener

## quantum/keymap_extras/keymap_german_ch.h 

* 1 Jack Humbert
* 1 Jonathan A. Kollasch
* 100 heartsekai

## quantum/keymap_extras/keymap_german_osx.h 

* 1 Jack Humbert
* 96 Stephan Bösebeck

## quantum/keymap_extras/keymap_neo2.h 

* 2 Jack Humbert
* 42 Matthias Schmitt
* 19 plgruener

## quantum/keymap_extras/keymap_nordic.h 

* 1 Andreas Lindhé
* 1 Erez Zukerman
* 3 Fernando Mendonca
* 53 Jack Humbert
* 1 Jonathan A. Kollasch

## quantum/keymap_extras/keymap_norwegian.h 

* 1 Andreas Lindhé
* 40 joar

## quantum/keymap_extras/keymap_plover.h 

* 1 Jack Humbert
* 31 James ‘Twey’ Kay

## quantum/keymap_extras/keymap_spanish.h 

* 59 Jack Humbert
* 1 Jonathan A. Kollasch
* 2 Rubén Díaz-Jorge

## quantum/keymap_extras/keymap_uk.h 

* 34 Jack Humbert
* 2 Jonathan A. Kollasch

## quantum/process_keycode/process_midi.c 

* 3 Adam Gausmann
* 65 Jack Humbert

## quantum/process_keycode/process_music.c 

* 180 Jack Humbert
* 6 Robert Dale

## quantum/process_keycode/process_tap_dance.c 

* 90 Gergely Nagy
* 38 Jack Humbert
* 8 Pavlos Vinieratos

## quantum/process_keycode/process_tap_dance.h 

* 22 Gergely Nagy
* 41 Jack Humbert
* 9 Pavlos Vinieratos

## quantum/process_keycode/process_unicode.c 

* 176 Gergely Nagy
* 24 Jack Humbert
* 84 Priyadi Iman Nurcahyo
* 5 coderkun

## quantum/process_keycode/process_unicode.h 

* 40 Gergely Nagy
* 117 Jack Humbert
* 10 Priyadi Iman Nurcahyo

## quantum/template/config.h 

* 9 Eric Tang
* 78 IBNobody
* 75 Jack Humbert

## quantum/template/template.c 

* 9 Damien Pollet
* 7 IBNobody
* 8 Jack Humbert
* 4 yoyoerx

## quantum/template/template.h 

* 2 Damien Pollet
* 16 Jack Humbert
* 1 Noah Andrews

# All Single Author Files

These files have only a single author and so clarifying licensing should be pretty straightforward.

* quantum/analog.c: Jack Humbert
* quantum/analog.h: Jack Humbert
* quantum/api.h: Jack Humbert
* quantum/keycode_config.c: Jack Humbert
* quantum/pincontrol.h: Wez Furlong
* quantum/api/api_sysex.h: Jack Humbert
* quantum/audio/luts.c: IBNobody
* quantum/audio/luts.h: IBNobody
* quantum/audio/musical_notes.h: Jack Humbert
* quantum/audio/wave.h: Jack Humbert
* quantum/keymap_extras/keymap_br_abnt2.h: Potiguar Faga
* quantum/keymap_extras/keymap_dvp.h: Artyom Mironov
* quantum/keymap_extras/keymap_jp.h: h-youhei
* quantum/keymap_extras/keymap_unicode_cyrillic.h: kuel
* quantum/process_keycode/process_chording.c: Jack Humbert
* quantum/process_keycode/process_chording.h: Jack Humbert
* quantum/process_keycode/process_leader.c: Jack Humbert
* quantum/process_keycode/process_leader.h: Jack Humbert
* quantum/process_keycode/process_midi.h: Jack Humbert
* quantum/process_keycode/process_music.h: Jack Humbert
* quantum/process_keycode/process_printer.c: Jack Humbert
* quantum/process_keycode/process_printer.h: Jack Humbert
* quantum/process_keycode/process_printer_bb.c: Jack Humbert
* quantum/serial_link/LICENSE: Fred Sundvik
* quantum/serial_link/protocol/frame_router.c: Fred Sundvik
* quantum/serial_link/protocol/frame_router.h: Fred Sundvik
* quantum/serial_link/protocol/frame_validator.c: Fred Sundvik
* quantum/serial_link/protocol/frame_validator.h: Fred Sundvik
* quantum/serial_link/protocol/physical.h: Fred Sundvik
* quantum/serial_link/protocol/triple_buffered_object.c: Fred Sundvik
* quantum/serial_link/protocol/triple_buffered_object.h: Fred Sundvik
* quantum/serial_link/system/serial_link.c: Fred Sundvik
* quantum/serial_link/system/serial_link.h: Fred Sundvik
* quantum/serial_link/tests/byte_stuffer_tests.cpp: Fred Sundvik
* quantum/serial_link/tests/frame_router_tests.cpp: Fred Sundvik
* quantum/serial_link/tests/frame_validator_tests.cpp: Fred Sundvik
* quantum/serial_link/tests/Makefile: Fred Sundvik
* quantum/serial_link/tests/transport_tests.cpp: Fred Sundvik
* quantum/serial_link/tests/triple_buffered_object_tests.cpp: Fred Sundvik
* quantum/template/rules.mk: Fred Sundvik
* quantum/template/keymaps/default/config.h: Jack Humbert
* quantum/template/keymaps/default/Makefile: Jack Humbert
* quantum/template/keymaps/default/readme.md: Jack Humbert
* quantum/tools/eeprom_reset.hex: Jack Humbert
* quantum/tools/readme.md: Jack Humbert
* quantum/visualizer/lcd_backlight.c: Fred Sundvik
* quantum/visualizer/lcd_backlight.h: Fred Sundvik
* quantum/visualizer/led_test.h: Fred Sundvik
* quantum/visualizer/LICENSE.md: Fred Sundvik
* quantum/visualizer/readme.md: Fred Sundvik
* quantum/visualizer/example_integration/callbacks.c: Fred Sundvik
* quantum/visualizer/example_integration/gfxconf.h: Fred Sundvik
* quantum/visualizer/example_integration/lcd_backlight_hal.c: Fred Sundvik
* quantum/visualizer/example_integration/visualizer_user.c: Fred Sundvik

# All Files

## quantum/analog.c 

* 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 Mon Oct 26 14:49:46 2015 -0400 Jack Humbert

## quantum/analog.h 

* 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 Mon Oct 26 14:49:46 2015 -0400 Jack Humbert

## quantum/api.c 

* 7edac212c8ed8442bf4207e70dc8194631b2bf27 Sat Nov 26 15:37:46 2016 -0500 Jack Humbert
* 06c64bbff3e228df542149acde64eadaf59b9b0f Mon Dec 19 11:18:18 2016 -0500 Jack Humbert

## quantum/api.h 

* 7edac212c8ed8442bf4207e70dc8194631b2bf27 Sat Nov 26 15:37:46 2016 -0500 Jack Humbert

## quantum/config_common.h 

* 35a81f5b8b081e1607a7c04489b01f551c3213cc Mon Oct 26 16:32:37 2015 -0400 Jack Humbert
* aaa758f1d3f97dda39879f2b055ad2da9680adfe Mon May 23 20:42:21 2016 -0700 Eric Tang
* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
* 705c775a4a433249081321cea0c2def2627817dc Sun Aug 21 22:05:55 2016 -0500 IBNobody
* 936a26d04ffa12801031c058f27e221174e3fabd Thu Aug 25 00:15:41 2016 -0500 IBNobody
* 6390033e8688550826a4bd3004a2e76568600657 Mon Nov 21 20:14:16 2016 -0500 Jack Humbert
* 03d6e165bb0baf9d0093250d3c3c0771290df4d6 Fri Nov 25 09:17:40 2016 +0200 ofples
* 0c9d66eb59add717397ba83d508577073412ce86 Fri Nov 25 09:20:41 2016 +0200 ofples
* de1df639535817e17f1c01f07e7a629cec478526 Sat Nov 26 13:55:41 2016 +0700 Priyadi Iman Nurcahyo
* 17acde94ee2695ab69ea336742c904d649dce17c Sat Nov 26 14:02:38 2016 +0700 Priyadi Iman Nurcahyo
* d9d67e7b7686fdcbc7269a76d2a54c42325bdd03 Sat Nov 26 15:26:02 2016 +0700 Priyadi Iman Nurcahyo
* f2214ce1cb6cfe7a0efabe870a2c00fb8451ee80 Sat Nov 26 15:57:48 2016 +0700 Priyadi Iman Nurcahyo
* 6e0f994950435aa5867e7b7ce780186d881d74ac Mon Nov 28 23:51:07 2016 -0500 Jack Humbert
* dd685eceb2045371d38f24d454f1ab08ca7416f4 Thu Dec 29 12:13:30 2016 +0200 Fred Sundvik

## quantum/dynamic_macro.h 

* 39e8e61258b51a2c33a94dd877e983f0b1dae0c1 Thu Aug 18 01:37:13 2016 +0200 Wojciech Siewierski
* 70f32842e5d94f14d05c1f9adcb1b1144a25a132 Sun Oct 9 12:52:39 2016 +0200 Wojciech Siewierski

## quantum/keycode_config.c 

* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert

## quantum/keycode_config.h 

* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
* 4d4f7684e684bec319f166121463a88cd4a62703 Fri Jul 1 17:04:53 2016 +0300 fredizzimo
* 558f3ec1eb325caf706efc15e2fab26121aba442 Tue Sep 6 23:19:01 2016 -0500 IBNobody

## quantum/keymap.h 

* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
* 76076db72545bbb649f11394a12721f61579527f Mon Jun 20 22:36:36 2016 -0400 Jack & Erez
* 1a0bac8bccf0e156d2f3c5f14a7214f9677b6370 Tue Jun 21 17:42:29 2016 -0400 Jack Humbert
* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
* 4d4f7684e684bec319f166121463a88cd4a62703 Fri Jul 1 17:04:53 2016 +0300 fredizzimo
* 50c6