Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor the app by using the Go library #509

Merged
merged 222 commits into from
Dec 22, 2022

Commits on Sep 27, 2022

  1. Configuration menu
    Copy the full SHA
    00d5409 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    21d3d46 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cf309e0 View commit details
    Browse the repository at this point in the history
  4. Server search fixes

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    a3dcfe8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2ce5f2b View commit details
    Browse the repository at this point in the history
  6. Create a model class

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    89fcee2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    816bbbc View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4a390de View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    fb3561c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    8359f55 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    9fa34fb View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f9f9987 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    4a53d85 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    1edad4d View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    db263ac View commit details
    Browse the repository at this point in the history
  16. Implement change location

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    c3a51c8 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    d79448f View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    24912a8 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    ce96a2c View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    15a538c View commit details
    Browse the repository at this point in the history
  21. Implement expiry text

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    784d09f View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    571bf97 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    33b7c46 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    018e6e1 View commit details
    Browse the repository at this point in the history
  25. UI: Set empty search query upon entering search server

    This gets rid of a flicker where it shows all the results briefly
    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    ece5d55 View commit details
    Browse the repository at this point in the history
  26. UI: Fix combobox width by recreating it every time

    We create a new one every time because Gtk has some weird behaviour regarding the width of the combo box.
    When we add items that are large, the combobox resizes to fit the content.
    However, when we add items again that are all smaller (e.g. for a new server), the combo box does not shrink back.
    The only proper way seems to be to recreate the combobox every time
    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    2869e3a View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    8839bcd View commit details
    Browse the repository at this point in the history
  28. Spec: Fix dependencies

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    3f089ca View commit details
    Browse the repository at this point in the history
  29. Tests: Delete for now

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    71bb852 View commit details
    Browse the repository at this point in the history
  30. Setup: Update requires

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    242380d View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    8e02071 View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    2d4741c View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    367d2aa View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    7e46de6 View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    7aa5cda View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    f7b7914 View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    b1ce7a9 View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    a62f5c7 View commit details
    Browse the repository at this point in the history
  39. Model + NM: Wireguard disconnect in an async manner

    Normal disconnect is deprecated. The crash fixed in
    eduvpn@0613a76
    should not be a problem any more as we're ensuring the correct thread is used already
    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    99ec9ef View commit details
    Browse the repository at this point in the history
  40. NM: Delete the connection on disconnect

    When the user disconnects in the app but then reconnects with
    networkmanager a broken connection occurs. This is because a connect
    can only happen with a fresh config, this is only ensured by the
    app. We thus hide the connection from network manager after a disconnect.
    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    2ceedd1 View commit details
    Browse the repository at this point in the history
  41. App: Properly disconnect on state update

    - Set disconnecting first due to otherwise having an invalid transition
    - Do not cleanup the connection, only do that when we actually click on the toggle
    - Run in a background thread to ensure the UI thread won't block
    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    7f42aae View commit details
    Browse the repository at this point in the history
  42. UI: Add Menu items for right click

    - Remove a server
    - Change profile
    - Cancel the popup
    
    The backend implementations need to be done still
    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    f8ccccd View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    3086049 View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    8105098 View commit details
    Browse the repository at this point in the history
  45. Model: Fix renew session when disconnected

    - We should automatically reconnect
    - The self prefix was incorrect
    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    e260c6a View commit details
    Browse the repository at this point in the history
  46. Formatting: Run black

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    283fc03 View commit details
    Browse the repository at this point in the history
  47. Configuration menu
    Copy the full SHA
    2834ffa View commit details
    Browse the repository at this point in the history
  48. Linting: Sort imports

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    07ba4f3 View commit details
    Browse the repository at this point in the history
  49. Configuration menu
    Copy the full SHA
    637b58b View commit details
    Browse the repository at this point in the history
  50. Configuration menu
    Copy the full SHA
    0c07ee8 View commit details
    Browse the repository at this point in the history
  51. Implement a command line

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    d281f95 View commit details
    Browse the repository at this point in the history
  52. Configuration menu
    Copy the full SHA
    b5d2f8d View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    1e7f29c View commit details
    Browse the repository at this point in the history
  54. Configuration menu
    Copy the full SHA
    42569bc View commit details
    Browse the repository at this point in the history
  55. Configuration menu
    Copy the full SHA
    a331a67 View commit details
    Browse the repository at this point in the history
  56. NM: Fix race condition

    - Just running action and then main_loop run gives a race condition
    - If action finishes quickly, or is not threaded then main_loop.run will never quit because quit() is called before the run() method
    - Use GLib.idle_add such that the action is scheduled to run on the main loop
    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    1fa138c View commit details
    Browse the repository at this point in the history
  57. Configuration menu
    Copy the full SHA
    17429e1 View commit details
    Browse the repository at this point in the history
  58. Configuration menu
    Copy the full SHA
    99b516e View commit details
    Browse the repository at this point in the history
  59. Configuration menu
    Copy the full SHA
    7c6363e View commit details
    Browse the repository at this point in the history
  60. Typing: Use monkeytype to annotate typing

    Also checked and modified by hand. Additionally I ran mypy on the results
    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    2a7cce3 View commit details
    Browse the repository at this point in the history
  61. CLI: Add a status command

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    caf658d View commit details
    Browse the repository at this point in the history
  62. CLI: Help message improvements

    - Reorder to alphabetic order (list was not in the right place)
    - Lower case first word of help
    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    2406757 View commit details
    Browse the repository at this point in the history
  63. Configuration menu
    Copy the full SHA
    620afe5 View commit details
    Browse the repository at this point in the history
  64. Configuration menu
    Copy the full SHA
    d650523 View commit details
    Browse the repository at this point in the history
  65. Configuration menu
    Copy the full SHA
    959127f View commit details
    Browse the repository at this point in the history
  66. Configuration menu
    Copy the full SHA
    4c99ac1 View commit details
    Browse the repository at this point in the history
  67. Configuration menu
    Copy the full SHA
    591c5b8 View commit details
    Browse the repository at this point in the history
  68. Configuration menu
    Copy the full SHA
    3a55317 View commit details
    Browse the repository at this point in the history
  69. Configuration menu
    Copy the full SHA
    5200443 View commit details
    Browse the repository at this point in the history
  70. Configuration menu
    Copy the full SHA
    2165e47 View commit details
    Browse the repository at this point in the history
  71. Configuration menu
    Copy the full SHA
    8400c4b View commit details
    Browse the repository at this point in the history
  72. Configuration menu
    Copy the full SHA
    1b134a9 View commit details
    Browse the repository at this point in the history
  73. Configuration menu
    Copy the full SHA
    545e042 View commit details
    Browse the repository at this point in the history
  74. Configuration menu
    Copy the full SHA
    d4029be View commit details
    Browse the repository at this point in the history
  75. Configuration menu
    Copy the full SHA
    37df5a9 View commit details
    Browse the repository at this point in the history
  76. Configuration menu
    Copy the full SHA
    281efcb View commit details
    Browse the repository at this point in the history
  77. Configuration menu
    Copy the full SHA
    c59a8af View commit details
    Browse the repository at this point in the history
  78. UI: Improvements to error dialog quitting

    - The error dialog should show two buttons if the error can be ignored, otherwise just 1 that will quit the client
    - Call the error dialog on deregister exception with the right thread
    - The window should be presented and then initialized, otherwise a
    quit on an error dialog will not close the client
    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    c079021 View commit details
    Browse the repository at this point in the history
  79. Configuration menu
    Copy the full SHA
    09f00da View commit details
    Browse the repository at this point in the history
  80. Configuration menu
    Copy the full SHA
    48cee50 View commit details
    Browse the repository at this point in the history
  81. Configuration menu
    Copy the full SHA
    7cb3269 View commit details
    Browse the repository at this point in the history
  82. Tests: Add back

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    b11e7bf View commit details
    Browse the repository at this point in the history
  83. CLI: Improvements

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    f2919d1 View commit details
    Browse the repository at this point in the history
  84. Configuration menu
    Copy the full SHA
    ddd91d4 View commit details
    Browse the repository at this point in the history
  85. RPM: Add flags images

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    96b5832 View commit details
    Browse the repository at this point in the history
  86. Configuration menu
    Copy the full SHA
    700cc5d View commit details
    Browse the repository at this point in the history
  87. Configuration menu
    Copy the full SHA
    ca2737c View commit details
    Browse the repository at this point in the history
  88. Configuration menu
    Copy the full SHA
    381651e View commit details
    Browse the repository at this point in the history
  89. Configuration menu
    Copy the full SHA
    79fafb9 View commit details
    Browse the repository at this point in the history
  90. Configuration menu
    Copy the full SHA
    b6ea361 View commit details
    Browse the repository at this point in the history
  91. Configuration menu
    Copy the full SHA
    a5faadc View commit details
    Browse the repository at this point in the history
  92. Configuration menu
    Copy the full SHA
    1b8710a View commit details
    Browse the repository at this point in the history
  93. Configuration menu
    Copy the full SHA
    ddffd36 View commit details
    Browse the repository at this point in the history
  94. CLI: Fix y/n spacing

    jwijenbergh committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    1ac0b5a View commit details
    Browse the repository at this point in the history
  95. Configuration menu
    Copy the full SHA
    b91105a View commit details
    Browse the repository at this point in the history
  96. Configuration menu
    Copy the full SHA
    75a642a View commit details
    Browse the repository at this point in the history
  97. Configuration menu
    Copy the full SHA
    668f3fd View commit details
    Browse the repository at this point in the history
  98. Configuration menu
    Copy the full SHA
    da5d1fd View commit details
    Browse the repository at this point in the history
  99. Configuration menu
    Copy the full SHA
    3aad10d View commit details
    Browse the repository at this point in the history
  100. Configuration menu
    Copy the full SHA
    241a284 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2022

  1. Configuration menu
    Copy the full SHA
    973cc61 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e9af8a8 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2022

  1. UI Search: Implement scroll per category

    - This also fixes a GTK (?) bug where the padding causes the whole
    search to crash
    jwijenbergh committed Sep 30, 2022
    Configuration menu
    Copy the full SHA
    ad5a8b5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    958903c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5865a0c View commit details
    Browse the repository at this point in the history
  4. UI: Do not allow to change profile on right click

    - No good use case for this and would have to be too much code
    jwijenbergh committed Sep 30, 2022
    Configuration menu
    Copy the full SHA
    fa53767 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    52e7fdd View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2022

  1. Configuration menu
    Copy the full SHA
    ea0b124 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2022

  1. Configuration menu
    Copy the full SHA
    8a3801c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    64f1bf7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9a94c09 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    00e85a7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0259a5d View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2022

  1. Configuration menu
    Copy the full SHA
    74e1434 View commit details
    Browse the repository at this point in the history
  2. UI: Fix show error dialog arguments on startup

    GLib.idle_add is not needed because the error dialog util already has
    `@run_in_main_gtk_thread`
    jwijenbergh committed Oct 6, 2022
    Configuration menu
    Copy the full SHA
    0246b34 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4ea650f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    29ebc67 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ecc3304 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2022

  1. Configuration menu
    Copy the full SHA
    dd09b11 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    424ad6c View commit details
    Browse the repository at this point in the history
  3. App: Fix add instances

    jwijenbergh committed Oct 11, 2022
    Configuration menu
    Copy the full SHA
    169918c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ff0f920 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    96361c1 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2022

  1. CLI: Move to eduvpn.cli and call in eduvpn.__main__

    This was the original file location and method
    jwijenbergh committed Oct 12, 2022
    Configuration menu
    Copy the full SHA
    57880eb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    79fbe7c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9e451f9 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2022

  1. Configuration menu
    Copy the full SHA
    409ac22 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2022

  1. Configuration menu
    Copy the full SHA
    9bc329b View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2022

  1. Configuration menu
    Copy the full SHA
    31fa69a View commit details
    Browse the repository at this point in the history
  2. Format: Run black

    jwijenbergh committed Oct 21, 2022
    Configuration menu
    Copy the full SHA
    30bb720 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a7801ab View commit details
    Browse the repository at this point in the history
  4. Setup.py: Fixup cli paths

    jwijenbergh committed Oct 21, 2022
    Configuration menu
    Copy the full SHA
    a93e586 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    57d8dee View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    029fe5a View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2022

  1. Configuration menu
    Copy the full SHA
    30a5aa1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    242fc4c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3aa035e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    177b3b6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fabcec3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ca4fab8 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ce3d3b0 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2022

  1. UI: Remove default icon property

    This gives a warning if Let's Connect! is used
    jwijenbergh committed Oct 26, 2022
    Configuration menu
    Copy the full SHA
    fa02897 View commit details
    Browse the repository at this point in the history
  2. Refactor: Create a class for NM operations

    This makes it possible to also have e.g. variant specific settings
    jwijenbergh committed Oct 26, 2022
    Configuration menu
    Copy the full SHA
    afe3bf5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0711868 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2caae99 View commit details
    Browse the repository at this point in the history
  5. NM: Make info calls debug calls

    Don't be so chatty!
    jwijenbergh committed Oct 26, 2022
    Configuration menu
    Copy the full SHA
    1a0ec30 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0cb5619 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ac9aceb View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c1c0870 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9062ebb View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    0f10f57 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    c4c765e View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2022

  1. Configuration menu
    Copy the full SHA
    bb4f0e7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e0970f8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5df0d76 View commit details
    Browse the repository at this point in the history
  4. NM: Make the WireGuard name depend on the translation domain

    The translation domain is just the vpn name but with proper capitalization
    jwijenbergh committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    210ad8d View commit details
    Browse the repository at this point in the history
  5. UI: Change right click menu to use menu items

    ImageMenuItems with stock icons are deprecated. The icons were also
    not showing up on Fedora 36
    jwijenbergh committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    8aa382a View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2022

  1. Configuration menu
    Copy the full SHA
    defd9c7 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2022

  1. Configuration menu
    Copy the full SHA
    f5c7019 View commit details
    Browse the repository at this point in the history
  2. Mypy: Various fixes

    jwijenbergh committed Oct 31, 2022
    Configuration menu
    Copy the full SHA
    ce19f67 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0b807a5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a254b54 View commit details
    Browse the repository at this point in the history
  5. Pylama: Fixes

    jwijenbergh committed Oct 31, 2022
    Configuration menu
    Copy the full SHA
    62b087b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    74caa0d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    e3311dc View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2022

  1. Configuration menu
    Copy the full SHA
    5b7661b View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2022

  1. Configuration menu
    Copy the full SHA
    5b0022a View commit details
    Browse the repository at this point in the history
  2. Format: Re-run black

    jwijenbergh committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    1fbdf4c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d24fc3d View commit details
    Browse the repository at this point in the history
  4. Pylama: Fixes

    jwijenbergh committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    93a6615 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2e73fe0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d7e906b View commit details
    Browse the repository at this point in the history
  7. Linting: Ignore W503

    W503 warns for a line break before a binary operator. We don't care as this is introduced by Black which adheres to the newest Pep8, see: https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-breaks-binary-operators
    jwijenbergh committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    5111fbe View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f7b3a3b View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0a1eef9 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f8278a2 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2022

  1. Configuration menu
    Copy the full SHA
    db4f173 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fc0d603 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b758836 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    66f99f1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    310774e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    933849b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3a9f2ec View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d37677e View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2df1041 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    c124714 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    e014afb View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    d60b4d9 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    a8bbc9b View commit details
    Browse the repository at this point in the history
  14. CLI: Re-import readline

    jwijenbergh committed Nov 10, 2022
    Configuration menu
    Copy the full SHA
    d8233c7 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    ca8e425 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    030468a View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    80da115 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    4292e17 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    33eb383 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    948889a View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    c1215af View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2022

  1. Configuration menu
    Copy the full SHA
    be0681d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7aa6654 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9bcc8e7 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2022

  1. Configuration menu
    Copy the full SHA
    6c16c7e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    31b188b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7e25e8a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b74bcbf View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a9929b2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e6fa9d1 View commit details
    Browse the repository at this point in the history
  7. UI: Fix log file path

    jwijenbergh committed Dec 21, 2022
    Configuration menu
    Copy the full SHA
    47a20c1 View commit details
    Browse the repository at this point in the history
  8. Variants: Set log file path to log in the config prefix

    This is the same as the Go library currently
    jwijenbergh committed Dec 21, 2022
    Configuration menu
    Copy the full SHA
    e6e38a2 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    8b96b57 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    385cf2c View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    169c799 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    96da45f View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    b547613 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    cfea052 View commit details
    Browse the repository at this point in the history
  15. Setup: Bump to 3.2.0

    jwijenbergh committed Dec 21, 2022
    Configuration menu
    Copy the full SHA
    9933efd View commit details
    Browse the repository at this point in the history
  16. App + NM: Cache the WireGuard endpoint IP

    NetworkManager doesn't expose it...
    jwijenbergh committed Dec 21, 2022
    Configuration menu
    Copy the full SHA
    1cd640b View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    ebd8fde View commit details
    Browse the repository at this point in the history
  18. Mypy + Pylama: Fixes

    jwijenbergh committed Dec 21, 2022
    Configuration menu
    Copy the full SHA
    4e7d8fa View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    32c4029 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    c2012f9 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    8d03c87 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2022

  1. Configuration menu
    Copy the full SHA
    9b4ea20 View commit details
    Browse the repository at this point in the history