mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 08:01:30 -07:00
Files

This consists of setting a flag in the Info.plist. Everything in the game is resolution-independent, of course, and has been thoroughly tested on other platforms. The only issue I found is cosmetic: The rounded window corners become more dramatic and don't look as good against the square status bar. Increasing the resolution also exposes two graphical quirks that I don't think are new. Curved rails in Tracks seem to be made of short segments that don't quite connect, but I don't see this on Android, and on closer inspection this is already present on low resolution in OS X. Lines in Untangle, and also Galaxies, that are at a multiple of 45 degrees seem thinner than other lines, but I also see this on Android — I think it's just more obvious on high resolution, and could be adjusted with antialiasing. Everything else looks as it should, for example when moving a window between low and high dpi displays.
37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
<?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>CFBundleIconFile</key>
|
|
<string>Puzzles.icns</string>
|
|
<key>CFBundleHelpBookFolder</key>
|
|
<string>Help</string>
|
|
<key>CFBundleHelpBookName</key>
|
|
<string>Puzzles Help</string>
|
|
<key>CFBundleName</key>
|
|
<string>Puzzles</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>Puzzles</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>Puzzles</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>Unidentified build</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>Unidentified build</string>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>en</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>uk.org.greenend.chiark.sgtatham.puzzles</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>????</string>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string>This software is copyright (c) 2004-2014 Simon Tatham</string>
|
|
<key>NSHighResolutionCapable</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|