Fixed application taskbar not hiding after task completion, implemented basic uninstaller task, server browser is only told to update from updater if server data has actually changed, added Interface.instance method- fixes assuming window.current_state is a Interface instance.

This commit is contained in:
2021-12-30 15:47:42 -06:00
parent d880d1525f
commit 1214c35fb5
8 changed files with 116 additions and 14 deletions

View File

@@ -6,6 +6,8 @@ class W3DHub
end
def execute_task
show_application_taskbar
fail_fast
return false if failed?
@@ -26,20 +28,17 @@ class W3DHub
unpack_packages(packages)
return false if failed?
sleep 1
create_wine_prefix
return false if failed?
sleep 1
install_dependencies(packages)
return false if failed?
sleep 1
mark_application_installed
return false if failed?
sleep 5
sleep 1
hide_application_taskbar
true