mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-01-19 08:41:06 -06:00
11 lines
396 B
Python
11 lines
396 B
Python
# -*- coding: utf-8 -*-
|
|
import application
|
|
import update
|
|
import platform
|
|
from wxUpdater import *
|
|
|
|
def do_update():
|
|
# try:
|
|
return update.perform_update(endpoint=application.update_url, current_version=application.version, app_name=application.name, update_available_callback=available_update_dialog, progress_callback=progress_callback, update_complete_callback=update_finished)
|
|
# except:
|
|
# pass |