mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 16:02:23 -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(
|
PLIST = dict(
|
||||||
CFBundleIdentifier = 'net.ichi2.anki',
|
CFBundleIdentifier = 'net.ichi2.anki',
|
||||||
CFBundleName = 'Anki',
|
CFBundleName = 'Anki',
|
||||||
CFBundleDocumentTypes = [],
|
CFBundleDocumentTypes=[dict(CFBundleTypeExtensions=["anki"],
|
||||||
CFBundleLocalizations = ['en', 'ja', 'fr', 'de']
|
CFBundleTypeName="Anki Deck",
|
||||||
)
|
CFBundleTypeRole="Editor")],
|
||||||
|
CFBundleLocalizations = ['en'],
|
||||||
|
)
|
||||||
OPTIONS = {
|
OPTIONS = {
|
||||||
'argv_emulation': True,
|
'argv_emulation': True,
|
||||||
'optimize': 0,
|
'optimize': 0,
|
||||||
|
|
Loading…
Reference in a new issue