solocore 0.2.0__py3-none-any.whl

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 (40) hide show
  1. solocore/__init__.py +47 -0
  2. solocore/assets/fonts/Cardo104s.ttf +0 -0
  3. solocore/assets/fonts/Cardob101.ttf +0 -0
  4. solocore/assets/fonts/Cardoi99.ttf +0 -0
  5. solocore/assets/fonts/Gentium-Bold.ttf +0 -0
  6. solocore/assets/fonts/Gentium-BoldItalic.ttf +0 -0
  7. solocore/assets/fonts/Gentium-Italic.ttf +0 -0
  8. solocore/assets/fonts/Gentium-Regular.ttf +0 -0
  9. solocore/assets/fonts/IBMPlexMono-Bold.ttf +0 -0
  10. solocore/assets/fonts/IBMPlexMono-BoldItalic.ttf +0 -0
  11. solocore/assets/fonts/IBMPlexMono-Italic.ttf +0 -0
  12. solocore/assets/fonts/IBMPlexMono-Regular.ttf +0 -0
  13. solocore/assets/fonts/IBMPlexSans-Bold.ttf +0 -0
  14. solocore/assets/fonts/IBMPlexSans-BoldItalic.ttf +0 -0
  15. solocore/assets/fonts/IBMPlexSans-Italic.ttf +0 -0
  16. solocore/assets/fonts/IBMPlexSans-Regular.ttf +0 -0
  17. solocore/assets/fonts/IBMPlexSansArabic-Bold.ttf +0 -0
  18. solocore/assets/fonts/IBMPlexSansArabic-Regular.ttf +0 -0
  19. solocore/assets/fonts/IBMPlexSansHebrew-Bold.ttf +0 -0
  20. solocore/assets/fonts/IBMPlexSansHebrew-Regular.ttf +0 -0
  21. solocore/assets/fonts/IBMPlexSerif-Bold.ttf +0 -0
  22. solocore/assets/fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  23. solocore/assets/fonts/IBMPlexSerif-Italic.ttf +0 -0
  24. solocore/assets/fonts/IBMPlexSerif-Regular.ttf +0 -0
  25. solocore/assets/fonts/SILEOT.ttf +0 -0
  26. solocore/assets/fonts/licenses/Cardo-OFL.txt +92 -0
  27. solocore/assets/fonts/licenses/EzraSIL-License.txt +127 -0
  28. solocore/assets/fonts/licenses/Gentium-OFL.txt +94 -0
  29. solocore/assets/fonts/licenses/IBMPlex-OFL.txt +93 -0
  30. solocore/assets/fonts/licenses/NOTICE.txt +23 -0
  31. solocore/bootstrap.py +275 -0
  32. solocore/fileformat.py +51 -0
  33. solocore/icons.py +89 -0
  34. solocore/paths.py +90 -0
  35. solocore/safety.py +31 -0
  36. solocore-0.2.0.dist-info/METADATA +35 -0
  37. solocore-0.2.0.dist-info/RECORD +40 -0
  38. solocore-0.2.0.dist-info/WHEEL +4 -0
  39. solocore-0.2.0.dist-info/licenses/LICENSE +165 -0
  40. solocore-0.2.0.dist-info/licenses/LICENSE.GPL +674 -0
solocore/__init__.py ADDED
@@ -0,0 +1,47 @@
1
+ """SoloCore — shared foundation for the SoloGrove family.
2
+
3
+ The bits SoloSheet and SoloTyp both rely on: the Qt appearance bootstrap
4
+ (Fusion style + bundled IBM Plex/scholarly fonts), the inline-SVG icon helper, the
5
+ safe_slot error-containment decorator, and the shared file-format machinery
6
+ (version parsing + atomic writes).
7
+ """
8
+
9
+ from .bootstrap import (
10
+ APP_FONT_FAMILY,
11
+ BUNDLED_FONT_FAMILIES,
12
+ FONT_DISPLAY_NAMES,
13
+ LEGACY_FONT_MAP,
14
+ apply_theme,
15
+ font_display_name,
16
+ resolve_font_family,
17
+ resolve_scheme,
18
+ setup_appearance,
19
+ )
20
+ from .fileformat import atomic_write_text, parse_version
21
+ from .icons import svg_to_icon
22
+ from .safety import STATUS_TIMEOUT_MS, safe_slot
23
+
24
+ # 0.2.0, not 0.1.0: the tag solocore-v0.1.0 already exists and points at the
25
+ # seed commit, and solocore has changed substantially since — the whole
26
+ # Liberation-to-Plex font set, paths.py added, bootstrap rewritten. Leaving the
27
+ # number alone would mean two different libraries answering to 0.1.0, which is
28
+ # the same provenance problem the single-sourcing above is meant to prevent.
29
+ __version__ = "0.2.0"
30
+
31
+ __all__ = [
32
+ "APP_FONT_FAMILY",
33
+ "BUNDLED_FONT_FAMILIES",
34
+ "FONT_DISPLAY_NAMES",
35
+ "LEGACY_FONT_MAP",
36
+ "apply_theme",
37
+ "font_display_name",
38
+ "resolve_font_family",
39
+ "resolve_scheme",
40
+ "setup_appearance",
41
+ "atomic_write_text",
42
+ "parse_version",
43
+ "svg_to_icon",
44
+ "STATUS_TIMEOUT_MS",
45
+ "safe_slot",
46
+ "__version__",
47
+ ]
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,92 @@
1
+ Copyright (c) 2004-2011 David J. Perry (http://scholarsfonts.net/),
2
+ with Reserved Font Name "Cardo".
3
+
4
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
5
+ This license is copied below, and is also available with a FAQ at:
6
+ https://openfontlicense.org
7
+
8
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
9
+ -----------------------------------------------------------
10
+
11
+ PREAMBLE
12
+ The goals of the Open Font License (OFL) are to stimulate worldwide
13
+ development of collaborative font projects, to support the font creation
14
+ efforts of academic and linguistic communities, and to provide a free and
15
+ open framework in which fonts may be shared and improved in partnership
16
+ with others.
17
+
18
+ The OFL allows the licensed fonts to be used, studied, modified and
19
+ redistributed freely as long as they are not sold by themselves. The
20
+ fonts, including any derivative works, can be bundled, embedded,
21
+ redistributed and/or sold with any software provided that any reserved
22
+ names are not used by derivative works. The fonts and derivatives,
23
+ however, cannot be released under any other type of license. The
24
+ requirement for fonts to remain under this license does not apply
25
+ to any document created using the fonts or their derivatives.
26
+
27
+ DEFINITIONS
28
+ "Font Software" refers to the set of files released by the Copyright
29
+ Holder(s) under this license and clearly marked as such. This may
30
+ include source files, build scripts and documentation.
31
+
32
+ "Reserved Font Name" refers to any names specified as such after the
33
+ copyright statement(s).
34
+
35
+ "Original Version" refers to the collection of Font Software components as
36
+ distributed by the Copyright Holder(s).
37
+
38
+ "Modified Version" refers to any derivative made by adding to, deleting,
39
+ or substituting -- in part or in whole -- any of the components of the
40
+ Original Version, by changing formats or by porting the Font Software to a
41
+ new environment.
42
+
43
+ "Author" refers to any designer, engineer, programmer, technical
44
+ writer or other person who contributed to the Font Software.
45
+
46
+ PERMISSION & CONDITIONS
47
+ Permission is hereby granted, free of charge, to any person obtaining
48
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
49
+ redistribute, and sell modified and unmodified copies of the Font
50
+ Software, subject to the following conditions:
51
+
52
+ 1) Neither the Font Software nor any of its individual components,
53
+ in Original or Modified Versions, may be sold by itself.
54
+
55
+ 2) Original or Modified Versions of the Font Software may be bundled,
56
+ redistributed and/or sold with any software, provided that each copy
57
+ contains the above copyright notice and this license. These can be
58
+ included either as stand-alone text files, human-readable headers or
59
+ in the appropriate machine-readable metadata fields within text or
60
+ binary files as long as those fields can be easily viewed by the user.
61
+
62
+ 3) No Modified Version of the Font Software may use the Reserved Font
63
+ Name(s) unless explicit written permission is granted by the corresponding
64
+ Copyright Holder. This restriction only applies to the primary font name as
65
+ presented to the users.
66
+
67
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
68
+ Software shall not be used to promote, endorse or advertise any
69
+ Modified Version, except to acknowledge the contribution(s) of the
70
+ Copyright Holder(s) and the Author(s) or with their explicit written
71
+ permission.
72
+
73
+ 5) The Font Software, modified or unmodified, in part or in whole,
74
+ must be distributed entirely under this license, and must not be
75
+ distributed under any other license. The requirement for fonts to
76
+ remain under this license does not apply to any document created
77
+ using the Font Software.
78
+
79
+ TERMINATION
80
+ This license becomes null and void if any of the above conditions are
81
+ not met.
82
+
83
+ DISCLAIMER
84
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
85
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
86
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
87
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
88
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
89
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
90
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
91
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
92
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,127 @@
1
+ Hebrew layout intelligence copyright (c) 2003 & 2007 Ralph Hancock
2
+ and John Hudson, and licensed under the MIT/X11 License (copied
3
+ below).
4
+
5
+ All other font software is copyright (c) 1997-2007, SIL International
6
+ (http://www.sil.org/), with Reserved Font Names "SIL" and "Ezra", and
7
+ is licensed under the SIL Open Font License, Version 1.1. This license is
8
+ copied below, and is also available with a FAQ at:
9
+ http://scripts.sil.org/OFL
10
+
11
+ -----
12
+ MIT/X11 License (only for Hebrew layout intelligence)
13
+ -----
14
+
15
+ Permission is hereby granted, free of charge, to any person obtaining a
16
+ copy of this software and associated documentation files (the
17
+ "Software"), to deal in the Software without restriction, including
18
+ without limitation the rights to use, copy, modify, merge, publish,
19
+ distribute, sublicense, and/or sell copies of the Software, and to permit
20
+ persons to whom the Software is furnished to do so, subject to the
21
+ following conditions:
22
+
23
+ The above copyright notice and this permission notice shall be included
24
+ in all copies or substantial portions of the Software.
25
+
26
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
27
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
28
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
29
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
30
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
31
+ ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
32
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
33
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
34
+ OR OTHER DEALINGS IN THE SOFTWARE.
35
+
36
+ -----
37
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
38
+ -----
39
+
40
+ PREAMBLE
41
+
42
+ The goals of the Open Font License (OFL) are to stimulate worldwide
43
+ development of collaborative font projects, to support the font creation
44
+ efforts of academic and linguistic communities, and to provide a free
45
+ and open framework in which fonts may be shared and improved in
46
+ partnership with others.
47
+
48
+ The OFL allows the licensed fonts to be used, studied, modified and
49
+ redistributed freely as long as they are not sold by themselves. The
50
+ fonts, including any derivative works, can be bundled, embedded,
51
+ redistributed and/or sold with any software provided that any reserved
52
+ names are not used by derivative works. The fonts and derivatives,
53
+ however, cannot be released under any other type of license. The
54
+ requirement for fonts to remain under this license does not apply to
55
+ any document created using the fonts or their derivatives.
56
+
57
+ DEFINITIONS
58
+
59
+ "Font Software" refers to the set of files released by the Copyright
60
+ Holder(s) under this license and clearly marked as such. This may
61
+ include source files, build scripts and documentation.
62
+
63
+ "Reserved Font Name" refers to any names specified as such after the
64
+ copyright statement(s).
65
+
66
+ "Original Version" refers to the collection of Font Software components
67
+ as distributed by the Copyright Holder(s).
68
+
69
+ "Modified Version" refers to any derivative made by adding to, deleting,
70
+ or substituting -- in part or in whole -- any of the components of the
71
+ Original Version, by changing formats or by porting the Font Software
72
+ to a new environment.
73
+
74
+ "Author" refers to any designer, engineer, programmer, technical writer
75
+ or other person who contributed to the Font Software.
76
+
77
+ PERMISSION & CONDITIONS
78
+
79
+ Permission is hereby granted, free of charge, to any person obtaining a
80
+ copy of the Font Software, to use, study, copy, merge, embed, modify,
81
+ redistribute, and sell modified and unmodified copies of the Font
82
+ Software, subject to the following conditions:
83
+
84
+ 1) Neither the Font Software nor any of its individual components, in
85
+ Original or Modified Versions, may be sold by itself.
86
+
87
+ 2) Original or Modified Versions of the Font Software may be bundled,
88
+ redistributed and/or sold with any software, provided that each copy
89
+ contains the above copyright notice and this license. These can be
90
+ included either as stand-alone text files, human-readable headers or in
91
+ the appropriate machine-readable metadata fields within text or binary
92
+ files as long as those fields can be easily viewed by the user.
93
+
94
+ 3) No Modified Version of the Font Software may use the Reserved Font
95
+ Name(s) unless explicit written permission is granted by the
96
+ corresponding Copyright Holder. This restriction only applies to the
97
+ primary font name as presented to the users.
98
+
99
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
100
+ Software shall not be used to promote, endorse or advertise any
101
+ Modified Version, except to acknowledge the contribution(s) of the
102
+ Copyright Holder(s) and the Author(s) or with their explicit written
103
+ permission.
104
+
105
+ 5) The Font Software, modified or unmodified, in part or in whole,
106
+ must be distributed entirely under this license, and must not be
107
+ distributed under any other license. The requirement for fonts to
108
+ remain under this license does not apply to any document created
109
+ using the Font Software.
110
+
111
+ TERMINATION
112
+
113
+ This license becomes null and void if any of the above conditions are
114
+ not met.
115
+
116
+ DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS",
117
+ WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
118
+ INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
119
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
120
+ NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR
121
+ OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
122
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
123
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR
124
+ CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF
125
+ CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE
126
+ USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
127
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,94 @@
1
+ Copyright (c) 2003-2025 SIL Global (https://www.sil.org/),
2
+ with Reserved Font Names "Gentium" and "SIL".
3
+
4
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
5
+ This license is copied below, and is also available with a FAQ at:
6
+ https://openfontlicense.org
7
+
8
+
9
+ -----------------------------------------------------------
10
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
11
+ -----------------------------------------------------------
12
+
13
+ PREAMBLE
14
+ The goals of the Open Font License (OFL) are to stimulate worldwide
15
+ development of collaborative font projects, to support the font creation
16
+ efforts of academic and linguistic communities, and to provide a free and
17
+ open framework in which fonts may be shared and improved in partnership
18
+ with others.
19
+
20
+ The OFL allows the licensed fonts to be used, studied, modified and
21
+ redistributed freely as long as they are not sold by themselves. The
22
+ fonts, including any derivative works, can be bundled, embedded,
23
+ redistributed and/or sold with any software provided that any reserved
24
+ names are not used by derivative works. The fonts and derivatives,
25
+ however, cannot be released under any other type of license. The
26
+ requirement for fonts to remain under this license does not apply
27
+ to any document created using the fonts or their derivatives.
28
+
29
+ DEFINITIONS
30
+ "Font Software" refers to the set of files released by the Copyright
31
+ Holder(s) under this license and clearly marked as such. This may
32
+ include source files, build scripts and documentation.
33
+
34
+ "Reserved Font Name" refers to any names specified as such after the
35
+ copyright statement(s).
36
+
37
+ "Original Version" refers to the collection of Font Software components as
38
+ distributed by the Copyright Holder(s).
39
+
40
+ "Modified Version" refers to any derivative made by adding to, deleting,
41
+ or substituting -- in part or in whole -- any of the components of the
42
+ Original Version, by changing formats or by porting the Font Software to a
43
+ new environment.
44
+
45
+ "Author" refers to any designer, engineer, programmer, technical
46
+ writer or other person who contributed to the Font Software.
47
+
48
+ PERMISSION & CONDITIONS
49
+ Permission is hereby granted, free of charge, to any person obtaining
50
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
51
+ redistribute, and sell modified and unmodified copies of the Font
52
+ Software, subject to the following conditions:
53
+
54
+ 1) Neither the Font Software nor any of its individual components,
55
+ in Original or Modified Versions, may be sold by itself.
56
+
57
+ 2) Original or Modified Versions of the Font Software may be bundled,
58
+ redistributed and/or sold with any software, provided that each copy
59
+ contains the above copyright notice and this license. These can be
60
+ included either as stand-alone text files, human-readable headers or
61
+ in the appropriate machine-readable metadata fields within text or
62
+ binary files as long as those fields can be easily viewed by the user.
63
+
64
+ 3) No Modified Version of the Font Software may use the Reserved Font
65
+ Name(s) unless explicit written permission is granted by the corresponding
66
+ Copyright Holder. This restriction only applies to the primary font name as
67
+ presented to the users.
68
+
69
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
70
+ Software shall not be used to promote, endorse or advertise any
71
+ Modified Version, except to acknowledge the contribution(s) of the
72
+ Copyright Holder(s) and the Author(s) or with their explicit written
73
+ permission.
74
+
75
+ 5) The Font Software, modified or unmodified, in part or in whole,
76
+ must be distributed entirely under this license, and must not be
77
+ distributed under any other license. The requirement for fonts to
78
+ remain under this license does not apply to any document created
79
+ using the Font Software.
80
+
81
+ TERMINATION
82
+ This license becomes null and void if any of the above conditions are
83
+ not met.
84
+
85
+ DISCLAIMER
86
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
87
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
88
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
89
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
90
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
91
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
92
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
93
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
94
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,93 @@
1
+ Copyright © 2017 IBM Corp. with Reserved Font Name "Plex"
2
+
3
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
4
+
5
+ This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL
6
+
7
+
8
+ -----------------------------------------------------------
9
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10
+ -----------------------------------------------------------
11
+
12
+ PREAMBLE
13
+ The goals of the Open Font License (OFL) are to stimulate worldwide
14
+ development of collaborative font projects, to support the font creation
15
+ efforts of academic and linguistic communities, and to provide a free and
16
+ open framework in which fonts may be shared and improved in partnership
17
+ with others.
18
+
19
+ The OFL allows the licensed fonts to be used, studied, modified and
20
+ redistributed freely as long as they are not sold by themselves. The
21
+ fonts, including any derivative works, can be bundled, embedded,
22
+ redistributed and/or sold with any software provided that any reserved
23
+ names are not used by derivative works. The fonts and derivatives,
24
+ however, cannot be released under any other type of license. The
25
+ requirement for fonts to remain under this license does not apply
26
+ to any document created using the fonts or their derivatives.
27
+
28
+ DEFINITIONS
29
+ "Font Software" refers to the set of files released by the Copyright
30
+ Holder(s) under this license and clearly marked as such. This may
31
+ include source files, build scripts and documentation.
32
+
33
+ "Reserved Font Name" refers to any names specified as such after the
34
+ copyright statement(s).
35
+
36
+ "Original Version" refers to the collection of Font Software components as
37
+ distributed by the Copyright Holder(s).
38
+
39
+ "Modified Version" refers to any derivative made by adding to, deleting,
40
+ or substituting -- in part or in whole -- any of the components of the
41
+ Original Version, by changing formats or by porting the Font Software to a
42
+ new environment.
43
+
44
+ "Author" refers to any designer, engineer, programmer, technical
45
+ writer or other person who contributed to the Font Software.
46
+
47
+ PERMISSION & CONDITIONS
48
+ Permission is hereby granted, free of charge, to any person obtaining
49
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
50
+ redistribute, and sell modified and unmodified copies of the Font
51
+ Software, subject to the following conditions:
52
+
53
+ 1) Neither the Font Software nor any of its individual components,
54
+ in Original or Modified Versions, may be sold by itself.
55
+
56
+ 2) Original or Modified Versions of the Font Software may be bundled,
57
+ redistributed and/or sold with any software, provided that each copy
58
+ contains the above copyright notice and this license. These can be
59
+ included either as stand-alone text files, human-readable headers or
60
+ in the appropriate machine-readable metadata fields within text or
61
+ binary files as long as those fields can be easily viewed by the user.
62
+
63
+ 3) No Modified Version of the Font Software may use the Reserved Font
64
+ Name(s) unless explicit written permission is granted by the corresponding
65
+ Copyright Holder. This restriction only applies to the primary font name as
66
+ presented to the users.
67
+
68
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69
+ Software shall not be used to promote, endorse or advertise any
70
+ Modified Version, except to acknowledge the contribution(s) of the
71
+ Copyright Holder(s) and the Author(s) or with their explicit written
72
+ permission.
73
+
74
+ 5) The Font Software, modified or unmodified, in part or in whole,
75
+ must be distributed entirely under this license, and must not be
76
+ distributed under any other license. The requirement for fonts to
77
+ remain under this license does not apply to any document created
78
+ using the Font Software.
79
+
80
+ TERMINATION
81
+ This license becomes null and void if any of the above conditions are
82
+ not met.
83
+
84
+ DISCLAIMER
85
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,23 @@
1
+ Bundled fonts (packages/solocore/src/solocore/assets/fonts/)
2
+
3
+ All bundled fonts are free/open and redistributable. Full license texts are in
4
+ this directory. The SIL Open Font License (OFL) 1.1 permits bundling and
5
+ redistribution; documents created with the fonts are not encumbered.
6
+
7
+ IBM Plex Sans / Serif / Mono / Sans Arabic / Sans Hebrew
8
+ Copyright (c) 2017 IBM Corp., Reserved Font Name "IBM Plex".
9
+ SIL OFL 1.1 — see IBMPlex-OFL.txt
10
+ (Sans Arabic and Sans Hebrew ship under the same licence text,
11
+ verified byte-identical to IBMPlex-OFL.txt.)
12
+
13
+ Gentium (Gentium Plus)
14
+ Copyright (c) 2003-2025 SIL Global, Reserved Font Names "Gentium", "SIL".
15
+ SIL OFL 1.1 — see Gentium-OFL.txt
16
+
17
+ Cardo
18
+ Copyright (c) 2004-2011 David J. Perry, Reserved Font Name "Cardo".
19
+ SIL OFL 1.1 — see Cardo-OFL.txt
20
+
21
+ Ezra SIL
22
+ Copyright (c) SIL Global, Reserved Font Names "Ezra", "SIL".
23
+ SIL OFL 1.1 — see EzraSIL-License.txt