* fix layout on ipad
* Create multi profiles
* multi-profile server config, connection cache, and auth fixes
Split ProfilesView into ProfilesListView, AddProfileSheet, ProfileBadge, AddProfileViewModel
- Add server URL + setup key fields to Add Profile screen
- Store per-profile connection data (ip/fqdn/managementURL) as typed model in ProfileConnectionCache
- Show cached connection info immediately on profile switch; empty if no prior data
- Fix profile deletion persistence via tombstone in profiles.json
- Fix logout to remove both netbird.cfg and state.json (cfg holds auth tokens)
- Preserve managementURL in UI after logout via cache fallback
- Guard polling from overwriting new profile's data during disconnect/reconnect cycle
* fix(multi-profile): reinitialize VPN adapter on profile switch and show current server URL
* Update project.pbxproj
* fix(multi-profile): prevent default server overwrite on logout/re-login
* Update PacketTunnelProvider.swift
* fix(multi-profile): address code review findings
- Normalize only scheme and host to lowercase when saving management
server URL; previously the full URL was lowercased which could corrupt
case-sensitive paths on self-hosted servers
- Move switchConnectionInfo(to:) inside the do-block so the connection
UI is only updated after a successful profile switch
- Add ProfileConnectionCache.remove(for:) and clearConnectionData(for:)
to prevent stale ip/fqdn/managementURL from persisting after a profile
is deleted or logged out; call them from removeProfile and logoutProfile
- Use ASWebAuthenticationSession.Callback.customScheme on iOS 17.4+,
falling back to the deprecated callbackURLScheme initializer on older
versions; add a comment explaining why "http" is used and that a
proper fix requires custom-scheme support in the SDK
- Guard presentationAnchor against a missing key window with
assertionFailure in debug builds instead of silently returning an
empty UIWindow