@pmndrs/msdfonts 0.8.20 → 0.8.21

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.
package/LICENSE CHANGED
@@ -1,11 +1,81 @@
1
+ This package redistributes fonts from Google Fonts in MSDF format.
1
2
 
2
- Inter License:
3
+ ===============================================================================
4
+ FONTS LICENSED UNDER APACHE LICENSE 2.0:
5
+ ===============================================================================
3
6
 
4
- Copyright (c) 2016 The Inter Project Authors (https://github.com/rsms/inter)
7
+ Roboto:
8
+ Copyright 2011 Google Inc. All Rights Reserved.
5
9
 
6
- This Font Software is licensed under the SIL Open Font License, Version 1.1.
10
+ Licensed under the Apache License, Version 2.0 (the "License");
11
+ you may not use this file except in compliance with the License.
12
+ You may obtain a copy of the License at
13
+
14
+ http://www.apache.org/licenses/LICENSE-2.0
15
+
16
+ Unless required by applicable law or agreed to in writing, software
17
+ distributed under the License is distributed on an "AS IS" BASIS,
18
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ See the License for the specific language governing permissions and
20
+ limitations under the License.
21
+
22
+ ===============================================================================
23
+ FONTS LICENSED UNDER SIL OPEN FONT LICENSE 1.1:
24
+ ===============================================================================
25
+
26
+ Inter:
27
+ Copyright (c) 2016-2020 The Inter Project Authors
28
+ "Inter" is trademark of Rasmus Andersson.
29
+ https://github.com/rsms/inter
30
+
31
+ Open Sans:
32
+ Copyright (c) 2020 The Open Sans Project Authors (https://github.com/googlefonts/opensans)
33
+
34
+ Lato:
35
+ Copyright (c) 2010-2011 by tyPoland Lukasz Dziedzic (team@latofonts.com)
36
+
37
+ Poppins:
38
+ Copyright (c) 2020 The Poppins Project Authors (https://github.com/itfoundry/poppins)
39
+
40
+ Montserrat:
41
+ Copyright (c) 2011 The Montserrat Project Authors (https://github.com/JulietaUla/Montserrat)
42
+
43
+ Nunito:
44
+ Copyright (c) 2014 The Nunito Project Authors (https://github.com/googlefonts/nunito)
45
+
46
+ Raleway:
47
+ Copyright (c) 2010 The Raleway Project Authors (impallari@gmail.com)
48
+
49
+ Work Sans:
50
+ Copyright (c) 2014 The Work Sans Project Authors (https://github.com/weiweihuanghuang/Work-Sans)
51
+
52
+ Playfair Display:
53
+ Copyright (c) 2017 The Playfair Display Project Authors (https://github.com/clauseggers/Playfair-Display)
54
+
55
+ Merriweather:
56
+ Copyright (c) 2010-2016 The Merriweather Project Authors (https://github.com/EbenSorkin/Merriweather)
57
+
58
+ Libre Baskerville:
59
+ Copyright (c) 2012 The Libre Baskerville Project Authors (https://github.com/impallari/Libre-Baskerville)
60
+
61
+ Crimson Text:
62
+ Copyright (c) 2010 The Crimson Text Project Authors (https://github.com/skosch/Crimson)
63
+
64
+ Fira Code:
65
+ Copyright (c) 2014 The Fira Code Project Authors (https://github.com/tonsky/FiraCode)
66
+
67
+ Source Code Pro:
68
+ Copyright (c) 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/)
69
+
70
+ Inconsolata:
71
+ Copyright (c) 2006 The Inconsolata Project Authors (https://github.com/googlefonts/inconsolata)
72
+
73
+ Space Mono:
74
+ Copyright (c) 2016 The Space Mono Project Authors (https://github.com/googlefonts/spacemono)
75
+
76
+ The above Font Software is licensed under the SIL Open Font License, Version 1.1.
7
77
  This license is copied below, and is also available with a FAQ at:
8
- http://scripts.sil.org/OFL
78
+ https://openfontlicense.org
9
79
 
10
80
  -----------------------------------------------------------
11
81
  SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
package/README.md CHANGED
@@ -14,13 +14,11 @@ import { inter } from '@pmndrs/msdfonts'
14
14
 
15
15
  ## First Step
16
16
 
17
- `cd docker-volume`
18
17
  `docker build . -t msdfonts`
19
18
  `docker run -v ./docker-volume:/data/:rw -e GOOGLE_FONTS_API_KEY='<insert-api-key>' msdfonts`
20
19
 
21
20
  for users on ARM architecture (e.g. Apple M-chips)
22
21
 
23
- `cd docker-volume`
24
22
  `docker build . --platform linux/x86_64 -t msdfonts`
25
23
  `docker run -v ./docker-volume:/data/:rw -e GOOGLE_FONTS_API_KEY='<insert-api-key>' --platform linux/x86_64 msdfonts`
26
24