Upgrade TunnelKit to fix SoftEther
This commit is contained in:
parent
899b5301b9
commit
72fe776055
|
@ -5,7 +5,7 @@ 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).
|
||||
|
||||
## 1.5.0 Beta 1706 (2019-04-13)
|
||||
## Unreleased
|
||||
|
||||
### Added
|
||||
|
||||
|
@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- VPN status cell doesn't always enter active profile. [#63](https://github.com/passepartoutvpn/passepartout-ios/issues/63)
|
||||
- Masking preference not retained. [#64](https://github.com/passepartoutvpn/passepartout-ios/issues/64)
|
||||
- SoftEther timing out. [tunnelkit#67](https://github.com/keeshux/tunnelkit/issues/67)
|
||||
|
||||
## 1.4.0 (2019-04-11)
|
||||
|
||||
|
|
4
Podfile
4
Podfile
|
@ -5,8 +5,8 @@ use_frameworks!
|
|||
def shared_pods
|
||||
#pod 'TunnelKit', '~> 1.6.1'
|
||||
#pod 'TunnelKit/LZO', '~> 1.6.1'
|
||||
pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => '0a956f5'
|
||||
pod 'TunnelKit/LZO', :git => 'https://github.com/keeshux/tunnelkit', :commit => '0a956f5'
|
||||
pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => '322242d'
|
||||
pod 'TunnelKit/LZO', :git => 'https://github.com/keeshux/tunnelkit', :commit => '322242d'
|
||||
#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 `0a956f5`)
|
||||
- TunnelKit/LZO (from `https://github.com/keeshux/tunnelkit`, commit `0a956f5`)
|
||||
- TunnelKit (from `https://github.com/keeshux/tunnelkit`, commit `322242d`)
|
||||
- TunnelKit/LZO (from `https://github.com/keeshux/tunnelkit`, commit `322242d`)
|
||||
|
||||
SPEC REPOS:
|
||||
https://github.com/cocoapods/specs.git:
|
||||
|
@ -29,12 +29,12 @@ SPEC REPOS:
|
|||
|
||||
EXTERNAL SOURCES:
|
||||
TunnelKit:
|
||||
:commit: 0a956f5
|
||||
:commit: 322242d
|
||||
:git: https://github.com/keeshux/tunnelkit
|
||||
|
||||
CHECKOUT OPTIONS:
|
||||
TunnelKit:
|
||||
:commit: 0a956f5
|
||||
:commit: 322242d
|
||||
:git: https://github.com/keeshux/tunnelkit
|
||||
|
||||
SPEC CHECKSUMS:
|
||||
|
@ -44,6 +44,6 @@ SPEC CHECKSUMS:
|
|||
SwiftyBeaver: 4cc0080d2e23f980652e28978db11a5c9da39165
|
||||
TunnelKit: 6be99150922d3f14187dc29732032712dd4400e3
|
||||
|
||||
PODFILE CHECKSUM: 06dab584a58cb53de0f19158f874f32fa5ae477b
|
||||
PODFILE CHECKSUM: d6fd6d0162ed5ff4bc59a1dab2bb72ef998782f5
|
||||
|
||||
COCOAPODS: 1.6.1
|
||||
|
|
Loading…
Reference in New Issue