From 178e6e27fa66f6deb51de349bcaa436bd077fd9a Mon Sep 17 00:00:00 2001 From: HanPrower <1781312+HanPrower@users.noreply.github.com> Date: Wed, 28 Aug 2024 15:37:44 +0100 Subject: [PATCH 1/3] Remove CompatTool add from setflatpak function It shouldn't be necessary due to how the Flatpak STL is, and at this point in the setup `$SROOT` doesn't seem to have been set anyway --- steamtinkerlaunch | 1 - 1 file changed, 1 deletion(-) diff --git a/steamtinkerlaunch b/steamtinkerlaunch index e2a63112..da4a580d 100755 --- a/steamtinkerlaunch +++ b/steamtinkerlaunch @@ -26878,7 +26878,6 @@ function setflatpak { if [ -n "$FLATPAK_ID" ] && [ "$FLATPAK_ID" == "com.valvesoftware.Steam" ]; then writelog "INFO" "${FUNCNAME[0]} - seems like flatpak is used, because variable 'FLATPAK_ID' exists and points to 'com.valvesoftware.Steam'" INFLATPAK=1 - CompatTool "add" "$FPBIN/$PROGCMD" else writelog "INFO" "${FUNCNAME[0]} - started $PROGNAME from ${0}" fi From 4345783df0f8325e033fab9c68c808dfbc021645 Mon Sep 17 00:00:00 2001 From: HanPrower <1781312+HanPrower@users.noreply.github.com> Date: Wed, 28 Aug 2024 16:08:57 +0100 Subject: [PATCH 2/3] Fix wrong case in getGameScopeGeneralOpts GSSHWRES --- steamtinkerlaunch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steamtinkerlaunch b/steamtinkerlaunch index da4a580d..8db40590 100755 --- a/steamtinkerlaunch +++ b/steamtinkerlaunch @@ -11315,7 +11315,7 @@ function setGameScopeVars { function getGameScopeGeneralOpts { # GameScope Show Resolution (corresponds to -W, -H options, uppercase) -- Actual GameScope window size -- Dropdown if [ -z "$GSSHWRES" ]; then - if ! grep -qw "\-w" <<< "$GAMESCOPE_ARGS" || ! grep -qw "\-h" <<< "$GAMESCOPE_ARGS"; then + if ! grep -qw "\-W" <<< "$GAMESCOPE_ARGS" || ! grep -qw "\-H" <<< "$GAMESCOPE_ARGS"; then GSSHWRES="1280x720" else GSSHWRES="$(tr ' ' '\n' <<< "$GAMESCOPE_ARGS" | grep -wA1 "\-W" | tail -n1)x$(tr ' ' '\n' <<< "$GAMESCOPE_ARGS" | grep -wA1 "\-H" | tail -n1)" From e2aa2fa9d82981f2c1a04981fc5ef07e08a238ba Mon Sep 17 00:00:00 2001 From: HanPrower <1781312+HanPrower@users.noreply.github.com> Date: Wed, 28 Aug 2024 21:53:42 +0100 Subject: [PATCH 3/3] Remove `FPBIN` and bump version to v14.0.20240828-1 --- steamtinkerlaunch | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/steamtinkerlaunch b/steamtinkerlaunch index 8db40590..e7a09d4c 100755 --- a/steamtinkerlaunch +++ b/steamtinkerlaunch @@ -7,7 +7,7 @@ PREFIX="/usr" PROGNAME="SteamTinkerLaunch" NICEPROGNAME="Steam Tinker Launch" -PROGVERS="v14.0.20240727-1" +PROGVERS="v14.0.20240828-1" PROGCMD="${0##*/}" PROGINTERNALPROTNAME="Proton-stl" SHOSTL="stl" @@ -153,7 +153,6 @@ F1ACTIONCG="bash -c setColGui" BTS="backup-timestamp" DUMMYBIN="echo" STLAIDSIZE="12" -FPBIN="/app/utils/bin" INFLATPAK=0 WDIB="wine-discord-ipc-bridge" FIXGAMESCOPE=0