- Jul 29, 2024
-
-
jkito authored
- Jul 26, 2024
-
- Jul 22, 2024
-
-
this updates the qt linguist ts files to target the strings correctly after the recent UI changes
-
jkito authored
this adds a new boolean "KCP" key to the systray.json config file kcp is linked to obfs4, so setting kcp to 'true' sets obfs4 to also true
-
jkito authored
since io/ioutil package is deprecated now, this uses equivalent functions from the os package
-
jkito authored
this adds a check box to the transport section of preferences to enable KCP and makes the necessary updates to SetTransport and GetTransport to allow KCP to be used as a transport name
-
jkito authored
the startOpenVPN method fetches gateways for the requested transport starts the local proxy, sets up firewall and then makes the call to start openvpn this introduces helper methods to perform the preparatory tasks before openvpn can be started, this makes it easier to navigate the function
-
This reverts commit 09416b1d. required pkg-config .pc files are not provided by the qt project on linux the distribution packages contains them but on windows and macOS these are not available causing build to fail ref: https://bugreports.qt.io/browse/QTBUG-86080
-
Pea Nut authored
`Quit()` in `main.cpp` calls `Quit()` in `gui/backend.go` which calls `backend.Quit()` (`defined in pkg/backend/api.go`) ways to test: - Preferences -> Quit - Systray -> Quit - via signal: killall riseup-vpn When we exit by Systray/Preferences, `QApplication::quit()` gets called by `&Backend::quitDone` handler.
-
Pea Nut authored
cli (cmd/bitmask-helper/main.go and) and helpers (pkg/pickle/helpers.go) were also fixed.
-
Pea Nut authored
It only calls vpn.Init()
-
Pea Nut authored
It only calls config.ConfigureLogger which now get's called directly.
-
this adds a custom installer page with a checkbox to allow users to choose to install the app for all users, when its enabled installer will create a group called 'OpenVPN Administrator' local users except the admin, guest and default account are added to the group, and upon uninstall the group is removed this allows non-admin users that are added to the group to use the app and successfully start a vpn connection
- Jul 21, 2024
-
- Jul 19, 2024
-
-
this is needed to be passed to be able to build the GUI since our c-archive libgoshim.a imports the 'net' package ref: https://github.com/golang/go/issues/58159 https://tip.golang.org/doc/go1.20#cgo
-
the C import line is recommended to be on a separate line this allows to use the comments in the lines preceeding it to setup various cpp compiler flags this also uses cgo comments to pass additional import dirs for the cpp compiler, these are needed for gopls to work
-
instead of converting QString to GoString struct which is error prone, this changes SetTransport and UseLocation in backend.go to receive a char* as arg, which is converted to Go string using the C.GoString helper this fixes a bug on macOS where changing preference options did not have any effect as the conversion of string was not working and empty values were passed to Go functions
-
- Jul 17, 2024
-
- Jul 14, 2024
-
-
jkito authored
this uses $CI_PROJECT_DIR instead of a hardcoded path for the project's build dir in the arch pkg job, the hardcoded path doesn't exist if job run is from a forked repo
-
- Jul 13, 2024
-
-
this fixes a bug where StartFirewall is called with an empty 'gateways' slice leading to blocking outgoing connections to the openvpn gateway in startOpenvpn func's global scope there's a 'gateways' var which is passed to FirewallStart and the gateways are added to the firewall's allow list of IPs, this was re-declared in the code branch for non-private bridge which is out of scope where FirewallStart is called, leading to an empty 'gateways' slice being passed to it
- Jul 10, 2024
-
-
After removing `Bitmask.ReloadFirewall()` there are no calls to `b.api.GetAllGateways()` where the calling function actually need the gateways as return values. So I renamed the function to FetchAllGateways. The function now only returns an error (instead of `([]bonafide.Gateway, error)`). This simplifies the code of v5 a bit, as we get rid of yet another function/abstraction. In v3 `gatewayPool.getAll()` now also returns just an error.