mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
* feat: enhance OpenVPN support and configuration handling for iOS and macOS platforms
* Deps updated
* Deps updated
* feat: add OpenVPN configuration validation and regeneration logic to VpnConfigurationsController
* revert: restore pre-fix OpenVPN NE flow
* chore: add OpenVPN NE payload diagnostics
* Revert "revert: restore pre-fix OpenVPN NE flow"
This reverts commit ae99cc77e9.
* chore: remove openvpn config processing
---------
Co-authored-by: vkamn <vk@amnezia.org>
47 lines
1.4 KiB
XML
47 lines
1.4 KiB
XML
<?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>CFBundleDevelopmentRegion</key>
|
|
<string>en</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>AmneziaVPNNetworkExtension</string>
|
|
|
|
<key>CFBundleIdentifier</key>
|
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>AmneziaVPNNetworkExtension</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>$(MARKETING_VERSION)</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>$(CURRENT_PROJECT_VERSION)</string>
|
|
|
|
<key>ITSAppUsesNonExemptEncryption</key>
|
|
<false/>
|
|
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>${CMAKE_OSX_DEPLOYMENT_TARGET}</string>
|
|
|
|
<key>CFBundleDisplayName</key>
|
|
<string>AmneziaVPNNetworkExtension</string>
|
|
|
|
<key>NSExtension</key>
|
|
<dict>
|
|
<key>NSExtensionPointIdentifier</key>
|
|
<string>com.apple.networkextension.packet-tunnel</string>
|
|
<key>NSExtensionPrincipalClass</key>
|
|
<string>$(PRODUCT_MODULE_NAME).PacketTunnelProvider</string>
|
|
</dict>
|
|
|
|
<key>com.wireguard.ios.app_group_id</key>
|
|
<string>group.org.amnezia.AmneziaVPN</string>
|
|
|
|
<key>com.wireguard.macos.app_group_id</key>
|
|
<string>$(DEVELOPMENT_TEAM).group.org.amnezia.AmneziaVPN</string>
|
|
</dict>
|
|
</plist>
|