├── .github └── workflows │ └── fontship.yml ├── .gitignore ├── OFL.md ├── README.md ├── images ├── league-gothic-1.png ├── league-gothic-2.png ├── league-gothic-3.png ├── league-gothic-4.png ├── league-gothic-5.jpg └── league-gothic-6.png ├── rules.mk └── sources ├── LeagueGothic-CondensedItalic.glyphs ├── LeagueGothic-CondensedRegular.glyphs ├── LeagueGothic-Italic.glyphs └── LeagueGothic-Regular.glyphs /.github/workflows/fontship.yml: -------------------------------------------------------------------------------- 1 | name: Fontship 2 | 3 | on: [push, pull_request] 4 | 5 | jobs: 6 | fontship: 7 | runs-on: ubuntu-20.04 8 | name: Fontship 9 | steps: 10 | - name: Checkout 11 | uses: actions/checkout@v2 12 | with: 13 | fetch-depth: 0 14 | - name: Fetch tags 15 | run: | 16 | git fetch --prune --tags ||: 17 | - name: Fontship make 18 | id: fontship 19 | uses: theleagueof/fontship@v0.8.2 20 | - name: Upload artifacts 21 | uses: actions/upload-artifact@v2 22 | with: 23 | name: ${{ steps.fontship.outputs.DISTDIR }} 24 | path: ${{ steps.fontship.outputs.DISTDIR }}.zip 25 | - name: Release 26 | if: startsWith(github.ref, 'refs/tags/') 27 | uses: softprops/action-gh-release@v1 28 | with: 29 | files: | 30 | ${{ steps.fontship.outputs.DISTDIR }}.zip 31 | ${{ steps.fontship.outputs.DISTDIR }}.tar.xz 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .fontship 2 | LeagueGothic-* 3 | .DS_Store 4 | *(Autosaved)* 5 | tags 6 | *.otf 7 | *.ttf 8 | *.woff 9 | *.woff2 10 | !*/LeagueGothic-* 11 | sources/*(Autosaved).glyphs 12 | sources/*_backups 13 | sources/*.sfd 14 | sources/*.ufo 15 | -------------------------------------------------------------------------------- /OFL.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020, Caleb Maclennan 2 | 3 | Copyright (c) 2010-2012, Micah Rich , 4 | with Reserved Font Name: "League Gothic". 5 | 6 | Copyright (c) 2010, Caroline Hadilaksono 7 | 8 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 9 | This license is copied below, and is also available with a FAQ at: 10 | http://scripts.sil.org/OFL 11 | 12 | Version 1.1 - 26 February 2007 13 | 14 | ---- 15 | 16 | SIL Open Font License 17 | ===================== 18 | 19 | 20 | Preamble 21 | -------- 22 | 23 | The goals of the Open Font License (OFL) are to stimulate worldwide 24 | development of collaborative font projects, to support the font creation 25 | efforts of academic and linguistic communities, and to provide a free and 26 | open framework in which fonts may be shared and improved in partnership 27 | with others. 28 | 29 | The OFL allows the licensed fonts to be used, studied, modified and 30 | redistributed freely as long as they are not sold by themselves. The 31 | fonts, including any derivative works, can be bundled, embedded, 32 | redistributed and/or sold with any software provided that any reserved 33 | names are not used by derivative works. The fonts and derivatives, 34 | however, cannot be released under any other type of license. The 35 | requirement for fonts to remain under this license does not apply 36 | to any document created using the fonts or their derivatives. 37 | 38 | Definitions 39 | ----------- 40 | 41 | `"Font Software"` refers to the set of files released by the Copyright 42 | Holder(s) under this license and clearly marked as such. This may 43 | include source files, build scripts and documentation. 44 | 45 | `"Reserved Font Name"` refers to any names specified as such after the 46 | copyright statement(s). 47 | 48 | `"Original Version"` refers to the collection of Font Software components as 49 | distributed by the Copyright Holder(s). 50 | 51 | `"Modified Version"` refers to any derivative made by adding to, deleting, 52 | or substituting -- in part or in whole -- any of the components of the 53 | Original Version, by changing formats or by porting the Font Software to a 54 | new environment. 55 | 56 | `"Author"` refers to any designer, engineer, programmer, technical 57 | writer or other person who contributed to the Font Software. 58 | 59 | Permission & Conditions 60 | ----------------------- 61 | 62 | Permission is hereby granted, free of charge, to any person obtaining 63 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 64 | redistribute, and sell modified and unmodified copies of the Font 65 | Software, subject to the following conditions: 66 | 67 | 1. Neither the Font Software nor any of its individual components, 68 | in Original or Modified Versions, may be sold by itself. 69 | 70 | 2. Original or Modified Versions of the Font Software may be bundled, 71 | redistributed and/or sold with any software, provided that each copy 72 | contains the above copyright notice and this license. These can be 73 | included either as stand-alone text files, human-readable headers or 74 | in the appropriate machine-readable metadata fields within text or 75 | binary files as long as those fields can be easily viewed by the user. 76 | 77 | 3. No Modified Version of the Font Software may use the Reserved Font 78 | Name(s) unless explicit written permission is granted by the corresponding 79 | Copyright Holder. This restriction only applies to the primary font name as 80 | presented to the users. 81 | 82 | 4. The name(s) of the Copyright Holder(s) or the Author(s) of the Font 83 | Software shall not be used to promote, endorse or advertise any 84 | Modified Version, except to acknowledge the contribution(s) of the 85 | Copyright Holder(s) and the Author(s) or with their explicit written 86 | permission. 87 | 88 | 5. The Font Software, modified or unmodified, in part or in whole, 89 | must be distributed entirely under this license, and must not be 90 | distributed under any other license. The requirement for fonts to 91 | remain under this license does not apply to any document created 92 | using the Font Software. 93 | 94 | Termination 95 | ----------- 96 | 97 | This license becomes null and void if any of the above conditions are 98 | not met. 99 | 100 | Disclaimer 101 | ---------- 102 | 103 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 104 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 105 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 106 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 107 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 108 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 109 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 110 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 111 | OTHER DEALINGS IN THE FONT SOFTWARE. 112 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![League Gothic](https://github.com/theleagueof/league-gothic/raw/master/images/league-gothic-1.png) 2 | 3 | League Gothic 4 | ============= 5 | 6 | [![Latest Release](https://img.shields.io/github/v/release/theleagueof/league-gothic?label=Download%20Release&logo=Github)](https://github.com/theleagueof/league-gothic/releases/latest) 7 | [![All Releases](https://img.shields.io/github/downloads/theleagueof/league-gothic/total)](https://github.com/theleagueof/league-gothic/releases) 8 | [![Fontship Build Status](https://img.shields.io/github/workflow/status/theleagueof/league-gothic/Fontship?label=Fontship&logo=data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQyLjgiIGhlaWdodD0iMTA2LjgiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEwLjEzIDBhMy4wOTQgMy4wOTQgMCAwMC0zLjA4MyAyLjgyNEwuMDE0IDgzLjIzNGEzLjA5MyAzLjA5MyAwIDAwMy4wODIgMy4zNjNoOS43MjZjLS4xMzYuNjc1LS4yNSAxLjM1Ni0uMzEgMi4wNTMtLjg2NCA5Ljg3MyA2LjcxMyAxOC4xOCAxNi42IDE4LjE4IDkuODg4IDAgMTguNDQtNy44NzUgMTkuMzEtMTcuNzUuMDc0LS44NDIuMDcxLTEuNjcuMDMtMi40ODhoNDUuNDNhMTguMDM5IDE4LjAzOSAwIDAwLS4zMTUgMi4wNTNjLS44NjUgOS44OCA2LjcxMyAxOC4xOSAxNi42MSAxOC4xOSA5Ljg5NSAwIDE4LjQ1LTcuODczIDE5LjMxLTE3Ljc1YTE3LjI4IDE3LjI4IDAgMDAtLjAyNC0zLjA3OGg2Ljk1N3YuMDAyYy41NTQuMDEyLjc5NC4wMSAxLjQ4NC4wMjcgMi4wMjcuMTA3IDMuMzMzLjE2IDMuOTIuMTYuMzIgMCAuNTM0LS4wNTMuNjQxLS4xNi4xNi0uMTA2LjI0LS4yNC4yNC0uNC4wNTMtLjIxMy4wOC0uNTU5LjA4LTEuMDM5IDAtLjUzMy0uMDUzLS44ODEtLjE2LTEuMDQxLS4xMDctLjE2LS4zNzQtLjI0LS44LS4yNGgtLjExbC44Ni05LjgxNGMxLjIxNy0xMy45Mi0zLjE1NS0yNy4zNS0xMi4xOS0zNy4yNmwtMy41NzUtMy45MTZhMi41MDYgMi41MDYgMCAwMC0xLjg1LS44MTdoLTIxLjQybDIuNDYzLTI4LjE1YTMuMDkzIDMuMDkzIDAgMDAtMy4wOC0zLjM2M3oiIGNsaXAtcnVsZT0ibm9uemVybyIgY29sb3I9IiMwMDAiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0ibm9uemVybyIgc3Ryb2tlPSIjRkZGIiBzdHlsZT0iZm9udC1mZWF0dXJlLXNldHRpbmdzOm5vcm1hbDtmb250LXZhcmlhbnQtYWx0ZXJuYXRlczpub3JtYWw7Zm9udC12YXJpYW50LWNhcHM6bm9ybWFsO2ZvbnQtdmFyaWFudC1lYXN0LWFzaWFuOm5vcm1hbDtmb250LXZhcmlhbnQtbGlnYXR1cmVzOm5vcm1hbDtmb250LXZhcmlhbnQtbnVtZXJpYzpub3JtYWw7Zm9udC12YXJpYW50LXBvc2l0aW9uOm5vcm1hbDtmb250LXZhcmlhdGlvbi1zZXR0aW5nczpub3JtYWw7aW5saW5lLXNpemU6MDtpc29sYXRpb246YXV0bzttaXgtYmxlbmQtbW9kZTpub3JtYWw7c2hhcGUtbWFyZ2luOjA7c2hhcGUtcGFkZGluZzowO3RleHQtZGVjb3JhdGlvbi1jb2xvcjojMDAwO3RleHQtZGVjb3JhdGlvbi1saW5lOm5vbmU7dGV4dC1kZWNvcmF0aW9uLXN0eWxlOnNvbGlkO3RleHQtaW5kZW50OjA7dGV4dC1vcmllbnRhdGlvbjptaXhlZDt0ZXh0LXRyYW5zZm9ybTpub25lO3doaXRlLXNwYWNlOm5vcm1hbCIvPjxwYXRoIGQ9Ik0xMi45NiA2LjE4NmwtNi40OTQgNzQuMjNoODYuNThsNi40OTQtNzQuMjN6IiBmaWxsPSIjRkZGIiBzdHJva2U9IiNGRkYiLz48L3N2Zz4=)](https://github.com/theleagueof/league-gothic/actions?workflow=Fontship) 9 | 10 | _by [Caroline Hadilaksono](https://www.hadilaksono.com/), [Micah Rich](https://micahrich.com/), & [Tyler Finck](https://www.tylerfinck.com/)_ 11 | 12 | League Gothic is a revival of an old classic, and one of our favorite typefaces, Alternate Gothic #1. 13 | It was originally designed by [Morris Fuller Benton](https://en.wikipedia.org/wiki/Morris_Fuller_Benton) for the [American Type Founders](https://en.wikipedia.org/wiki/American_Type_Founders) Company in 1903. 14 | The company went bankrupt in 1993, and since the original typeface was created over 95 years ago, the typeface is in the public domain. 15 | 16 | We decided to make our own version, and contribute it to the Open Source Type Movement. 17 | Thanks to a commission from the fine & patient folks over at [WND.com](https://www.wnd.com/), it’s been revised & updated with contributions from Micah Rich, Tyler Finck, and [Dannci](https://twitter.com/dannci), who contributed extra glyphs. 18 | -------------------------------------------------------------------------------- /images/league-gothic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theleagueof/league-gothic/f3cd0a182a57d32ceca0398a5ef1c49e577dde88/images/league-gothic-1.png -------------------------------------------------------------------------------- /images/league-gothic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theleagueof/league-gothic/f3cd0a182a57d32ceca0398a5ef1c49e577dde88/images/league-gothic-2.png -------------------------------------------------------------------------------- /images/league-gothic-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theleagueof/league-gothic/f3cd0a182a57d32ceca0398a5ef1c49e577dde88/images/league-gothic-3.png -------------------------------------------------------------------------------- /images/league-gothic-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theleagueof/league-gothic/f3cd0a182a57d32ceca0398a5ef1c49e577dde88/images/league-gothic-4.png -------------------------------------------------------------------------------- /images/league-gothic-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theleagueof/league-gothic/f3cd0a182a57d32ceca0398a5ef1c49e577dde88/images/league-gothic-5.jpg -------------------------------------------------------------------------------- /images/league-gothic-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theleagueof/league-gothic/f3cd0a182a57d32ceca0398a5ef1c49e577dde88/images/league-gothic-6.png -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- 1 | isVariable = false 2 | HINT = 3 | --------------------------------------------------------------------------------