Skip to content
Snippets Groups Projects
  1. Aug 18, 2024
  2. Aug 10, 2024
    • jkito's avatar
      Remove call to Quit from backend.quit method · bd2b8dcd
      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
      bd2b8dcd
  3. Aug 07, 2024
    • jkito's avatar
      Revert "Don't run Quit() twice during startup" · d31102cd
      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
      d31102cd
  4. Aug 03, 2024
  5. Jul 29, 2024
  6. Jul 22, 2024
  7. Jul 19, 2024
    • jkito's avatar
      cgo: set cgo compiler flags in backend.go · 09416b1d
      jkito authored and Pea Nut's avatar Pea Nut committed
      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
      09416b1d
    • jkito's avatar
      qt: pass char * to go functions from cpp helpers · 9d62d5e3
      jkito authored and Pea Nut's avatar Pea Nut committed
      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
      9d62d5e3
  8. Jun 21, 2024
  9. Jun 20, 2024
    • jkito's avatar
      chore: simplify setting of version for the app · 50108c0c
      jkito authored
      this removes the go generate way of generating the
      pkg/config/version.go file and uses build time  ld
      flags to set the version when building from git or
      uses .gitattributes to set it during git archive
      50108c0c
  10. Jun 19, 2024
  11. Apr 15, 2024
    • Pea Nut's avatar
      Add support for different api versions · 970c3f4f
      Pea Nut authored and jkito's avatar jkito committed
      - vendor.conf now has a default api version:
          - apiVersion = 3 is set for all current providers
      - provider.py (called during `make vendor`) now supports api version
        and writes it to providers.json
      - the desktop client logs the used api version. Currently v5 is not yet implement.
        This is just the preparation for it
      - this is only a temporary solution. In the future, we want to get the
        api version during runtime by parsing $api/provider.json
      970c3f4f
  12. Mar 15, 2024
  13. Mar 14, 2024
  14. Mar 07, 2024
  15. Mar 06, 2024
Loading