Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: osx/josm.icns
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
|
|
|
|
| | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| | 2 | <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> |
| | 3 | <plist version="0.9"> |
| | 4 | <dict> |
| | 5 | <key>CFBundleName</key> |
| | 6 | <string>JOSM</string> |
| | 7 | <key>CFBundleVersion</key> |
| | 8 | <string>897</string> |
| | 9 | <key>CFBundleAllowMixedLocalizations</key> |
| | 10 | <string>false</string> |
| | 11 | <key>CFBundleExecutable</key> |
| | 12 | <string>JavaApplicationStub</string> |
| | 13 | <key>CFBundleDevelopmentRegion</key> |
| | 14 | <string>English</string> |
| | 15 | <key>CFBundlePackageType</key> |
| | 16 | <string>APPL</string> |
| | 17 | <key>CFBundleShortVersionString</key> |
| | 18 | <string>897</string> |
| | 19 | <key>CFBundleSignature</key> |
| | 20 | <string>????</string> |
| | 21 | <key>CFBundleGetInfoString</key> |
| | 22 | <string>JOSM 897</string> |
| | 23 | <key>CFBundleInfoDictionaryVersion</key> |
| | 24 | <string>6.0</string> |
| | 25 | <key>CFBundleIconFile</key> |
| | 26 | <string>josm.icns</string> |
| | 27 | <key>Java</key> |
| | 28 | <dict> |
| | 29 | <key>VMOptions</key> |
| | 30 | <string>-Dsun.java2d.opengl=True</string> |
| | 31 | <key>MainClass</key> |
| | 32 | <string>org.openstreetmap.josm.gui.MainApplication</string> |
| | 33 | <key>JVMVersion</key> |
| | 34 | <string>1.5+</string> |
| | 35 | <key>ClassPath</key> |
| | 36 | <string>$JAVAROOT/josm.jar</string> |
| | 37 | </dict> |
| | 38 | </dict> |
| | 39 | </plist> |
Property changes on: osx/mkdmg.sh
___________________________________________________________________
Name: svn:executable
+ *
|
|
|
|
| | 1 | #!/bin/sh |
| | 2 | |
| | 3 | #Creates a Mac OS X Bundle for JOSM |
| | 4 | |
| | 5 | #Create he requiered folders |
| | 6 | mkdir ./dist/JOSM.app |
| | 7 | mkdir ./dist/JOSM.app/Contents |
| | 8 | mkdir ./dist/JOSM.app/Contents/MacOS |
| | 9 | mkdir ./dist/JOSM.app/Contents/Resources |
| | 10 | mkdir ./dist/JOSM.app/Contents/Resources/Java |
| | 11 | |
| | 12 | #Copy the exectubale from the system framework into the bundle |
| | 13 | cp /System/Library/Frameworks/JavaVM.framework/Versions/Current/Resources/MacOS/JavaApplicationStub ./dist/JOSM.app/Contents/MacOS/JavaApplicationStub |
| | 14 | |
| | 15 | #Copy OSX specific files into the bundle |
| | 16 | cp ./osx/PkgInfo ./dist/JOSM.app/Contents/PkgInfo |
| | 17 | cp ./osx/Info.plist ./dist/JOSM.app/Contents/Info.plist |
| | 18 | cp ./osx/josm.icns ./dist/JOSM.app/Contents/Resources/josm.icns |
| | 19 | |
| | 20 | #Copy the jar into the bundle |
| | 21 | cp ./dist/josm-custom.jar ./dist/JOSM.app/Contents/Resources/Java/josm.jar |
| | 22 | |
| | 23 | #And finally tell Mac OS that this is a Bundle |
| | 24 | SetFile -a B ./dist/JOSM.app |
| | 25 | No newline at end of file |
Property changes on: osx/mkbundle.sh
___________________________________________________________________
Name: svn:executable
+ *
|
|
|
|
| | 1 | APPL???? |
| | 2 | No newline at end of file |