format new code, update release notes

This commit is contained in:
Jesse Plamondon-Willard 2020-07-29 22:42:47 -04:00
parent 778bcdfbe5
commit e96f4fb797
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
2 changed files with 4 additions and 2 deletions

View File

@ -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.

View File

@ -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