Skip to content

Releases: daikon-games/rt-shell

4.1.1

11 Jul 23:25
Compare
Choose a tag to compare

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

15 Jun 23:25
1ff95a7
Compare
Choose a tag to compare

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

08 Jul 19:46
Compare
Choose a tag to compare

rt-shell 4.0.2 is a minor release that fixes a few issues with autocomplete. Thank you to user @Mr-Unown for finding and fixing these bugs!

4.0.1

15 May 15:10
Compare
Choose a tag to compare

rt-shell 4.0.1 is a patch release that fixes a crash that could occur on certain shell commands when using the YYC compiler

4.0.0

03 May 18:08
Compare
Choose a tag to compare

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

06 Feb 21:37
Compare
Choose a tag to compare

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

15 Dec 21:30
Compare
Choose a tag to compare

Removed some accidental logging statements included in 3.2.0! Oops :)

3.2.0

15 Dec 21:13
Compare
Choose a tag to compare

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

05 Feb 22:02
Compare
Choose a tag to compare

rt-shell 3.1.0 adds new power-user keyboard shortcuts to make using your shell even easier! See the README for details. It also fixes some minor bugs related to autocomplete suggestions.

3.0.1

13 Jan 16:29
611fb27
Compare
Choose a tag to compare

This release contains minor bug-fixes on top of 3.0.0, and a smooth-scrolling option! Thanks again to @FaultyFunctions