├── .github └── workflows │ └── build.yaml ├── .gitignore ├── AUTHORS.txt ├── CONTRIBUTORS.txt ├── FONTLOG.txt ├── Makefile ├── OFL.txt ├── README.md ├── TRADEMARKS.txt ├── build.sh ├── documentation ├── Lora-Italic-VF-fonttest.html ├── Lora-VF-fonttest.html ├── Lora-sample.png ├── proofs │ ├── Lora-Cyrillic-proofs.sketch │ └── PDF │ │ └── Lora-Cyrillic-proofs.pdf ├── sample.png └── sample2.png ├── fonts ├── otf │ ├── Lora-Bold.otf │ ├── Lora-BoldItalic.otf │ ├── Lora-Italic.otf │ ├── Lora-Medium.otf │ ├── Lora-MediumItalic.otf │ ├── Lora-Regular.otf │ ├── Lora-SemiBold.otf │ └── Lora-SemiBoldItalic.otf ├── ttf │ ├── Lora-Bold.ttf │ ├── Lora-BoldItalic.ttf │ ├── Lora-Italic.ttf │ ├── Lora-Medium.ttf │ ├── Lora-MediumItalic.ttf │ ├── Lora-Regular.ttf │ ├── Lora-SemiBold.ttf │ └── Lora-SemiBoldItalic.ttf ├── variable │ ├── Lora-Italic[wght].ttf │ ├── Lora-Italic[wght].woff2 │ ├── Lora[wght].ttf │ ├── Lora[wght].ttf.stat.yaml │ ├── Lora[wght].woff2 │ └── index.html └── webfonts │ ├── Lora-Bold.woff2 │ ├── Lora-BoldItalic.woff2 │ ├── Lora-Italic.woff2 │ ├── Lora-Italic[wght].woff2 │ ├── Lora-Medium.woff2 │ ├── Lora-MediumItalic.woff2 │ ├── Lora-Regular.woff2 │ ├── Lora-SemiBold.woff2 │ ├── Lora-SemiBoldItalic.woff2 │ └── Lora[wght].woff2 ├── old ├── v1.000 │ ├── LoraBold.ttf │ ├── LoraBoldItalic.ttf │ ├── LoraItalic.ttf │ ├── LoraRegular.ttf │ └── sources │ │ ├── Lora_Bold_Italic_TT.vfb │ │ ├── Lora_Bold_TT.vfb │ │ ├── Lora_Italic_TT.vfb │ │ └── Lora_RegularTT.vfb ├── v1.012 │ ├── FONTLOG.txt │ ├── Lora-Bold.ttf │ ├── Lora-BoldItalic.ttf │ ├── Lora-Italic.ttf │ ├── Lora-Regular.ttf │ ├── OFL.txt │ └── src │ │ ├── Lora-Bold-OTF.otf │ │ ├── Lora-BoldItalic-OTF.otf │ │ ├── Lora-Italic-OTF.otf │ │ ├── Lora-Regular-OTF.otf │ │ ├── OTF │ │ ├── Lora-Bold-OTF.vfb │ │ ├── Lora-BoldItalic-OTF.vfb │ │ ├── Lora-Italic-OTF.vfb │ │ └── Lora-Regular-OTF.vfb │ │ ├── TTF-manual+autohinted │ │ ├── Lora-Bold-TTF.vfb │ │ ├── Lora-BoldItalic-TTF.vfb │ │ ├── Lora-Italic-TTF.vfb │ │ └── Lora-Regular-TTF.vfb │ │ └── TTF-ttfautohinted │ │ ├── Lora-Bold-TTF.vfb │ │ ├── Lora-BoldItalic-TTF.vfb │ │ ├── Lora-Italic-TTF.vfb │ │ └── Lora-Regular-TTF.vfb ├── v1.013 │ ├── FONTLOG.txt │ ├── Lora-Bold.ttf │ ├── Lora-BoldItalic.ttf │ ├── Lora-Italic.ttf │ ├── Lora-Regular.ttf │ ├── OFL.txt │ └── src │ │ ├── Lora-Bold-OTF.otf │ │ ├── Lora-BoldItalic-OTF.otf │ │ ├── Lora-Italic-OTF.otf │ │ ├── Lora-Regular-OTF.otf │ │ ├── OTF │ │ ├── Lora-Bold-OTF.vfb │ │ ├── Lora-BoldItalic-OTF.vfb │ │ ├── Lora-Italic-OTF.vfb │ │ └── Lora-Regular-OTF.vfb │ │ └── TTF │ │ ├── Lora-Bold-TTF.vfb │ │ ├── Lora-BoldItalic-TTF.vfb │ │ ├── Lora-Italic-TTF.vfb │ │ └── Lora-Regular-TTF.vfb └── v1.014 │ ├── FONTLOG.txt │ ├── Lora-Bold.ttf │ ├── Lora-BoldItalic.ttf │ ├── Lora-Italic.ttf │ ├── Lora-Regular.ttf │ ├── OFL.txt │ └── src │ ├── Lora-Bold-OTF.otf │ ├── Lora-BoldItalic-OTF.otf │ ├── Lora-Italic-OTF.otf │ ├── Lora-Regular-OTF.otf │ ├── OTF │ ├── Lora-Bold-OTF.vfb │ ├── Lora-BoldItalic-OTF.vfb │ ├── Lora-Italic-OTF.vfb │ └── Lora-Regular-OTF.vfb │ └── TTF │ ├── Lora-Bold-TTF.vfb │ ├── Lora-BoldItalic-TTF.vfb │ ├── Lora-Italic-TTF.vfb │ └── Lora-Regular-TTF.vfb ├── requirements.txt └── sources ├── .ninja_log ├── Lora-Italic.glyphs ├── Lora.glyphs ├── build-1730838304293249000.ninja ├── build.ninja ├── config.yaml └── instance_ufos ├── Lora-Bold.ufo.json ├── Lora-BoldItalic.ufo.json ├── Lora-Italic.ufo.json ├── Lora-Medium.ufo.json ├── Lora-MediumItalic.ufo.json ├── Lora-Regular.ufo.json ├── Lora-SemiBold.ufo.json └── Lora-SemiBoldItalic.ufo.json /.github/workflows/build.yaml: -------------------------------------------------------------------------------- 1 | name: Build font and specimen 2 | 3 | on: [push] 4 | 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v2 10 | - name: Set up Python 3.8 11 | uses: actions/setup-python@v2 12 | with: 13 | python-version: 3.8 14 | - name: Install Linux dependencies 15 | run: | 16 | sudo snap install yq 17 | - name: Build font 18 | run: make build 19 | - name: Check with fontbakery 20 | run: make test 21 | continue-on-error: true 22 | - name: Generate proofs 23 | run: make proof 24 | - name: Gather 25 | run: | 26 | mkdir for-gh-pages 27 | mv fontbakery-report.html for-gh-pages 28 | mv proof/* for-gh-pages 29 | - name: Archive artifacts 30 | uses: actions/upload-artifact@v2 31 | with: 32 | name: Artifacts 33 | path: | 34 | for-gh-pages 35 | - name: Remove temp folder 36 | run: | 37 | rm -rf for-gh-pages -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | venv 3 | build.stamp 4 | proof 5 | 6 | # OS generated files # 7 | ###################### 8 | .DS_Store 9 | .DS_Store? 10 | ._* 11 | .Spotlight-V100 12 | .Trashes 13 | ehthumbs.db 14 | Thumbs.db 15 | -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- 1 | # This is the official list of authors for copyright purposes. 2 | # This file is distinct from the CONTRIBUTORS files. 3 | # See the latter for an explanation. 4 | # 5 | # Names should be added to this file as: 6 | # Name or Organization 7 | # The email address is not required for organizations. 8 | 9 | Olga Karpushina 10 | Alexei Vanyashin 11 | 12 | 13 | -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- 1 | # This is the official list of people who can contribute 2 | # (and typically have contributed) code to this repository. 3 | # The AUTHORS file lists the copyright holders; this file 4 | # lists people. For example, company employees are listed here 5 | # but not in AUTHORS, because their company holds the copyright. 6 | # 7 | # Names should be added to this file like so: 8 | # Name 9 | 10 | Anton Koovit 11 | Nhung Nguyen 12 | Cyreal 13 | Gayaneh Bagdasaryan 14 | 15 | -------------------------------------------------------------------------------- /FONTLOG.txt: -------------------------------------------------------------------------------- 1 | FONTLOG for the Lora font 2 | 3 | This file provides detailed information on the Lora 4 | font Software. 5 | 6 | This information should be distributed along with the 7 | Lora fonts and any derivative works. 8 | 9 | Basic Font Information 10 | 11 | Lora is a well-balanced contemporary serif with roots in calligraphy. It is a text typeface with moderate contrast well suited for body text. 12 | A paragraph set in Lora will make a memorable appearance because of its brushed curves in contrast with driving serifs. The overall typographic voice of Lora perfectly conveys the mood of a modern-day story, or an art essay. 13 | 14 | Technically Lora is optimised for screen appearance, and works equally well in print. 15 | 16 | Designed by Olga Karpushina, and Alexei Vanyashin for Cyreal. 17 | 18 | Lora is a Unicode typeface family that supports 19 | languages that use the Latin script and its variants, and 20 | could be expanded to support other scripts. 21 | 22 | More specifically, this release supports the following Unicode 23 | ranges: Latin-1, Adobe Latin-3, GWF Standard Cyrillic 24 | 25 | To contribute to the project contact Alexei Vanyashin at 26 | a at cyreal.org 27 | 28 | Source files: 29 | — sources/Lora.glyphs (Roman weights) 30 | — sources/Lora-Italic.glyphs (Italic weights) 31 | 32 | ChangeLog 33 | 34 | 21 November 2017 (Alexei Vanyashin) Lora v. 2.103 35 | — added uni02BB, fixes #22 36 | 37 | 30 October 2017 (Alexei Vanyashin) Lora v. 2.102 38 | — Added Latin-B glyphs ǍĊĔƷǮǦǤĦȞĬǨĿŊŎǾẞƏŦǓǎċĕəʒǯǧǥħȟĭǩŀŋŏǿſŧǔÅK‐⟨⟩⁒′″ 39 | — Revised Schwa 40 | — Merged Mark Foley's win asc fix 41 | 42 | 3 October 2016 (Nhung Nguyen) 43 | — Revised Vietnamese glyphs 44 | 45 | 29 September 2016 (Olga Karpushina) Lora v. 2.000 46 | — Expansion to GF Cyrilic Pro, and locl 47 | 48 | 16 July 2016 (Alexei Vanyashin) Lora v. 1.016 49 | — fixed issue #1 (italic style not working in MS Word) 50 | 51 | 25 May 2016 (Alexei Vanyashin) Lora v. 1.015 52 | — enlonged emdashes as per issue https://github.com/google/fonts/issues/217#issuecomment-221395327 53 | — added Esperanto support as per request form fishque.com 54 | 55 | 12 August 2013 (Alexei Vanyashin) Lora v. 1.014 56 | — equalised nbsp, sp, noBreak, nonmarkingreturn advance widths 57 | 58 | 26 June 2013 (Alexei Vanyashin) Lora v. 1.013 59 | — Fixed hinting issue 60 | — Minor design fixes 61 | 62 | 19 June 2013 (Alexei Vanyashin) Lora v. 1012 63 | — Merged previous hinted version v. 1.000 with 64 | additional autohinted glyphs. 65 | — Improved kerning 66 | — Adjusted glyphs with caron accent 67 | 68 | 30 May 2013 (Alexei Vanyashin) Lora v. 1.011 69 | — Extended character set in all four fonts to include 70 | Adobe Latin-3, and GWF Standard Cyrillic encodings. 71 | — Equalized vertical metrics across the styles 72 | 73 | 20 July 2011 (Olga Karpushina) Lora v. 1.000 74 | — Completed initial design 75 | — Manualy hinted in VFB format 76 | 77 | If you make modifications be sure to add your name (N), 78 | email (E), web-address (if you have one) (W) and description (D). 79 | This list is in alphabetical order. 80 | 81 | N: Alexei Vanyashin 82 | E: a at cyreal.org 83 | W: www.cyreal.org 84 | D: Designer of Cyrillic, Mastering 85 | 86 | N: Olga Karpushina 87 | E: okarpush at gmail.com 88 | W: www.cyreal.org 89 | D: Original Author -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | SOURCES=$(shell yq e '.sources.[] | sub("^","sources/")' sources/config.yaml ) 2 | FAMILY=$(shell yq e '.familyName' sources/config.yaml ) 3 | 4 | help: 5 | @echo "###" 6 | @echo "# Build targets for $(FAMILY)" 7 | @echo "###" 8 | @echo 9 | @echo " make build: Builds the fonts and places them in the fonts/ directory" 10 | @echo " make test: Tests the fonts with fontbakery" 11 | @echo " make proof: Creates HTML proof documents in the proof/ directory" 12 | @echo 13 | 14 | build: build.stamp sources/config.yaml $(SOURCES) 15 | 16 | venv: venv/touchfile 17 | 18 | build.stamp: venv 19 | . venv/bin/activate; gftools builder sources/config.yaml && touch build.stamp 20 | 21 | venv/touchfile: requirements.txt 22 | test -d venv || python3 -m venv venv 23 | . venv/bin/activate; pip install -Ur requirements.txt 24 | touch venv/touchfile 25 | 26 | test: venv build.stamp 27 | . venv/bin/activate; fontbakery check-googlefonts --html fontbakery-report.html --ghmarkdown fontbakery-report.md $(shell find fonts -type f) 28 | 29 | proof: venv build.stamp 30 | . venv/bin/activate; gftools gen-html proof $(shell find fonts/ttf -type f) -o proof 31 | 32 | clean: 33 | rm -rf venv 34 | find -iname "*.pyc" -delete 35 | -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- 1 | Copyright 2011 The Lora Project Authors (https://github.com/cyrealtype/Lora-Cyrillic), with Reserved Font Name "Lora". 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | https://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. 94 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Lora Fonts 2 | 3 | #### by Olga Karpushina 4 | #### Cyrillic Extension: Alexei Vanyashin 5 | 6 | and Lora project contributors 7 | 8 | Lora is a well-balanced contemporary serif with roots in calligraphy. It is a text typeface with moderate contrast well suited for body text. A paragraph set in Lora will make a memorable appearance because of its brushed curves in contrast with driving serifs. The overall typographic voice of Lora perfectly conveys the mood of a modern-day story, or an art essay. 9 | 10 | Technically Lora is optimised for screen appearance, and works equally well in print. 11 | 12 | Designed by Olga Karpushina, and Alexei Vanyashin for Cyreal. Released in 2011 with contributions and assistance from Gayaneh Bagdasaryan. 13 | 14 | 15 | 16 | Lora is a Unicode typeface family that supports 17 | languages that use the Latin and Cyrillic scripts and its variants, and 18 | could be expanded to support other scripts. 19 | 20 | ![Lora Font](documentation/Lora-sample.png "Lora Font by Cyreal") 21 | 22 | Font Specimens by @mithilgorare 23 | 24 | Project [information](http://www.cyreal.org/fonts/lora) on Cyreal Fonts' website: 25 | 26 | ### Variable Fonts 27 | [Version 3.001](https://github.com/cyrealtype/Lora-Cyrillic/releases/tag/v3.001) 28 | includes a variable font version with one weight axis. 29 | 30 | ### Cyrillic 31 | 32 | Cyrillic Extension designed by Alexei Vanyashin @alexeiva in May, 2013. 33 | Expansion to GF Cyrillic Plus, Pro, and locl has been completed by original author Olga Karpushina in August-September 2016. 34 | 35 | ### Vietnamese 36 | 37 | Vietnamese glyphs were added by Nhung Nguyen @crystaltype 38 | 39 | ## Building 40 | 41 | Fonts are built automatically by GitHub Actions - take a look in the "Actions" tab for the latest build. 42 | 43 | If you particularly want to build fonts manually on your own computer, you will need to install the [`yq` utility](https://github.com/mikefarah/yq). On OS X with Homebrew, type `brew install yq`; on Linux, try `snap install yq`; if all else fails, try the instructions on the linked page. 44 | 45 | Then: 46 | 47 | * `make build` will produce font files. 48 | * `make test` will run [FontBakery](https://github.com/googlefonts/fontbakery)'s quality assurance tests. 49 | * `make proof` will generate HTML proof files. 50 | 51 | ## License 52 | 53 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 54 | This license is copied below, and is also available with a FAQ at 55 | http://scripts.sil.org/OFL 56 | 57 | ## Repository Layout 58 | 59 | This font repository structure is inspired by [Unified Font Repository v0.3](https://github.com/unified-font-repository/Unified-Font-Repository), modified for the Google Fonts workflow. 60 | -------------------------------------------------------------------------------- /TRADEMARKS.txt: -------------------------------------------------------------------------------- 1 | Lora is a trademark of Cyreal. 2 | -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "Generating fonts" 5 | gftools builder ./sources/config.yaml 6 | echo "Compressing woffs" 7 | for FILE in ./fonts/variable/*.ttf; do python3 -m fontTools ttLib.woff2 compress $FILE; done 8 | 9 | 10 | -------------------------------------------------------------------------------- /documentation/Lora-Italic-VF-fonttest.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | OTVar Test: Lora 7 | 223 | 346 | 347 | 348 |
349 |
350 | 351 |
352 |
353 |
354 | 355 | 356 | 357 |
358 | 🔲 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 379 |
380 |
381 | 382 | 383 |
384 |
385 |
386 | 387 | 388 |

389 | Ctrl-R: Reset Charset. Ctrl-L: Latin1. Ctrl-J: LTR/RTL. Ctrl-C: Center. Ctrl-X: X-Ray. Not working? Please try in a newer macOS or use the latest Chrome. Pull mouse across this note to make it disappear. 390 |

391 | 392 | 393 | -------------------------------------------------------------------------------- /documentation/Lora-VF-fonttest.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | OTVar Test: Lora 7 | 223 | 346 | 347 | 348 |
349 |
350 | 351 |
352 |
353 |
354 | 355 | 356 | 357 |
358 | 🔲 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 379 |
380 |
381 | 382 | 383 |
384 |
385 |
386 | 387 | 388 |

389 | Ctrl-R: Reset Charset. Ctrl-L: Latin1. Ctrl-J: LTR/RTL. Ctrl-C: Center. Ctrl-X: X-Ray. Not working? Please try in a newer macOS or use the latest Chrome. Pull mouse across this note to make it disappear. 390 |

391 | 392 | 393 | -------------------------------------------------------------------------------- /documentation/Lora-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/documentation/Lora-sample.png -------------------------------------------------------------------------------- /documentation/proofs/Lora-Cyrillic-proofs.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/documentation/proofs/Lora-Cyrillic-proofs.sketch -------------------------------------------------------------------------------- /documentation/proofs/PDF/Lora-Cyrillic-proofs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/documentation/proofs/PDF/Lora-Cyrillic-proofs.pdf -------------------------------------------------------------------------------- /documentation/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/documentation/sample.png -------------------------------------------------------------------------------- /documentation/sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/documentation/sample2.png -------------------------------------------------------------------------------- /fonts/otf/Lora-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/otf/Lora-Bold.otf -------------------------------------------------------------------------------- /fonts/otf/Lora-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/otf/Lora-BoldItalic.otf -------------------------------------------------------------------------------- /fonts/otf/Lora-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/otf/Lora-Italic.otf -------------------------------------------------------------------------------- /fonts/otf/Lora-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/otf/Lora-Medium.otf -------------------------------------------------------------------------------- /fonts/otf/Lora-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/otf/Lora-MediumItalic.otf -------------------------------------------------------------------------------- /fonts/otf/Lora-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/otf/Lora-Regular.otf -------------------------------------------------------------------------------- /fonts/otf/Lora-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/otf/Lora-SemiBold.otf -------------------------------------------------------------------------------- /fonts/otf/Lora-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/otf/Lora-SemiBoldItalic.otf -------------------------------------------------------------------------------- /fonts/ttf/Lora-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/ttf/Lora-Bold.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lora-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/ttf/Lora-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lora-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/ttf/Lora-Italic.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lora-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/ttf/Lora-Medium.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lora-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/ttf/Lora-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lora-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/ttf/Lora-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lora-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/ttf/Lora-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lora-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/ttf/Lora-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/variable/Lora-Italic[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/variable/Lora-Italic[wght].ttf -------------------------------------------------------------------------------- /fonts/variable/Lora-Italic[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/variable/Lora-Italic[wght].woff2 -------------------------------------------------------------------------------- /fonts/variable/Lora[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/variable/Lora[wght].ttf -------------------------------------------------------------------------------- /fonts/variable/Lora[wght].ttf.stat.yaml: -------------------------------------------------------------------------------- 1 | Lora-Italic[wght].ttf: 2 | - name: Weight 3 | tag: wght 4 | values: 5 | - flags: 2 6 | linkedValue: 700 7 | name: Regular 8 | value: 400 9 | - name: Medium 10 | value: 500 11 | - name: SemiBold 12 | value: 600 13 | - name: Bold 14 | value: 700 15 | - name: Italic 16 | tag: ital 17 | values: 18 | - name: Italic 19 | value: 1 20 | Lora[wght].ttf: 21 | - name: Weight 22 | tag: wght 23 | values: 24 | - flags: 2 25 | linkedValue: 700 26 | name: Regular 27 | value: 400 28 | - name: Medium 29 | value: 500 30 | - name: SemiBold 31 | value: 600 32 | - name: Bold 33 | value: 700 34 | - name: Italic 35 | tag: ital 36 | values: 37 | - flags: 2 38 | linkedValue: 1 39 | name: Roman 40 | value: 0 41 | -------------------------------------------------------------------------------- /fonts/variable/Lora[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/variable/Lora[wght].woff2 -------------------------------------------------------------------------------- /fonts/variable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Lora Variable Font Example 7 | 30 | 31 | 32 |

Hello World

33 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /fonts/webfonts/Lora-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/webfonts/Lora-Bold.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lora-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/webfonts/Lora-BoldItalic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lora-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/webfonts/Lora-Italic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lora-Italic[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/webfonts/Lora-Italic[wght].woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lora-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/webfonts/Lora-Medium.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lora-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/webfonts/Lora-MediumItalic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lora-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/webfonts/Lora-Regular.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lora-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/webfonts/Lora-SemiBold.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lora-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/webfonts/Lora-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lora[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/fonts/webfonts/Lora[wght].woff2 -------------------------------------------------------------------------------- /old/v1.000/LoraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.000/LoraBold.ttf -------------------------------------------------------------------------------- /old/v1.000/LoraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.000/LoraBoldItalic.ttf -------------------------------------------------------------------------------- /old/v1.000/LoraItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.000/LoraItalic.ttf -------------------------------------------------------------------------------- /old/v1.000/LoraRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.000/LoraRegular.ttf -------------------------------------------------------------------------------- /old/v1.000/sources/Lora_Bold_Italic_TT.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.000/sources/Lora_Bold_Italic_TT.vfb -------------------------------------------------------------------------------- /old/v1.000/sources/Lora_Bold_TT.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.000/sources/Lora_Bold_TT.vfb -------------------------------------------------------------------------------- /old/v1.000/sources/Lora_Italic_TT.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.000/sources/Lora_Italic_TT.vfb -------------------------------------------------------------------------------- /old/v1.000/sources/Lora_RegularTT.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.000/sources/Lora_RegularTT.vfb -------------------------------------------------------------------------------- /old/v1.012/FONTLOG.txt: -------------------------------------------------------------------------------- 1 | FONTLOG for the Lora font 2 | 3 | This file provides detailed information on the Lora 4 | font Software. 5 | 6 | This information should be distributed along with the 7 | Lora fonts and any derivative works. 8 | 9 | Basic Font Information 10 | 11 | Lora is a well-balanced contemporary serif with roots in calligraphy. It is a text typeface with moderate contrast well suited for body text. 12 | A paragraph set in Lora will make a memorable appearance because of its brushed curves in contrast with driving serifs. The overall typographic voice of Lora perfectly conveys the mood of a modern-day story, or an art essay. 13 | 14 | Technically Lora is optimised for screen appearance, and works equally well in print. 15 | 16 | Designed by Olga Karpushina, and Alexei Vanyashin for Cyreal. 17 | 18 | Lora is a Unicode typeface family that supports 19 | languages that use the Latin script and its variants, and 20 | could be expanded to support other scripts. 21 | 22 | More specifically, this release supports the following Unicode 23 | ranges: Latin-1, Adobe Latin-3, GWF Standard Cyrillic 24 | 25 | To contribute to the project contact Alexei Vanyashin at 26 | a@cyreal.org 27 | 28 | .VBF Source files: 29 | Lora-[stylename]-OTF.vbf (Merged and optimized file, Postscript contours) 30 | Lora-[stylename]-TTF.vbf (Merged and optimized file, Truetype contours, Latin-1 range is manually hinted, 31 | all other characters ttfautohinted) 32 | [stylename] is the name of the style, i.e. Regular, Bold, RegularItalic, BoldItalic 33 | 34 | ChangeLog 35 | 36 | 20 July 2011 (Olga Karpushina) Lora v. 1.000 37 | — Completed initial design 38 | 39 | 30 May 2013 (Alexei Vanyashin) Lora v. 1.011 40 | — Extended character set in all four fonts to include 41 | Adobe Latin-3, and GWF Standard Cyrillic encodings. 42 | — Equalized vertical metrics across the styles 43 | 44 | 19 June 2013 (Alexei Vanyashin) Lora v. 1012 45 | — Merged previous hinted version v. 1.000 with 46 | additional autohinted glyphs. 47 | — Improved kerning 48 | — Adjusted glyphs with caron accent 49 | 50 | 51 | If you make modifications be sure to add your name (N), 52 | email (E), web-address (if you have one) (W) and description (D). 53 | This list is in alphabetical order. 54 | 55 | N: Olga Karpushina 56 | E: okarpush@gmail.com 57 | W: www.cyreal.org 58 | D: Designer 59 | 60 | N: Alexei Vanyashin 61 | E: a@cyreal.org 62 | W: www.cyreal.org 63 | D: Designer and Mastering -------------------------------------------------------------------------------- /old/v1.012/Lora-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/Lora-Bold.ttf -------------------------------------------------------------------------------- /old/v1.012/Lora-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/Lora-BoldItalic.ttf -------------------------------------------------------------------------------- /old/v1.012/Lora-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/Lora-Italic.ttf -------------------------------------------------------------------------------- /old/v1.012/Lora-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/Lora-Regular.ttf -------------------------------------------------------------------------------- /old/v1.012/OFL.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011, Cyreal (www.cyreal.org), 2 | with Reserved Font Name "Lora". 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 | http://scripts.sil.org/OFL 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. 95 | -------------------------------------------------------------------------------- /old/v1.012/src/Lora-Bold-OTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/Lora-Bold-OTF.otf -------------------------------------------------------------------------------- /old/v1.012/src/Lora-BoldItalic-OTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/Lora-BoldItalic-OTF.otf -------------------------------------------------------------------------------- /old/v1.012/src/Lora-Italic-OTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/Lora-Italic-OTF.otf -------------------------------------------------------------------------------- /old/v1.012/src/Lora-Regular-OTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/Lora-Regular-OTF.otf -------------------------------------------------------------------------------- /old/v1.012/src/OTF/Lora-Bold-OTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/OTF/Lora-Bold-OTF.vfb -------------------------------------------------------------------------------- /old/v1.012/src/OTF/Lora-BoldItalic-OTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/OTF/Lora-BoldItalic-OTF.vfb -------------------------------------------------------------------------------- /old/v1.012/src/OTF/Lora-Italic-OTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/OTF/Lora-Italic-OTF.vfb -------------------------------------------------------------------------------- /old/v1.012/src/OTF/Lora-Regular-OTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/OTF/Lora-Regular-OTF.vfb -------------------------------------------------------------------------------- /old/v1.012/src/TTF-manual+autohinted/Lora-Bold-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/TTF-manual+autohinted/Lora-Bold-TTF.vfb -------------------------------------------------------------------------------- /old/v1.012/src/TTF-manual+autohinted/Lora-BoldItalic-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/TTF-manual+autohinted/Lora-BoldItalic-TTF.vfb -------------------------------------------------------------------------------- /old/v1.012/src/TTF-manual+autohinted/Lora-Italic-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/TTF-manual+autohinted/Lora-Italic-TTF.vfb -------------------------------------------------------------------------------- /old/v1.012/src/TTF-manual+autohinted/Lora-Regular-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/TTF-manual+autohinted/Lora-Regular-TTF.vfb -------------------------------------------------------------------------------- /old/v1.012/src/TTF-ttfautohinted/Lora-Bold-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/TTF-ttfautohinted/Lora-Bold-TTF.vfb -------------------------------------------------------------------------------- /old/v1.012/src/TTF-ttfautohinted/Lora-BoldItalic-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/TTF-ttfautohinted/Lora-BoldItalic-TTF.vfb -------------------------------------------------------------------------------- /old/v1.012/src/TTF-ttfautohinted/Lora-Italic-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/TTF-ttfautohinted/Lora-Italic-TTF.vfb -------------------------------------------------------------------------------- /old/v1.012/src/TTF-ttfautohinted/Lora-Regular-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.012/src/TTF-ttfautohinted/Lora-Regular-TTF.vfb -------------------------------------------------------------------------------- /old/v1.013/FONTLOG.txt: -------------------------------------------------------------------------------- 1 | FONTLOG for the Lora font 2 | 3 | This file provides detailed information on the Lora 4 | font Software. 5 | 6 | This information should be distributed along with the 7 | Lora fonts and any derivative works. 8 | 9 | Basic Font Information 10 | 11 | Lora is a well-balanced contemporary serif with roots in calligraphy. It is a text typeface with moderate contrast well suited for body text. 12 | A paragraph set in Lora will make a memorable appearance because of its brushed curves in contrast with driving serifs. The overall typographic voice of Lora perfectly conveys the mood of a modern-day story, or an art essay. 13 | 14 | Technically Lora is optimised for screen appearance, and works equally well in print. 15 | 16 | Designed by Olga Karpushina, and Alexei Vanyashin for Cyreal. 17 | 18 | Lora is a Unicode typeface family that supports 19 | languages that use the Latin script and its variants, and 20 | could be expanded to support other scripts. 21 | 22 | More specifically, this release supports the following Unicode 23 | ranges: Latin-1, Adobe Latin-3, GWF Standard Cyrillic 24 | 25 | To contribute to the project contact Alexei Vanyashin at 26 | a@cyreal.org 27 | 28 | .VBF Source files: 29 | Lora-[stylename]-OTF.vbf (Merged and optimized file, Postscript contours) 30 | Lora-[stylename]-TTF.vbf (Merged and optimized file, Truetype contours, Latin-1 range is manually hinted, 31 | all other characters autohinted) 32 | [stylename] is the name of the style, i.e. Regular, Bold, RegularItalic, BoldItalic 33 | 34 | ChangeLog 35 | 36 | 20 July 2011 (Olga Karpushina) Lora v. 1.000 37 | — Completed initial design 38 | 39 | 30 May 2013 (Alexei Vanyashin) Lora v. 1.011 40 | — Extended character set in all four fonts to include 41 | Adobe Latin-3, and GWF Standard Cyrillic encodings. 42 | — Equalized vertical metrics across the styles 43 | 44 | 19 June 2013 (Alexei Vanyashin) Lora v. 1012 45 | — Merged previous hinted version v. 1.000 with 46 | additional autohinted glyphs. 47 | — Improved kerning 48 | — Adjusted glyphs with caron accent 49 | 50 | 26 June 2013 (Alexei Vanyashin) Lora v. 1013 51 | — Fixed hinting issue 52 | — Minor design fixes 53 | 54 | 55 | If you make modifications be sure to add your name (N), 56 | email (E), web-address (if you have one) (W) and description (D). 57 | This list is in alphabetical order. 58 | 59 | N: Olga Karpushina 60 | E: okarpush@gmail.com 61 | W: www.cyreal.org 62 | D: Designer 63 | 64 | N: Alexei Vanyashin 65 | E: a@cyreal.org 66 | W: www.cyreal.org 67 | D: Designer and Mastering -------------------------------------------------------------------------------- /old/v1.013/Lora-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/Lora-Bold.ttf -------------------------------------------------------------------------------- /old/v1.013/Lora-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/Lora-BoldItalic.ttf -------------------------------------------------------------------------------- /old/v1.013/Lora-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/Lora-Italic.ttf -------------------------------------------------------------------------------- /old/v1.013/Lora-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/Lora-Regular.ttf -------------------------------------------------------------------------------- /old/v1.013/OFL.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011-2013, Cyreal (www.cyreal.org a@cyreal.org), with 2 | Reserved Font Name 'Lora' 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 | http://scripts.sil.org/OFL 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. 95 | -------------------------------------------------------------------------------- /old/v1.013/src/Lora-Bold-OTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/src/Lora-Bold-OTF.otf -------------------------------------------------------------------------------- /old/v1.013/src/Lora-BoldItalic-OTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/src/Lora-BoldItalic-OTF.otf -------------------------------------------------------------------------------- /old/v1.013/src/Lora-Italic-OTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/src/Lora-Italic-OTF.otf -------------------------------------------------------------------------------- /old/v1.013/src/Lora-Regular-OTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/src/Lora-Regular-OTF.otf -------------------------------------------------------------------------------- /old/v1.013/src/OTF/Lora-Bold-OTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/src/OTF/Lora-Bold-OTF.vfb -------------------------------------------------------------------------------- /old/v1.013/src/OTF/Lora-BoldItalic-OTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/src/OTF/Lora-BoldItalic-OTF.vfb -------------------------------------------------------------------------------- /old/v1.013/src/OTF/Lora-Italic-OTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/src/OTF/Lora-Italic-OTF.vfb -------------------------------------------------------------------------------- /old/v1.013/src/OTF/Lora-Regular-OTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/src/OTF/Lora-Regular-OTF.vfb -------------------------------------------------------------------------------- /old/v1.013/src/TTF/Lora-Bold-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/src/TTF/Lora-Bold-TTF.vfb -------------------------------------------------------------------------------- /old/v1.013/src/TTF/Lora-BoldItalic-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/src/TTF/Lora-BoldItalic-TTF.vfb -------------------------------------------------------------------------------- /old/v1.013/src/TTF/Lora-Italic-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/src/TTF/Lora-Italic-TTF.vfb -------------------------------------------------------------------------------- /old/v1.013/src/TTF/Lora-Regular-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.013/src/TTF/Lora-Regular-TTF.vfb -------------------------------------------------------------------------------- /old/v1.014/FONTLOG.txt: -------------------------------------------------------------------------------- 1 | FONTLOG for the Lora font 2 | 3 | This file provides detailed information on the Lora 4 | font Software. 5 | 6 | This information should be distributed along with the 7 | Lora fonts and any derivative works. 8 | 9 | Basic Font Information 10 | 11 | Lora is a well-balanced contemporary serif with roots in calligraphy. It is a text typeface with moderate contrast well suited for body text. 12 | A paragraph set in Lora will make a memorable appearance because of its brushed curves in contrast with driving serifs. The overall typographic voice of Lora perfectly conveys the mood of a modern-day story, or an art essay. 13 | 14 | Technically Lora is optimised for screen appearance, and works equally well in print. 15 | 16 | Designed by Olga Karpushina, and Alexei Vanyashin for Cyreal. 17 | 18 | Lora is a Unicode typeface family that supports 19 | languages that use the Latin script and its variants, and 20 | could be expanded to support other scripts. 21 | 22 | More specifically, this release supports the following Unicode 23 | ranges: Latin-1, Adobe Latin-3, GWF Standard Cyrillic 24 | 25 | To contribute to the project contact Alexei Vanyashin at 26 | a@cyreal.org 27 | 28 | .VBF Source files: 29 | Lora-[stylename]-OTF.vbf (Merged and optimized file, Postscript contours) 30 | Lora-[stylename]-TTF.vbf (Merged and optimized file, Truetype contours, Latin-1 range is manually hinted, 31 | all other characters autohinted) 32 | [stylename] is the name of the style, i.e. Regular, Bold, RegularItalic, BoldItalic 33 | 34 | ChangeLog 35 | 36 | 20 July 2011 (Olga Karpushina) Lora v. 1.000 37 | — Completed initial design 38 | 39 | 30 May 2013 (Alexei Vanyashin) Lora v. 1.011 40 | — Extended character set in all four fonts to include 41 | Adobe Latin-3, and GWF Standard Cyrillic encodings. 42 | — Equalized vertical metrics across the styles 43 | 44 | 19 June 2013 (Alexei Vanyashin) Lora v. 1012 45 | — Merged previous hinted version v. 1.000 with 46 | additional autohinted glyphs. 47 | — Improved kerning 48 | — Adjusted glyphs with caron accent 49 | 50 | 26 June 2013 (Alexei Vanyashin) Lora v. 1013 51 | — Fixed hinting issue 52 | — Minor design fixes 53 | 54 | 12 August 2013 (Alexei Vanyashin) Lora v. 1014 55 | — equalised nbsp, sp, noBreak, nonmarkingreturn advance widths 56 | 57 | If you make modifications be sure to add your name (N), 58 | email (E), web-address (if you have one) (W) and description (D). 59 | This list is in alphabetical order. 60 | 61 | N: Olga Karpushina 62 | E: okarpush@gmail.com 63 | W: www.cyreal.org 64 | D: Designer 65 | 66 | N: Alexei Vanyashin 67 | E: a@cyreal.org 68 | W: www.cyreal.org 69 | D: Designer and Mastering -------------------------------------------------------------------------------- /old/v1.014/Lora-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/Lora-Bold.ttf -------------------------------------------------------------------------------- /old/v1.014/Lora-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/Lora-BoldItalic.ttf -------------------------------------------------------------------------------- /old/v1.014/Lora-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/Lora-Italic.ttf -------------------------------------------------------------------------------- /old/v1.014/Lora-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/Lora-Regular.ttf -------------------------------------------------------------------------------- /old/v1.014/OFL.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011-2013, Cyreal (www.cyreal.org a@cyreal.org), with 2 | Reserved Font Name 'Lora' 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 | http://scripts.sil.org/OFL 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. 95 | -------------------------------------------------------------------------------- /old/v1.014/src/Lora-Bold-OTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/src/Lora-Bold-OTF.otf -------------------------------------------------------------------------------- /old/v1.014/src/Lora-BoldItalic-OTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/src/Lora-BoldItalic-OTF.otf -------------------------------------------------------------------------------- /old/v1.014/src/Lora-Italic-OTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/src/Lora-Italic-OTF.otf -------------------------------------------------------------------------------- /old/v1.014/src/Lora-Regular-OTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/src/Lora-Regular-OTF.otf -------------------------------------------------------------------------------- /old/v1.014/src/OTF/Lora-Bold-OTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/src/OTF/Lora-Bold-OTF.vfb -------------------------------------------------------------------------------- /old/v1.014/src/OTF/Lora-BoldItalic-OTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/src/OTF/Lora-BoldItalic-OTF.vfb -------------------------------------------------------------------------------- /old/v1.014/src/OTF/Lora-Italic-OTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/src/OTF/Lora-Italic-OTF.vfb -------------------------------------------------------------------------------- /old/v1.014/src/OTF/Lora-Regular-OTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/src/OTF/Lora-Regular-OTF.vfb -------------------------------------------------------------------------------- /old/v1.014/src/TTF/Lora-Bold-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/src/TTF/Lora-Bold-TTF.vfb -------------------------------------------------------------------------------- /old/v1.014/src/TTF/Lora-BoldItalic-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/src/TTF/Lora-BoldItalic-TTF.vfb -------------------------------------------------------------------------------- /old/v1.014/src/TTF/Lora-Italic-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/src/TTF/Lora-Italic-TTF.vfb -------------------------------------------------------------------------------- /old/v1.014/src/TTF/Lora-Regular-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrealtype/Lora-Cyrillic/7dc32ea6d540988ffdc8701e62b20def60b8ccd8/old/v1.014/src/TTF/Lora-Regular-TTF.vfb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fontmake>=2.4 2 | fontbakery>=0.7 3 | gftools>=0.7 4 | -------------------------------------------------------------------------------- /sources/.ninja_log: -------------------------------------------------------------------------------- 1 | # ninja log v5 2 | 1 3917 1729524065795034635 instance_ufos/Lora-Medium.ufo.json afd5b2e21f85b96b 3 | 1 4055 1729524065886214097 instance_ufos/Lora-Italic.ufo.json 66822f40a52ab4f2 4 | 2 4057 1729524065902876733 instance_ufos/Lora-SemiBoldItalic.ufo.json 48b750187a90b3ba 5 | 1 4104 1729524065926838857 instance_ufos/Lora-Regular.ufo.json ce540dad36cd0791 6 | 1 4192 1729524066017290778 instance_ufos/Lora-SemiBold.ufo.json 5bb1313ecafb5ea0 7 | 2 4214 1729524066033362958 instance_ufos/Lora-BoldItalic.ufo.json c1f91747aae63171 8 | 2 4224 1729524066021439771 instance_ufos/Lora-MediumItalic.ufo.json f947c5a26baeb190 9 | 1 4237 1729524066014174201 instance_ufos/Lora-Bold.ufo.json 20446fa403ae1f93 10 | 0 6733 1729524068913068052 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp4x7h0jbo 5a1086e297c594d 11 | 1 6877 1729524069025575600 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpvxgu0sgt c1e2a02f6066959a 12 | 4237 7787 1729524070021598567 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp08xprwmh b6a6799d13ab3d15 13 | 4105 7798 1729524070001239395 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp49s4qs5k baf24e4d51336190 14 | 3918 7830 1729524070063836199 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpevxne_ie d36d87818afcc380 15 | 4214 7906 1729524070137577359 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpj_rgl_m1 5f7cd68445356b62 16 | 4058 7948 1729524070153635955 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpqkty768f a9525e975a8ce101 17 | 4055 7995 1729524070168733095 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpe49682v2 832542c86d2dde3d 18 | 6733 9621 1729524071829340498 ../fonts/variable/Lora[wght].ttf eaf2ba7e7376a824 19 | 6878 9646 1729524071833366324 ../fonts/variable/Lora-Italic[wght].ttf b914c54b49abf2bc 20 | 7948 9897 1729524072022444610 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpabtcig5q 310032096106275b 21 | 7798 9910 1729524072022486777 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpt_3hba05 458079def46401f 22 | 7995 9914 1729524072013057419 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpn1f809ee e91efe3b682e1b21 23 | 7830 9920 1729524072018930825 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpi7ffhpja d4991a42398be485 24 | 7906 10029 1729524072080950130 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpjx5tlbb8 f454a4bb5170e7ae 25 | 9646 10545 1729524072960770138 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpuf3x1fzj.buildStatstamp 1fb12a46eab1ae1b 26 | 4055 11258 1729524073414054493 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpdvytpaov fbb9539c72c4566 27 | 3918 11262 1729524073441588569 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpygyqhde3 842d89a8aa1dea81 28 | 4224 11299 1729524073463392113 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp79ejkib5 8f7d1dcdd5a8b0a8 29 | 4192 11300 1729524073450293178 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp6bqop27a 688612f4879ee698 30 | 9910 11728 1729524073921071210 ../fonts/ttf/Lora-Regular.ttf 23d7ce9a3ad44e79 31 | 9914 11746 1729524073923828747 ../fonts/ttf/Lora-Bold.ttf 13047866842f59f6 32 | 10029 11786 1729524073971759452 ../fonts/ttf/Lora-SemiBold.ttf c1d596c65f241b38 33 | 9920 11842 1729524074030326514 ../fonts/ttf/Lora-Medium.ttf 5eff244b4de5d5ac 34 | 10545 12439 1729524074642998875 ../fonts/ttf/Lora-Italic.ttf a302ef4fea84a2d 35 | 9897 12852 1729524075161726030 ../fonts/webfonts/Lora-Italic[wght].woff2 b94b9af72476f90e 36 | 9621 12866 1729524075135205702 ../fonts/webfonts/Lora[wght].woff2 80c950391fa1b72c 37 | 11263 13142 1729524075398159190 ../fonts/otf/Lora-Medium.otf 6e4bb54a847d6ac2 38 | 11299 13240 1729524075456629544 ../fonts/otf/Lora-SemiBold.otf b92d3265c1b5fa5b 39 | 11728 13272 1729524075545878176 ../fonts/webfonts/Lora-Regular.woff2 81490848217dc656 40 | 11300 13292 1729524075467905691 ../fonts/otf/Lora-Regular.otf 246735714482b455 41 | 11786 13454 1729524075712927668 ../fonts/webfonts/Lora-SemiBold.woff2 f90be5574e3f18b8 42 | 11258 13463 1729524075595629628 ../fonts/otf/Lora-Italic.otf 929b53cac7fdee8d 43 | 11746 13487 1729524075751793099 ../fonts/webfonts/Lora-Bold.woff2 3ab3078a592ae284 44 | 11842 13517 1729524075789288032 ../fonts/webfonts/Lora-Medium.woff2 69ad43b6022d9399 45 | 7787 13706 1729524075978916567 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpr9n8olg_ 2bc4b772754f7592 46 | 12439 13889 1729524076182313661 ../fonts/webfonts/Lora-Italic.woff2 3af25ffc78874edf 47 | 13240 14592 1729524076838179862 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpn6kiro3u 8cf2165c469e3450 48 | 13706 15144 1729524077396256613 ../fonts/otf/Lora-Bold.otf 671a377e4a8093bb 49 | 12852 15569 1729524077867937851 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmphaoysbud c2705e0786b10bd5 50 | 13272 15900 1729524078168097647 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpehnds3lz f3d785c49dc4ab62 51 | 14592 15954 1729524078203278001 ../fonts/ttf/Lora-SemiBoldItalic.ttf e5c74be9b97e59b4 52 | 15569 16688 1729524078951191120 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp5vkckefa 7e9e85fbd3c6e304 53 | 15900 17019 1729524079290058430 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpmvp_igp_ 9f44aa9655f73dae 54 | 15954 17075 1729524079407649969 ../fonts/webfonts/Lora-SemiBoldItalic.woff2 49e6653a8aa9c28a 55 | 12866 17738 1729524080025741155 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp37ndhwi_ 4dfe3b03dda783a6 56 | 13292 17927 1729524080182986623 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpka5sro8u 4ec4c942ee7df707 57 | 13142 17939 1729524080192077565 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp2w__lbl7 7b993d77cdda102c 58 | 16688 17998 1729524080249139088 ../fonts/ttf/Lora-MediumItalic.ttf 128465aee4983f38 59 | 17019 18287 1729524080554651417 ../fonts/ttf/Lora-BoldItalic.ttf aace28c8d0a3f65e 60 | 17738 19151 1729524081429808516 ../fonts/otf/Lora-MediumItalic.otf 6d8c733df749bd16 61 | 17998 19175 1729524081499894140 ../fonts/webfonts/Lora-MediumItalic.woff2 1865296181d02f97 62 | 17927 19367 1729524081621570464 ../fonts/otf/Lora-BoldItalic.otf 5428c5d44b5b4a21 63 | 17939 19367 1729524081625891206 ../fonts/otf/Lora-SemiBoldItalic.otf ca5dda476ffef698 64 | 18287 19414 1729524081749091402 ../fonts/webfonts/Lora-BoldItalic.woff2 a5a6a944891333ce 65 | 2 3696 1729524137315982377 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpww544i7f 3bd21dc4069be231 66 | 1 3714 1729524137006762473 instance_ufos/Lora-Medium.ufo.json afd5b2e21f85b96b 67 | 1 3721 1729524136990554044 instance_ufos/Lora-Bold.ufo.json 20446fa403ae1f93 68 | 2 3769 1729524137382991966 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmppn51d13g 17f17f5670f3635b 69 | 1 3804 1729524137072231897 instance_ufos/Lora-SemiBold.ufo.json 5bb1313ecafb5ea0 70 | 1 3804 1729524137376010520 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp29qiay41 47722a513b7fa33a 71 | 1 3896 1729524137127064757 instance_ufos/Lora-Regular.ufo.json ce540dad36cd0791 72 | 3696 5213 1729524138861508609 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp8s2s4eij 3a703be28c599a63 73 | 1 6084 1729524139682171848 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpfonsj8nt f8ad4481ae8eada2 74 | 1 6095 1729524139672547990 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpc75ibzgl dfacf1faeb00be42 75 | 2 6815 1729524140478510963 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp1de0f0gb 16562d7a6c0bbc83 76 | 3769 6932 1729524140512293528 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpspyrnu33 5003b6eb919eaf6c 77 | 2 6941 1729524140565980640 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp_u9u4wr5 5d2fa977a432adbe 78 | 3714 6946 1729524140536417818 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp7ioyldo1 c0e6771c1fd5e7a6 79 | 3896 7031 1729524140657715850 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpsdg65nrg 436a9cd28baf9e17 80 | 2 7096 1729524140659174431 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpeacrlwou 63f6d8e9887f0461 81 | 3804 7194 1729524140814803027 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpz1dkd_3k 4da5dc0783b45e20 82 | 6095 7814 1729524141470729186 ../fonts/variable/Lora-Italic[wght].ttf e54eb1dd8ad6bb6a 83 | 6084 7931 1729524141559868443 ../fonts/variable/Lora[wght].ttf 39a15616b3bf5483 84 | 6933 8559 1729524142159919243 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpd_fp24j7 ced8c11e7f438668 85 | 6941 8573 1729524142183862159 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpuzomku5u 876df5ded4098b3 86 | 6946 8648 1729524142205610745 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp485y7th9 651a9e0428ebdb70 87 | 7031 8695 1729524142260494438 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp1t1lq0ge e3fcdab4e00cc252 88 | 7194 8854 1729524142416137534 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpo_pqwgq4 e8727822fe446461 89 | 7096 8976 1729524142645682665 ../fonts/otf/Lora-Italic.otf af12a4b3cac3cf11 90 | 8559 9112 1729524142964602260 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpf22d0yv8.buildStatstamp 8a0adb9cd3de8d2c 91 | 7814 9325 1729524143070227113 ../fonts/webfonts/Lora-Italic[wght].woff2 b94b9af72476f90e 92 | 7931 9440 1729524143184003159 ../fonts/webfonts/Lora[wght].woff2 80c950391fa1b72c 93 | 3721 10091 1729524143739495455 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpit0jgi3q 13ec502075b4aa81 94 | 3804 10320 1729524143904700993 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpaw92y5_l e3d129af883b023e 95 | 8573 10399 1729524144039298335 ../fonts/ttf/Lora-Bold.ttf 5a6ad42ca7f0ba2d 96 | 8649 10437 1729524143996074621 ../fonts/ttf/Lora-Medium.ttf a31fa95659249d5a 97 | 8695 10496 1729524144138661116 ../fonts/ttf/Lora-Regular.ttf 3853aa098549fd97 98 | 8854 10669 1729524144293825546 ../fonts/ttf/Lora-SemiBold.ttf 867e08f5b96ffe3e 99 | 8976 10803 1729524144481756126 ../fonts/ttf/Lora-Italic.ttf 6ff56146bc479d14 100 | 9440 10953 1729524144534309199 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpsn6lpqy9 1b702ecbbdf4d8b7 101 | 9112 10962 1729524144578747744 ../fonts/ttf/Lora-MediumItalic.ttf faa204fe96db87c2 102 | 9325 11255 1729524144896278009 ../fonts/otf/Lora-MediumItalic.otf 4995f090775851d9 103 | 5214 11486 1729524145189555692 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpmppf342b 6eff2bf69cd2f826 104 | 10399 11895 1729524145602032578 ../fonts/webfonts/Lora-Bold.woff2 3ab3078a592ae284 105 | 10496 11967 1729524145670685705 ../fonts/webfonts/Lora-Regular.woff2 81490848217dc656 106 | 10091 11982 1729524145619111839 ../fonts/otf/Lora-Medium.otf fb1f2e9f8d840242 107 | 10437 12044 1729524145773444396 ../fonts/webfonts/Lora-Medium.woff2 69ad43b6022d9399 108 | 10320 12190 1729524145839465153 ../fonts/otf/Lora-SemiBold.otf 2f1ecf00308e9b35 109 | 10669 12297 1729524146003161443 ../fonts/webfonts/Lora-SemiBold.woff2 f90be5574e3f18b8 110 | 10962 12335 1729524146053570811 ../fonts/webfonts/Lora-MediumItalic.woff2 1865296181d02f97 111 | 10804 12336 1729524146056974388 ../fonts/webfonts/Lora-Italic.woff2 3af25ffc78874edf 112 | 10953 12634 1729524146352070526 ../fonts/ttf/Lora-SemiBoldItalic.ttf 340ddae261024f29 113 | 11255 12867 1729524146585068151 ../fonts/otf/Lora-SemiBoldItalic.otf b99005f91ad718d7 114 | 11486 13026 1729524146740678955 ../fonts/otf/Lora-Regular.otf 29ae541e56e54206 115 | 6815 13094 1729524146814580073 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpdqn6va8j 9100e292bf92d078 116 | 12634 13698 1729524147467396237 ../fonts/webfonts/Lora-SemiBoldItalic.woff2 49e6653a8aa9c28a 117 | 13094 14302 1729524148027196484 ../fonts/otf/Lora-Bold.otf d075a76d6f418579 118 | 11895 14379 1729524148118573820 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp30e55wbr d00144b10ac622c0 119 | 14379 15378 1729524149096104570 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpvgh1uuna 54d809f0e2352a40 120 | 11968 16316 1729524150045867410 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpx7ag906r ae3e51f789a9c7fd 121 | 15378 16545 1729524150277230704 ../fonts/ttf/Lora-BoldItalic.ttf 927bbb2cff2d61d 122 | 16316 17602 1729524151318701422 ../fonts/otf/Lora-BoldItalic.otf dbd474437bbc43f7 123 | 16545 17602 1729524151363752591 ../fonts/webfonts/Lora-BoldItalic.woff2 a5a6a944891333ce 124 | 1 4639 1730838128384759143 instance_ufos/Lora-SemiBold.ufo.json 5bb1313ecafb5ea0 125 | 3 4661 1730838128400373616 instance_ufos/Lora-BoldItalic.ufo.json c1f91747aae63171 126 | 2 4673 1730838128363736097 instance_ufos/Lora-SemiBoldItalic.ufo.json 48b750187a90b3ba 127 | 2 4689 1730838128420806454 instance_ufos/Lora-Bold.ufo.json 20446fa403ae1f93 128 | 1 4691 1730838128361805393 instance_ufos/Lora-Medium.ufo.json afd5b2e21f85b96b 129 | 2 4774 1730838128451798774 instance_ufos/Lora-MediumItalic.ufo.json f947c5a26baeb190 130 | 1 4848 1730838128481805803 instance_ufos/Lora-Regular.ufo.json ce540dad36cd0791 131 | 2 4945 1730838128594064938 instance_ufos/Lora-Italic.ufo.json 66822f40a52ab4f2 132 | 2 7732 1730838131831863248 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpc75ibzgl dfacf1faeb00be42 133 | 1 7863 1730838131957486274 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpfonsj8nt f8ad4481ae8eada2 134 | 4691 8906 1730838133074716157 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp7ioyldo1 c0e6771c1fd5e7a6 135 | 4639 8941 1730838133130635599 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpz1dkd_3k 4da5dc0783b45e20 136 | 4848 8955 1730838133137011713 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpsdg65nrg 436a9cd28baf9e17 137 | 4689 8959 1730838133126785731 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpspyrnu33 5003b6eb919eaf6c 138 | 4662 9039 1730838133193071780 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp30e55wbr d00144b10ac622c0 139 | 4674 9259 1730838133398461205 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmppn51d13g 17f17f5670f3635b 140 | 7732 10377 1730838134545371411 ../fonts/variable/Lora-Italic[wght].ttf e54eb1dd8ad6bb6a 141 | 7863 10461 1730838134577092187 ../fonts/variable/Lora[wght].ttf 39a15616b3bf5483 142 | 9039 11229 1730838135406415750 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpd_fp24j7 ced8c11e7f438668 143 | 8955 11231 1730838135403673380 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp1t1lq0ge e3fcdab4e00cc252 144 | 8941 11470 1730838135535580979 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpo_pqwgq4 e8727822fe446461 145 | 8906 11487 1730838135549373454 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp485y7th9 651a9e0428ebdb70 146 | 10462 12333 1730838136614756263 ../fonts/webfonts/Lora[wght].woff2 80c950391fa1b72c 147 | 10377 12343 1730838136622400416 ../fonts/webfonts/Lora-Italic[wght].woff2 b94b9af72476f90e 148 | 4641 12665 1730838136860020784 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpaw92y5_l e3d129af883b023e 149 | 4945 12681 1730838136881852995 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpmppf342b 6eff2bf69cd2f826 150 | 4775 12721 1730838136915815934 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpit0jgi3q 13ec502075b4aa81 151 | 4663 12977 1730838137218407936 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpx7ag906r ae3e51f789a9c7fd 152 | 11231 13062 1730838137284614110 ../fonts/ttf/Lora-Regular.ttf 3853aa098549fd97 153 | 11470 13166 1730838137387152594 ../fonts/ttf/Lora-SemiBold.ttf 867e08f5b96ffe3e 154 | 11487 13193 1730838137419830410 ../fonts/ttf/Lora-Medium.ttf a31fa95659249d5a 155 | 9259 13243 1730838137500202225 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp29qiay41 47722a513b7fa33a 156 | 8959 14810 1730838139089078268 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpdqn6va8j 9100e292bf92d078 157 | 1 3709 1730838311742942865 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpbknbumus b0c61b4ff53ba989 158 | 2 3799 1730838311819321891 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpwojdxwds d42019e7c0a22ac7 159 | 2 3922 1730838311919935249 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp2z1nhjtn fa45408bd08b5ec1 160 | 2 4069 1730838312067476853 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp189hefoi 63f71a2791ce125a 161 | 3 4193 1730838312203331813 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp_tme_xv9 fe0c0c31a915f3ef 162 | 3709 5539 1730838313475867816 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpjqa_3d7n ff3750cf9ca4d4bc 163 | 3799 5608 1730838313503418974 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpc8irbuh6 24c936af63a054dc 164 | 3922 5619 1730838313541367780 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpfbq7oq96 99526fdbcf6ea638 165 | 4069 5835 1730838313714167547 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpjx6p4o_x d390ee9e31a675b3 166 | 4193 6052 1730838313977428815 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpm3s80vz6 d57cd9011e35c4ea 167 | 1 6929 1730838314902454914 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpjxosb3p7 5dd2d878aa9f77eb 168 | 1 7240 1730838315172656294 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp0l5vi3cd 71e49fab65ff10d9 169 | 3 7352 1730838315383220159 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp9wdi0w1d b23b8cfde0d54d67 170 | 2 7365 1730838315342430150 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpo30xm7kn 905b106630892a06 171 | 2 7490 1730838315479197317 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp5culvsop 846afa8b094aeb7b 172 | 2 7758 1730838315679608158 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmphn1m4vy1 71bb4d0a774414b 173 | 5619 7781 1730838315686304771 ../fonts/ttf/Lora-Medium.ttf f5dc964cb51a6531 174 | 5540 7793 1730838315718455796 ../fonts/ttf/Lora-Regular.ttf 54d3909ce9a8bfc5 175 | 5608 7798 1730838315668261512 ../fonts/ttf/Lora-Bold.ttf 6be7710fe4a40aec 176 | 5835 8073 1730838316022927155 ../fonts/ttf/Lora-SemiBold.ttf 5220d9b5f23afeba 177 | 6052 8262 1730838316205750612 ../fonts/ttf/Lora-Italic.ttf e6a9223617968bcc 178 | 3 8311 1730838316296312655 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpusmcj7nx 1949db9ef1da2c44 179 | 6930 9123 1730838317108894877 ../fonts/variable/Lora[wght].ttf d23d783753f2e3bd 180 | 7365 9609 1730838317603024598 ../fonts/otf/Lora-SemiBold.otf dbdf456cc0e4377c 181 | 7798 9622 1730838317682017162 ../fonts/webfonts/Lora-Bold.woff2 3ab3078a592ae284 182 | 7240 9624 1730838317561934757 ../fonts/variable/Lora-Italic[wght].ttf ec41d36ac656a9f4 183 | 7781 9638 1730838317695401471 ../fonts/webfonts/Lora-Medium.woff2 69ad43b6022d9399 184 | 7793 9669 1730838317732771152 ../fonts/webfonts/Lora-Regular.woff2 81490848217dc656 185 | 7352 9776 1730838317699383672 ../fonts/otf/Lora-Bold.otf 24b16782d7ca0ebe 186 | 7490 9798 1730838317684608032 ../fonts/otf/Lora-Regular.otf 908edebe155801b3 187 | 8073 9840 1730838317921271808 ../fonts/webfonts/Lora-SemiBold.woff2 f90be5574e3f18b8 188 | 8262 10036 1730838318071964449 ../fonts/webfonts/Lora-Italic.woff2 3af25ffc78874edf 189 | 7758 10114 1730838318092235912 ../fonts/otf/Lora-Medium.otf d9df93568a26993 190 | 9624 10272 1730838318502052413 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp619xq7ym.buildStatstamp a20c5c3476b27ddc 191 | 8311 10560 1730838318584362846 ../fonts/otf/Lora-Italic.otf a4f55158393018e8 192 | 9123 10832 1730838318944529479 ../fonts/webfonts/Lora[wght].woff2 80c950391fa1b72c 193 | 9639 11185 1730838319325205075 ../fonts/webfonts/Lora-Italic[wght].woff2 b94b9af72476f90e 194 | 9798 12490 1730838320561964940 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpss_ybpb0 8a0416e58b13b1c8 195 | 9669 12503 1730838320566687015 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpw9zrcn0c 59f0d2984b320a6a 196 | 9609 12523 1730838320588198434 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpp9jjzbs9 b85125fc014b7cdc 197 | 12491 13708 1730838321716586623 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp3m4misgw f04781ae15432347 198 | 12503 13708 1730838321714014753 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp523n760t 9c17c2375c8a816d 199 | 12523 13720 1730838321728090852 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpz0licsmh 8a1e0d5eb13b4d82 200 | 9840 14633 1730838322701957656 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp8eedo545 f425513b4311a78c 201 | 9623 14682 1730838322741684041 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp85hriixx fe2ca80c604802bf 202 | 9776 14770 1730838322831030336 /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpkc2w1ke9 ea8493e1cc0d0e58 203 | 13720 15086 1730838323123023303 ../fonts/ttf/Lora-MediumItalic.ttf dc88d336c685e2f8 204 | 13708 15087 1730838323123085511 ../fonts/ttf/Lora-BoldItalic.ttf b20322d3917aee9f 205 | 13708 15088 1730838323123106886 ../fonts/ttf/Lora-SemiBoldItalic.ttf 960b43c082f89f8a 206 | 14633 16074 1730838324158148412 ../fonts/otf/Lora-BoldItalic.otf c45f061df878fb60 207 | 14682 16121 1730838324193334181 ../fonts/otf/Lora-MediumItalic.otf d04eec187269912 208 | 14770 16236 1730838324287434760 ../fonts/otf/Lora-SemiBoldItalic.otf bae02fa34e8210fc 209 | 15086 16264 1730838324365056660 ../fonts/webfonts/Lora-MediumItalic.woff2 1865296181d02f97 210 | 15088 16281 1730838324389420783 ../fonts/webfonts/Lora-SemiBoldItalic.woff2 49e6653a8aa9c28a 211 | 15087 16282 1730838324383668251 ../fonts/webfonts/Lora-BoldItalic.woff2 a5a6a944891333ce 212 | -------------------------------------------------------------------------------- /sources/build-1730838304293249000.ninja: -------------------------------------------------------------------------------- 1 | # buildVariable: Build a variable font from a source file 2 | rule buildVariable 3 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 4 | gftools.builder.jobrunner fontmake --output-path $out -o variable $ 5 | $fontmake_type $in $args $stamp 6 | description = buildVariable 7 | 8 | # fix: Run gftools-fix 9 | rule fix 10 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 11 | gftools.builder.jobrunner gftools-fix-font -o $out $args $in $stamp 12 | description = fix 13 | 14 | # compress: Compress to webfont 15 | rule compress 16 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 17 | gftools.builder.jobrunner fonttools ttLib.woff2 compress -o $out $in $ 18 | $stamp 19 | description = compress 20 | 21 | # buildStat: Build a STAT table from one or more source files 22 | rule buildSTAT-operation 23 | command = gftools-gen-stat --out $tempdir $args -- $in && mv $finalfile $ 24 | $out $stamp 25 | rule buildSTAT-postprocess 26 | command = gftools-gen-stat --inplace $args -- $in $stamp 27 | 28 | # instantiateUfo: Create instance UFOs from a Glyphs or designspace file 29 | rule instantiateUfo 30 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 31 | gftools.builder.jobrunner fontmake -i "$instance_name" -o ufo $ 32 | $fontmake_type $in $args $stamp 33 | description = instantiateUfo 34 | 35 | # buildTTF: Build a TTF from a source file 36 | rule buildTTF 37 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 38 | gftools.builder.jobrunner fontmake --output-path $out -o ttf $ 39 | $fontmake_type $in $args $stamp 40 | description = buildTTF 41 | 42 | # autohint: Run gftools-autohint 43 | rule autohint 44 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 45 | gftools.builder.jobrunner gftools-autohint $args -o $out $in $stamp 46 | description = autohint 47 | 48 | # buildOTF: Build a OTF from a source file 49 | rule buildOTF 50 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 51 | gftools.builder.jobrunner fontmake --output-path $out -o otf $ 52 | $fontmake_type $in $args $stamp 53 | description = buildOTF 54 | 55 | # copy: Copy a file 56 | rule copy 57 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 58 | gftools.builder.jobrunner cp $in $out $stamp 59 | description = copy 60 | 61 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpjxosb3p7 62 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpjxosb3p7: $ 63 | buildVariable Lora.glyphs 64 | operation = buildVariable 65 | args = --filter ... --filter FlattenComponentsFilter --filter $ 66 | DecomposeTransformedComponentsFilter 67 | fontmake_type = -g 68 | fontmake_args = --verbose WARNING 69 | # Generating instance_ufos/Lora-Regular.ufo.json 70 | build instance_ufos/Lora-Regular.ufo.json: instantiateUfo Lora.glyphs 71 | operation = instantiateUfo 72 | instance_name = Lora Regular 73 | fontmake_type = -g 74 | fontmake_args = --verbose WARNING 75 | args = --ufo-structure=json --instance-dir instance_ufos 76 | # Generating instance_ufos/Lora-Medium.ufo.json 77 | build instance_ufos/Lora-Medium.ufo.json: instantiateUfo Lora.glyphs 78 | operation = instantiateUfo 79 | instance_name = Lora Medium 80 | fontmake_type = -g 81 | fontmake_args = --verbose WARNING 82 | args = --ufo-structure=json --instance-dir instance_ufos 83 | # Generating instance_ufos/Lora-SemiBold.ufo.json 84 | build instance_ufos/Lora-SemiBold.ufo.json: instantiateUfo Lora.glyphs 85 | operation = instantiateUfo 86 | instance_name = Lora SemiBold 87 | fontmake_type = -g 88 | fontmake_args = --verbose WARNING 89 | args = --ufo-structure=json --instance-dir instance_ufos 90 | # Generating instance_ufos/Lora-Bold.ufo.json 91 | build instance_ufos/Lora-Bold.ufo.json: instantiateUfo Lora.glyphs 92 | operation = instantiateUfo 93 | instance_name = Lora Bold 94 | fontmake_type = -g 95 | fontmake_args = --verbose WARNING 96 | args = --ufo-structure=json --instance-dir instance_ufos 97 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp0l5vi3cd 98 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp0l5vi3cd: $ 99 | buildVariable Lora-Italic.glyphs 100 | operation = buildVariable 101 | args = --filter ... --filter FlattenComponentsFilter --filter $ 102 | DecomposeTransformedComponentsFilter 103 | fontmake_type = -g 104 | fontmake_args = --verbose WARNING 105 | # Generating instance_ufos/Lora-Italic.ufo.json 106 | build instance_ufos/Lora-Italic.ufo.json: instantiateUfo Lora-Italic.glyphs 107 | operation = instantiateUfo 108 | instance_name = Lora Italic 109 | fontmake_type = -g 110 | fontmake_args = --verbose WARNING 111 | args = --ufo-structure=json --instance-dir instance_ufos 112 | # Generating instance_ufos/Lora-MediumItalic.ufo.json 113 | build instance_ufos/Lora-MediumItalic.ufo.json: instantiateUfo $ 114 | Lora-Italic.glyphs 115 | operation = instantiateUfo 116 | instance_name = Lora Medium Italic 117 | fontmake_type = -g 118 | fontmake_args = --verbose WARNING 119 | args = --ufo-structure=json --instance-dir instance_ufos 120 | # Generating instance_ufos/Lora-SemiBoldItalic.ufo.json 121 | build instance_ufos/Lora-SemiBoldItalic.ufo.json: instantiateUfo $ 122 | Lora-Italic.glyphs 123 | operation = instantiateUfo 124 | instance_name = Lora SemiBold Italic 125 | fontmake_type = -g 126 | fontmake_args = --verbose WARNING 127 | args = --ufo-structure=json --instance-dir instance_ufos 128 | # Generating instance_ufos/Lora-BoldItalic.ufo.json 129 | build instance_ufos/Lora-BoldItalic.ufo.json: instantiateUfo $ 130 | Lora-Italic.glyphs 131 | operation = instantiateUfo 132 | instance_name = Lora Bold Italic 133 | fontmake_type = -g 134 | fontmake_args = --verbose WARNING 135 | args = --ufo-structure=json --instance-dir instance_ufos 136 | # Generating ../fonts/webfonts/Lora[wght].woff2 137 | build ../fonts/webfonts/Lora[wght].woff2: compress $ 138 | ../fonts/variable/Lora[wght].ttf 139 | operation = compress 140 | # Postprocessing with BuildSTAT 141 | build $ 142 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp619xq7ym.buildStatstamp: $ 143 | buildSTAT-postprocess ../fonts/variable/Lora-Italic[wght].ttf $ 144 | ../fonts/variable/Lora[wght].ttf 145 | stamp = && touch $ 146 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp619xq7ym.buildStatstamp 147 | postprocess = buildStat 148 | args = --src /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmprw9rzetu 149 | # Generating ../fonts/webfonts/Lora-Italic[wght].woff2 150 | build ../fonts/webfonts/Lora-Italic[wght].woff2: compress $ 151 | ../fonts/variable/Lora-Italic[wght].ttf 152 | operation = compress 153 | # Generating ../fonts/webfonts/Lora-Regular.woff2 154 | build ../fonts/webfonts/Lora-Regular.woff2: compress $ 155 | ../fonts/ttf/Lora-Regular.ttf 156 | operation = compress 157 | # Generating ../fonts/webfonts/Lora-Medium.woff2 158 | build ../fonts/webfonts/Lora-Medium.woff2: compress $ 159 | ../fonts/ttf/Lora-Medium.ttf 160 | operation = compress 161 | # Generating ../fonts/webfonts/Lora-SemiBold.woff2 162 | build ../fonts/webfonts/Lora-SemiBold.woff2: compress $ 163 | ../fonts/ttf/Lora-SemiBold.ttf 164 | operation = compress 165 | # Generating ../fonts/webfonts/Lora-Bold.woff2 166 | build ../fonts/webfonts/Lora-Bold.woff2: compress ../fonts/ttf/Lora-Bold.ttf 167 | operation = compress 168 | # Generating ../fonts/webfonts/Lora-Italic.woff2 169 | build ../fonts/webfonts/Lora-Italic.woff2: compress $ 170 | ../fonts/ttf/Lora-Italic.ttf 171 | operation = compress 172 | # Generating ../fonts/webfonts/Lora-MediumItalic.woff2 173 | build ../fonts/webfonts/Lora-MediumItalic.woff2: compress $ 174 | ../fonts/ttf/Lora-MediumItalic.ttf 175 | operation = compress 176 | # Generating ../fonts/webfonts/Lora-SemiBoldItalic.woff2 177 | build ../fonts/webfonts/Lora-SemiBoldItalic.woff2: compress $ 178 | ../fonts/ttf/Lora-SemiBoldItalic.ttf 179 | operation = compress 180 | # Generating ../fonts/webfonts/Lora-BoldItalic.woff2 181 | build ../fonts/webfonts/Lora-BoldItalic.woff2: compress $ 182 | ../fonts/ttf/Lora-BoldItalic.ttf 183 | operation = compress 184 | # Generating ../fonts/variable/Lora[wght].ttf 185 | build ../fonts/variable/Lora[wght].ttf: fix $ 186 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpjxosb3p7 187 | operation = fix 188 | args = 189 | # Generating ../fonts/variable/Lora-Italic[wght].ttf 190 | build ../fonts/variable/Lora-Italic[wght].ttf: fix $ 191 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp0l5vi3cd 192 | operation = fix 193 | args = 194 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpbknbumus 195 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpbknbumus: $ 196 | buildTTF instance_ufos/Lora-Regular.ufo.json 197 | operation = buildTTF 198 | args = --filter ... --filter FlattenComponentsFilter --filter $ 199 | DecomposeTransformedComponentsFilter 200 | fontmake_type = -u 201 | fontmake_args = --verbose WARNING 202 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp5culvsop 203 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp5culvsop: $ 204 | buildOTF instance_ufos/Lora-Regular.ufo.json 205 | operation = buildOTF 206 | args = --filter ... --filter FlattenComponentsFilter --filter $ 207 | DecomposeTransformedComponentsFilter 208 | fontmake_type = -u 209 | fontmake_args = --verbose WARNING 210 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpjqa_3d7n 211 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpjqa_3d7n: $ 212 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpbknbumus 213 | operation = autohint 214 | args = --fail-ok 215 | # Generating ../fonts/ttf/Lora-Regular.ttf 216 | build ../fonts/ttf/Lora-Regular.ttf: fix $ 217 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpjqa_3d7n 218 | operation = fix 219 | args = 220 | # Generating ../fonts/otf/Lora-Regular.otf 221 | build ../fonts/otf/Lora-Regular.otf: fix $ 222 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp5culvsop 223 | operation = fix 224 | args = 225 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp2z1nhjtn 226 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp2z1nhjtn: $ 227 | buildTTF instance_ufos/Lora-Medium.ufo.json 228 | operation = buildTTF 229 | args = --filter ... --filter FlattenComponentsFilter --filter $ 230 | DecomposeTransformedComponentsFilter 231 | fontmake_type = -u 232 | fontmake_args = --verbose WARNING 233 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmphn1m4vy1 234 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmphn1m4vy1: $ 235 | buildOTF instance_ufos/Lora-Medium.ufo.json 236 | operation = buildOTF 237 | args = --filter ... --filter FlattenComponentsFilter --filter $ 238 | DecomposeTransformedComponentsFilter 239 | fontmake_type = -u 240 | fontmake_args = --verbose WARNING 241 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpfbq7oq96 242 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpfbq7oq96: $ 243 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp2z1nhjtn 244 | operation = autohint 245 | args = --fail-ok 246 | # Generating ../fonts/ttf/Lora-Medium.ttf 247 | build ../fonts/ttf/Lora-Medium.ttf: fix $ 248 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpfbq7oq96 249 | operation = fix 250 | args = 251 | # Generating ../fonts/otf/Lora-Medium.otf 252 | build ../fonts/otf/Lora-Medium.otf: fix $ 253 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmphn1m4vy1 254 | operation = fix 255 | args = 256 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp189hefoi 257 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp189hefoi: $ 258 | buildTTF instance_ufos/Lora-SemiBold.ufo.json 259 | operation = buildTTF 260 | args = --filter ... --filter FlattenComponentsFilter --filter $ 261 | DecomposeTransformedComponentsFilter 262 | fontmake_type = -u 263 | fontmake_args = --verbose WARNING 264 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpo30xm7kn 265 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpo30xm7kn: $ 266 | buildOTF instance_ufos/Lora-SemiBold.ufo.json 267 | operation = buildOTF 268 | args = --filter ... --filter FlattenComponentsFilter --filter $ 269 | DecomposeTransformedComponentsFilter 270 | fontmake_type = -u 271 | fontmake_args = --verbose WARNING 272 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpjx6p4o_x 273 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpjx6p4o_x: $ 274 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp189hefoi 275 | operation = autohint 276 | args = --fail-ok 277 | # Generating ../fonts/ttf/Lora-SemiBold.ttf 278 | build ../fonts/ttf/Lora-SemiBold.ttf: fix $ 279 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpjx6p4o_x 280 | operation = fix 281 | args = 282 | # Generating ../fonts/otf/Lora-SemiBold.otf 283 | build ../fonts/otf/Lora-SemiBold.otf: fix $ 284 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpo30xm7kn 285 | operation = fix 286 | args = 287 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpwojdxwds 288 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpwojdxwds: $ 289 | buildTTF instance_ufos/Lora-Bold.ufo.json 290 | operation = buildTTF 291 | args = --filter ... --filter FlattenComponentsFilter --filter $ 292 | DecomposeTransformedComponentsFilter 293 | fontmake_type = -u 294 | fontmake_args = --verbose WARNING 295 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp9wdi0w1d 296 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp9wdi0w1d: $ 297 | buildOTF instance_ufos/Lora-Bold.ufo.json 298 | operation = buildOTF 299 | args = --filter ... --filter FlattenComponentsFilter --filter $ 300 | DecomposeTransformedComponentsFilter 301 | fontmake_type = -u 302 | fontmake_args = --verbose WARNING 303 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpc8irbuh6 304 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpc8irbuh6: $ 305 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpwojdxwds 306 | operation = autohint 307 | args = --fail-ok 308 | # Generating ../fonts/ttf/Lora-Bold.ttf 309 | build ../fonts/ttf/Lora-Bold.ttf: fix $ 310 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpc8irbuh6 311 | operation = fix 312 | args = 313 | # Generating ../fonts/otf/Lora-Bold.otf 314 | build ../fonts/otf/Lora-Bold.otf: fix $ 315 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp9wdi0w1d 316 | operation = fix 317 | args = 318 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp_tme_xv9 319 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp_tme_xv9: $ 320 | buildTTF instance_ufos/Lora-Italic.ufo.json 321 | operation = buildTTF 322 | args = --filter ... --filter FlattenComponentsFilter --filter $ 323 | DecomposeTransformedComponentsFilter 324 | fontmake_type = -u 325 | fontmake_args = --verbose WARNING 326 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpusmcj7nx 327 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpusmcj7nx: $ 328 | buildOTF instance_ufos/Lora-Italic.ufo.json 329 | operation = buildOTF 330 | args = --filter ... --filter FlattenComponentsFilter --filter $ 331 | DecomposeTransformedComponentsFilter 332 | fontmake_type = -u 333 | fontmake_args = --verbose WARNING 334 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpm3s80vz6 335 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpm3s80vz6: $ 336 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp_tme_xv9 337 | operation = autohint 338 | args = --fail-ok 339 | # Generating ../fonts/ttf/Lora-Italic.ttf 340 | build ../fonts/ttf/Lora-Italic.ttf: fix $ 341 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpm3s80vz6 342 | operation = fix 343 | args = 344 | # Generating ../fonts/otf/Lora-Italic.otf 345 | build ../fonts/otf/Lora-Italic.otf: fix $ 346 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpusmcj7nx 347 | operation = fix 348 | args = 349 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpp9jjzbs9 350 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpp9jjzbs9: $ 351 | buildTTF instance_ufos/Lora-MediumItalic.ufo.json 352 | operation = buildTTF 353 | args = --filter ... --filter FlattenComponentsFilter --filter $ 354 | DecomposeTransformedComponentsFilter 355 | fontmake_type = -u 356 | fontmake_args = --verbose WARNING 357 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp85hriixx 358 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp85hriixx: $ 359 | buildOTF instance_ufos/Lora-MediumItalic.ufo.json 360 | operation = buildOTF 361 | args = --filter ... --filter FlattenComponentsFilter --filter $ 362 | DecomposeTransformedComponentsFilter 363 | fontmake_type = -u 364 | fontmake_args = --verbose WARNING 365 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpz0licsmh 366 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpz0licsmh: $ 367 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpp9jjzbs9 368 | operation = autohint 369 | args = --fail-ok 370 | # Generating ../fonts/ttf/Lora-MediumItalic.ttf 371 | build ../fonts/ttf/Lora-MediumItalic.ttf: fix $ 372 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpz0licsmh 373 | operation = fix 374 | args = 375 | # Generating ../fonts/otf/Lora-MediumItalic.otf 376 | build ../fonts/otf/Lora-MediumItalic.otf: fix $ 377 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp85hriixx 378 | operation = fix 379 | args = 380 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpw9zrcn0c 381 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpw9zrcn0c: $ 382 | buildTTF instance_ufos/Lora-SemiBoldItalic.ufo.json 383 | operation = buildTTF 384 | args = --filter ... --filter FlattenComponentsFilter --filter $ 385 | DecomposeTransformedComponentsFilter 386 | fontmake_type = -u 387 | fontmake_args = --verbose WARNING 388 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpkc2w1ke9 389 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpkc2w1ke9: $ 390 | buildOTF instance_ufos/Lora-SemiBoldItalic.ufo.json 391 | operation = buildOTF 392 | args = --filter ... --filter FlattenComponentsFilter --filter $ 393 | DecomposeTransformedComponentsFilter 394 | fontmake_type = -u 395 | fontmake_args = --verbose WARNING 396 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp523n760t 397 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp523n760t: $ 398 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpw9zrcn0c 399 | operation = autohint 400 | args = --fail-ok 401 | # Generating ../fonts/ttf/Lora-SemiBoldItalic.ttf 402 | build ../fonts/ttf/Lora-SemiBoldItalic.ttf: fix $ 403 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp523n760t 404 | operation = fix 405 | args = 406 | # Generating ../fonts/otf/Lora-SemiBoldItalic.otf 407 | build ../fonts/otf/Lora-SemiBoldItalic.otf: fix $ 408 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpkc2w1ke9 409 | operation = fix 410 | args = 411 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpss_ybpb0 412 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpss_ybpb0: $ 413 | buildTTF instance_ufos/Lora-BoldItalic.ufo.json 414 | operation = buildTTF 415 | args = --filter ... --filter FlattenComponentsFilter --filter $ 416 | DecomposeTransformedComponentsFilter 417 | fontmake_type = -u 418 | fontmake_args = --verbose WARNING 419 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp8eedo545 420 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp8eedo545: $ 421 | buildOTF instance_ufos/Lora-BoldItalic.ufo.json 422 | operation = buildOTF 423 | args = --filter ... --filter FlattenComponentsFilter --filter $ 424 | DecomposeTransformedComponentsFilter 425 | fontmake_type = -u 426 | fontmake_args = --verbose WARNING 427 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp3m4misgw 428 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp3m4misgw: $ 429 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpss_ybpb0 430 | operation = autohint 431 | args = --fail-ok 432 | # Generating ../fonts/ttf/Lora-BoldItalic.ttf 433 | build ../fonts/ttf/Lora-BoldItalic.ttf: fix $ 434 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp3m4misgw 435 | operation = fix 436 | args = 437 | # Generating ../fonts/otf/Lora-BoldItalic.otf 438 | build ../fonts/otf/Lora-BoldItalic.otf: fix $ 439 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp8eedo545 440 | operation = fix 441 | args = 442 | default ../fonts/webfonts/Lora[wght].woff2 $ 443 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp619xq7ym.buildStatstamp $ 444 | ../fonts/webfonts/Lora-Italic[wght].woff2 $ 445 | ../fonts/webfonts/Lora-Regular.woff2 $ 446 | ../fonts/webfonts/Lora-Medium.woff2 $ 447 | ../fonts/webfonts/Lora-SemiBold.woff2 ../fonts/webfonts/Lora-Bold.woff2 $ 448 | ../fonts/webfonts/Lora-Italic.woff2 $ 449 | ../fonts/webfonts/Lora-MediumItalic.woff2 $ 450 | ../fonts/webfonts/Lora-SemiBoldItalic.woff2 $ 451 | ../fonts/webfonts/Lora-BoldItalic.woff2 ../fonts/otf/Lora-Regular.otf $ 452 | ../fonts/otf/Lora-Medium.otf ../fonts/otf/Lora-SemiBold.otf $ 453 | ../fonts/otf/Lora-Bold.otf ../fonts/otf/Lora-Italic.otf $ 454 | ../fonts/otf/Lora-MediumItalic.otf ../fonts/otf/Lora-SemiBoldItalic.otf $ 455 | ../fonts/otf/Lora-BoldItalic.otf 456 | -------------------------------------------------------------------------------- /sources/build.ninja: -------------------------------------------------------------------------------- 1 | # buildVariable: Build a variable font from a source file 2 | rule buildVariable 3 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 4 | gftools.builder.jobrunner fontmake --output-path $out -o variable $ 5 | $fontmake_type $in $args $stamp 6 | description = buildVariable 7 | 8 | # fix: Run gftools-fix 9 | rule fix 10 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 11 | gftools.builder.jobrunner gftools-fix-font -o $out $args $in $stamp 12 | description = fix 13 | 14 | # compress: Compress to webfont 15 | rule compress 16 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 17 | gftools.builder.jobrunner fonttools ttLib.woff2 compress -o $out $in $ 18 | $stamp 19 | description = compress 20 | 21 | # buildStat: Build a STAT table from one or more source files 22 | rule buildSTAT-operation 23 | command = gftools-gen-stat --out $tempdir $args -- $in && mv $finalfile $ 24 | $out $stamp 25 | rule buildSTAT-postprocess 26 | command = gftools-gen-stat --inplace $args -- $in $stamp 27 | 28 | # instantiateUfo: Create instance UFOs from a Glyphs or designspace file 29 | rule instantiateUfo 30 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 31 | gftools.builder.jobrunner fontmake -i "$instance_name" -o ufo $ 32 | $fontmake_type $in $args $stamp 33 | description = instantiateUfo 34 | 35 | # buildTTF: Build a TTF from a source file 36 | rule buildTTF 37 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 38 | gftools.builder.jobrunner fontmake --output-path $out -o ttf $ 39 | $fontmake_type $in $args $stamp 40 | description = buildTTF 41 | 42 | # autohint: Run gftools-autohint 43 | rule autohint 44 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 45 | gftools.builder.jobrunner gftools-autohint $args -o $out $in $stamp 46 | description = autohint 47 | 48 | # buildOTF: Build a OTF from a source file 49 | rule buildOTF 50 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 51 | gftools.builder.jobrunner fontmake --output-path $out -o otf $ 52 | $fontmake_type $in $args $stamp 53 | description = buildOTF 54 | 55 | # copy: Copy a file 56 | rule copy 57 | command = /Users/alexeiva/venv/ftools/bin/python3 -m $ 58 | gftools.builder.jobrunner cp $in $out $stamp 59 | description = copy 60 | 61 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpfonsj8nt 62 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpfonsj8nt: $ 63 | buildVariable Lora.glyphs 64 | operation = buildVariable 65 | args = --filter ... --filter FlattenComponentsFilter --filter $ 66 | DecomposeTransformedComponentsFilter 67 | fontmake_type = -g 68 | fontmake_args = --verbose WARNING 69 | # Generating instance_ufos/Lora-Regular.ufo.json 70 | build instance_ufos/Lora-Regular.ufo.json: instantiateUfo Lora.glyphs 71 | operation = instantiateUfo 72 | instance_name = Lora Regular 73 | fontmake_type = -g 74 | fontmake_args = --verbose WARNING 75 | args = --ufo-structure=json --instance-dir instance_ufos 76 | # Generating instance_ufos/Lora-Medium.ufo.json 77 | build instance_ufos/Lora-Medium.ufo.json: instantiateUfo Lora.glyphs 78 | operation = instantiateUfo 79 | instance_name = Lora Medium 80 | fontmake_type = -g 81 | fontmake_args = --verbose WARNING 82 | args = --ufo-structure=json --instance-dir instance_ufos 83 | # Generating instance_ufos/Lora-SemiBold.ufo.json 84 | build instance_ufos/Lora-SemiBold.ufo.json: instantiateUfo Lora.glyphs 85 | operation = instantiateUfo 86 | instance_name = Lora SemiBold 87 | fontmake_type = -g 88 | fontmake_args = --verbose WARNING 89 | args = --ufo-structure=json --instance-dir instance_ufos 90 | # Generating instance_ufos/Lora-Bold.ufo.json 91 | build instance_ufos/Lora-Bold.ufo.json: instantiateUfo Lora.glyphs 92 | operation = instantiateUfo 93 | instance_name = Lora Bold 94 | fontmake_type = -g 95 | fontmake_args = --verbose WARNING 96 | args = --ufo-structure=json --instance-dir instance_ufos 97 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpc75ibzgl 98 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpc75ibzgl: $ 99 | buildVariable Lora-Italic.glyphs 100 | operation = buildVariable 101 | args = --filter ... --filter FlattenComponentsFilter --filter $ 102 | DecomposeTransformedComponentsFilter 103 | fontmake_type = -g 104 | fontmake_args = --verbose WARNING 105 | # Generating instance_ufos/Lora-Italic.ufo.json 106 | build instance_ufos/Lora-Italic.ufo.json: instantiateUfo Lora-Italic.glyphs 107 | operation = instantiateUfo 108 | instance_name = Lora Italic 109 | fontmake_type = -g 110 | fontmake_args = --verbose WARNING 111 | args = --ufo-structure=json --instance-dir instance_ufos 112 | # Generating instance_ufos/Lora-MediumItalic.ufo.json 113 | build instance_ufos/Lora-MediumItalic.ufo.json: instantiateUfo $ 114 | Lora-Italic.glyphs 115 | operation = instantiateUfo 116 | instance_name = Lora Medium Italic 117 | fontmake_type = -g 118 | fontmake_args = --verbose WARNING 119 | args = --ufo-structure=json --instance-dir instance_ufos 120 | # Generating instance_ufos/Lora-SemiBoldItalic.ufo.json 121 | build instance_ufos/Lora-SemiBoldItalic.ufo.json: instantiateUfo $ 122 | Lora-Italic.glyphs 123 | operation = instantiateUfo 124 | instance_name = Lora SemiBold Italic 125 | fontmake_type = -g 126 | fontmake_args = --verbose WARNING 127 | args = --ufo-structure=json --instance-dir instance_ufos 128 | # Generating instance_ufos/Lora-BoldItalic.ufo.json 129 | build instance_ufos/Lora-BoldItalic.ufo.json: instantiateUfo $ 130 | Lora-Italic.glyphs 131 | operation = instantiateUfo 132 | instance_name = Lora Bold Italic 133 | fontmake_type = -g 134 | fontmake_args = --verbose WARNING 135 | args = --ufo-structure=json --instance-dir instance_ufos 136 | # Generating ../fonts/webfonts/Lora[wght].woff2 137 | build ../fonts/webfonts/Lora[wght].woff2: compress $ 138 | ../fonts/variable/Lora[wght].ttf 139 | operation = compress 140 | # Postprocessing with BuildSTAT 141 | build $ 142 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpf22d0yv8.buildStatstamp: $ 143 | buildSTAT-postprocess ../fonts/variable/Lora-Italic[wght].ttf $ 144 | ../fonts/variable/Lora[wght].ttf 145 | stamp = && touch $ 146 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpf22d0yv8.buildStatstamp 147 | postprocess = buildStat 148 | args = --src /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpwy6m9jb1 149 | # Generating ../fonts/webfonts/Lora-Italic[wght].woff2 150 | build ../fonts/webfonts/Lora-Italic[wght].woff2: compress $ 151 | ../fonts/variable/Lora-Italic[wght].ttf 152 | operation = compress 153 | # Generating ../fonts/webfonts/Lora-Regular.woff2 154 | build ../fonts/webfonts/Lora-Regular.woff2: compress $ 155 | ../fonts/ttf/Lora-Regular.ttf 156 | operation = compress 157 | # Generating ../fonts/webfonts/Lora-Medium.woff2 158 | build ../fonts/webfonts/Lora-Medium.woff2: compress $ 159 | ../fonts/ttf/Lora-Medium.ttf 160 | operation = compress 161 | # Generating ../fonts/webfonts/Lora-SemiBold.woff2 162 | build ../fonts/webfonts/Lora-SemiBold.woff2: compress $ 163 | ../fonts/ttf/Lora-SemiBold.ttf 164 | operation = compress 165 | # Generating ../fonts/webfonts/Lora-Bold.woff2 166 | build ../fonts/webfonts/Lora-Bold.woff2: compress ../fonts/ttf/Lora-Bold.ttf 167 | operation = compress 168 | # Generating ../fonts/webfonts/Lora-Italic.woff2 169 | build ../fonts/webfonts/Lora-Italic.woff2: compress $ 170 | ../fonts/ttf/Lora-Italic.ttf 171 | operation = compress 172 | # Generating ../fonts/webfonts/Lora-MediumItalic.woff2 173 | build ../fonts/webfonts/Lora-MediumItalic.woff2: compress $ 174 | ../fonts/ttf/Lora-MediumItalic.ttf 175 | operation = compress 176 | # Generating ../fonts/webfonts/Lora-SemiBoldItalic.woff2 177 | build ../fonts/webfonts/Lora-SemiBoldItalic.woff2: compress $ 178 | ../fonts/ttf/Lora-SemiBoldItalic.ttf 179 | operation = compress 180 | # Generating ../fonts/webfonts/Lora-BoldItalic.woff2 181 | build ../fonts/webfonts/Lora-BoldItalic.woff2: compress $ 182 | ../fonts/ttf/Lora-BoldItalic.ttf 183 | operation = compress 184 | # Generating ../fonts/variable/Lora[wght].ttf 185 | build ../fonts/variable/Lora[wght].ttf: fix $ 186 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpfonsj8nt 187 | operation = fix 188 | args = 189 | # Generating ../fonts/variable/Lora-Italic[wght].ttf 190 | build ../fonts/variable/Lora-Italic[wght].ttf: fix $ 191 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpc75ibzgl 192 | operation = fix 193 | args = 194 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpsdg65nrg 195 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpsdg65nrg: $ 196 | buildTTF instance_ufos/Lora-Regular.ufo.json 197 | operation = buildTTF 198 | args = --filter ... --filter FlattenComponentsFilter --filter $ 199 | DecomposeTransformedComponentsFilter 200 | fontmake_type = -u 201 | fontmake_args = --verbose WARNING 202 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpmppf342b 203 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpmppf342b: $ 204 | buildOTF instance_ufos/Lora-Regular.ufo.json 205 | operation = buildOTF 206 | args = --filter ... --filter FlattenComponentsFilter --filter $ 207 | DecomposeTransformedComponentsFilter 208 | fontmake_type = -u 209 | fontmake_args = --verbose WARNING 210 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp1t1lq0ge 211 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp1t1lq0ge: $ 212 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpsdg65nrg 213 | operation = autohint 214 | args = --fail-ok 215 | # Generating ../fonts/ttf/Lora-Regular.ttf 216 | build ../fonts/ttf/Lora-Regular.ttf: fix $ 217 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp1t1lq0ge 218 | operation = fix 219 | args = 220 | # Generating ../fonts/otf/Lora-Regular.otf 221 | build ../fonts/otf/Lora-Regular.otf: fix $ 222 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpmppf342b 223 | operation = fix 224 | args = 225 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp7ioyldo1 226 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp7ioyldo1: $ 227 | buildTTF instance_ufos/Lora-Medium.ufo.json 228 | operation = buildTTF 229 | args = --filter ... --filter FlattenComponentsFilter --filter $ 230 | DecomposeTransformedComponentsFilter 231 | fontmake_type = -u 232 | fontmake_args = --verbose WARNING 233 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpit0jgi3q 234 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpit0jgi3q: $ 235 | buildOTF instance_ufos/Lora-Medium.ufo.json 236 | operation = buildOTF 237 | args = --filter ... --filter FlattenComponentsFilter --filter $ 238 | DecomposeTransformedComponentsFilter 239 | fontmake_type = -u 240 | fontmake_args = --verbose WARNING 241 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp485y7th9 242 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp485y7th9: $ 243 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp7ioyldo1 244 | operation = autohint 245 | args = --fail-ok 246 | # Generating ../fonts/ttf/Lora-Medium.ttf 247 | build ../fonts/ttf/Lora-Medium.ttf: fix $ 248 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp485y7th9 249 | operation = fix 250 | args = 251 | # Generating ../fonts/otf/Lora-Medium.otf 252 | build ../fonts/otf/Lora-Medium.otf: fix $ 253 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpit0jgi3q 254 | operation = fix 255 | args = 256 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpz1dkd_3k 257 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpz1dkd_3k: $ 258 | buildTTF instance_ufos/Lora-SemiBold.ufo.json 259 | operation = buildTTF 260 | args = --filter ... --filter FlattenComponentsFilter --filter $ 261 | DecomposeTransformedComponentsFilter 262 | fontmake_type = -u 263 | fontmake_args = --verbose WARNING 264 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpaw92y5_l 265 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpaw92y5_l: $ 266 | buildOTF instance_ufos/Lora-SemiBold.ufo.json 267 | operation = buildOTF 268 | args = --filter ... --filter FlattenComponentsFilter --filter $ 269 | DecomposeTransformedComponentsFilter 270 | fontmake_type = -u 271 | fontmake_args = --verbose WARNING 272 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpo_pqwgq4 273 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpo_pqwgq4: $ 274 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpz1dkd_3k 275 | operation = autohint 276 | args = --fail-ok 277 | # Generating ../fonts/ttf/Lora-SemiBold.ttf 278 | build ../fonts/ttf/Lora-SemiBold.ttf: fix $ 279 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpo_pqwgq4 280 | operation = fix 281 | args = 282 | # Generating ../fonts/otf/Lora-SemiBold.otf 283 | build ../fonts/otf/Lora-SemiBold.otf: fix $ 284 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpaw92y5_l 285 | operation = fix 286 | args = 287 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpspyrnu33 288 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpspyrnu33: $ 289 | buildTTF instance_ufos/Lora-Bold.ufo.json 290 | operation = buildTTF 291 | args = --filter ... --filter FlattenComponentsFilter --filter $ 292 | DecomposeTransformedComponentsFilter 293 | fontmake_type = -u 294 | fontmake_args = --verbose WARNING 295 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpdqn6va8j 296 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpdqn6va8j: $ 297 | buildOTF instance_ufos/Lora-Bold.ufo.json 298 | operation = buildOTF 299 | args = --filter ... --filter FlattenComponentsFilter --filter $ 300 | DecomposeTransformedComponentsFilter 301 | fontmake_type = -u 302 | fontmake_args = --verbose WARNING 303 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpd_fp24j7 304 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpd_fp24j7: $ 305 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpspyrnu33 306 | operation = autohint 307 | args = --fail-ok 308 | # Generating ../fonts/ttf/Lora-Bold.ttf 309 | build ../fonts/ttf/Lora-Bold.ttf: fix $ 310 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpd_fp24j7 311 | operation = fix 312 | args = 313 | # Generating ../fonts/otf/Lora-Bold.otf 314 | build ../fonts/otf/Lora-Bold.otf: fix $ 315 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpdqn6va8j 316 | operation = fix 317 | args = 318 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp29qiay41 319 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp29qiay41: $ 320 | buildTTF instance_ufos/Lora-Italic.ufo.json 321 | operation = buildTTF 322 | args = --filter ... --filter FlattenComponentsFilter --filter $ 323 | DecomposeTransformedComponentsFilter 324 | fontmake_type = -u 325 | fontmake_args = --verbose WARNING 326 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp1de0f0gb 327 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp1de0f0gb: $ 328 | buildOTF instance_ufos/Lora-Italic.ufo.json 329 | operation = buildOTF 330 | args = --filter ... --filter FlattenComponentsFilter --filter $ 331 | DecomposeTransformedComponentsFilter 332 | fontmake_type = -u 333 | fontmake_args = --verbose WARNING 334 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpuzomku5u 335 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpuzomku5u: $ 336 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp29qiay41 337 | operation = autohint 338 | args = --fail-ok 339 | # Generating ../fonts/ttf/Lora-Italic.ttf 340 | build ../fonts/ttf/Lora-Italic.ttf: fix $ 341 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpuzomku5u 342 | operation = fix 343 | args = 344 | # Generating ../fonts/otf/Lora-Italic.otf 345 | build ../fonts/otf/Lora-Italic.otf: fix $ 346 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp1de0f0gb 347 | operation = fix 348 | args = 349 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpww544i7f 350 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpww544i7f: $ 351 | buildTTF instance_ufos/Lora-MediumItalic.ufo.json 352 | operation = buildTTF 353 | args = --filter ... --filter FlattenComponentsFilter --filter $ 354 | DecomposeTransformedComponentsFilter 355 | fontmake_type = -u 356 | fontmake_args = --verbose WARNING 357 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpeacrlwou 358 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpeacrlwou: $ 359 | buildOTF instance_ufos/Lora-MediumItalic.ufo.json 360 | operation = buildOTF 361 | args = --filter ... --filter FlattenComponentsFilter --filter $ 362 | DecomposeTransformedComponentsFilter 363 | fontmake_type = -u 364 | fontmake_args = --verbose WARNING 365 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp8s2s4eij 366 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp8s2s4eij: $ 367 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpww544i7f 368 | operation = autohint 369 | args = --fail-ok 370 | # Generating ../fonts/ttf/Lora-MediumItalic.ttf 371 | build ../fonts/ttf/Lora-MediumItalic.ttf: fix $ 372 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp8s2s4eij 373 | operation = fix 374 | args = 375 | # Generating ../fonts/otf/Lora-MediumItalic.otf 376 | build ../fonts/otf/Lora-MediumItalic.otf: fix $ 377 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpeacrlwou 378 | operation = fix 379 | args = 380 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmppn51d13g 381 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmppn51d13g: $ 382 | buildTTF instance_ufos/Lora-SemiBoldItalic.ufo.json 383 | operation = buildTTF 384 | args = --filter ... --filter FlattenComponentsFilter --filter $ 385 | DecomposeTransformedComponentsFilter 386 | fontmake_type = -u 387 | fontmake_args = --verbose WARNING 388 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp_u9u4wr5 389 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp_u9u4wr5: $ 390 | buildOTF instance_ufos/Lora-SemiBoldItalic.ufo.json 391 | operation = buildOTF 392 | args = --filter ... --filter FlattenComponentsFilter --filter $ 393 | DecomposeTransformedComponentsFilter 394 | fontmake_type = -u 395 | fontmake_args = --verbose WARNING 396 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpsn6lpqy9 397 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpsn6lpqy9: $ 398 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmppn51d13g 399 | operation = autohint 400 | args = --fail-ok 401 | # Generating ../fonts/ttf/Lora-SemiBoldItalic.ttf 402 | build ../fonts/ttf/Lora-SemiBoldItalic.ttf: fix $ 403 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpsn6lpqy9 404 | operation = fix 405 | args = 406 | # Generating ../fonts/otf/Lora-SemiBoldItalic.otf 407 | build ../fonts/otf/Lora-SemiBoldItalic.otf: fix $ 408 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp_u9u4wr5 409 | operation = fix 410 | args = 411 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp30e55wbr 412 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp30e55wbr: $ 413 | buildTTF instance_ufos/Lora-BoldItalic.ufo.json 414 | operation = buildTTF 415 | args = --filter ... --filter FlattenComponentsFilter --filter $ 416 | DecomposeTransformedComponentsFilter 417 | fontmake_type = -u 418 | fontmake_args = --verbose WARNING 419 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpx7ag906r 420 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpx7ag906r: $ 421 | buildOTF instance_ufos/Lora-BoldItalic.ufo.json 422 | operation = buildOTF 423 | args = --filter ... --filter FlattenComponentsFilter --filter $ 424 | DecomposeTransformedComponentsFilter 425 | fontmake_type = -u 426 | fontmake_args = --verbose WARNING 427 | # Generating /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpvgh1uuna 428 | build /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpvgh1uuna: $ 429 | autohint /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmp30e55wbr 430 | operation = autohint 431 | args = --fail-ok 432 | # Generating ../fonts/ttf/Lora-BoldItalic.ttf 433 | build ../fonts/ttf/Lora-BoldItalic.ttf: fix $ 434 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpvgh1uuna 435 | operation = fix 436 | args = 437 | # Generating ../fonts/otf/Lora-BoldItalic.otf 438 | build ../fonts/otf/Lora-BoldItalic.otf: fix $ 439 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpx7ag906r 440 | operation = fix 441 | args = 442 | default ../fonts/webfonts/Lora[wght].woff2 $ 443 | /var/folders/xm/8_gkzvmn2f30h2nxxfdh_n380000gp/T/tmpf22d0yv8.buildStatstamp $ 444 | ../fonts/webfonts/Lora-Italic[wght].woff2 $ 445 | ../fonts/webfonts/Lora-Regular.woff2 $ 446 | ../fonts/webfonts/Lora-Medium.woff2 $ 447 | ../fonts/webfonts/Lora-SemiBold.woff2 ../fonts/webfonts/Lora-Bold.woff2 $ 448 | ../fonts/webfonts/Lora-Italic.woff2 $ 449 | ../fonts/webfonts/Lora-MediumItalic.woff2 $ 450 | ../fonts/webfonts/Lora-SemiBoldItalic.woff2 $ 451 | ../fonts/webfonts/Lora-BoldItalic.woff2 ../fonts/otf/Lora-Regular.otf $ 452 | ../fonts/otf/Lora-Medium.otf ../fonts/otf/Lora-SemiBold.otf $ 453 | ../fonts/otf/Lora-Bold.otf ../fonts/otf/Lora-Italic.otf $ 454 | ../fonts/otf/Lora-MediumItalic.otf ../fonts/otf/Lora-SemiBoldItalic.otf $ 455 | ../fonts/otf/Lora-BoldItalic.otf 456 | -------------------------------------------------------------------------------- /sources/config.yaml: -------------------------------------------------------------------------------- 1 | sources: 2 | - Lora.glyphs 3 | - Lora-Italic.glyphs 4 | axisOrder: 5 | - wght 6 | familyName: Lora 7 | stat: 8 | Lora[wght].ttf: 9 | - name: Weight 10 | tag: wght 11 | values: 12 | - name: Regular 13 | value: 400 14 | linkedValue: 700 15 | flags: 2 16 | - name: Medium 17 | value: 500 18 | - name: SemiBold 19 | value: 600 20 | - name: Bold 21 | value: 700 22 | - name: Italic 23 | tag: ital 24 | values: 25 | - name: Roman 26 | value: 0 27 | linkedValue: 1 28 | flags: 2 29 | Lora-Italic[wght].ttf: 30 | - name: Weight 31 | tag: wght 32 | values: 33 | - name: Regular 34 | value: 400 35 | linkedValue: 700 36 | flags: 2 37 | - name: Medium 38 | value: 500 39 | - name: SemiBold 40 | value: 600 41 | - name: Bold 42 | value: 700 43 | - name: Italic 44 | tag: ital 45 | values: 46 | - name: Italic 47 | value: 1 --------------------------------------------------------------------------------