From 1c737553a84c8eb810db259aa81c2f5be5e48b27 Mon Sep 17 00:00:00 2001 From: Steve Zabka <79079633+cryinkfly@users.noreply.github.com> Date: Wed, 8 Jun 2022 23:26:01 +0200 Subject: [PATCH] Update update.sh --- files/builds/stable-branch/bin/update.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/files/builds/stable-branch/bin/update.sh b/files/builds/stable-branch/bin/update.sh index 480bc8f..c455f8b 100644 --- a/files/builds/stable-branch/bin/update.sh +++ b/files/builds/stable-branch/bin/update.sh @@ -116,7 +116,8 @@ function UP_FUSION360_INSTALL_STOP_2 { # The user get a informationt that no newer version of Autodesk Fusion 360 was found! function UP_NO_UPDATE_INFO { - yad --title="$UP_TITLE" --text="$UP_NO_CONNECTION_WARNING_LABEL" --text-align=center + yad --title="$UP_TITLE" --text="$UP_NO_UPDATE_INFO_LABEL" --text-align=center + LAUNCHER_RUN_FUSION360 } ############################################################################################################################################################### @@ -124,13 +125,15 @@ function UP_NO_UPDATE_INFO { # The user will be informed that he is skipping the update! function UP_SKIP_INFO { yad --title="$UP_TITLE" --text="$UP_SKIP_INFO_LABEL" --text-align=center + LAUNCHER_RUN_FUSION360 } ############################################################################################################################################################### # The user get a informationt that there is no connection to the server! function UP_NO_CONNECTION_WARNING { - yad --title="$UP_TITLE" --text="$UP_NO_UPDATE_INFO_LABEL" --text-align=center + yad --title="$UP_TITLE" --text="$UP_NO_CONNECTION_WARNING_LABEL" --text-align=center + LAUNCHER_RUN_FUSION360 } ############################################################################################################################################################### @@ -187,6 +190,8 @@ echo "100" } UP_FUSION360_INSTALL_UPDATE_PROGRESS_MAIN | yad --progress --progress-text "$UP_INSTALL_UPDATE_PROGRESS_LABEL" --percentage=0 --auto-close + +LAUNCHER_RUN_FUSION360 } ###############################################################################################################################################################