Temporarily remove "Test connectivity"
The action does an HTTP GET to a random well-known home page among the following: - Google - Facebook - Twitter - Instagram - Amazon This was acceptable for development and beta testing. Not so much for a release. Omit the option until more transparent.
This commit is contained in:
parent
2fe8bf92ac
commit
1522774c98
|
@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Dot as a legal character in host profile title. [#22](https://github.com/keeshux/passepartout-ios/issues/22)
|
- Dot as a legal character in host profile title. [#22](https://github.com/keeshux/passepartout-ios/issues/22)
|
||||||
- Host profiles can now be renamed. [#24](https://github.com/keeshux/passepartout-ios/issues/24)
|
- Host profiles can now be renamed. [#24](https://github.com/keeshux/passepartout-ios/issues/24)
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
- "Test connectivity" until it's more transparent.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Incorrect compression warnings when importing host configurations. [#20](https://github.com/keeshux/passepartout-ios/pull/20)
|
- Incorrect compression warnings when importing host configurations. [#20](https://github.com/keeshux/passepartout-ios/pull/20)
|
||||||
|
|
|
@ -916,7 +916,7 @@ extension ServiceViewController: UITableViewDataSource, UITableViewDelegate, Tog
|
||||||
}
|
}
|
||||||
model.set([.vpnSurvivesSleep], in: .vpnSurvivesSleep)
|
model.set([.vpnSurvivesSleep], in: .vpnSurvivesSleep)
|
||||||
model.set([.trustedPolicy], in: .trustedPolicy)
|
model.set([.trustedPolicy], in: .trustedPolicy)
|
||||||
model.set([.testConnectivity, .dataCount, .debugLog], in: .diagnostics)
|
model.set([.dataCount, .debugLog], in: .diagnostics)
|
||||||
model.set([.joinCommunity, .reportIssue], in: .feedback)
|
model.set([.joinCommunity, .reportIssue], in: .feedback)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue