Releases: daikon-games/rt-shell
4.1.1
This release ignores Feather warnings (GameMaker's new built-in linting tool, enabled by default in 2023.6.x).
We cannot guarantee that our codebase's style will match the configured naming conventions of a given user, so this is the only way to avoid spamming our users with unnecessary warnings for the time being
4.1.0
rt-shell 4.1.0 is a minor release with some community-driven fixes and improvements!
#45 : autocomplete is now case-insensitive (thanks @WangleLine for the fix)
#47 : autocomplete suggestions can now be navigated with up/down arrow keys (thanks @WangleLine for the fix)
empty commands no longer print an error message (thanks @bfrymire for the fix)
Big thanks to our contributors for this release!
4.0.2
4.0.1
4.0.0
rt-shell 4.0.0 is a major release with new features and bug-fixes!
Features
- Deferred execution - Scripts can now be marked as deferred, and will be queued up and run when the shell is closed.
- Saved history - You can now configure rt-shell to save your command history and output to disk, and it will be re-loaded when the game runs again.
- Background images - rt-shell's customizability gets even better, 9-slice sprites can now be set as the background for the main console and the autosuggest window. Now rt-shell can blend in with your game even better than ever.
- Mouse Argument Suggestions - Script arguments can now be marked to provide suggestions based on the mouse cursor! Use the mouse to pick X/Y coordinates to input into a script, or to select an instance or object type by clicking on it!
- Home and End - The Home and End keys on the keyboard now function equivalently to Meta-A and Meta-E, allowing you to quickly jump the start and end of the console string respectively
Bug Fixes
- Fixed a crash when trying to cycle backwards through suggestions when there were no suggestions
- Fixed a bug causing the suggest window to not be drawn at the correct horizontal location
3.3.0
rt-shell 3.3.0 adds the ability to wrap arguments in double quotes so that they can contain space characters. For example:
$ say_greeting "Daikon Games"
Hello Daikon Games!
Thanks to user NoFluxGiven
for the feature suggestion, and for contributing an implementation of the feature although I ended up re-implementing it my own way rather than directly using their contribution
3.2.1
3.2.0
rt-shell 3.2.0 adds dynamic function argument suggestions (thanks @FaultyFunctions), hidden functions, and a new keyboard shortcut for aborting a command, as well as some bug fixes. For more details check out the README!
3.1.0
3.0.1
This release contains minor bug-fixes on top of 3.0.0, and a smooth-scrolling option! Thanks again to @FaultyFunctions