root / conf / Info.plist

Revision 535:b65ff590bc60, 1.5 kB (checked in by Harri Kaimio <harri@…>, 5 years ago)

Improved MacOS X support:
- Use Quaqua look & feel in Mac. Fixes #30 (menus in top of screen) and
#32 (native look for JFileChooser)
- Added Info.plist file to build tree.

Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0">
4<dict>
5    <key>CFBundleDevelopmentRegion</key>
6    <string>English</string>
7    <key>CFBundleExecutable</key>
8    <string>JavaApplicationStub</string>
9    <key>CFBundleGetInfoString</key>
10    <string>0.4.0 Copyrght (c) 2007 Harri Kaimio</string>
11    <key>CFBundleIconFile</key>
12    <string>GenericJavaApp.icns</string>
13    <key>CFBundleIdentifier</key>
14    <string>org.photovault.50</string>
15    <key>CFBundleInfoDictionaryVersion</key>
16    <string>0.5.0</string>
17    <key>CFBundleName</key>
18    <string>Photovault</string>
19    <key>CFBundlePackageType</key>
20    <string>APPL</string>
21    <key>CFBundleShortVersionString</key>
22    <string>0.4.0</string>
23    <key>CFBundleSignature</key>
24    <string>????</string>
25    <key>CFBundleVersion</key>
26    <string>0.4.0</string>
27    <key>Java</key>
28    <dict>
29        <key>JVMVersion</key>
30        <string>1.5*</string>
31        <key>MainClass</key>
32        <string>org.photovault.swingui.Photovault</string>
33        <key>ClassPath</key>
34        <string>$JAVAROOT/photovault.jar</string>
35        <key>VMOptions</key>
36        <string>-Xmx512M</string>
37        <key>Properties</key>
38        <dict>
39            <key>apple.laf.useScreenMenuBar</key>
40            <string>true</string>
41        </dict>
42    </dict>
43    <key>LSHasLocalizedDisplayName</key>
44    <true/>
45    <key>NSHumanReadableCopyright</key>
46    <string>Copyright 2007 Harri Kaimio. Released under GPL.</string>
47    <key>NSJavaPath</key>
48    <array/>
49</dict>
50</plist>
Note: See TracBrowser for help on using the browser.