2018-02-26 09:52:33 -06:00
|
|
|
# -*- coding: utf-8 -*-
|
2020-07-17 17:50:18 -05:00
|
|
|
import sys
|
2018-02-26 09:52:33 -06:00
|
|
|
import application
|
|
|
|
import platform
|
|
|
|
import logging
|
|
|
|
from requests.exceptions import ConnectionError
|
2020-07-17 17:50:18 -05:00
|
|
|
from . import update
|
2018-02-26 09:52:33 -06:00
|
|
|
from .wxUpdater import *
|
|
|
|
logger = logging.getLogger("updater")
|
|
|
|
|
2020-07-17 17:50:18 -05:00
|
|
|
def do_update(update_type="alpha"):
|
|
|
|
# Updates cannot be performed in the source code version.
|
|
|
|
if hasattr(sys, "frozen") == False:
|
|
|
|
return
|
2020-07-27 09:39:54 -05:00
|
|
|
endpoint = application.update_url
|
|
|
|
version = application.update_next_version
|
2020-07-17 17:50:18 -05:00
|
|
|
try:
|
|
|
|
return update.perform_update(endpoint=endpoint, current_version=version, app_name=application.name, update_type=update_type, update_available_callback=available_update_dialog, progress_callback=progress_callback, update_complete_callback=update_finished)
|
|
|
|
except ConnectionError:
|
|
|
|
logger.exception("Update failed.")
|