Autorun-rs v1.1.0 #48
thevurv
announced in
Announcements
Replies: 1 comment
-
Since nobody is saying thank you, I will. Thank you for making a useful tool such as this and releasing this to the public, will definetly use it and maybe learn from it :) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
A lot of not very minor but also not too crazy changes were made in 1.1.0
Breaking Changes 🔨
Autorun.require
This will now pass errors encountered in the function being ran, if any, instead of failing silently.
New Logger 📋
I replaced the very ugly logger with a custom implementation, which saves them in


YYYY-MM-DD
format for file sorting, and logs them with colors to the external console.Asynchronous Lua Dumping 🌔
When joining servers, lua will be dumped asynchronously on a different thread, dumping around 50 files a second max to avoid using too much of your disk. (There could also be a setting to change the cooldown, bug me if you need it)
Console Enhancements ✨
The console finally has proper colors, a command system for easy extension and descriptions builtin.

Check it out:
New command:
clear
🌀This new command will clear the console, very useful when you're using something like Safety which prints a lot to the console..
New
Autorun
functions 🧰Autorun.requirebin(name: string)
⚙️This function is used to execute binary modules (Rust, C++ programs) located in your
autorun/bin
folder, as long as they are named accordingly: e.g.gmcl_mymodule_win64.dll
forAutorun.requirebin("mymodule")
Autorun.print(...)
💻Accompanying the colors in the console, you can now print with color using the Autorun.print command, which accepts any type of arguments, including tables, which, if they contain a number as the first index, will be considered a color.
Example Use:
Once Again...
That's pretty much it. It took a while to get here, so if you could support with a 🌟 or join the discord to ask any questions or report issues, it would be greatly appreciated. (This took way too long to write, so could support me for that as well.. 😵💫 )
This discussion was created from the release Autorun-rs v1.1.0.
Beta Was this translation helpful? Give feedback.
All reactions