Commit Graph

3194 Commits

Author SHA1 Message Date
Davide
d58a4e8a35
Bump version 2025-02-08 12:29:22 +01:00
Davide
1c8f758ff3
Fix German translations 2025-02-08 12:28:17 +01:00
Davide
b018e670ac
Fix behavior of "Including" on-demand policy (#1151)
Activate the VPN on the specified networks, and do nothing on the other
networks. This will NOT disconnect the VPN if it's been activated on a
non-included network.

NetworkExtension seems incapable of doing that, the bug came from a
wrong code expectation.

Originally reported here:

-
https://www.reddit.com/r/passepartout/comments/1idruci/ondemand_not_working_as_expected/
-
https://www.reddit.com/r/passepartout/comments/1bjgwy9/issues_with_ondemand_include_vs_exclude/
2025-02-08 12:18:22 +01:00
Davide
18c2b85096
Wrap rather than truncate long profile names (#1150)
Better trade-off than the fixed list/grid height now that the animations
are off.


https://www.reddit.com/r/passepartout/comments/1ik8tm2/comment/mbn1o1h/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button
2025-02-08 12:02:26 +01:00
Davide
ce77b4fc6a
Improve the UX of profile editing and management (#1149)
Restart from the v2 flow most users are familiar with.

- Restore the global v2 accent
- Restore the per-profile toggles
- Single tap to edit a profile
- Reuse the same chevron for profile and module navigation
- Improve the iCloud/TV section and rename it to "Synchronization"
- Drop the misleading moon icon from the "Keep alive on sleep" toggle
- Drop the marginal "Enable"/"Disable" action from context menus
- Drop the grid cell highlighting, now marginal with toggles
- Drop the complexity of `nextProfileId`

Ultimately, rework `TunnelToggleButton` into `TunnelToggle` for better
reuse across all platforms.

Things left to improve:

- The duplication of the active profile on top has not changed, but the
toggles may make it more visually apparent
- The "Inactive" subtitle in disabled profiles is there for balance as
it keeps rows and cells of the same height, but it serves no real
purpose
- Access to secondary actions (e.g. provider server, credentials)
- Use of TipKit for less intuitive flows (e.g. context menus, building a
profile from scratch)

Fixes #1111
2025-02-08 11:57:14 +01:00
Davide
b379d5c61c
Import profiles with on-demand enabled for stability (#1148)
Retain v2 behavior.
2025-02-08 10:52:29 +01:00
Davide
d51c60c5c8
Fix "No profiles" message flashing on launch (#1147)
Due to a regression in #1135
2025-02-07 17:58:23 +01:00
Davide
eb32aed2a4
Follow tunnel status from current profile (#1146)
In preparation for #218, when there will be "multiple current profiles",
i.e. the enabled profiles in the OS settings.
2025-02-07 16:42:00 +01:00
Davide
bb21f5be05
Fix unused variable warning 2025-02-07 14:44:44 +01:00
Davide
c584f68492
Bump version 2025-02-07 09:39:57 +01:00
Davide
470585b4c6
OpenVPN: Fix issue with empty DNS servers 2025-02-07 01:19:03 +01:00
Davide
98160c24c2
OpenVPN: Fix regression in default routes (#1145)
Similarly to #1136, inject IPModule into OpenVPN .routingPolicies
because NetworkSettingsBuilder relies on it.
2025-02-07 01:15:21 +01:00
Davide
e8ffca9d50
Fix migration of DNS settings (#1144)
In some cases, the migration process may insert a DNS module without
servers. Do not add it at all.
2025-02-07 01:15:03 +01:00
Davide
f34dcd99f8
Bump version 2025-02-06 15:20:28 +01:00
Davide
6b2ba28728
Restore "Keep alive on sleep" feature (#1143)
Closes #1112
2025-02-06 14:57:53 +01:00
Davide
1f5f56c35e
Update README 2025-02-05 20:27:41 +01:00
Davide
9e98f4c7ec
Drop unused Kvitto dependency (#1142) 2025-02-05 20:26:19 +01:00
Davide
33866031dc
Bump version 2025-02-05 17:07:08 +01:00
Davide
2a3456917d
Update bundle
Remove unused plugins.
2025-02-05 17:06:54 +01:00
Davide
3a4169f8fa
Retain release notes if no_log:true 2025-02-05 17:06:34 +01:00
Davide
9d9c738b23
Improve the text density of purchase alerts 2025-02-05 16:49:26 +01:00
Davide
dfdf338c3a
Fix typo in 'Verifying...' 2025-02-05 16:39:28 +01:00
Davide
6778f85976
Bump version 2025-02-05 16:13:57 +01:00
Davide
bc5d08aed7
tvOS: Inform that all apps must run version 3.0.0+ 2025-02-05 16:07:13 +01:00
Davide
91823f1572
Review upgrade icons (#1141)
- Add to "General" module on macOS
- Restore in profiles list/grid, removed in #1139
2025-02-05 15:38:25 +01:00
Davide
6ba8b32bef
Inform if beta build in Diagnostics 2025-02-05 15:16:52 +01:00
Davide
965c39ab51
iOS: Suggest that profile modules are editable (#1140)
Fixes #1080
2025-02-05 13:39:28 +01:00
Davide
d6c2a7f58c
Allow graceful period to work around slow receipt validation (#1139)
#1070 is very tricky. When the device boots, StoreKit operations seem to
be severely affected by on-demand VPN profiles. Slowdowns are huge and
unpredictable, as per my [report on the Apple
forums](https://developer.apple.com/forums/thread/773723). I found no
easy way to work around the chicken-and-egg situation where the VPN
requires StoreKit validation to start, but StoreKit requires network
access.

On the other hand, without StoreKit validations, the on-demand tunnel
starts on boot just fine, and so does the app. No eternal activity
indicators. StoreKit is clearly the culprit here.

Therefore, below is the strategy that this PR implements for a decent
trade-off:

- Configure a graceful period for the VPN to start without limitations.
This is initially set to 2 minutes in production, and 10 minutes in
TestFlight. Postpone StoreKit validation until then.
- After the graceful period, StoreKit validation is more likely to
complete fast
- At this point, paying users have their receipts validated and the
connection will silently keep going
- Non-paying users, instead, will see their connection hit the "Purchase
required" message

On the UI side, adjust the app accordingly:

- Drop the "Purchase required" icon from the list/grid of profiles
- The paywall informs that the connection will start, but it will
disconnect after the graceful period if the receipt is not valid
- Add a note that receipt validation may take a while if the device has
just started

This PR also introduces changes in TestFlight behavior:

- Profiles can be saved without limitations
- Profiles using free features work as usual
- Profiles using paid features work for 10 minutes
- Eligibility based on local receipt is ignored (deprecated in iOS 18)

Beta users may therefore test all paid features on iOS/macOS/tvOS for 10
minutes. Until now, paid features were only available to paying iOS
users and unavailable on macOS/tvOS. The tvOS beta was, in fact,
completely useless.

The downside is that paying iOS users will see beta builds restricted
like anybody else. I'll see if I can find a better solution later.
2025-02-05 13:00:42 +01:00
Davide
7ea6b6d37d
Update credits in README too 2025-02-04 13:31:06 +01:00
Davide
f58a469e0b
Update credits 2025-02-03 10:49:34 +01:00
Davide
a8e8e6edfb
Bump version 2025-02-03 10:38:00 +01:00
Davide
178dd08d5f
Bump version 2025-02-03 10:32:04 +01:00
Davide
3503f86eee
Fix more German translations 2025-02-03 10:29:27 +01:00
Davide
59ac302eb3
Mention in paywall that all purchases support "Family Sharing" (#1138)
Fixes #1130
2025-02-03 10:27:18 +01:00
Davide
e799ae9ae3
Update library 2025-02-03 10:01:14 +01:00
Davide
4b4e26b69e
Fix logic of migrated "Routing" modules (#1136)
OpenVPN is fine, but WireGuard requires included routes to also be
injected into AllowedIPs.

Fixes #1128
2025-02-03 10:00:22 +01:00
Davide
2dae4f0d2c
Add script to regen development certificates
For new devices.
2025-02-03 09:09:59 +01:00
Davide
24d7e51344
Update library and bump 2025-02-03 08:56:33 +01:00
Davide
185fec8749
Reword for consistency 2025-02-03 08:43:48 +01:00
Davide
504f5206f9
Add verification alert to profile editor
Finish up #1135
2025-02-03 08:29:05 +01:00
Davide
0132aa79cc
Delay profile verifications (#1135)
Fixes #1070
2025-02-03 01:18:39 +01:00
Davide
20e3894b5b
Fix German translation of 'Routing' 2025-02-01 00:46:27 +01:00
Davide
a36fdcf13e
Update submodule 2025-01-29 19:16:38 +01:00
Davide
652f417292
Handle unknown enum cases in OpenVPN/OpenSSL
- OpenVPN.CompressionAlgorithm
- OpenVPN.CompressionFraming
- OpenVPN.TLSWrap.Strategy
- OpenVPN.XORMethod
2025-01-29 17:30:09 +01:00
Davide
5bf53ff2b1
Bump version 2025-01-29 16:56:04 +01:00
Davide
c1d7fa1b3c
Update UITests after #1107 2025-01-29 16:52:55 +01:00
Dmytro Chyrkin
111c294d88
Fix Ukranian translations (#1122)
Co-authored-by: Davide <keeshux@gmail.com>
2025-01-29 15:55:42 +01:00
Davide
eb7d6a74e1
tvOS: Override focus behavior to enforce button colors (#1123)
The default gray color on focus defeats the purpose of having green/red
for Connect/Disconnect.
2025-01-29 15:51:00 +01:00
Davide
6f516d030e
Hijack environment to run tests in PRs (#1124)
Avoid the complications of accessing the PassepartoutKit private
repository by running tests against the public binary distribution.

Also a way to make sure that the framework is up to date.
2025-01-29 15:45:19 +01:00
Davide
04b574c3f1
Do not wait products until timeout
Fixes #1121
2025-01-29 12:56:03 +01:00