Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable daita in release and add a changelog entry ios 777 #6770

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ios/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ Line wrap the file at 100 chars. Th
* **Security**: in case of vulnerabilities.

## [Unreleased]
### Added
- Add DAITA (Defence against AI-guided Traffic Analysis) setting

## [2024.5 - 2024-08-19]
### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -424,11 +424,7 @@ final class VPNSettingsDataSource: UITableViewDiffableDataSource<
snapshot.appendItems([.dnsSettings], toSection: .dnsSettings)
snapshot.appendItems([.ipOverrides], toSection: .ipOverrides)

#if DEBUG
snapshot.appendItems([.daitaSwitch, .multihopSwitch], toSection: .privacyAndSecurity)
#else
snapshot.appendItems([.multihopSwitch], toSection: .privacyAndSecurity)
#endif

applySnapshot(snapshot, animated: animated, completion: completion)
}
Expand Down
Loading