Update TunnelKit
- Auth issues - redirect-gateway --block-local (partial)
This commit is contained in:
parent
74d87754ea
commit
cbcf78ef33
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
### Added
|
||||
|
||||
- Override network settings. [#77](https://github.com/passepartoutvpn/passepartout-ios/pull/77)
|
||||
- Support for `--redirect-gateway block-local` (partial). [tunnelkit#81](https://github.com/keeshux/tunnelkit/issues/81)
|
||||
|
||||
### Changed
|
||||
|
||||
|
@ -18,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
### Fixed
|
||||
|
||||
- NordVPN double servers not connecting out of the box. [#78](https://github.com/passepartoutvpn/passepartout-ios/issues/78)
|
||||
- Authentication with OpenVPN AS. [tunnelkit#95](https://github.com/keeshux/tunnelkit/issues/95)
|
||||
|
||||
## 1.6.0 (2019-05-01)
|
||||
|
||||
|
|
4
Podfile
4
Podfile
|
@ -5,8 +5,8 @@ use_frameworks!
|
|||
def shared_pods
|
||||
#pod 'TunnelKit', '~> 1.7.0'
|
||||
#pod 'TunnelKit/LZO', '~> 1.7.0'
|
||||
pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => '4da64c5'
|
||||
pod 'TunnelKit/LZO', :git => 'https://github.com/keeshux/tunnelkit', :commit => '4da64c5'
|
||||
pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => '273007c'
|
||||
pod 'TunnelKit/LZO', :git => 'https://github.com/keeshux/tunnelkit', :commit => '273007c'
|
||||
#pod 'TunnelKit', :path => '../../personal/tunnelkit'
|
||||
#pod 'TunnelKit/LZO', :path => '../../personal/tunnelkit'
|
||||
pod 'SSZipArchive'
|
||||
|
|
10
Podfile.lock
10
Podfile.lock
|
@ -17,8 +17,8 @@ PODS:
|
|||
DEPENDENCIES:
|
||||
- MBProgressHUD
|
||||
- SSZipArchive
|
||||
- TunnelKit (from `https://github.com/keeshux/tunnelkit`, commit `4da64c5`)
|
||||
- TunnelKit/LZO (from `https://github.com/keeshux/tunnelkit`, commit `4da64c5`)
|
||||
- TunnelKit (from `https://github.com/keeshux/tunnelkit`, commit `273007c`)
|
||||
- TunnelKit/LZO (from `https://github.com/keeshux/tunnelkit`, commit `273007c`)
|
||||
|
||||
SPEC REPOS:
|
||||
https://github.com/cocoapods/specs.git:
|
||||
|
@ -29,12 +29,12 @@ SPEC REPOS:
|
|||
|
||||
EXTERNAL SOURCES:
|
||||
TunnelKit:
|
||||
:commit: 4da64c5
|
||||
:commit: 273007c
|
||||
:git: https://github.com/keeshux/tunnelkit
|
||||
|
||||
CHECKOUT OPTIONS:
|
||||
TunnelKit:
|
||||
:commit: 4da64c5
|
||||
:commit: 273007c
|
||||
:git: https://github.com/keeshux/tunnelkit
|
||||
|
||||
SPEC CHECKSUMS:
|
||||
|
@ -44,6 +44,6 @@ SPEC CHECKSUMS:
|
|||
SwiftyBeaver: 4cc0080d2e23f980652e28978db11a5c9da39165
|
||||
TunnelKit: dd00b33e4c6d84f2d32390448a33ef5e37b1ac52
|
||||
|
||||
PODFILE CHECKSUM: 32c9f11727e184e6ffbbdf5bd88ea65f79f1f155
|
||||
PODFILE CHECKSUM: 4ecd254eb1d38533edf2b71c48ca697b66118a02
|
||||
|
||||
COCOAPODS: 1.6.1
|
||||
|
|
Loading…
Reference in New Issue