Add a "Check for Updates" dialog (#863)

* Add basic dialog for Updates check
* Add GitHub API call and processing
* Finalise the update dialog
* Improve test coverage
This commit is contained in:
Veronica Berglyd Olsen
2021-08-22 14:33:00 +02:00
committed by GitHub
parent 80911af4d2
commit b5e52b80a3
6 changed files with 250 additions and 20 deletions
+2
View File
@@ -27,6 +27,7 @@ from nw.dialogs.preferences import GuiPreferences
from nw.dialogs.projload import GuiProjectLoad
from nw.dialogs.projsettings import GuiProjectSettings
from nw.dialogs.quotes import GuiQuoteSelect
from nw.dialogs.updates import GuiUpdates
from nw.dialogs.wordlist import GuiWordList
__all__ = [
@@ -38,5 +39,6 @@ __all__ = [
"GuiProjectLoad",
"GuiProjectSettings",
"GuiQuoteSelect",
"GuiUpdates",
"GuiWordList",
]