mirror of
https://github.com/nextcloud/desktop.git
synced 2026-01-14 02:01:28 +00:00
- Replaced "group." with DEVELOPMENT_TEAM. - Removed every occurrence of SOCKETAPI_TEAM_IDENTIFIER_PREFIX. - Removed NCFPKAppGroupIdentifier from MacOSXBundleInfo.plist.in. Signed-off-by: Iva Horn <iva.horn@nextcloud.com>
51 lines
1.9 KiB
Plaintext
51 lines
1.9 KiB
Plaintext
<?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>CFBundleIcons</key>
|
|
<dict>
|
|
<key>CFBundlePrimaryIcon</key>
|
|
<dict>
|
|
<key>CFBundleSymbolName</key>
|
|
<string>cloud</string>
|
|
</dict>
|
|
</dict>
|
|
<key>CFBundleName</key>
|
|
<string>$(PRODUCT_NAME)</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>$(OC_APPLICATION_NAME) File Provider Extension</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>$(OC_APPLICATION_REV_DOMAIN).$(PRODUCT_NAME)</string>
|
|
<key>NSExtension</key>
|
|
<dict>
|
|
<key>NSExtensionFileProviderActions</key>
|
|
<array>
|
|
<dict>
|
|
<key>NSExtensionFileProviderActionActivationRule</key>
|
|
<string>SUBQUERY ( fileproviderItems, $fileproviderItem, $fileproviderItem.userInfo.displayKeepDownloaded == true ).@count > 0</string>
|
|
<key>NSExtensionFileProviderActionIdentifier</key>
|
|
<string>com.nextcloud.desktopclient.FileProviderExt.KeepDownloadedAction</string>
|
|
<key>NSExtensionFileProviderActionName</key>
|
|
<string>Always keep downloaded</string>
|
|
</dict>
|
|
<dict>
|
|
<key>NSExtensionFileProviderActionActivationRule</key>
|
|
<string>SUBQUERY ( fileproviderItems, $fileproviderItem, $fileproviderItem.userInfo.displayAllowAutoEvicting == true ).@count > 0</string>
|
|
<key>NSExtensionFileProviderActionIdentifier</key>
|
|
<string>com.nextcloud.desktopclient.FileProviderExt.AutoEvictAction</string>
|
|
<key>NSExtensionFileProviderActionName</key>
|
|
<string>Allow automatic freeing up space</string>
|
|
</dict>
|
|
</array>
|
|
<key>NSExtensionFileProviderDocumentGroup</key>
|
|
<string>$(DEVELOPMENT_TEAM).$(OC_APPLICATION_REV_DOMAIN)</string>
|
|
<key>NSExtensionFileProviderSupportsEnumeration</key>
|
|
<true/>
|
|
<key>NSExtensionPointIdentifier</key>
|
|
<string>com.apple.fileprovider-nonui</string>
|
|
<key>NSExtensionPrincipalClass</key>
|
|
<string>$(PRODUCT_MODULE_NAME).FileProviderExtension</string>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|