Final ieration of the new downloader and update_manager, implemented automatic updates only for windows

This commit is contained in:
Marco Dalla Tiezza
2024-06-13 15:46:25 +02:00
parent 146a5d1605
commit 77c43813a0
5 changed files with 285 additions and 231 deletions

View File

@@ -31,8 +31,8 @@ Window {
signal showCatManager()
signal openSigEditor(string type, var sig_param, bool is_new)
signal showSpaceWeather()
signal checkDbUpdates()
signal startDownloader()
signal checkForUpdate()
signal updateDb()
signal updateArtemis()
signal openDbDirectory()
signal newDb(string name)
@@ -137,7 +137,7 @@ Window {
standardButtons: Dialog.Cancel | Dialog.Yes
onAccepted: {
startDownloader()
updateDb()
}
}
@@ -323,7 +323,7 @@ Window {
MenuItem {
text: "Check for Updates"
onClicked: {checkDbUpdates()}
onClicked: {checkForUpdate()}
}
MenuSeparator {}