Add MacOS Bundle Assets (#38)

* Update gitignore to remove DS_Store
* MacOS Bundle Assets, pt.1
* Added HiDPI flag, fixed icns (thanks @nueh)
This commit is contained in:
CalmBit 2020-04-10 03:21:25 -04:00 committed by GitHub
parent 3429a3ed7a
commit 6d7755b857
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 0 deletions

3
.gitignore vendored
View file

@ -29,3 +29,6 @@ deploy/
# Config files
chirp.conf
telephant.conf
# DS_Store :(
.DS_Store

View file

@ -0,0 +1,30 @@
<?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>CFBundleExecutable</key>
<string>telephant</string>
<key>CFBundleGetInfoString</key>
<string>Telephant! is a light-weight but modern social media client</string>
<key>CFBundleIconFile</key>
<string>telephant.icns</string>
<key>CFBundleIdentifier</key>
<string>com.github.muesli.telephant</string>
<key>CFBundleName</key>
<string>Telephant</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>LSMinimumSystemVersion</key>
<string>10.11</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSSupportsAutomaticGraphicsSwitching</key>
<true/>
<key>NSHighResolutionCapable</key>
<true/>
</dict>
</plist>

Binary file not shown.