root / conf / Info.plist.template

Revision 568:41569243c6de, 1.8 kB (checked in by Harri Kaimio <harri@…>, 5 years ago)

Fixed #162 - improved error checking and reporting in photo export. Also
increased max heap to 384 MB to get rid of the actual memory shortage
(exporting large raw images DO take lots of memory currently)

Fixed #163 - changed format of the max heap configuration parameter.

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>@build.version@ @build.version_tag@ Copyright (c) 2007 Harri Kaimio</string>
11    <key>CFBundleIconFile</key>
12    <string>GenericJavaApp.icns</string>
13    <key>CFBundleIdentifier</key>
14    <string>org.photovault.Photovault</string>
15    <key>CFBundleInfoDictionaryVersion</key>
16    <string>@build.version@</string>
17    <key>CFBundleName</key>
18    <string>Photovault</string>
19    <key>CFBundlePackageType</key>
20    <string>APPL</string>
21    <key>CFBundleShortVersionString</key>
22    <string>@build.version@@build.version_shorttag@</string>
23    <key>CFBundleSignature</key>
24    <string>????</string>
25    <key>CFBundleVersion</key>
26    <string>@build.version@.@svn.revision@</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>-Xmx@heap.max_size@M @run.jvmargs@</string>
37        <key>Properties</key>
38        <dict>
39            <key>apple.laf.useScreenMenuBar</key>
40            <string>true</string>
41            <key>dcraw.cmd</key>
42            <string>$APP_PACKAGE/Contents/Resources/Java/dcrawU</string>
43        </dict>
44    </dict>
45    <key>LSHasLocalizedDisplayName</key>
46    <true/>
47    <key>NSHumanReadableCopyright</key>
48    <string>Copyright 2007 Harri Kaimio. Released under GPL.</string>
49    <key>NSJavaPath</key>
50    <array/>
51</dict>
52</plist>
Note: See TracBrowser for help on using the browser.