Skip to content

Commit

Permalink
version 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
corrad1nho committed Aug 29, 2018
1 parent 26f8b5c commit d5ce18f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
##Changelog
## Changelog

version 0.7.3:
- [change] firewall is reloaded on gui startup
Expand Down
25 changes: 12 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,21 +126,20 @@ Qomui has been my first ever programming experience and a practical challenge fo

### Changelog

#### version 0.7.3:
- [change] firewall is reloaded on gui startup
- [change] checking for presence of other firewall services such as ufw when configuring firewall
- [change] selection box for protocols adjusts size
- [bugfix] previous iptables rules are now properly saved/restored
- [bugfix] sometimes external is displayed twice
- [bugfix] Qomui crashes when adding folder and provider not specified
- [bugfix] WireGuard dns-servers not set correctly when second tunnel in bypass active
- [bugfix] manually imported WireGuard configs are not added to server list - [issue #24](https://github.com/corrad1nho/qomui/issues/24)
- [bugfix] potential permission error for temporary files created during importing configs

#### version 0.7.2:
- [change] cli supports new import and connection methods
- [bugfix] timer for connection attempts closes active OpenVPN tunnel
- [bugfix] timer for connection attempts may close active OpenVPN tunnel
- [bugfix] multiple widgets shown if bypass VPN reconnects
- [bugfix] wait cursor doesn't always reset
- [bugfix] Openvpn not reconnecting when process dies unexpectedly

#### version 0.7.1:
- [new] secondary vpn tunnel in bypass mode - EXPERIMENTAL
- [change] download statistics switch to higher units automatically
- [change] using QThread for OpenVPN/WireGuard process now
- [change] using alternative url if checking external ip address fails
- [change] 20 sec timeout for Openvpn connections attempt
- [bugfix] some temporary files not deleted after importing servers
- [bugfix] Qomui doesn't recognize when OpenVPN connection attempts fail due to fatal errors

##### Additional notes
- cli is not working with versions 0.7.0 and 0.7.1
2 changes: 1 addition & 1 deletion qomui/firewall.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def restore_iptables():
restore = Popen(["iptables-restore"], stdin=infile, stderr=PIPE)
save.wait()

if save.stderr:
if restore.stderr:
logging.debug("Failed to restore iptables rules")

else:
Expand Down

0 comments on commit d5ce18f

Please sign in to comment.