Merge branch 'macos-logo-make' of https://github.com/zchee/kitty

This commit is contained in:
Kovid Goyal 2018-01-11 22:31:18 +05:30
commit 5a4e883360
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 2 deletions

View File

@ -431,7 +431,9 @@ the approach using ligatures.
=== How do I build kitty.app on macOS?
Run:
Install `optipng` and `rsvg-convert` using `brew` or similar (needed for the logo generation step).
And run:
```
logo/make.py
./setup.py kitty.app

View File

@ -23,7 +23,7 @@ def render(output, sz=256):
shutil.rmtree(iconset)
os.mkdir(iconset)
os.chdir(iconset)
for sz in (16, 32, 128, 256, 512, 1024):
for sz in (16, 32, 64, 128, 256, 512, 1024):
iname = 'icon_{0}x{0}.png'.format(sz)
iname2x = 'icon_{0}x{0}@2x.png'.format(sz // 2)
render(iname, sz)