Skip to content

Commit

Permalink
add Info plist to mac resources
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr committed Feb 21, 2020
1 parent cc94cca commit 81c51c3
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,7 @@ jlink {
installerOptions = [
'--vendor', 'JabRef',
'--app-version', "${project.version}",
'--resource-dir', "${projectDir}/buildres/mac",
'--file-associations', "${projectDir}/buildres/mac/bibtexAssociations.properties"
]
}
Expand Down
51 changes: 51 additions & 0 deletions buildres/mac/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd">

<plist version="1.0">

<dict>

<key>CFBundleDevelopmentRegion</key>

<string>English</string>

<key>CFBundleExecutable</key>

<string>libjli.dylib</string>

<key>CFBundleIdentifier</key>

<string>CF_BUNDLE_IDENTIFIER</string>

<key>CFBundleInfoDictionaryVersion</key>

<string>7.0</string>

<key>CFBundleName</key>

<string>CF_BUNDLE_NAME</string>

<key>CFBundlePackageType</key>

<string>BNDL</string>

<key>CFBundleShortVersionString</key>

<string>CF_BUNDLE_SHORT_VERSION_STRING</string>

<key>CFBundleSignature</key>

<string>????</string>

<key>CFBundleVersion</key>

<string>CF_BUNDLE_VERSION</string>

<key>NSSupportsAutomaticGraphicsSwitching</key>
<true/>


</dict>

</plist>

0 comments on commit 81c51c3

Please sign in to comment.