-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCOPYING
1877 lines (1385 loc) · 98.7 KB
/
COPYING
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
The following license files apply
Source: a list of all licenses follows below
Binaries:
libu8g2arm library: COPYING_permissive
libu8g2arm_fonts_gplcopyleft library: COPYING_gplcopyleft
libu8g2arm_fonts_noncommercial library: COPYING_noncommercial
##########################################################################
Files: src/csrc/*.c src/csrc/*.h src/cppsrc/*.cpp src/cppsrc/*.h setup/files/U*
The U8g2lib code (http://code.google.com/p/u8g2/) is licensed under the terms of the new-bsd license (two-clause bsd license).
See also: http://www.opensource.org/licenses/bsd-license.php
============ BSD License for U8g2lib Code ============
Universal 8bit Graphics Library (http://code.google.com/p/u8g2/)
Copyright (c) 2016, olikraus@gmail.com
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or other
materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
##########################################################################
Files: src/port/* setup/port/*
Copyright (c) 2019, Wu Han <wuhanstudio@hust.edu.cn>
http://wuhanstudio.cc
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
##########################################################################
Files: setup/files/UGG2Controller.* src/cppsrc/UGG2Controller.*
Copyright (c) 2021, Adrian Rossiter <adrian@antiprism.com>
Antiprism - http://www.antiprism.com
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
##########################################################################
Files: src/csrc/fonts_permissive/*
fntgrpadobex11: all
https://github.com/olikraus/u8g2/wiki/fntgrpadobex11#copyright
Reference
Fonts on this page are part of the X11 distribution.
Copyright 1984-1989, 1994 Adobe Systems Incorporated. Copyright 1988, 1994 Digital Equipment Corporation.
Adobe is a trademark of Adobe Systems Incorporated which may be registered in certain jurisdictions. Permission to use these trademarks is hereby granted only in association with the images described in this file.
Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notices appear in all copies and that both those copyright notices and this permission notice appear in supporting documentation, and that the names of Adobe Systems and Digital Equipment Corporation not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. Adobe Systems and Digital Equipment Corporation make no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty.
Font Copyright Statement: "Copyright (c) 1984, 1987 Adobe Systems Incorporated. All Rights Reserved. Copyright (c) 1988, 1991 Digital Equipment Corporation. All Rights Reserved."
-----------------------------------------------------------------------------
fntgrpangel: cupcakemetoyourleader
https://github.com/olikraus/u8g2/wiki/fntgrpangel#copyright
Reference
Fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
Created by "Angel".
CupcakeMeToYourLeader by Angel license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1047
-----------------------------------------------------------------------------
fntgrpangel: oldwizard
https://github.com/olikraus/u8g2/wiki/fntgrpangel#copyright
Reference
Fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
Created by "Angel".
OldWizard license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=168
-----------------------------------------------------------------------------
fntgrpangel: squirrel
https://github.com/olikraus/u8g2/wiki/fntgrpangel#copyright
Reference
Fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
Created by "Angel".
Squirrel by Angel license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=2229
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: 3x3basic
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
3x3Basic by 8bit-ninja license : (Creative Commons Attribution) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=4043
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: 3x5im
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
3x5 by Ife Mena license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=7785
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: 8bitclassic
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
8bit Classic by Paul Novel license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6076
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: adventurer
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Adventurer by Brian J Smith http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=195 license : (Creative Commons Attribution)
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: bpixel
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
B Pixel by bman7200: (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5209
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: bpixeldouble
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
B Pixel by bman7200: (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5209
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: bracketedbabies
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
BracketedBabies by EmbeePyonPon http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=70 license : (Public Domain)
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: bytesize
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Byte Size by JOEY license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=4843
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: ciircle13
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Ciircle13 by lsttrn license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3904
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: commodore64
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Commodore 64 by Vuce license : (Creative Commons Attribution) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5612
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: doomalpha04
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
DoomAlpha04 by VSJKai0041 license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6915
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: dystopia
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Dystopia by KitSovereign license : (Creative Commons Attribution) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1293
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: eckpixel
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Eckpixel by MERIKARE license : (Creative Commons Attribution) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5879
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: elispe
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Elispe by Kirishaann Vijithkumar license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6161
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: eventhrees
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
eventhrees by manumanu license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9842
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: fivepx
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
fivepx by Anonymous license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5504
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: fourmat
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Fourmat by CeruleanStimuli license : (Creative Commons Attribution) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=2092
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: frikativ
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Frikativ by DominikKrotscheck http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=550 license : (Public Domain)
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: greenbloodserif2
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Green Blood Serif 2 by Winston license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5359
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: heavybottom
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
HEAVYBOTTOM by Madameberry http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=2348 license : (Public Domain)
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: heisans
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
HeiSans by Anonymous license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9029
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: kibibyte
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Kibibyte by Physics Fighter license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6597
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: likeminecraft
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
LikeMinecraft by GK license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=10128
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: littlemissloudonbold
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
LittleMissLoudon-Bold by HeavenCastro license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5650
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: medsans
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
MedSans by Anonymous license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=8938
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: mildras
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Mildras by samf license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=8262
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: minicute
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Minicute by Anonymous license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=8792
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: minuteconsole
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
MinuteConsole by Cipheroid license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3370
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: moosenooks
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
MooseNooks by bavarianrobotdiner license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=2095
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: neuecraft
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Neuecraft by Down10 license : (Creative Commons Attribution) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6206
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: new3x9pixelfont
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
NEW3x9PixelFont by MarioMaker54321 license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5134
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: originalsans
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Original Sans by Anonymous license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=7464
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: pixzillav1
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Pixzilla V1 by Odyssey Productions license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=4728
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: princess
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Princess by Kit Sovereign license : (Creative Commons Attribution) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1294
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: scrum
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Scrum by Anonymous license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5304
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: simple1
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Simple(1) by GK license : (Creative Commons Attribution) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=10169
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: sisterserif
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
SisterSerif by Anonymous license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=8570
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: smallsimple
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
SmallSimple by GK license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=10152
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: smolfont
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
smolFont by Racuh license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9959
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: standardized3x5
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Standardized 3x5 by parzivail license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9866
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: sticker100complete
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Sticker 100% Complete by iDecay license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=2618
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: stylishcharm
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Stylish Charm by Anonymous license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=8520
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: tallpix
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Tallpix http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=235 license : (Public Domain)
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: tallpixelextended
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
TallPixelExtended by ZacharyRy license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1608
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: threepix
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
ThreePix by Tsutsen license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9693
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: tiny_gk
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
tiny by GK (renamed to tiny4) license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=10108
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: tiny_simon
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
tiny by simon license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9731
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: tinyface
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
TinyFace by nickbrick license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=7473
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: tinypixie2
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
TinyPixie2 by Tiny Pixie license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5554
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: tinyunicode
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
TinyUnicode by DuffsDevice license : (Creative Commons Attribution) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=468
-----------------------------------------------------------------------------
fntgrpbitfontmaker2: wedge
https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#copyright
Wedge by Arvin license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3950
-----------------------------------------------------------------------------
fntgrphasankazan: all
https://github.com/olikraus/u8g2/wiki/fntgrphasankazan#copyright
NokiaSmallBold by HasanKazan license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6182
NokiaSmallPlain by HasanKazan license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6181
Nokia Large Bold by HasanKazan license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6180
9x6 LED by Hasan Kazan license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3980
12x6LED by HasanKazan license : (Public Domain) https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3960
-----------------------------------------------------------------------------
fntgrpim: all
https://github.com/olikraus/u8g2/wiki/fntgrpim#copyright
Copyright (C) 2010 by Integrated Mapping Ltd
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-----------------------------------------------------------------------------
fntgrpchristinaneofotistou: all
https://github.com/olikraus/u8g2/wiki/fntgrpchristinaneofotistou#copyright
Reference
Fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
Created by "ChristinaAntoinetteNeofotistou" (https://castpixel.artstation.com/).
LastPriestess by christinaNeofotistou license : (Creative Commons Attribution) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=488 R
JinxedWizards by ChristinaAntoinetteNeofotistou license : (Creative Commons Attribution) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1362 N, U, R
-----------------------------------------------------------------------------
fntgrpcodeman38: all
https://github.com/olikraus/u8g2/wiki/fntgrpcodeman38
Press Start 2P
Reference
http://zone38.net/font/
Copyright
Copyright (c) 2011, Cody "CodeMan38" Boisclair (cody@zone38.net), with Reserved Font Name "Press Start".
This Font Software is licensed under the SIL Open Font License, Version 1.1.
http://scripts.sil.org/OFL
PC Senior
Reference
http://zone38.net/font/
Copyright (from zip file)
Thanks for downloading one of codeman38's retro video game fonts, as seen on Memepool, BoingBoing, and all around the blogosphere.
So, you're wondering what the license is for these fonts? Pretty simple; it's based upon that used for Bitstream's Vera font set <http://www.gno me.org/fonts/>.
Basically, here are the key points summarized, in as little legalese as possible; I hate reading license agreements as much as you probably do:
With one specific exception, you have full permission to bundle these fonts in your own free or commercial projects-- and by projects, I'm refer ring to not just software but also electronic documents and print publications.
So what's the exception? Simple: you can't re-sell these fonts in a commercial font collection. I've seen too many font CDs for sale in stores t hat are just a repackaging of thousands of freeware fonts found on the internet, and in my mind, that's quite a bit like highway robbery. Note t hat this only applies to products that are font collections in and of themselves; you may freely bundle these fonts with an operating system, application program, or the like.
Feel free to modify these fonts and even to release the modified versions, as long as you change the original font names (to ensure consistency among people with the font installed) and as long as you give credit somewhere in the font file to codeman38 or zone38.net. I may even incorpora te these changes into a later version of my fonts if you wish to send me the modifed fonts via e-mail.
Also, feel free to mirror these fonts on your own site, as long as you make it reasonably clear that these fonts are not your own work. I'm not asking for much; linking to zone38.net or even just mentioning the nickname codeman38 should be enough.
Well, that pretty much sums it up... so without further ado, install and enjoy these fonts from the golden age of video games.
https://docubrain.com/sites/default/files/licenses/bitstream-vera.html
Bitstream Vera Fonts Copyright
The fonts have a generous copyright, allowing derivative works (as long as "Bitstream" or "Vera" are not in the names), and full redistribution (so long as they are not *sold* by themselves). They can be be bundled, redistributed and sold with any software.
The fonts are distributed under the following copyright:
Copyright
Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions:
The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces.
The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera".
This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names.
The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself.
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org.
Copyright FAQ
I don't understand the resale restriction... What gives?
Bitstream is giving away these fonts, but wishes to ensure its competitors can't just drop the fonts as is into a font sale system and sell them as is. It seems fair that if Bitstream can't make money from the Bitstream Vera fonts, their competitors should not be able to do so either. You can sell the fonts as part of any software package, however.
I want to package these fonts separately for distribution and sale as part of a larger software package or system. Can I do so?
Yes. A RPM or Debian package is a "larger software package" to begin with, and you aren't selling them independently by themselves. See 1. above.
Are derivative works allowed?
Yes!
Can I change or add to the font(s)?
Yes, but you must change the name(s) of the font(s).
Under what terms are derivative works allowed?
You must change the name(s) of the fonts. This is to ensure the quality of the fonts, both to protect Bitstream and Gnome. We want to ensure that if an application has opened a font specifically of these names, it gets what it expects (though of course, using fontconfig, substitutions could still could have occurred during font opening). You must include the Bitstream copyright. Additional copyrights can be added, as per copyright law. Happy Font Hacking!
If I have improvements for Bitstream Vera, is it possible they might get adopted in future versions?
Yes. The contract between the Gnome Foundation and Bitstream has provisions for working with Bitstream to ensure quality additions to the Bitstream Vera font family. Please contact us if you have such additions. Note, that in general, we will want such additions for the entire family, not just a single font, and that you'll have to keep both Gnome and Jim Lyles, Vera's designer, happy! To make sense to add glyphs to the font, they must be stylistically in keeping with Vera's design. Vera cannot become a "ransom note" font. Jim Lyles will be providing a document describing the design elements used in Vera, as a guide and aid for people interested in contributing to Vera.
I want to sell a software package that uses these fonts: Can I do so?
Sure. Bundle the fonts with your software and sell your software with the fonts. That is the intent of the copyright.
If applications have built the names "Bitstream Vera" into them, can I override this somehow to use fonts of my choosing?
This depends on exact details of the software. Most open source systems and software (e.g., Gnome, KDE, etc.) are now converting to use fontconfig (see www.fontconfig.org) to handle font configuration, selection and substitution; it has provisions for overriding font names and substituting alternatives. An example is provided by the supplied local.conf file, which chooses the family Bitstream Vera for "sans", "serif" and "monospace". Other software (e.g., the XFree86 core server) has other mechanisms for font substitution.
-----------------------------------------------------------------------------
fntgrpcrox: all
https://github.com/olikraus/u8g2/wiki/fntgrpcrox#copyright
Reference
win_crox has been downloaded from http://www.kovrik.com/sib/russify/x-windows/ (Xrus CP 1251 fonts).
Copyright (C) 1990-1991 EWT Consulting
Portions Copyright (C) 1994-1995 Cronyx Ltd.
Modified by Serge Vakulenko, <vak@cronyx.ru>
Encoding changed to CP1251 by Rabinovich Moisei, <moisei@cs.bgu.ac.il>,$
This software may be used, modified, copied, distributed, and sold,
in both source and binary form provided that the copyright
and these terms are retained. Under no circumstances is the author
responsible for the proper functioning of this software, nor does
the author assume any responsibility for damages incurred with its use.
-----------------------------------------------------------------------------
fntgrpcu12: all
https://github.com/olikraus/u8g2/wiki/fntgrpcu12#copyright
Reference
Name: cu12
Font download location is http://sofia.nmsu.edu/~mleisher/Software/cu/
Font Copyright Statement: (c) 2001 Computing Research Lab, New Mexico State University.
License (from bdf file):
Copyright 2002 Computing Research Labs, New Mexico State University
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-----------------------------------------------------------------------------
fntgrpdafont: nokiafc22
https://github.com/olikraus/u8g2/wiki/fntgrpdafont#nokia-cellphone-nokiafc22
Reference
Download: https://www.dafont.com/nokia-cellphone.font
Copyright
This is a free font/file, distribute as you wish to who you wish. Do NOT sell this font within a CD or any other media; it's not yours and you can't make money of it. You'd rather ask me first via email, I may probably let you do it as long as it's for a good cause.
I don't know if the original Nokia font has some copyright which prevents people from making new fonts based on it. I hope not. Anyways, buy a Nokia, and I think everything's gonna be alright.
Special thanks on this version go out to Carlos Bêla (www.goldenshower.gs) and Diogo Kalil (www.sincolor.com.br) for helping me out with the Mac version of the font. It has been extensively tested to ensure it's as smooth (hint, kerning, spacing and aliasing-wise) as the pc one is.
Author
This font was done by Zeh Fernando on Fontlab 4 (www.fontlab.com) on a PC.
-----------------------------------------------------------------------------
fntgrpdafont: VCR_OSD
https://github.com/olikraus/u8g2/wiki/fntgrpdafont#vcr-osd-mono
Reference
Download: https://www.dafont.com/vcr-osd-mono.font
Copyright
dafont.com: 100% free
Author
Riciery Leal
-----------------------------------------------------------------------------
fntgrpdafont: Pixellari
https://github.com/olikraus/u8g2/wiki/fntgrpdafont#pixellari
Reference
Download: https://www.dafont.com/pixellari.font
Copyright
dafont.com: 100% free
TTF: "ZaccharyDempseyP"
Author
Zacchary Dempsey-Plante
-----------------------------------------------------------------------------
fntgrpdafont: pixelpoiiz
https://github.com/olikraus/u8g2/wiki/fntgrpdafont#pixelpoiiz
Reference
Download: https://www.dafont.com/pixelpoiiz.font
Copyright
dafont.com: 100% free
TTF: "(C) poiiz"
Author
poiiz
-----------------------------------------------------------------------------
fntgrpdafont: DigitalDisco
https://github.com/olikraus/u8g2/wiki/fntgrpdafont#digitaldisco
Reference
Download: https://www.dafont.com/digital-disco.font
Copyright
Copyright: "Public domain / GPL / OFL - 2" according to dafont.com.
Note of the author Digital Disco by jeti: A groovy, round typeface with chunky '70s charm and an optional thin style. You are free to use this font for personal or commercial projects, all I ask is that you include credit. Licensed under CC BY 4.0: https://creativecommons.org/licenses/by/4.0/ More info: https://fontenddev.com/fonts/digital-disco/
-----------------------------------------------------------------------------
fntgrpdafont: pearfont
https://github.com/olikraus/u8g2/wiki/fntgrpdafont#pearfont
Reference
Download: https://www.dafont.com/pearfont.font
Copyright
Copyright: "Public domain / GPL / OFL" according to dafont.com.
Note of the author: A really really tiny font! Originally made for my game Pear Quest. Use at your own risk. Enjoy!
Author
rubna
-----------------------------------------------------------------------------
fntgrpefont: all
https://github.com/olikraus/u8g2/wiki/fntgrpefont#copyright
efont-unicode-bdf (The /efont/ Unicode Bitmap Fonts)
/efont/ The Electronic Font Open Laboratory
http://openlab.ring.gr.jp/efont/
Kazuhiko <kazuhiko@ring.gr.jp>
Kenji Kano <kc@ring.gr.jp>
The /efont/ unicode bitmap fonts include the following bitmaps. Also
many characters are designed by /efont/ project. Please see ChangeLog
for detail.
If you want to help us in extending or improving the fonts, please see
README.contrib.
================
10 pixels
================
5x7.bdf 2001-07-18
http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
License: Public Domain
(Add 2 blank pixles to top and 1 blank pixel to bottom so as to fit 5x10.)
5x8.bdf 2001-07-18
http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
License: Public Domain
(Add 1 blank pixles to top and 1 blank pixel to bottom so as to fit 5x10.)
*** optional ***
5x10rk.bdf 5x10a.bdf knj10.bdf (naga10-1.1)
(c) Copyright 1998, 1999, NAGAO, Sadakazu
http://www.vector.co.jp/authors/VA013391/
License: Freely usable, but restricted. See README.naga10 for detail
(Japanese).
================
12 pixels
================
gulim12.bdf
http://zinc.skku.ac.kr/~wkpark/baekmuk/20001116/
(c) Copyright 1986-2000, Hwan Design Inc.
License: see 'README.baekmuk'
K12-[12].bdf 0.15
Created by Toshiyuki Imamura
http://www.mars.sphere.ne.jp/imamura/jisx0213.html
License: Public Domain
shnmk12.bdf, shnm6x12r.bdf (shinonome-0.9.6)
Maintained by /efont/
http://openlab.ring.gr.jp/efont/shinonome/
License: Public Domain
6x12.bdf 2001-07-18
http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
License: Public Domain
(Most characters are shifted 1 dot right so as to conform to the design
rule of efont-unicode-bdf.)
================
14 pixels
================
dotum14.bdf
(c) Copyright 1986-2000, Hwan Design Inc.
License: see 'README.baekmuk'
(Modify 2628, 262A, 262B, 2638, 263A, 263B, 2651, 2652, 2655, 2656,
2659, 265A, 265D, 2663 so as to fit 14x14.)
johab14.hex
(c) Copyright 2000 /efont/
License: See COPYRIGHT
K14-[12].bdf 0.99a
Created by Toshiyuki Imamura
http://www.mars.sphere.ne.jp/imamura/jisx0213.html
License: Public Domain
shnmk14.bdf (shinonome-0.9.6)
Maintained by /efont/
http://openlab.ring.gr.jp/efont/shinonome/
License: Public Domain
thai14.bdf (GNU intlfonts-1.2)
Created by Manop Wongsaisuwan <manop@ee.chula.edu>.
License: Public Domain
lao14-mule.bdf (GNU intlfonts-1.2)
Created by Sihattha Rasphone <sihattha@jaist.ac.jp>.
License: Public Domain
7x14.bdf 2001-07-18
http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
License: Public Domain
(Most characters are shifted 1 dot right so as to conform to the design
rule of efont-unicode-bdf.)
etl14-unicode.bdf 2000-02-18
ftp://ftp.ring.gr.jp/pub/X/opengroup/contrib/fonts/
License: Public Domain
================
16 pixels
================
dotum16.bdf
(c) Copyright 1986-2000, Hwan Design Inc.
License: see 'README.baekmuk'
(Modify 2566, 2628, 262A, 262B, 2638, 263A, 263B, 2651, 2652, 2655,
2656, 2659, 265A, 2757, 2768, 3477 so as to fit 16x16.)
taipei16.bdf (GNU intlfonts-1.2)
ftp.ifcss.org: /software/fonts
License: Public Domain
gb16fs.bdf (GNU intlfonts-1.2)
Copyright (c) 1988 The Institute of Software, Academia Sinica.
License: See below *1
jiskan16-2000-[12].bdf 1.03
Created by Toshiyuki Imamura and HANATAKA Shinya
http://www.mars.sphere.ne.jp/imamura/jisx0213.html
License: Public Domain
shnmk16.bdf (shinonome-0.9.6)
Maintained by /efont/
http://openlab.ring.gr.jp/efont/shinonome/
License: Public Domain
thai16.bdf (GNU intlfonts-1.2)
Created by Manop Wongsaisuwan <manop@ee.chula.edu>.
License: Public Domain
lao16-mule.bdf (GNU intlfonts-1.2)
Created by Sihattha Rasphone <sihattha@jaist.ac.jp>.
License: Public Domain
ind16-uni.bdf (GNU intlfonts-1.2)
License: Public Domain
8x13.bdf 2001-07-18
http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
License: Public Domain
(Add 2 blank pixles to top and 1 blank pixel to bottom so as to fit 8x16.)
etl16-unicode.bdf 2000-02-18
ftp://ftp.ring.gr.jp/pub/X/opengroup/contrib/fonts/
License: Public Domain
================
24 pixels
================
taipei24.bdf (GNU intlfonts-1.2)
ftp.ifcss.org: /software/fonts
License: Public Domain
gb24st.bdf (GNU intlfonts-1.2)
Copyright (c) 1988 The Institute of Software, Academia Sinica.
License: See below *1
johab24.hex (based on hanglm24.bdf)
(c) Copyright 2001 /efont/
License: See COPYRIGHT
hanglm24.bdf (GNU intlfonts-1.2)
Copyright (c) 1987, 1988 Daewoo Electronics Co.,Ltd.
License: X License
jiskan24.bdf (GNU intlfonts-1.2)
Copyright 1984, Japanese Industrial Standard
License: Public Domain
etl24-unicode.bdf 2000-02-18
ftp://ftp.ring.gr.jp/pub/X/opengroup/contrib/fonts/
License: Public Domain
================
Tools
================
mkbold
Sadakazu Nagao <snagao@cs.titech.ac.jp>
http://hp.vector.co.jp/authors/VA013391/tools/#mkbold
Modified by Yasuyuki Furukawa <yasu@on.cs.keio.ac.jp>
License: Public Domain
mkitalic (Perl version)
Yusuke Shinnyama <euske@cl.cs.titech.ac.jp>
License: Public Domain
*1 gb16fs.bdf, gb24st.bdf
Copyright (C) 1988 The Institute of Software, Academia Sinica.
Correspondence Address: P.O.Box 8718, Beijing, China 100080.
Permission to use, copy, modify, and distribute this software and
its documentation for any purpose and without fee is hereby granted,
provided that the above copyright notices appear in all copies and
that both those copyright notices and this permission notice appear
in supporting documentation, and that the name of "the Institute of
Software, Academia Sinica" not be used in advertising or publicity
pertaining to distribution of the software without specific, written
prior permission. The Institute of Software, Academia Sinica,
makes no representations about the suitability of this software
for any purpose. It is provided "as is" without express or
implied warranty.
THE INSTITUTE OF SOFTWARE, ACADEMIA SINICA, DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE INSTITUTE OF
SOFTWARE, ACADEMIA SINICA, BE LIABLE FOR ANY SPECIAL, INDIRECT OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
File README.baekmuk
(c) Copyright 1986-2000, Hwan Design Inc.
You are hereby granted permission under all Hwan Design propriety rights
to use, copy, modify, sublicense, sell, and redistribute the 4 Baekmuk
truetype outline fonts for any purpose and without restriction;
provided, that this notice is left intact on all copies of such fonts
and that Hwan Design Int.'s trademark is acknowledged as shown below
on all copies of the 4 Baekmuk truetype fonts.
BAEKMUK BATANG is a registered trademark of Hwan Design Inc.
BAEKMUK GULIM is a registered trademark of Hwan Design Inc.
BAEKMUK DOTUM is a registered trademark of Hwan Design Inc.
BAEKMUK HEADLINE is a registered trademark of Hwan Design Inc.
File Copyright
(c) Copyright 2000-2001 /efont/ The Electronic Font Open Laboratory.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the team nor the names of its contributors
may be used to endorse or promote products derived from this font
without specific prior written permission.
THIS FONT IS PROVIDED BY THE TEAM AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE TEAM OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS FONT, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
File README.naga10
This file is in japanese only, please download here.
-----------------------------------------------------------------------------
fntgrpextant: all
https://github.com/olikraus/u8g2/wiki/fntgrpextant#copyright
HabsburgChancery by Extant license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=803
OrdinaryBasis by Extant license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=804
Secretary Hand by Extant license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1066
MissingPlanet by Extant license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3730
PixelMordred by Extant license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=735
-----------------------------------------------------------------------------
fntgrpfontstruct: amstrad_cpc_extended
https://github.com/olikraus/u8g2/wiki/fntgrpfontstruct#amstrad-cpc-extended
Additionally encodings 128 to 159 had been added to this font by this project.
Reference
Link: http://fontstruct.com/fontstructions/show/25590
Copyright
The FontStruction "Amstrad CPC extended" (http://fontstruct.com/fontstructions/show/25590) by "ruboku" is licensed under a Creative Commons Attribution license (http://creativecommons.org/licenses/by/3.0/).
-----------------------------------------------------------------------------
fntgrpfontstruct: lucasfont_alternate
https://github.com/olikraus/u8g2/wiki/fntgrpfontstruct#lucasfont-alternate
Reference
Link: http://fontstruct.com/fontstructions/show/lucasfont_alternate
Copyright
The FontStruction "Lucasfont Alternate" (http://fontstruct.com/fontstructions/show/653734) by Patrick Lauke is licensed under a Creative Commons Attribution license (http://creativecommons.org/licenses/by/3.0/). "Lucasfont Alternate" was originally cloned (copied) from the FontStruction "Lucasfont" (http://fontstruct.com/FontStructions/show/653577) by Patrick Lauke, which is licensed under a Creative Commons Attribution license (http://creativecommons.org/licenses/by/3.0/).
-----------------------------------------------------------------------------
fntgrpfontstruct: m_c_kids_nes_credits_font
https://github.com/olikraus/u8g2/wiki/fntgrpfontstruct#reference-16
Reference
Link: https://fontstruct.com/fontstructions/show/1963150/m-c-kids-nes-credits-font
Copyright
The FontStruction “M.C. Kids (NES) Credits Font” (https://fontstruct.com/fontstructions/show/1963150) by “ParadigmTheGreat” is licensed under a Creative Commons CC0 Public Domain Dedication license (http://creativecommons.org/publicdomain/zero/1.0/).
-----------------------------------------------------------------------------
fntgrpfontstruct: p01type
https://github.com/olikraus/u8g2/wiki/fntgrpfontstruct#p01type
Reference
Link: http://fontstruct.com/fontstructions/show/p01type
Copyright
The FontStruction "P01type" (http://fontstruct.com/fontstructions/show/668719) by Patrick Lauke is licensed under a Creative Commons Attribution license (http://creativecommons.org/licenses/by/3.0/).
-----------------------------------------------------------------------------
fntgrpfreeuniversal: all
https://github.com/olikraus/u8g2/wiki/fntgrpfreeuniversal#copyright
Download location at openfontlibrary.org: http://openfontlibrary.org/font/freeuniversal
Copyright
License: OFL (SIL Open Font License)
Font Copyright Statement: FreeUniveral (c) Stephen Wilson 2009 Original Font Sil-Sophia Copyright (c) SIL International, 1994-2008.
-----------------------------------------------------------------------------
fntgrpgeoff: all
https://github.com/olikraus/u8g2/wiki/fntgrpgeoff#copyright
BitCasual by geoff license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=353 N, U, R, F, all
Koleeko by geoff license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=748 N, U, R
TenFatGuys by Geoff license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=332 N, U, R, all
TenThinGuys by Geoff license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=335 N, U, R, all
TenThinnerGuys by Geoff license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=338 N, U, R, all
TenStamps by Geoff license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=329 N, U, R, F
TwelveDings by Geoff license : (Public Domain) http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=330 all
-----------------------------------------------------------------------------
fntgrpgilesbooth: all
https://github.com/olikraus/u8g2/wiki/fntgrpgilesBooth#copyright
Bauhaus2015 by GilesBooth http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=2048 license : (Creative Commons Attribution)