1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 01:36:27 +00:00

OSX: File association

This commit is contained in:
Paweł Jastrzębski
2013-10-10 17:07:44 +02:00
parent ea01492e1f
commit cbf87df551

View File

@@ -32,6 +32,13 @@ if platform == "darwin":
CFBundleExecutable=NAME,
CFBundleIdentifier='com.github.ciromattia.kcc',
CFBundleSignature='dplt',
CFBundleDocumentTypes=[
dict(
CFBundleTypeExtensions=['.cbz', '.cbr', '.cb7', '.zip', '.rar', '.7z', '.pdf'],
CFBundleTypeIconFile='comic2ebook.icns',
CFBundleTypeRole='Viewer',
)
],
NSHumanReadableCopyright='ISC License (ISCL)'
)
)