-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimized for cross-platform support
macOS deployment files and platform specific fixes Settings are now globally stored in AppConfigLocation
- Loading branch information
Showing
8 changed files
with
276 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?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>LoFloccus</string> | ||
<key>CFBundleGetInfoString</key> | ||
<string>1.1.2, Copyright © 2019, TCB13.</string> | ||
<key>CFBundleIconFile</key> | ||
<string>icon.icns</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.tcb13.LoFloccus</string> | ||
<key>CFBundleName</key> | ||
<string>LoFloccus</string> | ||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.1.2</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>LSMinimumSystemVersion</key> | ||
<string>10.11</string> | ||
<key>NOTE</key> | ||
<string>This file was generated by Qt/QMake.</string> | ||
<key>NSPrincipalClass</key> | ||
<string>NSApplication</string> | ||
<key>NSHighResolutionCapable</key> | ||
<true/> | ||
<key>NSSupportsAutomaticGraphicsSwitching</key> | ||
<true/> | ||
</dict> | ||
</plist> | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
mkdir icon.iconset | ||
convert -background none -size 16x16 -gravity center -extent 16x16 icon.svg icon.iconset/icon_16x16.png | ||
convert -background none -size 32x32 -gravity center -extent 32x32 icon.svg icon.iconset/[email protected] | ||
convert -background none -size 32x32 -gravity center -extent 32x32 icon.svg icon.iconset/icon_32x32.png | ||
convert -background none -size 64x64 -gravity center -extent 64x64 icon.svg icon.iconset/[email protected] | ||
convert -background none -size 64x64 -gravity center -extent 64x64 icon.svg icon.iconset/icon_64x64.png | ||
convert -background none -size 128x128 -gravity center -extent 128x128 icon.svg icon.iconset/[email protected] | ||
convert -background none -size 128x128 -gravity center -extent 128x128 icon.svg icon.iconset/icon_128x128.png | ||
convert -background none -size 256x256 -gravity center -extent 256x256 icon.svg icon.iconset/[email protected] | ||
convert -background none -size 256x256 -gravity center -extent 256x256 icon.svg icon.iconset/icon_256x256.png | ||
convert -background none -size 512x512 -gravity center -extent 512x512 icon.svg icon.iconset/[email protected] | ||
convert -background none -size 512x512 -gravity center -extent 512x512 icon.svg icon.iconset/icon_512x512.png | ||
convert -background none -size 1024x1024 -gravity center -extent 1024x1024 icon.svg icon.iconset/[email protected] | ||
iconutil --convert icns icon.iconset | ||
rm -R icon.iconset | ||
|
Oops, something went wrong.