summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/release-notes.md1
-rw-r--r--src/SMAPI.Installer/assets/unix-launcher.sh5
2 files changed, 4 insertions, 2 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md
index 79168042..a5cfc9e4 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -14,6 +14,7 @@
* Fixed launcher's fallback logic on Linux when no compatible terminal was found (thanks to jlaw!).
* Fixed rare crash when a mod adds/removes an event handler from an event handler.
* Fixed string sorting/comparison for some special characters.
+ * Improved compatibility with some Linux terminals (thanks to Spatterjaaay!).
* For the Console Commands mod:
* Fixed error opening menu when some item data is invalid.
diff --git a/src/SMAPI.Installer/assets/unix-launcher.sh b/src/SMAPI.Installer/assets/unix-launcher.sh
index e6dc030a..1d97d487 100644
--- a/src/SMAPI.Installer/assets/unix-launcher.sh
+++ b/src/SMAPI.Installer/assets/unix-launcher.sh
@@ -69,9 +69,10 @@ else
break;
fi
done
- # Find the true shell behind x-terminal-emulator
+
+ # find the true shell behind x-terminal-emulator
if [ "$LAUNCHTERM" = "x-terminal-emulator" ]; then
- export LAUNCHTERM="$(basename "$(readlink -f $(COMMAND x-terminal-emulator))")"
+ export LAUNCHTERM="$(basename "$(readlink -f $(COMMAND x-terminal-emulator))")"
fi
# run in selected terminal and account for quirks