Releases: SirToffski/WireGuard-Ligase
Releases · SirToffski/WireGuard-Ligase
WireGuard-Ligase v1.5.1
Reverted a commit which changed the loop from
for i in $(seq 1 "$number_of_clients"); do
....
done
to
while read -r i; do
...
done < <(seq 1 "$number_of_clients")
WireGuard-Ligase v1.5
- FreeBSD support has been implemented and tested on AWS EC2.
- Both normal setup and quick-setup modes are supported. IPFW has been chosen for firewall.
- Various improvements in script syntax - mostly to improve the code. Hence not much impact on end-user experience.
WireGuard-Ligase v1.1
- User interface has been redone and is now much more pleasant.
- Fixed the bug when
find
would take a long time on a non-new OS.- No longer using
find
at all, see commit 7d2d61c.
- No longer using
WireGuard-Ligase v1.0.1
WireGuard-Ligase v1.0
This is the first release of the "stable version" of the script. While the development versions may introduce features/improvements, the could also contain bugs.
This release implements:
- Ability to recognize a supported OS and install WireGuard if necessary.
- On the supported OS - firewall rules can be configured automatically.
- Determine the public IP of the host via
curl -s https://checkip.amazonaws.com
. - Option to generate QR codes if
qrencode
is installed and user chose the option to have them generated. - Quick Setup script finally works with a custom number of clients.
- General script usability improvements.