parent
cd4b6dac69
commit
c8a05e3fca
6 changed files with 117 additions and 1 deletions
@ -0,0 +1,95 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
||||
<plist version="1.0"> |
||||
<dict> |
||||
<key>CFBundleDevelopmentRegion</key> |
||||
<string>English</string> |
||||
<key>CFBundleDocumentTypes</key> |
||||
<array> |
||||
<dict> |
||||
<key>CFBundleTypeExtensions</key> |
||||
<array> |
||||
<string>xopp</string> |
||||
<string>XOPP</string> |
||||
<string>xopt</string> |
||||
<string>XOPT</string> |
||||
<string>xoj</string> |
||||
<string>XOJ</string> |
||||
</array> |
||||
<key>CFBundleTypeIconFile</key> |
||||
<string>xournalpp.icns</string> |
||||
<key>CFBundleTypeMIMETypes</key> |
||||
<array> |
||||
<string>application/xopp</string> |
||||
</array> |
||||
<key>CFBundleTypeName</key> |
||||
<string>Xournal++ Document</string> |
||||
<key>CFBundleTypeOSTypes</key> |
||||
<array> |
||||
<string>XOPP </string> |
||||
</array> |
||||
<key>CFBundleTypeRole</key> |
||||
<string>Editor</string> |
||||
<key>LSIsAppleDefaultForType</key> |
||||
<true/> |
||||
<key>LSItemContentTypes</key> |
||||
<array> |
||||
<string>com.github.xournalpp.xcf</string> |
||||
</array> |
||||
</dict> |
||||
<dict> |
||||
<key>CFBundleTypeExtensions</key> |
||||
<array> |
||||
<string>pdf</string> |
||||
<string>PDF</string> |
||||
</array> |
||||
<key>CFBundleTypeMIMETypes</key> |
||||
<array> |
||||
<string>application/pdf</string> |
||||
</array> |
||||
<key>CFBundleTypeName</key> |
||||
<string>NSPDFPboardType</string> |
||||
<key>CFBundleTypeOSTypes</key> |
||||
<array> |
||||
<string>PDF </string> |
||||
</array> |
||||
<key>CFBundleTypeRole</key> |
||||
<string>Editor</string> |
||||
<key>LSIsAppleDefaultForType</key> |
||||
<true/> |
||||
<key>LSItemContentTypes</key> |
||||
<array> |
||||
<string>com.adobe.pdf</string> |
||||
</array> |
||||
<key>NSDocumentClass</key> |
||||
<string>PVPDFDocument</string> |
||||
</dict> |
||||
</array> |
||||
<key>CFBundleExecutable</key> |
||||
<string>xournalpp</string> |
||||
<key>CFBundleGetInfoString</key> |
||||
<string>Tablet Notetaking Application</string> |
||||
<key>CFBundleIconFile</key> |
||||
<string>xournalpp.icns</string> |
||||
<key>CFBundleIdentifier</key> |
||||
<string>com.github.xournalpp</string> |
||||
<key>CFBundleInfoDictionaryVersion</key> |
||||
<string>6.0</string> |
||||
<key>CFBundleName</key> |
||||
<string>Xournal++ 1.0.6</string> |
||||
<key>CFBundlePackageType</key> |
||||
<string>APPL</string> |
||||
<key>CFBundleShortVersionString</key> |
||||
<string>1.0.6-alpha</string> |
||||
<key>CFBundleSignature</key> |
||||
<string>Xournal++</string> |
||||
<key>CFBundleVersion</key> |
||||
<string>1.0.6-alpha</string> |
||||
<key>NSHumanReadableCopyright</key> |
||||
<string>© 2010-2019 Xournal++ Team</string> |
||||
<key>NSHighResolutionCapable</key> |
||||
<true/> |
||||
<key>NSRequiresAquaSystemAppearance</key> |
||||
<true/> |
||||
</dict> |
||||
</plist> |
||||
|
After Width: | Height: | Size: 112 KiB |
@ -0,0 +1,15 @@ |
||||
#!/usr/bin/env bash |
||||
# https://stackoverflow.com/questions/12306223/how-to-manually-create-icns-files-using-iconutil |
||||
mkdir MyIcon.iconset |
||||
sips -z 16 16 Icon1024.png --out MyIcon.iconset/icon_16x16.png |
||||
sips -z 32 32 Icon1024.png --out MyIcon.iconset/icon_16x16@2x.png |
||||
sips -z 32 32 Icon1024.png --out MyIcon.iconset/icon_32x32.png |
||||
sips -z 64 64 Icon1024.png --out MyIcon.iconset/icon_32x32@2x.png |
||||
sips -z 128 128 Icon1024.png --out MyIcon.iconset/icon_128x128.png |
||||
sips -z 256 256 Icon1024.png --out MyIcon.iconset/icon_128x128@2x.png |
||||
sips -z 256 256 Icon1024.png --out MyIcon.iconset/icon_256x256.png |
||||
sips -z 512 512 Icon1024.png --out MyIcon.iconset/icon_256x256@2x.png |
||||
sips -z 512 512 Icon1024.png --out MyIcon.iconset/icon_512x512.png |
||||
cp Icon1024.png MyIcon.iconset/icon_512x512@2x.png |
||||
iconutil -c icns MyIcon.iconset |
||||
rm -R MyIcon.iconset |
||||
Binary file not shown.
Loading…
Reference in new issue