Merge branch 'ovpn-custom-file-type'

This commit is contained in:
Davide De Rosa 2018-10-20 19:22:27 +02:00
commit a20512e295
2 changed files with 33 additions and 6 deletions

View File

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Fixed
- .ovpn files could not be imported without OpenVPN Connect installed. [#6](https://github.com/keeshux/passepartout-ios/issues/6)
## 1.0 beta 1040 (2018-10-19)
### Added

View File

@ -12,14 +12,10 @@
<key>CFBundleTypeIconFiles</key>
<array/>
<key>CFBundleTypeName</key>
<string>OpenVPN</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSHandlerRank</key>
<string>Owner</string>
<string>ovpn</string>
<key>LSItemContentTypes</key>
<array>
<string>net.openvpn.formats.ovpn</string>
<string>app.passepartoutvpn.formats.ovpn</string>
</array>
</dict>
</array>
@ -68,5 +64,30 @@
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>UTImportedTypeDeclarations</key>
<array>
<dict>
<key>UTTypeConformsTo</key>
<array>
<string>public.text</string>
<string>public.plain-text</string>
</array>
<key>UTTypeDescription</key>
<string>OpenVPN configuration file</string>
<key>UTTypeIconFiles</key>
<array/>
<key>UTTypeIdentifier</key>
<string>app.passepartoutvpn.formats.ovpn</string>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<array>
<string>ovpn</string>
<string>OVPN</string>
</array>
</dict>
</dict>
<dict/>
</array>
</dict>
</plist>