mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 07:52:24 -04:00
recognise .anki extension on osx
This commit is contained in:
parent
2f656397fd
commit
74e78e6623
1 changed files with 5 additions and 3 deletions
|
@ -52,9 +52,11 @@ DATA_FILES = [
|
|||
PLIST = dict(
|
||||
CFBundleIdentifier = 'net.ichi2.anki',
|
||||
CFBundleName = 'Anki',
|
||||
CFBundleDocumentTypes = [],
|
||||
CFBundleLocalizations = ['en', 'ja', 'fr', 'de']
|
||||
)
|
||||
CFBundleDocumentTypes=[dict(CFBundleTypeExtensions=["anki"],
|
||||
CFBundleTypeName="Anki Deck",
|
||||
CFBundleTypeRole="Editor")],
|
||||
CFBundleLocalizations = ['en'],
|
||||
)
|
||||
OPTIONS = {
|
||||
'argv_emulation': True,
|
||||
'optimize': 0,
|
||||
|
|
Loading…
Reference in a new issue