diff --git a/README.md b/README.md index 705be44..870b774 100755 --- a/README.md +++ b/README.md @@ -6,13 +6,14 @@ Juglans (ユグランス)は、 Inconsolata と源真ゴシックをベー - 字形の変更をプログラミングに必要な最小限に留めています。 - 標準ウェイト・太字ウェイトがあります。 - EastAsianWidth における W および F のみを全角フォントとしています。 +- Windows Terminal および iTerm2 向けに調整済みの Powerline グリフを含む Nerd Fonts を合成しています。 ## サンプル ### Notepad++, 12pt, スケーリング150%, 標準・太字ウェイト利用 Notepad++ ### Windows Terminal, 14pt, スケーリング150% -WindowsTerminal +windowsterminal ## ライセンス Juglans フォント、生成スクリプト共に SIL OPEN FONT LICENSE Version 1.1 の下で利用できます。 @@ -23,6 +24,7 @@ Inconsolata (ASCII 文字) 源真ゴシック (全角文字) Anonymous Pro Minus(ASCII 文字のアスタリスクとチルダ) DejaVu LGC (Inconsolata に未収録の半角文字) +Nerd Fonts (Pomicon を除く記号文字) ## 利用フォントのライセンス サードパーティーライセンス.txt を参照してください。 diff --git a/Source/juglans_generator.py b/Source/juglans_generator.py index c4c49b2..b1f4383 100755 --- a/Source/juglans_generator.py +++ b/Source/juglans_generator.py @@ -9,12 +9,12 @@ # version -newfont_version = "2.003.20220730" +newfont_version = "2.004.20220807" newfont_sfntRevision = 0x00010000 # set font name -newfont_name = ("../Work/Juglans-Regular.ttf", "Juglans-Regular", "Juglans", "Juglans Regular") -newfont_name_bold = ("../Work/Juglans-Bold.ttf", "Juglans-Bold", "Juglans", "Juglans Bold") +newfont_name = (f"../Work/Juglans-{sys.argv[2]}-for-{sys.argv[1]}.ttf", "Juglans-Regular", "Juglans", "Juglans Regular") +newfont_name_bold = (f"../Work/Juglans-{sys.argv[2]}-for-{sys.argv[1]}.ttf", "Juglans-Bold", "Juglans", "Juglans Bold") # source file srcfont_incosolata = "../SourceTTF/Inconsolata-Regular.ttf" srcfont_incosolata_bold = "../SourceTTF/Inconsolata-Bold.ttf" @@ -24,6 +24,8 @@ srcfont_dejavu_bold = "../SourceTTF/DejaVuLGCSansMono-Bold.ttf" srcfont_anonpro = "../SourceTTF/AnonymousProMinus.ttf" srcfont_anonpro_bold = "../SourceTTF/AnonymousProMinusB.ttf" +srcfont_nerdfonts = "../SourceTTF/NerdFonts-without-pomicon-Regular.ttf" +srcfont_powerline = "../SourceTTF/Powerline-Mod.ttf" # out file @@ -80,16 +82,24 @@ print("Juglans generator " + newfont_version) print("This script is for generating 'Juglans' font") -if len(sys.argv) > 1 and sys.argv[1] == "bold": - print("Generate Juglans-Bold") +if sys.argv[1] == "WindowsTerminal": + powerline_y = -210 + powerline_h = 1.09 +elif sys.argv[1] == "iTerm2": + powerline_y = -175 + powerline_h = 1.065 +else: + powerline_y = -200 + powerline_y = 1.0 + +print(f"Generate Juglans {sys.argv[2]} for {sys.argv[1]}") +if sys.argv[2] == "Bold": newfont_name = newfont_name_bold newfont_weight = newfont_weight_bold srcfont_incosolata = srcfont_incosolata_bold srcfont_GenShin = srcfont_GenShin_bold srcfont_anonpro = srcfont_anonpro_bold panose_base = panose_base_bold -else: - print("Generate Juglans-Normal") if os.path.exists(srcfont_incosolata) == False: print("Error: " + srcfont_incosolata + " not found") @@ -101,6 +111,39 @@ ######################################## # define function ######################################## + + +class Matrix: + def __init__(self): + self.ps_mat = None + + def move(self, x, y): + mat = psMat.translate(x, y) + self._compose(mat) + return self + + def scale(self, x, y=None): + if y is None: + y = x + mat = psMat.scale(x, y) + self._compose(mat) + return self + + def to_ff(self): + return self.ps_mat + + def _compose(self, mat): + if self.ps_mat is None: + self.ps_mat = mat + return + self.ps_mat = psMat.compose(self.ps_mat, mat) + + + +def composeChain(mat): + return psMat.compose(self, chain) + + def matRescale(origin_x, origin_y, scale_x, scale_y): return psMat.compose( psMat.translate(-origin_x, -origin_y), psMat.compose( @@ -286,7 +329,6 @@ def setFontProp(font, fontInfo): font.upos = 45 - charASCII = rng(0x0021, 0x007E) charZHKana = list(u"ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをん"), charZKKana = list(u"ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶ"), @@ -297,7 +339,6 @@ def setFontProp(font, fontInfo): # modified Inconsolata ######################################## -print() print("Open " + srcfont_incosolata) fIn = fontforge.open(srcfont_incosolata) @@ -331,7 +372,7 @@ def setFontProp(font, fontInfo): # modify Anonymous Pro Minus ######################################## -print("\nOpen " + srcfont_anonpro) +print("Open " + srcfont_anonpro) anon_font = fontforge.open(srcfont_anonpro) # modify @@ -361,11 +402,66 @@ def setFontProp(font, fontInfo): anon_font.generate("../Work/modAnon.ttf", '', generate_flags) anon_font.close() +######################################## +# modify Powerline +######################################## + +print("Open " + srcfont_powerline) +powerline = fontforge.open(srcfont_powerline) + +# modify +print("modify") + +# modify em +powerline.em = newfont_em +powerline.ascent = newfont_ascent +powerline.descent = newfont_descent + +# move +for glyph in powerline.glyphs(): + mat = (Matrix() + .move(0, 200) + .scale(1.0, powerline_h) + .move(0, powerline_y) + .to_ff()) + glyph.transform(mat) + +powerline.selection.all() +powerline.round() + +powerline.generate("../Work/modPower.ttf", '', generate_flags) +powerline.close() + +######################################## +# modify Nerd Fonts +######################################## + +print("Open " + srcfont_nerdfonts) +nerd_font = fontforge.open(srcfont_nerdfonts) + +# modify +print("modify") + +# modify em +nerd_font.em = newfont_em +nerd_font.ascent = newfont_ascent +nerd_font.descent = newfont_descent + +# move +for glyph in nerd_font.glyphs(): + glyph.transform(psMat.translate(0, 60)) + +nerd_font.selection.all() +nerd_font.round() + +nerd_font.generate("../Work/modNerd.ttf", '', generate_flags) +nerd_font.close() + ######################################## # modify DejaVu LGC ######################################## -print("\nOpen " + srcfont_dejavu) +print("Open " + srcfont_dejavu) de_font = fontforge.open(srcfont_dejavu) # modify @@ -399,7 +495,6 @@ def setFontProp(font, fontInfo): # modified GenShin ######################################## -print() print("Open " + srcfont_GenShin) fGs = fontforge.open(srcfont_GenShin) @@ -442,11 +537,7 @@ def setFontProp(font, fontInfo): # create Juglans ######################################## ju_font = fontforge.open("../Work/modIncosolata.ttf") -de_font = fontforge.open("../Work/modDejaVu.ttf") -ge_font = fontforge.open("../Work/modGenShin.ttf") -an_font = fontforge.open("../Work/modAnon.ttf") -print() print("Build " + newfont_name[0]) # pre-process @@ -456,9 +547,16 @@ def setFontProp(font, fontInfo): print("merge Anonymous Pro") ju_font.mergeFonts("../Work/modAnon.ttf") +# merge Powerline +print("merge Powerline") +ju_font.mergeFonts("../Work/modPower.ttf") + +# merge Nerd Fonts +print("merge Nerd Fonts") +ju_font.mergeFonts("../Work/modNerd.ttf") + # merge DejaVu print("merge DejaVu") -# マージ ju_font.mergeFonts("../Work/modDejaVu.ttf") # merge GenShin diff --git a/Source/juglans_generator.sh b/Source/juglans_generator.sh index 0003c62..0a78f52 100755 --- a/Source/juglans_generator.sh +++ b/Source/juglans_generator.sh @@ -1,28 +1,41 @@ #!/bin/sh echo フォント生成 mkdir ../Work -echo Regularフォントの生成 -fontforge -lang=py -script juglans_generator.py -echo Boldフォントの生成 -fontforge -lang=py -script juglans_generator.py bold -echo xAvgCharWidthの書き換え -# Regular -ttx -f -t 'OS/2' -d ../Work ../Work/Juglans-Regular.ttf -ttx -f -t 'OS/2' -d ../Work ../SourceTTF/Inconsolata-Regular.ttf -xAvgCharWidth=$(grep xAvgCharWidth ../Work/Inconsolata-Regular.ttx | sed -e 's/.*value="\([0-9]*\)".*/\1/') -sed -i -e "s/^\(.* /dev/null + + src_ttf="../SourceTTF/Inconsolata-${weight}.ttf" + work_ttf="../Work/Juglans-${weight}-for-${terminal}.ttf" + src_ttx="../Work/Inconsolata-${weight}.ttx" + work_ttx="../Work/Juglans-${weight}-for-${terminal}.ttx" + dst_ttf="../product/Juglans-${weight}-for-${terminal}.ttf" + + echo xAvgCharWidthの書き換え + ttx -f -t 'OS/2' -d ../Work $work_ttf + ttx -f -t 'OS/2' -d ../Work $src_ttf + xAvgCharWidth=$(grep xAvgCharWidth $src_ttx | sed -e 's/.*value="\([0-9]*\)".*/\1/') + sed -i -e "s/^\(.*, (), +with Reserved Font Name . +Copyright (c) , (), +with Reserved Font Name . +Copyright (c) , (). + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. + + +Powerline Symbols +--- +Copyright 2013 Kim Silkebækken and other contributors +https://github.com/powerline/powerline + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +Font Awesome +--- +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license/free. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OFL license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** + + +Font logos +--- +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to + + +Font Awesome Extension +--- +MIT License + +Copyright (c) 2017 André Luiz Gava + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +Devicons +--- +The MIT License (MIT) + +Copyright (c) 2014 Ryan L McIntyre + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +IEC Power Symbols +--- +The MIT License (MIT) + +Copyright (c) 2013 Joe Loughry + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +Material Design Icons +--- +Pictogrammers Free License +-------------------------- + +This icon collection is released as free, open source, and GPL friendly by +the [Pictogrammers](http://pictogrammers.com/) icon group. You may use it +for commercial projects, open source projects, or anything really. + +# Icons: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0) +Some of the icons are redistributed under the Apache 2.0 license. All other +icons are either redistributed under their respective licenses or are +distributed under the Apache 2.0 license. + +# Fonts: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0) +All web and desktop fonts are distributed under the Apache 2.0 license. Web +and desktop fonts contain some icons that are redistributed under the Apache +2.0 license. All other icons are either redistributed under their respective +licenses or are distributed under the Apache 2.0 license. + +# Code: MIT (https://opensource.org/licenses/MIT) +The MIT license applies to all non-font and non-icon files. + + +Seti-UI +--- +Copyright (c) 2014 Jesse Weed + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, +sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS +OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +Octicons +--- +MIT License + +Copyright (c) 2022 GitHub Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +Powerline Extra Symbols +--- +MIT License + +Copyright (c) 2016 Ryan L McIntyre + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file