Skip to content
This repository was archived by the owner on Feb 21, 2026. It is now read-only.

Commit 0cfb632

Browse files
authored
Merge pull request #331 from alextrical/SSO_Fix
SSO login fix post April update with the help of my COMMUNITY <3
2 parents 7d9ac9f + c20fe08 commit 0cfb632

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
175 KB
Binary file not shown.

files/builds/stable-branch/bin/install.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# Author URI: https://cryinkfly.com #
88
# License: MIT #
99
# Copyright (c) 2020-2023 #
10-
# Time/Date: 07:40/05.05.2023 #
11-
# Version: 1.8.8 #
10+
# Time/Date: 17:20/31.05.2023 #
11+
# Version: 1.8.9 #
1212
####################################################################################################
1313

1414
# Path: /$HOME/.fusion360/bin/install.sh
@@ -281,7 +281,7 @@ function SP_FUSION360_INSTALLER_LOAD {
281281
echo "The Autodesk Fusion 360 installer exist!"
282282
else
283283
echo "The Autodesk Fusion 360 installer doesn't exist and will be downloaded for you!"
284-
wget -T 15 -t 0 -N -c 'https://web.archive.org/web/20230317210714id_/https://dl.appstreaming.autodesk.com/production/installers/Fusion 360 Admin Install.exe' -O Fusion360installer.exe
284+
wget https://dl.appstreaming.autodesk.com/production/installers/Fusion%20360%20Admin%20Install.exe -O Fusion360installer.exe
285285
mv "Fusion360installer.exe" "$SP_PATH/downloads/Fusion360installer.exe"
286286
fi
287287
}
@@ -327,7 +327,7 @@ Path=$WP_DIRECTORY
327327
EOF
328328

329329
# Create a .desktop file (uninstall.sh) for Autodesk Fusion 360!
330-
wget -N -P "$SP_PATH/graphics" https://raw.githubusercontent.com/cryinkfly/Autodesk-Fusion-360-for-Linux/main/files/builds/stable-branch/bin/fusion360-uninstall.svg
330+
wget -N -P "$SP_PATH/graphics" https://raw.githubusercontent.com/cryinkfly/Autodesk-Fusion-360-for-Linux/main/files/builds/stable-branch/bin/fusion360.svg
331331
cat >> "$HOME/.local/share/applications/wine/Programs/Autodesk/Fusion360/$WP_TYPE/fusion360uninstall.desktop" << EOF
332332
[Desktop Entry]
333333
Name=Autodesk Fusion 360 (Uninstall) - $WP_TYPE
@@ -352,7 +352,7 @@ Exec=bash ./uninstall.sh
352352
Type=Application
353353
Categories=Education;Engineering;
354354
StartupNotify=true
355-
Icon=$SP_PATH/graphics/fusion360-uninstall.svg
355+
Icon=$SP_PATH/graphics/fusion360.svg
356356
Terminal=false
357357
Path=$SP_PATH/bin
358358
EOF

files/builds/stable-branch/bin/launcher.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function LAUNCHER_CHECK_UPDATE_VERSION {
5858

5959
# You must change the first part ($HOME/.wineprefixes/fusion360) and the last part (WINEPREFIX="$HOME/.wineprefixes/fusion360") when you have installed Autodesk Fusion 360 into another directory!
6060
function LAUNCHER_RUN_FUSION360 {
61-
LAUNCHER="$(find "$WP_BOX" -name Fusion360.exe -printf "%T+ %p\n" | sort -r 2>&1 | head -n 1 | sed -r 's/.+0000000000 (.+)/\1/')" && WINEPREFIX="$WP_BOX" wine "$LAUNCHER"
61+
LAUNCHER="$(find "$WP_BOX" -name Fusion360.exe -printf "%T+ %p\n" | sort -r 2>&1 | head -n 1 | sed -r 's/.+0000000000 (.+)/\1/')" && WINEPREFIX="$WP_BOX" FUSION_IDSDK=false WINEDEBUG=-all wine "$LAUNCHER"
6262
}
6363

6464
###############################################################################################################################################################

0 commit comments

Comments
 (0)