From 1522774c98aed489c77e02ae543693fcb67ebb72 Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Sat, 3 Nov 2018 22:26:32 +0100 Subject: [PATCH] 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. --- CHANGELOG.md | 4 ++++ Passepartout-iOS/Scenes/ServiceViewController.swift | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd682ea7..9faee807 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Passepartout-iOS/Scenes/ServiceViewController.swift b/Passepartout-iOS/Scenes/ServiceViewController.swift index 79fc17ac..2efdbc19 100644 --- a/Passepartout-iOS/Scenes/ServiceViewController.swift +++ b/Passepartout-iOS/Scenes/ServiceViewController.swift @@ -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) }