Previously, testing in macOS required running `make install`, switching over to the Finder, then double clicking TuxPaint.app, which was a time consuming process. This change allows the tuxpaint binary to be run directly from the command line (./tuxpaint) without `make install`, which makes it easier to test any small code change. Now `make install` is only required to build the TuxPaint.app bundle for execution from the Finder. FYI, `make install` also builds TuxPaint.dmg for distribution. A small change is included in this commit to allow TuxPaint.dmg to be built without building TuxPaint.app (if, for example, you delete TuxPaint.dmg by accident and need to rebuild it.) This is done via `make TuxPaint.dmg`.
28 lines
904 B
Text
28 lines
904 B
Text
<?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>CFBundleExecutable</key>
|
|
<string>tuxpaint</string>
|
|
<key>CFBundleGetInfoString</key>
|
|
<string>0.9.23, Copyright 2009-2018, Tux Paint Development Team</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>tuxpaint.icns</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>com.newbreedsoftware.tuxpaint</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>Tux Paint</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>0.9.23</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>TXPT</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>2018-06-27</string>
|
|
</dict>
|
|
</plist>
|