Releases: cronyxllc/DeveloperConsole
Releases · cronyxllc/DeveloperConsole
v1.2.0
[1.2.0] - 2021-03-23
Added
- Added a public overload for
DeveloperConsole.RegisterCommandthat takes anIConsoleCommandinstance. - Added
VerbCommand, a newIConsoleCommandimplementation, with support for verb commands, as in the case ofgit pushorgit pull- Allows for multiple subcommands to be called from one single root command by specifying verbs
- Use the
RegisterVerband its overloads to register verb implementations
Changed
- Made the formatting of the
helpcommand more rigorous, supporting multi-line command descriptions and coloring built-in commands blue. - Renamed
DeveloperConsole.RegisterCommand(string, Action<string>, string, string)overload toDeveloperConsole.RegisterCommandManualto avoid ambiguity withDeveloperConsole.RegisterCommand<T0>.
Fixed
- Fixed target exception when calling automatically parsed commands when using non-static methods.
- Fixed README.md meta file missing error
v1.1.1
v1.1.0
v1.0.0
[1.0.0] - 2021-03-02
Added
- Initial project architecture
- Support for automatic and manual parsing
- Automatic parser types for basic C# and Unity types
- DeveloperConsole class which exposes major components of console API
- README that contains outline of features and information about installation, getting started, and contributing