From fc1d73007437e877547301d79d6f5a6536f28397 Mon Sep 17 00:00:00 2001 From: Felix Storm Date: Fri, 24 Feb 2023 15:15:19 +0100 Subject: [PATCH 1/2] Fix error "No internet connection possible" Should fix #300 --- files/builds/stable-branch/bin/install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/files/builds/stable-branch/bin/install.sh b/files/builds/stable-branch/bin/install.sh index 0739ee6..05c8dd0 100644 --- a/files/builds/stable-branch/bin/install.sh +++ b/files/builds/stable-branch/bin/install.sh @@ -448,6 +448,9 @@ function SP_FUSION360_INSTALL { WINEPREFIX="$WP_DIRECTORY" sh "$SP_PATH/bin/winetricks" -q cjkfonts sleep 5s SP_DXVK_OPENGL_1 + # We must set to Windows 10 again because some other winetricks sometimes set it back to Windows XP + WINEPREFIX="$WP_DIRECTORY" sh "$SP_PATH/bin/winetricks" -q win10 + sleep 5s # We must copy the EXE-file directly in the Wineprefix folder (Sandbox-Mode)! cp "$SP_PATH/downloads/Fusion360installer.exe" "$WP_DIRECTORY/drive_c/users/$USER/Downloads" # This start and stop the installer automatically after a time! From 42d0d365b02ea5d6e80ac06a7fc7ac40973121c1 Mon Sep 17 00:00:00 2001 From: Steve Zabka <79079633+cryinkfly@users.noreply.github.com> Date: Sun, 26 Feb 2023 09:32:51 +0100 Subject: [PATCH 2/2] Fix a bug with different winetricks versions! - Solved: No internet connection possible. Cannot launch Fusion 360 #300 --- files/builds/stable-branch/bin/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/builds/stable-branch/bin/install.sh b/files/builds/stable-branch/bin/install.sh index 05c8dd0..8105762 100644 --- a/files/builds/stable-branch/bin/install.sh +++ b/files/builds/stable-branch/bin/install.sh @@ -7,8 +7,8 @@ # Author URI: https://cryinkfly.com # # License: MIT # # Copyright (c) 2020-2022 # -# Time/Date: 14:15/02.02.2023 # -# Version: 1.8.5 # +# Time/Date: 09:30/26.02.2023 # +# Version: 1.8.6 # #################################################################################################### # Path: /$HOME/.fusion360/bin/install.sh @@ -448,7 +448,7 @@ function SP_FUSION360_INSTALL { WINEPREFIX="$WP_DIRECTORY" sh "$SP_PATH/bin/winetricks" -q cjkfonts sleep 5s SP_DXVK_OPENGL_1 - # We must set to Windows 10 again because some other winetricks sometimes set it back to Windows XP + # We must set to Windows 10 again because some other winetricks sometimes set it back to Windows XP! WINEPREFIX="$WP_DIRECTORY" sh "$SP_PATH/bin/winetricks" -q win10 sleep 5s # We must copy the EXE-file directly in the Wineprefix folder (Sandbox-Mode)!