Skip to content

Commit

Permalink
changelog and wording changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wardviaene committed Aug 21, 2024
1 parent a54e3c4 commit ea0aded
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release Notes

## Version v1.1.0
* UI: change VPN configuration within the admin UI
* UI: ability to reload WireGuard® configuration
* UI: modify client/server WireGuard® configuration files using templates

## Version v1.0.41
* UI: axios version bump
* UI: disable https forwarding when request is served over http
Expand Down Expand Up @@ -47,4 +52,4 @@ Once upgraded to this release, new upgrades can be done through the UI.

* Local Users Support
* OIDC Support
* Wireguard® for VPN Connections
* WireGuard® for VPN Connections
4 changes: 2 additions & 2 deletions webapp/src/Routes/Setup/VPNSetup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export function VPNSetup() {

return (
<Container my={40} size="40rem">
<Alert variant="light" color="blue" title="Note!" icon={alertIcon}>Changes to Address Range, Port, External Interface, or NAT will need a wireguard reload. You can click the "Reload Wireguard" button in the Restart tab after submitting the changes. This will disconnect active VPN clients, and if the Address Range or Port is changed, all clients will need to download a new VPN Config.</Alert>
<Alert variant="light" color="blue" title="Note!" icon={alertIcon}>Changes to Address Range, Port, External Interface, or NAT will need a wireguard reload. You can click the "Reload WireGuard" button in the Restart tab after submitting the changes. This will disconnect active VPN clients, and if the Address Range or Port is changed, all clients will need to download a new VPN Config.</Alert>
{saved && saveError === "" ? <Alert variant="light" color="green" title="Update!" icon={alertIcon} style={{marginTop: 10}}>Settings Saved!</Alert> : null}
{saveError !== "" ? <Alert variant="light" color="red" title="Error!" icon={alertIcon} style={{marginTop: 10}}>{saveError}</Alert> : null}

Expand Down Expand Up @@ -213,7 +213,7 @@ export function VPNSetup() {
Disable NAT
</Text>
<Text fz="sm" c="dimmed">
Packets will be routed to anywhere on the network, using Network Address Translation (NAT). If the VPN clients only need to access the VPN server and not other devices in the network, you can disable NAT.
Packets will be routed to anywhere on the network, using Network Address Translation (NAT). If the VPN clients only need to access the VPN server and no other devices in the network, you can disable NAT.
</Text>
</div>
</UnstyledButton>
Expand Down

0 comments on commit ea0aded

Please sign in to comment.