fontist 3.0.0 → 3.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/discover-fonts.yml +76 -0
  3. data/.github/workflows/rake.yml +103 -8
  4. data/.rubocop_todo.yml +179 -139
  5. data/TODO.audit-docs.md +164 -0
  6. data/TODO.improve-docs.md +114 -0
  7. data/TODO.upgrade-excavate.md +107 -0
  8. data/docs/guide/formulas.md +37 -1
  9. data/docs/guide/how-it-works.md +13 -0
  10. data/docs/guide/platforms/windows.md +67 -0
  11. data/fontist.gemspec +2 -2
  12. data/lib/fontist/cache/store.rb +1 -1
  13. data/lib/fontist/cli.rb +2 -1
  14. data/lib/fontist/errors.rb +24 -3
  15. data/lib/fontist/extract.rb +1 -0
  16. data/lib/fontist/font.rb +2 -2
  17. data/lib/fontist/font_finder.rb +1 -2
  18. data/lib/fontist/font_installer.rb +16 -14
  19. data/lib/fontist/format_matcher.rb +4 -2
  20. data/lib/fontist/format_spec.rb +1 -1
  21. data/lib/fontist/formula.rb +15 -3
  22. data/lib/fontist/formula_picker.rb +5 -3
  23. data/lib/fontist/import/create_formula.rb +5 -0
  24. data/lib/fontist/import/formula_builder.rb +10 -1
  25. data/lib/fontist/import/google/data_sources/github.rb +4 -4
  26. data/lib/fontist/import/google/font_database.rb +8 -8
  27. data/lib/fontist/import/google/formula_builders/formula_builder_v4.rb +1 -1
  28. data/lib/fontist/import/google/formula_builders/formula_builder_v5.rb +9 -3
  29. data/lib/fontist/import/google/metadata_adapter.rb +6 -6
  30. data/lib/fontist/import/google/models/font_family.rb +1 -1
  31. data/lib/fontist/import/import_display.rb +5 -5
  32. data/lib/fontist/import/macos_importer.rb +1 -1
  33. data/lib/fontist/import/upgrade_formulas.rb +1 -3
  34. data/lib/fontist/import/v4_to_v5_migrator.rb +2 -1
  35. data/lib/fontist/import/windows/fod_capabilities.yml +654 -0
  36. data/lib/fontist/import/windows/windows_license.txt +4 -0
  37. data/lib/fontist/import/windows.rb +162 -0
  38. data/lib/fontist/import.rb +3 -1
  39. data/lib/fontist/import_source.rb +1 -0
  40. data/lib/fontist/indexes/directory_snapshot.rb +2 -2
  41. data/lib/fontist/indexes/incremental_scanner.rb +2 -2
  42. data/lib/fontist/indexes.rb +8 -4
  43. data/lib/fontist/macos/catalog/asset.rb +2 -2
  44. data/lib/fontist/macos_import_source.rb +0 -1
  45. data/lib/fontist/repo.rb +1 -1
  46. data/lib/fontist/resource.rb +5 -1
  47. data/lib/fontist/resources/windows_fod_resource.rb +51 -0
  48. data/lib/fontist/resources.rb +1 -0
  49. data/lib/fontist/system_index.rb +5 -5
  50. data/lib/fontist/utils/downloader.rb +8 -3
  51. data/lib/fontist/utils/system.rb +19 -2
  52. data/lib/fontist/validation.rb +1 -1
  53. data/lib/fontist/validator.rb +2 -2
  54. data/lib/fontist/version.rb +1 -1
  55. data/lib/fontist/windows_fod_metadata.rb +83 -0
  56. data/lib/fontist/windows_import_source.rb +54 -0
  57. data/lib/fontist.rb +4 -1
  58. data/script/generate_windows_formulas.rb +24 -0
  59. data/script/validate_windows_fod_ci.rb +175 -0
  60. metadata +17 -6
@@ -0,0 +1,654 @@
1
+ ---
2
+ capabilities:
3
+ "Language.Fonts.Arab~~~und-ARAB~0.0.1.0":
4
+ description: Arabic Script Supplemental Fonts
5
+ fonts:
6
+ Aldhabi:
7
+ files: [Aldhabi.ttf]
8
+ styles:
9
+ - { type: Regular, font: Aldhabi.ttf }
10
+ Andalus:
11
+ files: [Andlso.ttf]
12
+ styles:
13
+ - { type: Regular, font: Andlso.ttf }
14
+ Arabic Typesetting:
15
+ files: [Arabtype.ttf]
16
+ styles:
17
+ - { type: Regular, font: Arabtype.ttf }
18
+ Microsoft Uighur:
19
+ files: [Msuighur.ttf, MSUighub.ttf]
20
+ styles:
21
+ - { type: Regular, font: Msuighur.ttf }
22
+ - { type: Bold, font: MSUighub.ttf }
23
+ Sakkal Majalla:
24
+ files: [Majalla.ttf, Majallab.ttf]
25
+ styles:
26
+ - { type: Regular, font: Majalla.ttf }
27
+ - { type: Bold, font: Majallab.ttf }
28
+ Simplified Arabic:
29
+ files: [Simpo.ttf, Simpbdo.ttf, Simpfxo.ttf]
30
+ styles:
31
+ - { type: Regular, font: Simpo.ttf }
32
+ - { type: Bold, font: Simpbdo.ttf }
33
+ Simplified Arabic Fixed:
34
+ files: [Simpfxo.ttf]
35
+ styles:
36
+ - { type: Regular, font: Simpfxo.ttf }
37
+ Traditional Arabic:
38
+ files: [Trado.ttf, Tradbdo.ttf]
39
+ styles:
40
+ - { type: Regular, font: Trado.ttf }
41
+ - { type: Bold, font: Tradbdo.ttf }
42
+ Urdu Typesetting:
43
+ files: [UrdType.ttf, UrdTypeb.ttf]
44
+ styles:
45
+ - { type: Regular, font: UrdType.ttf }
46
+ - { type: Bold, font: UrdTypeb.ttf }
47
+
48
+ "Language.Fonts.Beng~~~und-BENG~0.0.1.0":
49
+ description: Bangla Script Supplemental Fonts
50
+ fonts:
51
+ Shonar Bangla:
52
+ files: [Shonar.ttf, Shonarb.ttf]
53
+ styles:
54
+ - { type: Regular, font: Shonar.ttf }
55
+ - { type: Bold, font: Shonarb.ttf }
56
+ Vrinda:
57
+ files: [Vrinda.ttf, Vrindab.ttf]
58
+ styles:
59
+ - { type: Regular, font: Vrinda.ttf }
60
+ - { type: Bold, font: Vrindab.ttf }
61
+
62
+ "Language.Fonts.Cher~~~und-CHER~0.0.1.0":
63
+ description: Cherokee Supplemental Fonts
64
+ fonts:
65
+ Plantagenet Cherokee:
66
+ files: [Plantc.ttf]
67
+ styles:
68
+ - { type: Regular, font: Plantc.ttf }
69
+
70
+ "Language.Fonts.Deva~~~und-DEVA~0.0.1.0":
71
+ description: Devanagari Supplemental Fonts
72
+ fonts:
73
+ Aparajita:
74
+ files: [Aparaj.ttf, Aparaji.ttf, Aparajb.ttf, Aparajbi.ttf]
75
+ styles:
76
+ - { type: Regular, font: Aparaj.ttf }
77
+ - { type: Italic, font: Aparaji.ttf }
78
+ - { type: Bold, font: Aparajb.ttf }
79
+ - { type: Bold Italic, font: Aparajbi.ttf }
80
+ Kokila:
81
+ files: [Kokila.ttf, Kokilai.ttf, Kokilab.ttf, Kokilabi.ttf]
82
+ styles:
83
+ - { type: Regular, font: Kokila.ttf }
84
+ - { type: Italic, font: Kokilai.ttf }
85
+ - { type: Bold, font: Kokilab.ttf }
86
+ - { type: Bold Italic, font: Kokilabi.ttf }
87
+ Mangal:
88
+ files: [Mangal.ttf, MangalB.ttf]
89
+ styles:
90
+ - { type: Regular, font: Mangal.ttf }
91
+ - { type: Bold, font: MangalB.ttf }
92
+ Sanskrit Text:
93
+ files: [Sanskr.ttf]
94
+ styles:
95
+ - { type: Regular, font: Sanskr.ttf }
96
+ Utsaah:
97
+ files: [Utsaah.ttf, Utsaahi.ttf, Utsaahb.ttf, Utsaahbi.ttf]
98
+ styles:
99
+ - { type: Regular, font: Utsaah.ttf }
100
+ - { type: Italic, font: Utsaahi.ttf }
101
+ - { type: Bold, font: Utsaahb.ttf }
102
+ - { type: Bold Italic, font: Utsaahbi.ttf }
103
+
104
+ "Language.Fonts.Ethi~~~und-ETHI~0.0.1.0":
105
+ description: Ethiopic Supplemental Fonts
106
+ fonts:
107
+ Nyala:
108
+ files: [Nyala.ttf]
109
+ styles:
110
+ - { type: Regular, font: Nyala.ttf }
111
+
112
+ "Language.Fonts.Gujr~~~und-GUJR~0.0.1.0":
113
+ description: Gujarati Supplemental Fonts
114
+ fonts:
115
+ Shruti:
116
+ files: [Shruti.ttf, Shrutib.ttf]
117
+ styles:
118
+ - { type: Regular, font: Shruti.ttf }
119
+ - { type: Bold, font: Shrutib.ttf }
120
+
121
+ "Language.Fonts.Guru~~~und-GURU~0.0.1.0":
122
+ description: Gurmukhi Supplemental Fonts
123
+ fonts:
124
+ Raavi:
125
+ files: [Raavi.ttf, Raavib.ttf]
126
+ styles:
127
+ - { type: Regular, font: Raavi.ttf }
128
+ - { type: Bold, font: Raavib.ttf }
129
+
130
+ "Language.Fonts.Hans~~~und-HANS~0.0.1.0":
131
+ description: Chinese (Simplified) Supplemental Fonts
132
+ fonts:
133
+ DengXian:
134
+ files: [Dengl.ttf, Deng.ttf, Dengb.ttf]
135
+ styles:
136
+ - { type: Light, font: Dengl.ttf }
137
+ - { type: Regular, font: Deng.ttf }
138
+ - { type: Bold, font: Dengb.ttf }
139
+ FangSong:
140
+ files: [Simfang.ttf]
141
+ styles:
142
+ - { type: Regular, font: Simfang.ttf }
143
+ KaiTi:
144
+ files: [Simkai.ttf]
145
+ styles:
146
+ - { type: Regular, font: Simkai.ttf }
147
+ SimHei:
148
+ files: [Simhei.ttf]
149
+ styles:
150
+ - { type: Regular, font: Simhei.ttf }
151
+
152
+ "Language.Fonts.Hant~~~und-HANT~0.0.1.0":
153
+ description: Chinese (Traditional) Supplemental Fonts
154
+ fonts:
155
+ DFKai-SB:
156
+ files: [Kaiu.ttf]
157
+ styles:
158
+ - { type: Regular, font: Kaiu.ttf }
159
+ MingLiU:
160
+ files: [Mingliu.ttc]
161
+ styles:
162
+ - { type: Regular, font: Mingliu.ttc }
163
+ MingLiU_HKSCS:
164
+ files: [Mingliu.ttc]
165
+ styles:
166
+ - { type: Regular, font: Mingliu.ttc }
167
+ PMingLiU:
168
+ files: [Mingliu.ttc]
169
+ styles:
170
+ - { type: Regular, font: Mingliu.ttc }
171
+
172
+ "Language.Fonts.Hebr~~~und-HEBR~0.0.1.0":
173
+ description: Hebrew Supplemental Fonts
174
+ fonts:
175
+ Aharoni Bold:
176
+ files: [Ahronbd.ttf]
177
+ styles:
178
+ - { type: Bold, font: Ahronbd.ttf }
179
+ David:
180
+ files: [David.ttf, Davidbd.ttf]
181
+ styles:
182
+ - { type: Regular, font: David.ttf }
183
+ - { type: Bold, font: Davidbd.ttf }
184
+ FrankRuehl:
185
+ files: [Frank.ttf]
186
+ styles:
187
+ - { type: Regular, font: Frank.ttf }
188
+ Gisha:
189
+ files: [Gisha.ttf, Gishabd.ttf]
190
+ styles:
191
+ - { type: Regular, font: Gisha.ttf }
192
+ - { type: Bold, font: Gishabd.ttf }
193
+ Levenim MT:
194
+ files: [Lvnm.ttf, Lvnmbd.ttf]
195
+ styles:
196
+ - { type: Regular, font: Lvnm.ttf }
197
+ - { type: Bold, font: Lvnmbd.ttf }
198
+ Miriam:
199
+ files: [Mriam.ttf]
200
+ styles:
201
+ - { type: Regular, font: Mriam.ttf }
202
+ Miriam Fixed:
203
+ files: [Mriamc.ttf]
204
+ styles:
205
+ - { type: Regular, font: Mriamc.ttf }
206
+ Narkisim:
207
+ files: [Nrkis.ttf]
208
+ styles:
209
+ - { type: Regular, font: Nrkis.ttf }
210
+ Rod:
211
+ files: [Rod.ttf]
212
+ styles:
213
+ - { type: Regular, font: Rod.ttf }
214
+
215
+ "Language.Fonts.Jpan~~~und-JPAN~0.0.1.0":
216
+ description: Japanese Supplemental Fonts
217
+ fonts:
218
+ BIZ UDGothic:
219
+ files: [BIZ-UDGothicR.ttc, BIZ-UDGothicB.ttc]
220
+ styles:
221
+ - { type: Regular, font: BIZ-UDGothicR.ttc }
222
+ - { type: Bold, font: BIZ-UDGothicB.ttc }
223
+ BIZ UDPGothic:
224
+ files: [BIZ-UDGothicR.ttc, BIZ-UDGothicB.ttc]
225
+ styles:
226
+ - { type: Regular, font: BIZ-UDGothicR.ttc }
227
+ - { type: Bold, font: BIZ-UDGothicB.ttc }
228
+ BIZ UDMincho Medium:
229
+ files: [BIZ-UDMinchoM.ttc]
230
+ styles:
231
+ - { type: Medium, font: BIZ-UDMinchoM.ttc }
232
+ BIZ UDPMincho Medium:
233
+ files: [BIZ-UDMinchoM.ttc]
234
+ styles:
235
+ - { type: Medium, font: BIZ-UDMinchoM.ttc }
236
+ Meiryo:
237
+ files: [Meiryo.ttc, Meiryob.ttc]
238
+ styles:
239
+ - { type: Regular, font: Meiryo.ttc }
240
+ - { type: Italic, font: Meiryo.ttc }
241
+ - { type: Bold, font: Meiryob.ttc }
242
+ - { type: Bold Italic, font: Meiryob.ttc }
243
+ Meiryo UI:
244
+ files: [Meiryo.ttc, Meiryob.ttc]
245
+ styles:
246
+ - { type: Regular, font: Meiryo.ttc }
247
+ - { type: Italic, font: Meiryo.ttc }
248
+ - { type: Bold, font: Meiryob.ttc }
249
+ - { type: Bold Italic, font: Meiryob.ttc }
250
+ MS Mincho:
251
+ files: [Msmincho.ttc]
252
+ styles:
253
+ - { type: Regular, font: Msmincho.ttc }
254
+ MS PMincho:
255
+ files: [Msmincho.ttc]
256
+ styles:
257
+ - { type: Regular, font: Msmincho.ttc }
258
+ UD Digi Kyokasho N-B:
259
+ files: [UDDigiKyokashoN-B.ttc]
260
+ styles:
261
+ - { type: Bold, font: UDDigiKyokashoN-B.ttc }
262
+ UD Digi Kyokasho NK-B:
263
+ files: [UDDigiKyokashoN-B.ttc]
264
+ styles:
265
+ - { type: Bold, font: UDDigiKyokashoN-B.ttc }
266
+ UD Digi Kyokasho NK-R:
267
+ files: [UDDigiKyokashoN-R.ttc]
268
+ styles:
269
+ - { type: Regular, font: UDDigiKyokashoN-R.ttc }
270
+ UD Digi Kyokasho NP-B:
271
+ files: [UDDigiKyokashoN-B.ttc]
272
+ styles:
273
+ - { type: Bold, font: UDDigiKyokashoN-B.ttc }
274
+ UD Digi Kyokasho NP-R:
275
+ files: [UDDigiKyokashoN-R.ttc]
276
+ styles:
277
+ - { type: Regular, font: UDDigiKyokashoN-R.ttc }
278
+ UD Digi Kyokasho N-R:
279
+ files: [UDDigiKyokashoN-R.ttc]
280
+ styles:
281
+ - { type: Regular, font: UDDigiKyokashoN-R.ttc }
282
+ Yu Mincho:
283
+ files: [Yuminl.ttf, Yumin.ttf, Yumindb.ttf]
284
+ styles:
285
+ - { type: Light, font: Yuminl.ttf }
286
+ - { type: Regular, font: Yumin.ttf }
287
+ - { type: Demibold, font: Yumindb.ttf }
288
+
289
+ "Language.Fonts.Khmr~~~und-KHMR~0.0.1.0":
290
+ description: Khmer Supplemental Fonts
291
+ fonts:
292
+ DaunPenh:
293
+ files: [Daunpenh.ttf]
294
+ styles:
295
+ - { type: Regular, font: Daunpenh.ttf }
296
+ Khmer UI:
297
+ files: [KhmerUI.ttf, KhmerUIB.ttf]
298
+ styles:
299
+ - { type: Regular, font: KhmerUI.ttf }
300
+ - { type: Bold, font: KhmerUIB.ttf }
301
+ MoolBoran:
302
+ files: [Moolbor.ttf]
303
+ styles:
304
+ - { type: Regular, font: Moolbor.ttf }
305
+
306
+ "Language.Fonts.Knda~~~und-KNDA~0.0.1.0":
307
+ description: Kannada Supplemental Fonts
308
+ fonts:
309
+ Tunga:
310
+ files: [Tunga.ttf, Tungab.ttf]
311
+ styles:
312
+ - { type: Regular, font: Tunga.ttf }
313
+ - { type: Bold, font: Tungab.ttf }
314
+
315
+ "Language.Fonts.Kore~~~und-KORE~0.0.1.0":
316
+ description: Korean Supplemental Fonts
317
+ fonts:
318
+ Batang:
319
+ files: [Batang.ttc]
320
+ styles:
321
+ - { type: Regular, font: Batang.ttc }
322
+ BatangChe:
323
+ files: [Batang.ttc]
324
+ styles:
325
+ - { type: Regular, font: Batang.ttc }
326
+ Dotum:
327
+ files: [Gulim.ttc]
328
+ styles:
329
+ - { type: Regular, font: Gulim.ttc }
330
+ DotumChe:
331
+ files: [Gulim.ttc]
332
+ styles:
333
+ - { type: Regular, font: Gulim.ttc }
334
+ Gulim:
335
+ files: [Gulim.ttc]
336
+ styles:
337
+ - { type: Regular, font: Gulim.ttc }
338
+ GulimChe:
339
+ files: [Gulim.ttc]
340
+ styles:
341
+ - { type: Regular, font: Gulim.ttc }
342
+ Gungsuh:
343
+ files: [Batang.ttc]
344
+ styles:
345
+ - { type: Regular, font: Batang.ttc }
346
+ GungsuhChe:
347
+ files: [Batang.ttc]
348
+ styles:
349
+ - { type: Regular, font: Batang.ttc }
350
+
351
+ "Language.Fonts.Laoo~~~und-LAOO~0.0.1.0":
352
+ description: Lao Supplemental Fonts
353
+ fonts:
354
+ DokChampa:
355
+ files: [Dokchamp.ttf]
356
+ styles:
357
+ - { type: Regular, font: Dokchamp.ttf }
358
+ Lao UI:
359
+ files: [Laoui.ttf, Laouib.ttf]
360
+ styles:
361
+ - { type: Regular, font: Laoui.ttf }
362
+ - { type: Bold, font: Laouib.ttf }
363
+
364
+ "Language.Fonts.Mlym~~~und-MLYM~0.0.1.0":
365
+ description: Malayalam Supplemental Fonts
366
+ fonts:
367
+ Kartika:
368
+ files: [Kartika.ttf, Kartikab.ttf]
369
+ styles:
370
+ - { type: Regular, font: Kartika.ttf }
371
+ - { type: Bold, font: Kartikab.ttf }
372
+
373
+ "Language.Fonts.Orya~~~und-ORYA~0.0.1.0":
374
+ description: Odia Supplemental Fonts
375
+ fonts:
376
+ Kalinga:
377
+ files: [Kalinga.ttf, Kalingab.ttf]
378
+ styles:
379
+ - { type: Regular, font: Kalinga.ttf }
380
+ - { type: Bold, font: Kalingab.ttf }
381
+
382
+ "Language.Fonts.Sinh~~~und-SINH~0.0.1.0":
383
+ description: Sinhala Supplemental Fonts
384
+ fonts:
385
+ Iskoola Pota:
386
+ files: [Iskpota.ttf, Iskpotab.ttf]
387
+ styles:
388
+ - { type: Regular, font: Iskpota.ttf }
389
+ - { type: Bold, font: Iskpotab.ttf }
390
+
391
+ "Language.Fonts.Syrc~~~und-SYRC~0.0.1.0":
392
+ description: Syriac Supplemental Fonts
393
+ fonts:
394
+ Estrangelo Edessa:
395
+ files: [Estre.ttf]
396
+ styles:
397
+ - { type: Regular, font: Estre.ttf }
398
+
399
+ "Language.Fonts.Taml~~~und-TAML~0.0.1.0":
400
+ description: Tamil Supplemental Fonts
401
+ fonts:
402
+ Latha:
403
+ files: [Latha.ttf, Lathab.ttf]
404
+ styles:
405
+ - { type: Regular, font: Latha.ttf }
406
+ - { type: Bold, font: Lathab.ttf }
407
+ Vijaya:
408
+ files: [Vijaya.ttf, Vijayab.ttf]
409
+ styles:
410
+ - { type: Regular, font: Vijaya.ttf }
411
+ - { type: Bold, font: Vijayab.ttf }
412
+
413
+ "Language.Fonts.Telu~~~und-TELU~0.0.1.0":
414
+ description: Telugu Supplemental Fonts
415
+ fonts:
416
+ Gautami:
417
+ files: [Gautami.ttf, Gautamib.ttf]
418
+ styles:
419
+ - { type: Regular, font: Gautami.ttf }
420
+ - { type: Bold, font: Gautamib.ttf }
421
+ Vani:
422
+ files: [Vani.ttf, Vanib.ttf]
423
+ styles:
424
+ - { type: Regular, font: Vani.ttf }
425
+ - { type: Bold, font: Vanib.ttf }
426
+
427
+ "Language.Fonts.Thai~~~und-THAI~0.0.1.0":
428
+ description: Thai Supplemental Fonts
429
+ fonts:
430
+ Angsana New:
431
+ files: [Angsana.ttc]
432
+ styles:
433
+ - { type: Regular, font: Angsana.ttc }
434
+ - { type: Italic, font: Angsana.ttc }
435
+ - { type: Bold, font: Angsana.ttc }
436
+ - { type: Bold Italic, font: Angsana.ttc }
437
+ AngsanaUPC:
438
+ files: [Angsana.ttc]
439
+ styles:
440
+ - { type: Regular, font: Angsana.ttc }
441
+ - { type: Italic, font: Angsana.ttc }
442
+ - { type: Bold, font: Angsana.ttc }
443
+ - { type: Bold Italic, font: Angsana.ttc }
444
+ Browallia New:
445
+ files: [Browalia.ttc]
446
+ styles:
447
+ - { type: Regular, font: Browalia.ttc }
448
+ - { type: Italic, font: Browalia.ttc }
449
+ - { type: Bold, font: Browalia.ttc }
450
+ - { type: Bold Italic, font: Browalia.ttc }
451
+ BrowalliaUPC:
452
+ files: [Browalia.ttc]
453
+ styles:
454
+ - { type: Regular, font: Browalia.ttc }
455
+ - { type: Italic, font: Browalia.ttc }
456
+ - { type: Bold, font: Browalia.ttc }
457
+ - { type: Bold Italic, font: Browalia.ttc }
458
+ Cordia New:
459
+ files: [Cordia.ttc]
460
+ styles:
461
+ - { type: Regular, font: Cordia.ttc }
462
+ - { type: Italic, font: Cordia.ttc }
463
+ - { type: Bold, font: Cordia.ttc }
464
+ - { type: Bold Italic, font: Cordia.ttc }
465
+ CordiaUPC:
466
+ files: [Cordia.ttc]
467
+ styles:
468
+ - { type: Regular, font: Cordia.ttc }
469
+ - { type: Italic, font: Cordia.ttc }
470
+ - { type: Bold, font: Cordia.ttc }
471
+ - { type: Bold Italic, font: Cordia.ttc }
472
+ DilleniaUPC:
473
+ files: [Upcdl.ttf, Upcdi.ttf, Upcdb.ttf, Upcdbi.ttf]
474
+ styles:
475
+ - { type: Regular, font: Upcdl.ttf }
476
+ - { type: Italic, font: Upcdi.ttf }
477
+ - { type: Bold, font: Upcdb.ttf }
478
+ - { type: Bold Italic, font: Upcdbi.ttf }
479
+ EucrosiaUPC:
480
+ files: [Upcel.ttf, Upcei.ttf, Upceb.ttf, Upcebi.ttf]
481
+ styles:
482
+ - { type: Regular, font: Upcel.ttf }
483
+ - { type: Italic, font: Upcei.ttf }
484
+ - { type: Bold, font: Upceb.ttf }
485
+ - { type: Bold Italic, font: Upcebi.ttf }
486
+ FreesiaUPC:
487
+ files: [Upcfl.ttf, Upcfi.ttf, Upcfb.ttf, Upcfbi.ttf]
488
+ styles:
489
+ - { type: Regular, font: Upcfl.ttf }
490
+ - { type: Italic, font: Upcfi.ttf }
491
+ - { type: Bold, font: Upcfb.ttf }
492
+ - { type: Bold Italic, font: Upcfbi.ttf }
493
+ IrisUPC:
494
+ files: [Upcil.ttf, Upcii.ttf, Upcib.ttf, Upcibi.ttf]
495
+ styles:
496
+ - { type: Regular, font: Upcil.ttf }
497
+ - { type: Italic, font: Upcii.ttf }
498
+ - { type: Bold, font: Upcib.ttf }
499
+ - { type: Bold Italic, font: Upcibi.ttf }
500
+ JasmineUPC:
501
+ files: [Upcjl.ttf, Upcji.ttf, Upcjb.ttf, Upcjbi.ttf]
502
+ styles:
503
+ - { type: Regular, font: Upcjl.ttf }
504
+ - { type: Italic, font: Upcji.ttf }
505
+ - { type: Bold, font: Upcjb.ttf }
506
+ - { type: Bold Italic, font: Upcjbi.ttf }
507
+ KodchiangUPC:
508
+ files: [Upckl.ttf, Upcki.ttf, Upckb.ttf, Upckbi.ttf]
509
+ styles:
510
+ - { type: Regular, font: Upckl.ttf }
511
+ - { type: Italic, font: Upcki.ttf }
512
+ - { type: Bold, font: Upckb.ttf }
513
+ - { type: Bold Italic, font: Upckbi.ttf }
514
+ Leelawadee:
515
+ files: [Leelawad.ttf, Leelawdb.ttf]
516
+ styles:
517
+ - { type: Regular, font: Leelawad.ttf }
518
+ - { type: Bold, font: Leelawdb.ttf }
519
+ LilyUPC:
520
+ files: [Upcll.ttf, Upcli.ttf, Upclb.ttf, Upclbi.ttf]
521
+ styles:
522
+ - { type: Regular, font: Upcll.ttf }
523
+ - { type: Italic, font: Upcli.ttf }
524
+ - { type: Bold, font: Upclb.ttf }
525
+ - { type: Bold Italic, font: Upclbi.ttf }
526
+
527
+ "Language.Fonts.Cans~~~und-CANS~0.0.1.0":
528
+ description: Canadian Aboriginal Syllabics Supplemental Fonts
529
+ fonts:
530
+ Euphemia:
531
+ files: [Euphemia.ttf]
532
+ styles:
533
+ - { type: Regular, font: Euphemia.ttf }
534
+
535
+ "Language.Fonts.PanEuropeanSupplementalFonts~~~~0.0.1.0":
536
+ description: Pan-European Supplemental Fonts
537
+ fonts:
538
+ Arial Nova:
539
+ files: [ArialNova-Light.ttf, ArialNova-LightItalic.ttf, ArialNova.ttf, ArialNova-Italic.ttf, ArialNova-Bold.ttf, ArialNova-BoldItalic.ttf]
540
+ styles:
541
+ - { type: Light, font: ArialNova-Light.ttf }
542
+ - { type: Light Italic, font: ArialNova-LightItalic.ttf }
543
+ - { type: Regular, font: ArialNova.ttf }
544
+ - { type: Italic, font: ArialNova-Italic.ttf }
545
+ - { type: Bold, font: ArialNova-Bold.ttf }
546
+ - { type: Bold Italic, font: ArialNova-BoldItalic.ttf }
547
+ Arial Nova Cond:
548
+ files: [ArialNovaCond-Light.ttf, ArialNovaCond-LightItalic.ttf, ArialNovaCond.ttf, ArialNovaCond-Italic.ttf, ArialNovaCond-Bold.ttf, ArialNovaCond-BoldItalic.ttf]
549
+ styles:
550
+ - { type: Light, font: ArialNovaCond-Light.ttf }
551
+ - { type: Light Italic, font: ArialNovaCond-LightItalic.ttf }
552
+ - { type: Regular, font: ArialNovaCond.ttf }
553
+ - { type: Italic, font: ArialNovaCond-Italic.ttf }
554
+ - { type: Bold, font: ArialNovaCond-Bold.ttf }
555
+ - { type: Bold Italic, font: ArialNovaCond-BoldItalic.ttf }
556
+ Georgia Pro:
557
+ files: [GeorgiaPro-Light.ttf, GeorgiaPro-LightItalic.ttf, GeorgiaPro-Regular.ttf, GeorgiaPro-Italic.ttf, GeorgiaPro-SemiBold.ttf, GeorgiaPro-SemiBoldItalic.ttf, GeorgiaPro-Bold.ttf, GeorgiaPro-BoldItalic.ttf, GeorgiaPro-Black.ttf, GeorgiaPro-BlackItalic.ttf]
558
+ styles:
559
+ - { type: Light, font: GeorgiaPro-Light.ttf }
560
+ - { type: Light Italic, font: GeorgiaPro-LightItalic.ttf }
561
+ - { type: Regular, font: GeorgiaPro-Regular.ttf }
562
+ - { type: Italic, font: GeorgiaPro-Italic.ttf }
563
+ - { type: Semibold, font: GeorgiaPro-SemiBold.ttf }
564
+ - { type: Semibold Italic, font: GeorgiaPro-SemiBoldItalic.ttf }
565
+ - { type: Bold, font: GeorgiaPro-Bold.ttf }
566
+ - { type: Bold Italic, font: GeorgiaPro-BoldItalic.ttf }
567
+ - { type: Black, font: GeorgiaPro-Black.ttf }
568
+ - { type: Black Italic, font: GeorgiaPro-BlackItalic.ttf }
569
+ Georgia Pro Cond:
570
+ files: [GeorgiaPro-CondLight.ttf, GeorgiaPro-CondLightItalic.ttf, GeorgiaPro-CondRegular.ttf, GeorgiaPro-CondItalic.ttf, GeorgiaPro-CondSemiBold.ttf, GeorgiaPro-CondSemiBoldItalic.ttf, GeorgiaPro-CondBold.ttf, GeorgiaPro-CondBoldItalic.ttf, GeorgiaPro-CondBlack.ttf, GeorgiaPro-CondBlackItalic.ttf]
571
+ styles:
572
+ - { type: Light, font: GeorgiaPro-CondLight.ttf }
573
+ - { type: Light Italic, font: GeorgiaPro-CondLightItalic.ttf }
574
+ - { type: Regular, font: GeorgiaPro-CondRegular.ttf }
575
+ - { type: Italic, font: GeorgiaPro-CondItalic.ttf }
576
+ - { type: Semibold, font: GeorgiaPro-CondSemiBold.ttf }
577
+ - { type: Semibold Italic, font: GeorgiaPro-CondSemiBoldItalic.ttf }
578
+ - { type: Bold, font: GeorgiaPro-CondBold.ttf }
579
+ - { type: Bold Italic, font: GeorgiaPro-CondBoldItalic.ttf }
580
+ - { type: Black, font: GeorgiaPro-CondBlack.ttf }
581
+ - { type: Black Italic, font: GeorgiaPro-CondBlackItalic.ttf }
582
+ Gill Sans Nova:
583
+ files: [GillSansLightNova.ttf, GillSansLightItNova.ttf, GillSansNova.ttf, GillSansItNova.ttf, GillSansBoNova.ttf, GillSansBoItNova.ttf, GillSansUltraBoNova.ttf]
584
+ styles:
585
+ - { type: Light, font: GillSansLightNova.ttf }
586
+ - { type: Light Italic, font: GillSansLightItNova.ttf }
587
+ - { type: Regular, font: GillSansNova.ttf }
588
+ - { type: Italic, font: GillSansItNova.ttf }
589
+ - { type: Bold, font: GillSansBoNova.ttf }
590
+ - { type: Bold Italic, font: GillSansBoItNova.ttf }
591
+ - { type: Ultra Bold, font: GillSansUltraBoNova.ttf }
592
+ Gill Sans Nova Cond:
593
+ files: [GillSansCondLightNova.ttf, GillSansCondLightItNova.ttf, GillSansCondNova.ttf, GillSansCondItNova.ttf, GillSansCondBoNova.ttf, GillSansCondBoItNova.ttf, GillSansCondExtraNova.ttf, GillSansCondExtraItNova.ttf, GillSansCondUltraBoNova.ttf]
594
+ styles:
595
+ - { type: Light, font: GillSansCondLightNova.ttf }
596
+ - { type: Light Italic, font: GillSansCondLightItNova.ttf }
597
+ - { type: Regular, font: GillSansCondNova.ttf }
598
+ - { type: Italic, font: GillSansCondItNova.ttf }
599
+ - { type: Bold, font: GillSansCondBoNova.ttf }
600
+ - { type: Bold Italic, font: GillSansCondBoItNova.ttf }
601
+ - { type: Extra Bold, font: GillSansCondExtraNova.ttf }
602
+ - { type: Extra Bold Italic, font: GillSansCondExtraItNova.ttf }
603
+ - { type: Ultra Bold, font: GillSansCondUltraBoNova.ttf }
604
+ Neue Haas Grotesk Text Pro:
605
+ files: [NHaasGroteskTXPro-Rg.ttf, NHaasGroteskTXPro-It.ttf]
606
+ styles:
607
+ - { type: Regular, font: NHaasGroteskTXPro-Rg.ttf }
608
+ - { type: Italic, font: NHaasGroteskTXPro-It.ttf }
609
+ Rockwell Nova:
610
+ files: [RockwellNova.ttf, RockwellNova-Italic.ttf, RockwellNova-Bold.ttf, RockwellNova-BoldItalic.ttf, RockwellNova-ExtraBold.ttf, RockwellNova-ExtraBoldItalic.ttf, RockwellNova-Light.ttf, RockwellNova-LightItalic.ttf]
611
+ styles:
612
+ - { type: Regular, font: RockwellNova.ttf }
613
+ - { type: Italic, font: RockwellNova-Italic.ttf }
614
+ - { type: Bold, font: RockwellNova-Bold.ttf }
615
+ - { type: Bold Italic, font: RockwellNova-BoldItalic.ttf }
616
+ - { type: Extra Bold, font: RockwellNova-ExtraBold.ttf }
617
+ - { type: Extra Bold Italic, font: RockwellNova-ExtraBoldItalic.ttf }
618
+ - { type: Light, font: RockwellNova-Light.ttf }
619
+ - { type: Light Italic, font: RockwellNova-LightItalic.ttf }
620
+ Rockwell Nova Cond:
621
+ files: [RockwellNovaCond.ttf, RockwellNovaCond-Italic.ttf, RockwellNovaCond-Bold.ttf, RockwellNovaCond-BoldItalic.ttf, RockwellNovaCond-Light.ttf, RockwellNovaCond-LightItalic.ttf]
622
+ styles:
623
+ - { type: Regular, font: RockwellNovaCond.ttf }
624
+ - { type: Italic, font: RockwellNovaCond-Italic.ttf }
625
+ - { type: Bold, font: RockwellNovaCond-Bold.ttf }
626
+ - { type: Bold Italic, font: RockwellNovaCond-BoldItalic.ttf }
627
+ - { type: Light, font: RockwellNovaCond-Light.ttf }
628
+ - { type: Light Italic, font: RockwellNovaCond-LightItalic.ttf }
629
+ Verdana Pro:
630
+ files: [VerdanaPro-Light.ttf, VerdanaPro-LightItalic.ttf, VerdanaPro-Regular.ttf, VerdanaPro-Italic.ttf, VerdanaPro-SemiBold.ttf, VerdanaPro-SemiBoldItalic.ttf, VerdanaPro-Bold.ttf, VerdanaPro-BoldItalic.ttf, VerdanaPro-Black.ttf, VerdanaPro-BlackItalic.ttf]
631
+ styles:
632
+ - { type: Light, font: VerdanaPro-Light.ttf }
633
+ - { type: Light Italic, font: VerdanaPro-LightItalic.ttf }
634
+ - { type: Regular, font: VerdanaPro-Regular.ttf }
635
+ - { type: Italic, font: VerdanaPro-Italic.ttf }
636
+ - { type: SemiBold, font: VerdanaPro-SemiBold.ttf }
637
+ - { type: SemiBold Italic, font: VerdanaPro-SemiBoldItalic.ttf }
638
+ - { type: Bold, font: VerdanaPro-Bold.ttf }
639
+ - { type: Bold Italic, font: VerdanaPro-BoldItalic.ttf }
640
+ - { type: Black, font: VerdanaPro-Black.ttf }
641
+ - { type: Black Italic, font: VerdanaPro-BlackItalic.ttf }
642
+ Verdana Pro Cond:
643
+ files: [VerdanaPro-CondLight.ttf, VerdanaPro-CondLightItalic.ttf, VerdanaPro-CondRegular.ttf, VerdanaPro-CondItalic.ttf, VerdanaPro-CondSemiBold.ttf, VerdanaPro-CondSemiBoldItalic.ttf, VerdanaPro-CondBold.ttf, VerdanaPro-CondBoldItalic.ttf, VerdanaPro-CondBlack.ttf, VerdanaPro-CondBlackItalic.ttf]
644
+ styles:
645
+ - { type: Light, font: VerdanaPro-CondLight.ttf }
646
+ - { type: Light Italic, font: VerdanaPro-CondLightItalic.ttf }
647
+ - { type: Regular, font: VerdanaPro-CondRegular.ttf }
648
+ - { type: Italic, font: VerdanaPro-CondItalic.ttf }
649
+ - { type: SemiBold, font: VerdanaPro-CondSemiBold.ttf }
650
+ - { type: SemiBold Italic, font: VerdanaPro-CondSemiBoldItalic.ttf }
651
+ - { type: Bold, font: VerdanaPro-CondBold.ttf }
652
+ - { type: Bold Italic, font: VerdanaPro-CondBoldItalic.ttf }
653
+ - { type: Black, font: VerdanaPro-CondBlack.ttf }
654
+ - { type: Black Italic, font: VerdanaPro-CondBlackItalic.ttf }
@@ -0,0 +1,4 @@
1
+ Licensed under the Microsoft Software License Terms for Windows.
2
+ These fonts are provided as part of the Windows operating system
3
+ and are subject to the Windows license agreement accepted during
4
+ installation. No additional license agreement is required.