diff options
author | 2018-09-05 20:25:54 +0200 | |
---|---|---|
committer | 2018-09-05 20:25:54 +0200 | |
commit | d729a7686e1187b2bbb7110a29ca7fe50cffd4e8 (patch) | |
tree | a227fb6e8218d9b83529ad967fa0e02141d20691 | |
parent | Remove item from provider managers on delete. (diff) | |
download | wireguard-apple-d729a7686e1187b2bbb7110a29ca7fe50cffd4e8.tar.xz wireguard-apple-d729a7686e1187b2bbb7110a29ca7fe50cffd4e8.zip |
Working zip import.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | WireGuard/Info.plist | 38 |
1 files changed, 33 insertions, 5 deletions
diff --git a/WireGuard/Info.plist b/WireGuard/Info.plist index 0603681..4c2bc46 100644 --- a/WireGuard/Info.plist +++ b/WireGuard/Info.plist @@ -2,16 +2,16 @@ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> - <key>CFBundleDisplayName</key> - <string>${PRODUCT_NAME}</string> <key>CFBundleDevelopmentRegion</key> <string>$(DEVELOPMENT_LANGUAGE)</string> + <key>CFBundleDisplayName</key> + <string>${PRODUCT_NAME}</string> <key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeExtensions</key> <array> - <string></string> + <string>conf</string> </array> <key>CFBundleTypeIconFiles</key> <array> @@ -30,6 +30,34 @@ <string>com.wireguard.config.quick</string> </array> </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>zip</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>zip</string> + <key>CFBundleTypeIconFiles</key> + <array/> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/zip</string> + <string>application/x-zip</string> + <string>application/x-zip-compressed</string> + </array> + <key>CFBundleTypeName</key> + <string>WireGuard Config Zip</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>ZIP </string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSItemContentTypes</key> + <array> + <string>com.pkware.zip-archive</string> + </array> + </dict> </array> <key>CFBundleExecutable</key> <string>$(EXECUTABLE_NAME)</string> @@ -49,10 +77,10 @@ <true/> <key>LSSupportsOpeningDocumentsInPlace</key> <false/> - <key>UIFileSharingEnabled</key> - <true/> <key>NSCameraUsageDescription</key> <string>Camera is used to scan QR codes</string> + <key>UIFileSharingEnabled</key> + <true/> <key>UILaunchStoryboardName</key> <string>LaunchScreen</string> <key>UIRequiredDeviceCapabilities</key> |