├── .gitmodules ├── README.md ├── RictyDiminished-Bold.ttf ├── RictyDiminished-BoldOblique.ttf ├── RictyDiminished-Oblique.ttf ├── RictyDiminished-Regular.ttf ├── RictyDiminishedDiscord-Bold.ttf ├── RictyDiminishedDiscord-BoldOblique.ttf ├── RictyDiminishedDiscord-Oblique.ttf ├── RictyDiminishedDiscord-Regular.ttf ├── powerline-fontpatched ├── README.md ├── Ricty Diminished Bold Oblique for Powerline.ttf ├── Ricty Diminished Bold for Powerline.ttf ├── Ricty Diminished Discord Bold Oblique for Powerline.ttf ├── Ricty Diminished Discord Bold for Powerline.ttf ├── Ricty Diminished Discord Oblique for Powerline.ttf ├── Ricty Diminished Discord Regular for Powerline.ttf ├── Ricty Diminished Oblique for Powerline.ttf └── Ricty Diminished Regular for Powerline.ttf └── vim-powerline-fontpatched ├── README.md ├── RictyDiminished-Bold-Powerline.ttf ├── RictyDiminished-BoldOblique-Powerline.ttf ├── RictyDiminished-Oblique-Powerline.ttf ├── RictyDiminished-Regular-Powerline.ttf ├── RictyDiminishedDiscord-Bold-Powerline.ttf ├── RictyDiminishedDiscord-BoldOblique-Powerline.ttf ├── RictyDiminishedDiscord-Oblique-Powerline.ttf └── RictyDiminishedDiscord-Regular-Powerline.ttf /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "fontpatcher"] 2 | path = fontpatcher 3 | url = https://github.com/powerline/fontpatcher.git 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # プログラミング用フォント Ricty Diminished w/ Powerline patched 2 | 3 | Ricty Diminished (リクティ・ディミニッシュト) は [Ricty](https://github.com/yascentur/Ricty) の姉妹フォントであり、[Inconsolata](http://levien.com/type/myfonts/inconsolata.html) と [Migu 1M](http://mix-mplus-ipa.sourceforge.jp/) ではなく、[Inconsolata](http://levien.com/type/myfonts/inconsolata.html) と [Circle M+ 1m](http://mix-mplus-ipa.sourceforge.jp/) を Ricty 生成スクリプトで合成したフォントです。 4 | IPA ゴシックのグリフを含まないため、使用可能な漢字グリフの数が少ない代わり、[SIL Open Font License](http://scripts.sil.org/ofl) の下で配布が可能です。 5 | 6 | # 特徴 7 | 8 | * ラテン文字には Raph Levien 氏の Inconsolata が適用されます。 9 | * それ以外の文字には Circle M+ 1m が適用されます。美しい M+ と itouhiro 氏が改良された視認性の高い日本語文字 (半濁音など) が使用できます。 10 | * 半角文字と全角文字の横幅の比が 1:2 に調整されています。 11 | * 全角スペースが可視化されます。 12 | * いくつかの全角グリフが対応する半角グリフと差別化されています。 13 | * en ダッシュ、em ダッシュが破断線のようになります (LaTeX での入力ミス防止のため)。 14 | * **0x2b60-0x2b64, 0x2b80-0x2b84にPowerline用のグリフが埋め込まれたバージョン(\*-Powerline.ttf)を追加で収録** 15 | 16 | # ライセンス 17 | 18 | * Ricty Diminished は [SIL Open Font License (OFL) Version 1.1](http://scripts.sil.org/ofl) に従うものとします。 19 | 20 | # バージョン 21 | 22 | ## Version 3.2.4-Powerline-Early-2016 (22 Aug. 2016) 23 | 24 | * Powerline patchedなフォントをまとめた 25 | 26 | 27 | ## Version 3.2.4-Powerline (15 Jan. 2016) 28 | 29 | * Ricty Diminished Version 3.2.4ベース 30 | * [powerline/fontpatcher](https://github.com/powerline/fontpatcher.git)をsubmoduleとして追加 31 | * powerline/fontpatcherを以下のように実行し、Powerlineグリフ埋め込みバージョンを作成 32 | ``` 33 | $ ls RictyDiminished*.ttf | grep -v Powerline | xargs fontpatcher/scripts/powerline-fontpatcher 34 | ``` 35 | 36 | ## Version 3.2.4-Powerline (11 May. 2015) 37 | 38 | * Ricty Diminished Version 3.2.4ベース 39 | * [vim-powerline](https://github.com/Lokaltog/vim-powerline.git)をsubmoduleとして追加 40 | * vim-powerlineに付属のfontpatcherをfontforge-20110225で以下のように実行し、Powerlineグリフ埋め込みバージョンを作成 41 | ``` 42 | $ find . -name '*.ttf' -exec fontforge -script vim-powerline/fontpatcher/fontpatcher {} \; 43 | ``` 44 | 45 | ## Version 3.2.4 (7 Dec. 2014) 46 | 47 | * [Ricty 生成スクリプト Version 3.2.4](https://github.com/yascentur/Ricty/tree/3.2.4) 48 | * Inconsolata Version 001.010 49 | * Circle M+ 1m Version 1.056 50 | 51 | ## Version 3.2.3 (4 May 2014) 52 | 53 | * [Ricty 生成スクリプト Version 3.2.3](https://github.com/yascentur/Ricty/tree/3.2.3) 54 | * Inconsolata Version 001.010 55 | * Circle M+ 1m Version 1.056 56 | 57 | ## Version 3.2.2 (9 June 2013) 58 | 59 | * [Ricty 生成スクリプト Version 3.2.2](https://github.com/yascentur/Ricty/tree/3.2.2) 60 | * Inconsolata Version 001.010 61 | * Circle M+ 1m Version 1.055 62 | 63 | ## Version 3.2.1 (6 Nov. 2012) 64 | 65 | * [Ricty 生成スクリプト Version 3.2.1](https://github.com/yascentur/Ricty/tree/3.2.1) 66 | * Inconsolata Version 001.010 67 | * Circle M+ 1m Version 1.052 68 | 69 | # 作者連絡先 70 | 71 | [遊佐泰紀 (Yasunori Yusa)](http://save.sys.t.u-tokyo.ac.jp/~yusa/index.html.ja) 72 | -------------------------------------------------------------------------------- /RictyDiminished-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/RictyDiminished-Bold.ttf -------------------------------------------------------------------------------- /RictyDiminished-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/RictyDiminished-BoldOblique.ttf -------------------------------------------------------------------------------- /RictyDiminished-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/RictyDiminished-Oblique.ttf -------------------------------------------------------------------------------- /RictyDiminished-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/RictyDiminished-Regular.ttf -------------------------------------------------------------------------------- /RictyDiminishedDiscord-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/RictyDiminishedDiscord-Bold.ttf -------------------------------------------------------------------------------- /RictyDiminishedDiscord-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/RictyDiminishedDiscord-BoldOblique.ttf -------------------------------------------------------------------------------- /RictyDiminishedDiscord-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/RictyDiminishedDiscord-Oblique.ttf -------------------------------------------------------------------------------- /RictyDiminishedDiscord-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/RictyDiminishedDiscord-Regular.ttf -------------------------------------------------------------------------------- /powerline-fontpatched/README.md: -------------------------------------------------------------------------------- 1 | # プログラミング用フォント Ricty Diminished w/ powerline/fontpatcher patched 2 | 3 | Ricty Diminished (リクティ・ディミニッシュト) は [Ricty](https://github.com/yascentur/Ricty) の姉妹フォントであり、[Inconsolata](http://levien.com/type/myfonts/inconsolata.html) と [Migu 1M](http://mix-mplus-ipa.sourceforge.jp/) ではなく、[Inconsolata](http://levien.com/type/myfonts/inconsolata.html) と [Circle M+ 1m](http://mix-mplus-ipa.sourceforge.jp/) を Ricty 生成スクリプトで合成したフォントです。 4 | IPA ゴシックのグリフを含まないため、使用可能な漢字グリフの数が少ない代わり、[SIL Open Font License](http://scripts.sil.org/ofl) の下で配布が可能です。 5 | 6 | # 特徴 7 | 8 | * ラテン文字には Raph Levien 氏の Inconsolata が適用されます。 9 | * それ以外の文字には Circle M+ 1m が適用されます。美しい M+ と itouhiro 氏が改良された視認性の高い日本語文字 (半濁音など) が使用できます。 10 | * 半角文字と全角文字の横幅の比が 1:2 に調整されています。 11 | * 全角スペースが可視化されます。 12 | * いくつかの全角グリフが対応する半角グリフと差別化されています。 13 | * en ダッシュ、em ダッシュが破断線のようになります (LaTeX での入力ミス防止のため)。 14 | * **0x2b60-0x2b64, 0x2b80-0x2b84にPowerline用のグリフが埋め込まれたバージョン(\*-Powerline.ttf)を追加で収録** 15 | 16 | # ライセンス 17 | 18 | * Ricty Diminished は [SIL Open Font License (OFL) Version 1.1](http://scripts.sil.org/ofl) に従うものとします。 19 | 20 | # バージョン 21 | 22 | ## Version 3.2.4-Powerline (15 Jan. 2016) 23 | 24 | * Ricty Diminished Version 3.2.4ベース 25 | * [powerline/fontpatcher](https://github.com/powerline/fontpatcher.git)をsubmoduleとして追加 26 | * powerline/fontpatcherを以下のように実行し、Powerlineグリフ埋め込みバージョンを作成 27 | ``` 28 | $ ls RictyDiminished*.ttf | grep -v Powerline | xargs fontpatcher/scripts/powerline-fontpatcher 29 | ``` 30 | 31 | ## Version 3.2.4 (7 Dec. 2014) 32 | 33 | * [Ricty 生成スクリプト Version 3.2.4](https://github.com/yascentur/Ricty/tree/3.2.4) 34 | * Inconsolata Version 001.010 35 | * Circle M+ 1m Version 1.056 36 | 37 | ## Version 3.2.3 (4 May 2014) 38 | 39 | * [Ricty 生成スクリプト Version 3.2.3](https://github.com/yascentur/Ricty/tree/3.2.3) 40 | * Inconsolata Version 001.010 41 | * Circle M+ 1m Version 1.056 42 | 43 | ## Version 3.2.2 (9 June 2013) 44 | 45 | * [Ricty 生成スクリプト Version 3.2.2](https://github.com/yascentur/Ricty/tree/3.2.2) 46 | * Inconsolata Version 001.010 47 | * Circle M+ 1m Version 1.055 48 | 49 | ## Version 3.2.1 (6 Nov. 2012) 50 | 51 | * [Ricty 生成スクリプト Version 3.2.1](https://github.com/yascentur/Ricty/tree/3.2.1) 52 | * Inconsolata Version 001.010 53 | * Circle M+ 1m Version 1.052 54 | 55 | # 作者連絡先 56 | 57 | [遊佐泰紀 (Yasunori Yusa)](http://save.sys.t.u-tokyo.ac.jp/~yusa/index.html.ja) 58 | -------------------------------------------------------------------------------- /powerline-fontpatched/Ricty Diminished Bold Oblique for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/powerline-fontpatched/Ricty Diminished Bold Oblique for Powerline.ttf -------------------------------------------------------------------------------- /powerline-fontpatched/Ricty Diminished Bold for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/powerline-fontpatched/Ricty Diminished Bold for Powerline.ttf -------------------------------------------------------------------------------- /powerline-fontpatched/Ricty Diminished Discord Bold Oblique for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/powerline-fontpatched/Ricty Diminished Discord Bold Oblique for Powerline.ttf -------------------------------------------------------------------------------- /powerline-fontpatched/Ricty Diminished Discord Bold for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/powerline-fontpatched/Ricty Diminished Discord Bold for Powerline.ttf -------------------------------------------------------------------------------- /powerline-fontpatched/Ricty Diminished Discord Oblique for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/powerline-fontpatched/Ricty Diminished Discord Oblique for Powerline.ttf -------------------------------------------------------------------------------- /powerline-fontpatched/Ricty Diminished Discord Regular for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/powerline-fontpatched/Ricty Diminished Discord Regular for Powerline.ttf -------------------------------------------------------------------------------- /powerline-fontpatched/Ricty Diminished Oblique for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/powerline-fontpatched/Ricty Diminished Oblique for Powerline.ttf -------------------------------------------------------------------------------- /powerline-fontpatched/Ricty Diminished Regular for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/powerline-fontpatched/Ricty Diminished Regular for Powerline.ttf -------------------------------------------------------------------------------- /vim-powerline-fontpatched/README.md: -------------------------------------------------------------------------------- 1 | # プログラミング用フォント Ricty Diminished w/ vim-powerline/fontpatcher patched 2 | 3 | Ricty Diminished (リクティ・ディミニッシュト) は [Ricty](https://github.com/yascentur/Ricty) の姉妹フォントであり、[Inconsolata](http://levien.com/type/myfonts/inconsolata.html) と [Migu 1M](http://mix-mplus-ipa.sourceforge.jp/) ではなく、[Inconsolata](http://levien.com/type/myfonts/inconsolata.html) と [Circle M+ 1m](http://mix-mplus-ipa.sourceforge.jp/) を Ricty 生成スクリプトで合成したフォントです。 4 | IPA ゴシックのグリフを含まないため、使用可能な漢字グリフの数が少ない代わり、[SIL Open Font License](http://scripts.sil.org/ofl) の下で配布が可能です。 5 | 6 | # 特徴 7 | 8 | * ラテン文字には Raph Levien 氏の Inconsolata が適用されます。 9 | * それ以外の文字には Circle M+ 1m が適用されます。美しい M+ と itouhiro 氏が改良された視認性の高い日本語文字 (半濁音など) が使用できます。 10 | * 半角文字と全角文字の横幅の比が 1:2 に調整されています。 11 | * 全角スペースが可視化されます。 12 | * いくつかの全角グリフが対応する半角グリフと差別化されています。 13 | * en ダッシュ、em ダッシュが破断線のようになります (LaTeX での入力ミス防止のため)。 14 | * **0x2b60-0x2b64, 0x2b80-0x2b84にPowerline用のグリフが埋め込まれたバージョン(\*-Powerline.ttf)を追加で収録** 15 | 16 | # ライセンス 17 | 18 | * Ricty Diminished は [SIL Open Font License (OFL) Version 1.1](http://scripts.sil.org/ofl) に従うものとします。 19 | 20 | # バージョン 21 | 22 | 23 | ## Version 3.2.4-Powerline (11 May. 2015) 24 | 25 | * Ricty Diminished Version 3.2.4ベース 26 | * [vim-powerline](https://github.com/Lokaltog/vim-powerline.git)をsubmoduleとして追加 27 | * vim-powerlineに付属のfontpatcherをfontforge-20110225で以下のように実行し、Powerlineグリフ埋め込みバージョンを作成 28 | ``` 29 | $ find . -name '*.ttf' -exec fontforge -script vim-powerline/fontpatcher/fontpatcher {} \; 30 | ``` 31 | 32 | ## Version 3.2.4 (7 Dec. 2014) 33 | 34 | * [Ricty 生成スクリプト Version 3.2.4](https://github.com/yascentur/Ricty/tree/3.2.4) 35 | * Inconsolata Version 001.010 36 | * Circle M+ 1m Version 1.056 37 | 38 | ## Version 3.2.3 (4 May 2014) 39 | 40 | * [Ricty 生成スクリプト Version 3.2.3](https://github.com/yascentur/Ricty/tree/3.2.3) 41 | * Inconsolata Version 001.010 42 | * Circle M+ 1m Version 1.056 43 | 44 | ## Version 3.2.2 (9 June 2013) 45 | 46 | * [Ricty 生成スクリプト Version 3.2.2](https://github.com/yascentur/Ricty/tree/3.2.2) 47 | * Inconsolata Version 001.010 48 | * Circle M+ 1m Version 1.055 49 | 50 | ## Version 3.2.1 (6 Nov. 2012) 51 | 52 | * [Ricty 生成スクリプト Version 3.2.1](https://github.com/yascentur/Ricty/tree/3.2.1) 53 | * Inconsolata Version 001.010 54 | * Circle M+ 1m Version 1.052 55 | 56 | # 作者連絡先 57 | 58 | [遊佐泰紀 (Yasunori Yusa)](http://save.sys.t.u-tokyo.ac.jp/~yusa/index.html.ja) 59 | -------------------------------------------------------------------------------- /vim-powerline-fontpatched/RictyDiminished-Bold-Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/vim-powerline-fontpatched/RictyDiminished-Bold-Powerline.ttf -------------------------------------------------------------------------------- /vim-powerline-fontpatched/RictyDiminished-BoldOblique-Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/vim-powerline-fontpatched/RictyDiminished-BoldOblique-Powerline.ttf -------------------------------------------------------------------------------- /vim-powerline-fontpatched/RictyDiminished-Oblique-Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/vim-powerline-fontpatched/RictyDiminished-Oblique-Powerline.ttf -------------------------------------------------------------------------------- /vim-powerline-fontpatched/RictyDiminished-Regular-Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/vim-powerline-fontpatched/RictyDiminished-Regular-Powerline.ttf -------------------------------------------------------------------------------- /vim-powerline-fontpatched/RictyDiminishedDiscord-Bold-Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/vim-powerline-fontpatched/RictyDiminishedDiscord-Bold-Powerline.ttf -------------------------------------------------------------------------------- /vim-powerline-fontpatched/RictyDiminishedDiscord-BoldOblique-Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/vim-powerline-fontpatched/RictyDiminishedDiscord-BoldOblique-Powerline.ttf -------------------------------------------------------------------------------- /vim-powerline-fontpatched/RictyDiminishedDiscord-Oblique-Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/vim-powerline-fontpatched/RictyDiminishedDiscord-Oblique-Powerline.ttf -------------------------------------------------------------------------------- /vim-powerline-fontpatched/RictyDiminishedDiscord-Regular-Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzyy94/RictyDiminished-for-Powerline/e3ccb88679328fe884127e2547bf2f0766e14955/vim-powerline-fontpatched/RictyDiminishedDiscord-Regular-Powerline.ttf --------------------------------------------------------------------------------