Revert interactive login (#272)
Implementation is buggy/incomplete. See #259
This commit is contained in:
parent
2d00a05c4c
commit
4eb2ac5e0e
|
@ -11,7 +11,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- Option to lock app when entering background (iOS). [#270](https://github.com/passepartoutvpn/passepartout-apple/pull/270)
|
||||
- 3D Touch items (iOS). [#267](https://github.com/passepartoutvpn/passepartout-apple/pull/267)
|
||||
- Prompt for password interactively. [#259](https://github.com/passepartoutvpn/passepartout-apple/pull/259)
|
||||
- Ukranian translations (Dmitry Chirkin). [#243](https://github.com/passepartoutvpn/passepartout-apple/pull/243)
|
||||
- Restore DNS "Domain" setting. [#260](https://github.com/passepartoutvpn/passepartout-apple/pull/260)
|
||||
- OpenVPN: Full implementation of Tunnelblick XOR patch (tmthecoder). [#245](https://github.com/passepartoutvpn/passepartout-apple/pull/245), [tunnelkit#255][https://github.com/passepartoutvpn/tunnelkit/pull/255]
|
||||
|
|
|
@ -58,14 +58,15 @@ struct AccountView: View {
|
|||
|
||||
var body: some View {
|
||||
List {
|
||||
Section {
|
||||
// FIXME: l10n
|
||||
themeTextPicker(L10n.Endpoint.Advanced.Openvpn.Items.Digest.caption, selection: $liveAccount.authenticationMethod ?? .persistent, values: [
|
||||
.persistent,
|
||||
.interactive
|
||||
// .totp // TODO: interactive, support OTP-based authentication
|
||||
], description: \.localizedDescription)
|
||||
}
|
||||
// TODO: interactive, re-enable after fixing
|
||||
// Section {
|
||||
// // TODO: interactive, l10n
|
||||
// themeTextPicker(L10n.Endpoint.Advanced.Openvpn.Items.Digest.caption, selection: $liveAccount.authenticationMethod ?? .persistent, values: [
|
||||
// .persistent,
|
||||
// .interactive
|
||||
//// .totp // TODO: interactive, support OTP-based authentication
|
||||
// ], description: \.localizedDescription)
|
||||
// }
|
||||
Section {
|
||||
TextField(usernamePlaceholder ?? L10n.Account.Items.Username.placeholder, text: $liveAccount.username)
|
||||
.textContentType(.username)
|
||||
|
|
Loading…
Reference in New Issue