- Oct 13, 2024
-
-
this adds a new helper setDefaults() in the config package and calls it when the config file doesn't exist, this provides a way for us to have default values for the config options setDefaults currently only sets the UDP config to 'true' since it is expected that UDP is enabled by default
- Oct 07, 2024
-
- Sep 08, 2024
-
-
running 'getparam binname' should return the name we want to set for the qmake TARGET based on the PROVIDER from the vendor.conf file, due to running it inside a subshell in make it always gets the value for the default provider, setting PROVIDER env returns the correct value it also updates the qmake project file to use the TARGET env var and the build script to pass TARGET to qmake command as arg
- Sep 05, 2024
-
- Sep 03, 2024
-
- Aug 27, 2024
-
- Aug 19, 2024
- Aug 18, 2024
-
- Aug 17, 2024
-
-
jkito authored
this updates the jobs that builds the client on windows and macOS on github actions the jobs were failing due to missing qt-installer-framework as well as failing to properly install qt6 on windows these jobs now uses `aqt` to install qt6 on both win and macos
-
- Aug 10, 2024
-
-
jkito authored
the backend.quit emits the 'quitDone' signal which also triggers the 'aboutToQuit' signal for the QApplication since its handler calls 'QApplication::quit()' the handler for 'aboutToQuit' signal already calls Quit so removing it from backend.quit avoids another call to Quit
-
- Aug 07, 2024
-
-
jkito authored
This reverts commit b9fc3584. the aboutToQuit signal is emitted just before the app closes and gives chance to run some teardown routines, when closing the app via a keyboard shortcut (cmd+q on macOS) we get this signal and the handler stops the firewall and performs other needed cleanup removing this causes a bug where quiting the app would keep the firewall running which results into no internet access
-
- Aug 04, 2024
-
- Aug 03, 2024
-
-
jkito authored
-
jkito authored
since obfs4 and kcp is disabled in the UI when provider is riseup, transport needs to be set to openvpn to work around config file with Obfs4 and KCP set to true from a previous version of the app
-
jkito authored
riseup currently is not having any deployed obfs4 or kcp bridges but the eip-service.json contains transports[].type as obfs4 for many of the gateways, therfore the bridge options are explicitly disabled if the provider name is 'riseup'
-
jkito authored
this prevents starting openvpn connection automatically after app start, since currently there's no preference setting for it to allow the user to control the behavior this also sets DisableAutostart to true since it is currently not working on any of the platforms
-
jkito authored
this uses the contentItem property of RoundButton to use an Image item and set the power button as on/off changing from Icon to Image allows to use the mipmap property, which should improve the image quality
-