-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2223 from softins/macos-legacy
Correct minimum macOS version for legacy install
- Loading branch information
Showing
4 changed files
with
48 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?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>CFBundleName</key> | ||
<string>@EXECUTABLE@</string> | ||
<key>CFBundleDisplayName</key> | ||
<string>@EXECUTABLE@</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>@BUNDLEIDENTIFIER@</string> | ||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
<key>CFBundleVersion</key> | ||
<string>@FULL_VERSION@</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>@SHORT_VERSION@</string> | ||
<key>CFBundleSupportedPlatforms</key> | ||
<array> | ||
<string>MacOSX</string> | ||
</array> | ||
<key>LSApplicationCategoryType</key> | ||
<string>public.app-category.music</string> | ||
<key>LSMinimumSystemVersion</key> | ||
<string>10.10</string> | ||
<key>CFBundleExecutable</key> | ||
<string>@EXECUTABLE@</string> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>en</string> | ||
<key>CFBundleIconFile</key> | ||
<string>@ICON@</string> | ||
<key>CFBundleGetInfoString</key> | ||
<string>Jamulus - Created with QT</string> | ||
<key>NSPrincipalClass</key> | ||
<string>NSApplication</string> | ||
<key>NSMicrophoneUsageDescription</key> | ||
<string>Jamulus needs access to the microphone to record and stream your music to other musicians</string> | ||
<!-- Temporarily opt out of Dark Mode as Qt 5.9 does not support it well, see https://bugreports.qt.io/browse/QTBUG-68891 --> | ||
<key>NSRequiresAquaSystemAppearance</key> | ||
<string>true</string> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters