mirror of
https://github.com/muesli/telephant
synced 2024-11-10 05:54:19 +00:00
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:
parent
3429a3ed7a
commit
6d7755b857
3 changed files with 33 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -29,3 +29,6 @@ deploy/
|
|||
# Config files
|
||||
chirp.conf
|
||||
telephant.conf
|
||||
|
||||
# DS_Store :(
|
||||
.DS_Store
|
||||
|
|
30
darwin/Contents/Info.plist
Normal file
30
darwin/Contents/Info.plist
Normal 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>
|
BIN
darwin/Contents/Resources/telephant.icns
Normal file
BIN
darwin/Contents/Resources/telephant.icns
Normal file
Binary file not shown.
Loading…
Reference in a new issue