| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2025-03-24 | Update ListItem sub component types | Oliver | 3 | -18/+10 | |
| 2025-03-24 | Update translations | Jonatan Rhodin | 1 | -0/+3 | |
| 2025-03-24 | Add ListItem component | Oliver | 12 | -0/+236 | |
| 2025-03-24 | Add Dot component | Oliver | 2 | -0/+33 | |
| 2025-03-21 | Fix duplicate Split Tunneling string | David Göransson | 1 | -3/+0 | |
| 2025-03-21 | Remove see full changelog button | Kalle Lindström | 1 | -3/+0 | |
| 2025-03-20 | Add node modules to asarUnpack on Windows | David Lönnhager | 1 | -1/+1 | |
| 2025-03-19 | Move shortcut code to own module in windows-utils | David Lönnhager | 2 | -182/+185 | |
| 2025-03-19 | Rename win-shortcuts to windows-utils | David Lönnhager | 17 | -28/+28 | |
| 2025-03-19 | Update translations | Oliver | 1 | -0/+82 | |
| 2025-03-19 | Use NotificationSubtitle component in NotificationArea | Oliver | 2 | -52/+5 | |
| 2025-03-19 | Add NotificationSubtitle | Oliver | 1 | -0/+71 | |
| 2025-03-19 | Add open vpn notifications to NotificationArea | Oliver | 1 | -9/+23 | |
| 2025-03-19 | Add no vpn server available notification | Oliver | 2 | -0/+123 | |
| 2025-03-19 | Add open vpn support ending notification | Oliver | 2 | -0/+66 | |
| 2025-03-19 | Add remove open vpn blog to urls | Oliver | 1 | -0/+1 | |
| 2025-03-19 | Add navigate-external notification type | Oliver | 2 | -3/+18 | |
| 2025-03-19 | Support notification subtitles composed of multiple elements | Oliver | 3 | -23/+43 | |
| 2025-03-19 | Add open vpn deprecation warning to tunnel protocol selector | Oliver | 1 | -3/+33 | |
| 2025-03-19 | Split publishing of metadata from 4-make-release | Joakim Hulthe | 3 | -78/+144 | |
| 2025-03-18 | Refactor app specific logic in Link into ExternalLink and InternalLink | Oliver | 6 | -35/+77 | |
| 2025-03-18 | Use as prop for polymorphism in Text | Oliver | 15 | -110/+75 | |
| 2025-03-18 | Add polymorphic prop type | Oliver | 2 | -0/+5 | |
| 2025-03-18 | Fix typo in obfuscation info text | Jonatan Rhodin | 1 | -3/+0 | |
| 2025-03-17 | Add meta.toml template for releases | David Lönnhager | 1 | -0/+3 | |
| 2025-03-13 | Ensure locales are loaded from the correct path | Tobias Järvelöv | 1 | -1/+2 | |
| Due to the vite migration the path to load resources from is different between the production and development environments. | |||||
| 2025-03-13 | Fix logic keeping users on expired route even after time has been added | Tobias Järvelöv | 1 | -4/+1 | |
| When a user creates an account in the app and then adds time to the account outside of the app the user should then be shown the "/main/time-added" route. Whenever an account is created in the app, it's expiredStatus is set immediately to "expired", which makes the app show the "/main/expired" route. When time is added to the account its expiredStatus changes to "time_added" and this should show the "/main/time-added" route. However, due to an overly broad condition in the logic to determine when the "/main/expired" route should be shown, this caused the "main/time-added" route to never be shown, as the overly broad condition effectively prevented the logic to determine when to show the "/main/time-added" route from ever being called. This overly broad condition erroneously targeted all new accounts created from within the app and prevented the transition to the "/main/time-added" route. To fix the problem we update the logic regarding when to show the "/main/expired" route to not check if the account is new, as it is enough to only check if the account is logged in and that its expiredStatus is "expired". This change allows the logic to determine when the "/main/time-added" route should be shown to be called and as such can allow the route to be shown after time has been added. | |||||
| 2025-03-13 | Add Babel core, helpers, and runtime to development dependencies | Oliver | 2 | -74/+82 | |
| CVE-2025-27789 was introduced in version 7.26.9, a dependency for several packages. Since overriding the version had no effect, we’re now adding these packages as dev dependencies to lock in a fixed version. | |||||
| 2025-03-13 | Extend ignores for CVEs | Oliver | 1 | -3/+3 | |
| 2025-03-12 | Improve information in 4-make-release script | Oskar | 1 | -0/+4 | |
| 2025-03-12 | Fix git diff command in 4-make-release | Oskar | 1 | -1/+1 | |
| 2025-03-12 | Add call to upload-metadata-to-cdn in 4-make-release | Oskar | 1 | -5/+13 | |
| 2025-03-12 | Add script which uploads metadata to CDN servers | Oskar | 1 | -0/+60 | |
| 2025-03-12 | Bump the ignoreUntil on python dependencies | Linus Färnstrand | 1 | -7/+10 | |
| 2025-03-11 | Improve release preparation diff verification output | Oskar | 1 | -2/+2 | |
| 2025-03-11 | Make desktop release script print link to releases directory | Oskar | 1 | -0/+2 | |
| 2025-03-11 | Rename release script for creating and pushing tag | Oskar | 1 | -0/+0 | |
| 2025-03-11 | Fix version matching | Oskar | 1 | -2/+2 | |
| 2025-03-10 | Remove unused helper to convert from tunnel type constraint | Tobias Järvelöv | 1 | -16/+0 | |
| 2025-03-10 | Remove parameter relaySettings in getTunnelProtocolFilter | Tobias Järvelöv | 3 | -26/+6 | |
| We only used the relaySettings parameter to handle when tunnel protocol was set to "any" to potentially enable "openvpn" endpoints if multihop was not enabled. However, as the tunnel protocol now has to be explicitly assigned to either "wireguard" or "openvpn" we should only enable endpoints which matches the tunnel protocol so we don't need to check the multihop setting, as it has to be disabled for the user to switch the tunnel protocol to "openvpn" | |||||
| 2025-03-10 | Update Tunnel Protocol fallback handling | Tobias Järvelöv | 3 | -8/+7 | |
| Remove "any" as fallback value. | |||||
| 2025-03-10 | Use hook useTunnelProtocol to get tunnel protocol value | Tobias Järvelöv | 3 | -8/+7 | |
| This way we can use its fallback value if relaySettings.tunnelProtocol is undefined. | |||||
| 2025-03-10 | Remove constraint for TunnelProtocol | Tobias Järvelöv | 8 | -17/+14 | |
| 2025-03-10 | Remove "any" for TunnelType | Tobias Järvelöv | 2 | -7/+2 | |
| 2025-03-10 | Update tunnel protocol to "wireguard" in redux | Tobias Järvelöv | 1 | -1/+1 | |
| 2025-03-10 | Update tunnel protocol to "wireguard" for default normal relay settings | Tobias Järvelöv | 1 | -1/+1 | |
| 2025-03-10 | Use helper for default normal relay settings for fallback value | Tobias Järvelöv | 1 | -16/+4 | |
| 2025-03-10 | Use helper for normal relay settings to get default value | Tobias Järvelöv | 1 | -16/+1 | |
| 2025-03-10 | Add helper to return default value for normal relay settings | Tobias Järvelöv | 1 | -0/+25 | |
| 2025-03-10 | Update translations | Tobias Järvelöv | 1 | -3/+3 | |
