├── .github └── workflows │ └── build.yml ├── LICENSE.txt ├── OFL-1.1.txt ├── README.md └── unifoundry-keys.gpg /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build Unifont 2 | 3 | permissions: 4 | # Required for uploading artifacts 5 | actions: write 6 | 7 | on: 8 | workflow_dispatch: 9 | inputs: 10 | unifont_version: 11 | description: 'The Unifont version to build (example: 15.1.01)' 12 | required: true 13 | type: string 14 | 15 | jobs: 16 | build: 17 | name: Unifont TTF 18 | runs-on: ubuntu-latest 19 | timeout-minutes: 10 20 | 21 | steps: 22 | - name: Checkout source 23 | uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 24 | 25 | - name: Install required dependencies 26 | run: | 27 | sudo apt-get update 28 | sudo apt-get install -yq --no-install-recommends fontforge 29 | 30 | - name: Download and verify Unifont v${{ inputs.unifont_version }} 31 | run: | 32 | readonly BASE_URL='https://unifoundry.com/pub/unifont/unifont-${{ inputs.unifont_version }}' 33 | readonly SOURCE_TARBALL_NAME='unifont-${{ inputs.unifont_version }}.tar.gz' 34 | 35 | echo "> Fetching Unifont source tarball and its signature..." 36 | curl -o unifont.tar.gz "$BASE_URL/$SOURCE_TARBALL_NAME" 37 | curl -o unifont.tar.gz.sig "$BASE_URL/$SOURCE_TARBALL_NAME.sig" 38 | 39 | # Verify according to the instructions at https://unifoundry.com/verify/index.html 40 | # with a known-good keyring at this repository 41 | echo "> Asserting Unifont source tarball provenance..." 42 | echo "Creating root of trust key" 43 | gpg --batch --quick-generate-key --passphrase '' '41898282+github-actions[bot]@users.noreply.github.com' 44 | echo "> Importing expected Unifoundry signing keys from unifoundry-keys.gpg" 45 | gpg --batch --import unifoundry-keys.gpg 46 | echo "> Extending trust to Unifoundry signing keys by signing with root of trust key" 47 | gpg --list-keys --with-colons | awk -F: '/^fpr:/ { print $10 }' | while read -r key_fingerprint; do 48 | gpg --batch --expert --quick-lsign "$key_fingerprint" || true 49 | done 50 | echo "> Verifying Unifont source tarball signature" 51 | gpg --batch --verify unifont.tar.gz.sig unifont.tar.gz 52 | 53 | - name: Extract and build Unifont BMP TTF 54 | run: | 55 | tar -xf unifont.tar.gz 56 | mv 'unifont-${{ inputs.unifont_version }}' unifont 57 | make -C unifont/font truetype 58 | 59 | - name: Upload generated Unifont BMP TTF as artifact 60 | uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4 61 | with: 62 | name: Unifont BMP TTF 63 | path: unifont/font/compiled/unifont-${{ inputs.unifont_version }}.ttf 64 | 65 | - name: Upload generated Unifont SMP TTF as artifact 66 | uses: actions/upload-artifact@v4 67 | with: 68 | name: Unifont SMP TTF 69 | path: unifont/font/compiled/unifont_upper-${{ inputs.unifont_version }}.ttf 70 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | LICENSE 2 | ------- 3 | The source code for everything except the compiled fonts in this current 4 | release is licensed as follows: 5 | 6 | License for this current distribution of program source 7 | files (i.e., everything except the fonts) is released under 8 | the terms of the GNU General Public License version 2, 9 | or (at your option) a later version. 10 | 11 | See the section below for a copy of the GNU General Public License 12 | version 2. 13 | 14 | The license for the compiled fonts is covered by the SIL Open Font License 15 | version 1.1 and by the above GPL terms with the GNU font embedding exception, 16 | as follows: 17 | 18 | As a special exception, if you create a document which uses this font, 19 | and embed this font or unaltered portions of this font into the document, 20 | this font does not by itself cause the resulting document to be covered 21 | by the GNU General Public License. This exception does not however 22 | invalidate any other reasons why the document might be covered by the 23 | GNU General Public License. If you modify this font, you may extend 24 | this exception to your version of the font, but you are not obligated 25 | to do so. If you do not wish to do so, delete this exception statement 26 | from your version. 27 | 28 | See "http://www.gnu.org/licenses/gpl-faq.html#FontException" and 29 | "https://scripts.sil.org/OFL" for more details. 30 | 31 | 32 | GPL VERSION 2 33 | ------------- 34 | 35 | GNU GENERAL PUBLIC LICENSE 36 | Version 2, June 1991 37 | 38 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 39 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 40 | Everyone is permitted to copy and distribute verbatim copies 41 | of this license document, but changing it is not allowed. 42 | 43 | Preamble 44 | 45 | The licenses for most software are designed to take away your 46 | freedom to share and change it. By contrast, the GNU General Public 47 | License is intended to guarantee your freedom to share and change free 48 | software--to make sure the software is free for all its users. This 49 | General Public License applies to most of the Free Software 50 | Foundation's software and to any other program whose authors commit to 51 | using it. (Some other Free Software Foundation software is covered by 52 | the GNU Lesser General Public License instead.) You can apply it to 53 | your programs, too. 54 | 55 | When we speak of free software, we are referring to freedom, not 56 | price. Our General Public Licenses are designed to make sure that you 57 | have the freedom to distribute copies of free software (and charge for 58 | this service if you wish), that you receive source code or can get it 59 | if you want it, that you can change the software or use pieces of it 60 | in new free programs; and that you know you can do these things. 61 | 62 | To protect your rights, we need to make restrictions that forbid 63 | anyone to deny you these rights or to ask you to surrender the rights. 64 | These restrictions translate to certain responsibilities for you if you 65 | distribute copies of the software, or if you modify it. 66 | 67 | For example, if you distribute copies of such a program, whether 68 | gratis or for a fee, you must give the recipients all the rights that 69 | you have. You must make sure that they, too, receive or can get the 70 | source code. And you must show them these terms so they know their 71 | rights. 72 | 73 | We protect your rights with two steps: (1) copyright the software, and 74 | (2) offer you this license which gives you legal permission to copy, 75 | distribute and/or modify the software. 76 | 77 | Also, for each author's protection and ours, we want to make certain 78 | that everyone understands that there is no warranty for this free 79 | software. If the software is modified by someone else and passed on, we 80 | want its recipients to know that what they have is not the original, so 81 | that any problems introduced by others will not reflect on the original 82 | authors' reputations. 83 | 84 | Finally, any free program is threatened constantly by software 85 | patents. We wish to avoid the danger that redistributors of a free 86 | program will individually obtain patent licenses, in effect making the 87 | program proprietary. To prevent this, we have made it clear that any 88 | patent must be licensed for everyone's free use or not licensed at all. 89 | 90 | The precise terms and conditions for copying, distribution and 91 | modification follow. 92 | 93 | GNU GENERAL PUBLIC LICENSE 94 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 95 | 96 | 0. This License applies to any program or other work which contains 97 | a notice placed by the copyright holder saying it may be distributed 98 | under the terms of this General Public License. The "Program", below, 99 | refers to any such program or work, and a "work based on the Program" 100 | means either the Program or any derivative work under copyright law: 101 | that is to say, a work containing the Program or a portion of it, 102 | either verbatim or with modifications and/or translated into another 103 | language. (Hereinafter, translation is included without limitation in 104 | the term "modification".) Each licensee is addressed as "you". 105 | 106 | Activities other than copying, distribution and modification are not 107 | covered by this License; they are outside its scope. The act of 108 | running the Program is not restricted, and the output from the Program 109 | is covered only if its contents constitute a work based on the 110 | Program (independent of having been made by running the Program). 111 | Whether that is true depends on what the Program does. 112 | 113 | 1. You may copy and distribute verbatim copies of the Program's 114 | source code as you receive it, in any medium, provided that you 115 | conspicuously and appropriately publish on each copy an appropriate 116 | copyright notice and disclaimer of warranty; keep intact all the 117 | notices that refer to this License and to the absence of any warranty; 118 | and give any other recipients of the Program a copy of this License 119 | along with the Program. 120 | 121 | You may charge a fee for the physical act of transferring a copy, and 122 | you may at your option offer warranty protection in exchange for a fee. 123 | 124 | 2. You may modify your copy or copies of the Program or any portion 125 | of it, thus forming a work based on the Program, and copy and 126 | distribute such modifications or work under the terms of Section 1 127 | above, provided that you also meet all of these conditions: 128 | 129 | a) You must cause the modified files to carry prominent notices 130 | stating that you changed the files and the date of any change. 131 | 132 | b) You must cause any work that you distribute or publish, that in 133 | whole or in part contains or is derived from the Program or any 134 | part thereof, to be licensed as a whole at no charge to all third 135 | parties under the terms of this License. 136 | 137 | c) If the modified program normally reads commands interactively 138 | when run, you must cause it, when started running for such 139 | interactive use in the most ordinary way, to print or display an 140 | announcement including an appropriate copyright notice and a 141 | notice that there is no warranty (or else, saying that you provide 142 | a warranty) and that users may redistribute the program under 143 | these conditions, and telling the user how to view a copy of this 144 | License. (Exception: if the Program itself is interactive but 145 | does not normally print such an announcement, your work based on 146 | the Program is not required to print an announcement.) 147 | 148 | These requirements apply to the modified work as a whole. If 149 | identifiable sections of that work are not derived from the Program, 150 | and can be reasonably considered independent and separate works in 151 | themselves, then this License, and its terms, do not apply to those 152 | sections when you distribute them as separate works. But when you 153 | distribute the same sections as part of a whole which is a work based 154 | on the Program, the distribution of the whole must be on the terms of 155 | this License, whose permissions for other licensees extend to the 156 | entire whole, and thus to each and every part regardless of who wrote it. 157 | 158 | Thus, it is not the intent of this section to claim rights or contest 159 | your rights to work written entirely by you; rather, the intent is to 160 | exercise the right to control the distribution of derivative or 161 | collective works based on the Program. 162 | 163 | In addition, mere aggregation of another work not based on the Program 164 | with the Program (or with a work based on the Program) on a volume of 165 | a storage or distribution medium does not bring the other work under 166 | the scope of this License. 167 | 168 | 3. You may copy and distribute the Program (or a work based on it, 169 | under Section 2) in object code or executable form under the terms of 170 | Sections 1 and 2 above provided that you also do one of the following: 171 | 172 | a) Accompany it with the complete corresponding machine-readable 173 | source code, which must be distributed under the terms of Sections 174 | 1 and 2 above on a medium customarily used for software interchange; or, 175 | 176 | b) Accompany it with a written offer, valid for at least three 177 | years, to give any third party, for a charge no more than your 178 | cost of physically performing source distribution, a complete 179 | machine-readable copy of the corresponding source code, to be 180 | distributed under the terms of Sections 1 and 2 above on a medium 181 | customarily used for software interchange; or, 182 | 183 | c) Accompany it with the information you received as to the offer 184 | to distribute corresponding source code. (This alternative is 185 | allowed only for noncommercial distribution and only if you 186 | received the program in object code or executable form with such 187 | an offer, in accord with Subsection b above.) 188 | 189 | The source code for a work means the preferred form of the work for 190 | making modifications to it. For an executable work, complete source 191 | code means all the source code for all modules it contains, plus any 192 | associated interface definition files, plus the scripts used to 193 | control compilation and installation of the executable. However, as a 194 | special exception, the source code distributed need not include 195 | anything that is normally distributed (in either source or binary 196 | form) with the major components (compiler, kernel, and so on) of the 197 | operating system on which the executable runs, unless that component 198 | itself accompanies the executable. 199 | 200 | If distribution of executable or object code is made by offering 201 | access to copy from a designated place, then offering equivalent 202 | access to copy the source code from the same place counts as 203 | distribution of the source code, even though third parties are not 204 | compelled to copy the source along with the object code. 205 | 206 | 4. You may not copy, modify, sublicense, or distribute the Program 207 | except as expressly provided under this License. Any attempt 208 | otherwise to copy, modify, sublicense or distribute the Program is 209 | void, and will automatically terminate your rights under this License. 210 | However, parties who have received copies, or rights, from you under 211 | this License will not have their licenses terminated so long as such 212 | parties remain in full compliance. 213 | 214 | 5. You are not required to accept this License, since you have not 215 | signed it. However, nothing else grants you permission to modify or 216 | distribute the Program or its derivative works. These actions are 217 | prohibited by law if you do not accept this License. Therefore, by 218 | modifying or distributing the Program (or any work based on the 219 | Program), you indicate your acceptance of this License to do so, and 220 | all its terms and conditions for copying, distributing or modifying 221 | the Program or works based on it. 222 | 223 | 6. Each time you redistribute the Program (or any work based on the 224 | Program), the recipient automatically receives a license from the 225 | original licensor to copy, distribute or modify the Program subject to 226 | these terms and conditions. You may not impose any further 227 | restrictions on the recipients' exercise of the rights granted herein. 228 | You are not responsible for enforcing compliance by third parties to 229 | this License. 230 | 231 | 7. If, as a consequence of a court judgment or allegation of patent 232 | infringement or for any other reason (not limited to patent issues), 233 | conditions are imposed on you (whether by court order, agreement or 234 | otherwise) that contradict the conditions of this License, they do not 235 | excuse you from the conditions of this License. If you cannot 236 | distribute so as to satisfy simultaneously your obligations under this 237 | License and any other pertinent obligations, then as a consequence you 238 | may not distribute the Program at all. For example, if a patent 239 | license would not permit royalty-free redistribution of the Program by 240 | all those who receive copies directly or indirectly through you, then 241 | the only way you could satisfy both it and this License would be to 242 | refrain entirely from distribution of the Program. 243 | 244 | If any portion of this section is held invalid or unenforceable under 245 | any particular circumstance, the balance of the section is intended to 246 | apply and the section as a whole is intended to apply in other 247 | circumstances. 248 | 249 | It is not the purpose of this section to induce you to infringe any 250 | patents or other property right claims or to contest validity of any 251 | such claims; this section has the sole purpose of protecting the 252 | integrity of the free software distribution system, which is 253 | implemented by public license practices. Many people have made 254 | generous contributions to the wide range of software distributed 255 | through that system in reliance on consistent application of that 256 | system; it is up to the author/donor to decide if he or she is willing 257 | to distribute software through any other system and a licensee cannot 258 | impose that choice. 259 | 260 | This section is intended to make thoroughly clear what is believed to 261 | be a consequence of the rest of this License. 262 | 263 | 8. If the distribution and/or use of the Program is restricted in 264 | certain countries either by patents or by copyrighted interfaces, the 265 | original copyright holder who places the Program under this License 266 | may add an explicit geographical distribution limitation excluding 267 | those countries, so that distribution is permitted only in or among 268 | countries not thus excluded. In such case, this License incorporates 269 | the limitation as if written in the body of this License. 270 | 271 | 9. The Free Software Foundation may publish revised and/or new versions 272 | of the General Public License from time to time. Such new versions will 273 | be similar in spirit to the present version, but may differ in detail to 274 | address new problems or concerns. 275 | 276 | Each version is given a distinguishing version number. If the Program 277 | specifies a version number of this License which applies to it and "any 278 | later version", you have the option of following the terms and conditions 279 | either of that version or of any later version published by the Free 280 | Software Foundation. If the Program does not specify a version number of 281 | this License, you may choose any version ever published by the Free Software 282 | Foundation. 283 | 284 | 10. If you wish to incorporate parts of the Program into other free 285 | programs whose distribution conditions are different, write to the author 286 | to ask for permission. For software which is copyrighted by the Free 287 | Software Foundation, write to the Free Software Foundation; we sometimes 288 | make exceptions for this. Our decision will be guided by the two goals 289 | of preserving the free status of all derivatives of our free software and 290 | of promoting the sharing and reuse of software generally. 291 | 292 | NO WARRANTY 293 | 294 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 295 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 296 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 297 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 298 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 299 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 300 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 301 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 302 | REPAIR OR CORRECTION. 303 | 304 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 305 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 306 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 307 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 308 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 309 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 310 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 311 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 312 | POSSIBILITY OF SUCH DAMAGES. 313 | 314 | END OF TERMS AND CONDITIONS 315 | 316 | How to Apply These Terms to Your New Programs 317 | 318 | If you develop a new program, and you want it to be of the greatest 319 | possible use to the public, the best way to achieve this is to make it 320 | free software which everyone can redistribute and change under these terms. 321 | 322 | To do so, attach the following notices to the program. It is safest 323 | to attach them to the start of each source file to most effectively 324 | convey the exclusion of warranty; and each file should have at least 325 | the "copyright" line and a pointer to where the full notice is found. 326 | 327 | 328 | Copyright (C) 329 | 330 | This program is free software; you can redistribute it and/or modify 331 | it under the terms of the GNU General Public License as published by 332 | the Free Software Foundation; either version 2 of the License, or 333 | (at your option) any later version. 334 | 335 | This program is distributed in the hope that it will be useful, 336 | but WITHOUT ANY WARRANTY; without even the implied warranty of 337 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 338 | GNU General Public License for more details. 339 | 340 | You should have received a copy of the GNU General Public License along 341 | with this program; if not, write to the Free Software Foundation, Inc., 342 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 343 | 344 | Also add information on how to contact you by electronic and paper mail. 345 | 346 | If the program is interactive, make it output a short notice like this 347 | when it starts in an interactive mode: 348 | 349 | Gnomovision version 69, Copyright (C) year name of author 350 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 351 | This is free software, and you are welcome to redistribute it 352 | under certain conditions; type `show c' for details. 353 | 354 | The hypothetical commands `show w' and `show c' should show the appropriate 355 | parts of the General Public License. Of course, the commands you use may 356 | be called something other than `show w' and `show c'; they could even be 357 | mouse-clicks or menu items--whatever suits your program. 358 | 359 | You should also get your employer (if you work as a programmer) or your 360 | school, if any, to sign a "copyright disclaimer" for the program, if 361 | necessary. Here is a sample; alter the names: 362 | 363 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 364 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 365 | 366 | , 1 April 1989 367 | Ty Coon, President of Vice 368 | 369 | This General Public License does not permit incorporating your program into 370 | proprietary programs. If your program is a subroutine library, you may 371 | consider it more useful to permit linking proprietary applications with the 372 | library. If this is what you want to do, use the GNU Lesser General 373 | Public License instead of this License. 374 | 375 | 376 | 377 | SIL Open Font License version 1.1 378 | --------------------------------- 379 | Copyright (c) , (), 380 | with Reserved Font Name . 381 | Copyright (c) , (), 382 | with Reserved Font Name . 383 | Copyright (c) , (). 384 | 385 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 386 | This license is copied below, and is also available with a FAQ at: 387 | http://scripts.sil.org/OFL 388 | 389 | 390 | ----------------------------------------------------------- 391 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 392 | ----------------------------------------------------------- 393 | 394 | PREAMBLE 395 | The goals of the Open Font License (OFL) are to stimulate worldwide 396 | development of collaborative font projects, to support the font creation 397 | efforts of academic and linguistic communities, and to provide a free and 398 | open framework in which fonts may be shared and improved in partnership 399 | with others. 400 | 401 | The OFL allows the licensed fonts to be used, studied, modified and 402 | redistributed freely as long as they are not sold by themselves. The 403 | fonts, including any derivative works, can be bundled, embedded, 404 | redistributed and/or sold with any software provided that any reserved 405 | names are not used by derivative works. The fonts and derivatives, 406 | however, cannot be released under any other type of license. The 407 | requirement for fonts to remain under this license does not apply 408 | to any document created using the fonts or their derivatives. 409 | 410 | DEFINITIONS 411 | "Font Software" refers to the set of files released by the Copyright 412 | Holder(s) under this license and clearly marked as such. This may 413 | include source files, build scripts and documentation. 414 | 415 | "Reserved Font Name" refers to any names specified as such after the 416 | copyright statement(s). 417 | 418 | "Original Version" refers to the collection of Font Software components as 419 | distributed by the Copyright Holder(s). 420 | 421 | "Modified Version" refers to any derivative made by adding to, deleting, 422 | or substituting -- in part or in whole -- any of the components of the 423 | Original Version, by changing formats or by porting the Font Software to a 424 | new environment. 425 | 426 | "Author" refers to any designer, engineer, programmer, technical 427 | writer or other person who contributed to the Font Software. 428 | 429 | PERMISSION & CONDITIONS 430 | Permission is hereby granted, free of charge, to any person obtaining 431 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 432 | redistribute, and sell modified and unmodified copies of the Font 433 | Software, subject to the following conditions: 434 | 435 | 1) Neither the Font Software nor any of its individual components, 436 | in Original or Modified Versions, may be sold by itself. 437 | 438 | 2) Original or Modified Versions of the Font Software may be bundled, 439 | redistributed and/or sold with any software, provided that each copy 440 | contains the above copyright notice and this license. These can be 441 | included either as stand-alone text files, human-readable headers or 442 | in the appropriate machine-readable metadata fields within text or 443 | binary files as long as those fields can be easily viewed by the user. 444 | 445 | 3) No Modified Version of the Font Software may use the Reserved Font 446 | Name(s) unless explicit written permission is granted by the corresponding 447 | Copyright Holder. This restriction only applies to the primary font name as 448 | presented to the users. 449 | 450 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 451 | Software shall not be used to promote, endorse or advertise any 452 | Modified Version, except to acknowledge the contribution(s) of the 453 | Copyright Holder(s) and the Author(s) or with their explicit written 454 | permission. 455 | 456 | 5) The Font Software, modified or unmodified, in part or in whole, 457 | must be distributed entirely under this license, and must not be 458 | distributed under any other license. The requirement for fonts to 459 | remain under this license does not apply to any document created 460 | using the Font Software. 461 | 462 | TERMINATION 463 | This license becomes null and void if any of the above conditions are 464 | not met. 465 | 466 | DISCLAIMER 467 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 468 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 469 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 470 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 471 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 472 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 473 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 474 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 475 | OTHER DEALINGS IN THE FONT SOFTWARE. 476 | -------------------------------------------------------------------------------- /OFL-1.1.txt: -------------------------------------------------------------------------------- 1 | The SIL Open Font License version 1.1 is copied below, and is also 2 | available with a FAQ at http://scripts.sil.org/OFL. 3 | 4 | 5 | ----------------------------------------------------------- 6 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 7 | ----------------------------------------------------------- 8 | 9 | PREAMBLE 10 | The goals of the Open Font License (OFL) are to stimulate worldwide 11 | development of collaborative font projects, to support the font creation 12 | efforts of academic and linguistic communities, and to provide a free and 13 | open framework in which fonts may be shared and improved in partnership 14 | with others. 15 | 16 | The OFL allows the licensed fonts to be used, studied, modified and 17 | redistributed freely as long as they are not sold by themselves. The 18 | fonts, including any derivative works, can be bundled, embedded, 19 | redistributed and/or sold with any software provided that any reserved 20 | names are not used by derivative works. The fonts and derivatives, 21 | however, cannot be released under any other type of license. The 22 | requirement for fonts to remain under this license does not apply 23 | to any document created using the fonts or their derivatives. 24 | 25 | DEFINITIONS 26 | "Font Software" refers to the set of files released by the Copyright 27 | Holder(s) under this license and clearly marked as such. This may 28 | include source files, build scripts and documentation. 29 | 30 | "Reserved Font Name" refers to any names specified as such after the 31 | copyright statement(s). 32 | 33 | "Original Version" refers to the collection of Font Software components as 34 | distributed by the Copyright Holder(s). 35 | 36 | "Modified Version" refers to any derivative made by adding to, deleting, 37 | or substituting -- in part or in whole -- any of the components of the 38 | Original Version, by changing formats or by porting the Font Software to a 39 | new environment. 40 | 41 | "Author" refers to any designer, engineer, programmer, technical 42 | writer or other person who contributed to the Font Software. 43 | 44 | PERMISSION & CONDITIONS 45 | Permission is hereby granted, free of charge, to any person obtaining 46 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 47 | redistribute, and sell modified and unmodified copies of the Font 48 | Software, subject to the following conditions: 49 | 50 | 1) Neither the Font Software nor any of its individual components, 51 | in Original or Modified Versions, may be sold by itself. 52 | 53 | 2) Original or Modified Versions of the Font Software may be bundled, 54 | redistributed and/or sold with any software, provided that each copy 55 | contains the above copyright notice and this license. These can be 56 | included either as stand-alone text files, human-readable headers or 57 | in the appropriate machine-readable metadata fields within text or 58 | binary files as long as those fields can be easily viewed by the user. 59 | 60 | 3) No Modified Version of the Font Software may use the Reserved Font 61 | Name(s) unless explicit written permission is granted by the corresponding 62 | Copyright Holder. This restriction only applies to the primary font name as 63 | presented to the users. 64 | 65 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 66 | Software shall not be used to promote, endorse or advertise any 67 | Modified Version, except to acknowledge the contribution(s) of the 68 | Copyright Holder(s) and the Author(s) or with their explicit written 69 | permission. 70 | 71 | 5) The Font Software, modified or unmodified, in part or in whole, 72 | must be distributed entirely under this license, and must not be 73 | distributed under any other license. The requirement for fonts to 74 | remain under this license does not apply to any document created 75 | using the Font Software. 76 | 77 | TERMINATION 78 | This license becomes null and void if any of the above conditions are 79 | not met. 80 | 81 | DISCLAIMER 82 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 83 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 84 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 85 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 86 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 87 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 88 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 89 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 90 | OTHER DEALINGS IN THE FONT SOFTWARE. 91 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # unifont 2 | 3 | Unofficial mirror of Unifont release binaries, copied from http://unifoundry.com/unifont/index.html. In addition to that, we are also offering .ttf (TrueType) fonts that are no longer offered by unifoundry, as per [Release v15.1.01](https://github.com/multitheftauto/unifont/releases/tag/v15.1.01) and up, refer to the release post intro for details on how that's set up and why. 4 | 5 | ## Current release: [v16.0.03](https://github.com/multitheftauto/unifont/releases/tag/v16.0.03) 6 | 7 | ## About this Mirror 8 | 9 | Note from mirror maintainers: 10 | Due to Unifont **15.1.01 and later** not offering .ttf (TrueType) in its official release packages, the .TTF font files provided as attachment below each "Release" is our way of providing for our own needs at mtasa-blue, as well as helping out other OSS users/projects that are still going to need it; we have [set up GitHub Actions](https://github.com/multitheftauto/unifont/pull/2) to build the .ttf (TrueType) version of Unifont anyways, and for each release tag we let the GitHub Actions runner produce the TrueType fonts accordingly to that script. 11 | 12 | Huge thanks to @AlexTMjugador for studying the .ttf build procedure (all that Unifoundry said was "TrueType fonts can still be built from the distribution tarball using the command "make truetype" in the font directory", which falls short) and setting up the GitHub Actions runner. We will continue to provide these in all subsequent releases for A) as long it's compatible and B) we won't face the scenario where large modifications are required to keep it working in a future during which we don't have a person with the know-how & time to fix it up. So please do not rely/lock in on future updates from this mirror always offering .ttf (TrueType) fonts, we will do it for as long is feasible for ourselves. 13 | 14 | This mirror is manually maintained and its main purpose is offering TrueType (.ttf) font variant. Please be aware that it doesn't always follow the official release schedule. 15 | As required by the license, on 8th Feb 2025, we have started to include the full sourcecode packages from unifoundry along with each release tag. This was also applied retro-actively to prior releases. 16 | 17 | ## License 18 | 19 | These font files are licensed under the GNU General Public License, either Version 2 or (at your option) a later version, with the exception that embedding the font in a document does not in itself constitute a violation of the GNU GPL. The full terms of the license are in LICENSE.txt. 20 | 21 | As of Unifont version 13.0.04, the fonts are dual-licensed under the SIL Open Font License version 1.1 and the GNU GPL 2+ with the GNU font embedding exception. This license is available at OFL-1.1.txt. 22 | -------------------------------------------------------------------------------- /unifoundry-keys.gpg: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP PUBLIC KEY BLOCK----- 2 | 3 | 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 63 | 5FvYNgYvjGGpyMBuulIcw82FGG5Jogf1q6n5l4E= 64 | =nbqX 65 | -----END PGP PUBLIC KEY BLOCK----- 66 | --------------------------------------------------------------------------------