Skip to content

Commit

Permalink
version bump + more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sonic2kk committed Apr 19, 2024
1 parent 7572654 commit 56c2b51
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions steamtinkerlaunch
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
PREFIX="/usr"
PROGNAME="SteamTinkerLaunch"
NICEPROGNAME="Steam Tinker Launch"
PROGVERS="v14.0.20240419-1 (reenable-get-slr-from-compattool-launch-cmd)"
PROGVERS="v14.0.20240420-1"
PROGCMD="${0##*/}"
PROGINTERNALPROTNAME="Proton-stl"
SHOSTL="stl"
Expand Down Expand Up @@ -2385,8 +2385,13 @@ function setGameVars {
done <<< "$(printf "%s\n" "${WIPCGCMD[@]}")"
fi

# SLRCT = Steam Linux Runtime from Compatibility Tool
# Refers to instances where the SLR comes in the launch command for a game
# This can happen if you launch a game with SLR 1.0 or 3.0 selected as a compatibility tool, as Steam
# will give the launch command wrapped with the SLR.
#
# See setSLRReap for implementation on how we use this
if grep -q "$SLR" <<< "${WIPDGCMD[@]}"; then

HAVESLRCT=1
else
HAVESLRCT=0
Expand Down Expand Up @@ -20152,7 +20157,8 @@ function fixCustomMeta {
}

function initPlay {
# HAVESLR=0
# HAVESLR=0 # Previously enabled to force disable SLR from launch command, but now we can handle SLR from launch command and safely ignore it if not present
## TODO: Are any of these other values still needed?
HAVESLRCT=0
HAVEREAP=0
HAVESCTP=0
Expand Down

0 comments on commit 56c2b51

Please sign in to comment.