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:
Davide De Rosa 2018-11-03 22:26:32 +01:00
parent 2fe8bf92ac
commit 1522774c98
2 changed files with 5 additions and 1 deletions

View File

@ -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)
- Host profiles can now be renamed. [#24](https://github.com/keeshux/passepartout-ios/issues/24)
### Removed
- "Test connectivity" until it's more transparent.
### Fixed
- Incorrect compression warnings when importing host configurations. [#20](https://github.com/keeshux/passepartout-ios/pull/20)

View File

@ -916,7 +916,7 @@ extension ServiceViewController: UITableViewDataSource, UITableViewDelegate, Tog
}
model.set([.vpnSurvivesSleep], in: .vpnSurvivesSleep)
model.set([.trustedPolicy], in: .trustedPolicy)
model.set([.testConnectivity, .dataCount, .debugLog], in: .diagnostics)
model.set([.dataCount, .debugLog], in: .diagnostics)
model.set([.joinCommunity, .reportIssue], in: .feedback)
}