Skip to content

Releases: cronyxllc/DeveloperConsole

v1.2.0

23 Mar 21:45

Choose a tag to compare

[1.2.0] - 2021-03-23

Added

  • Added a public overload for DeveloperConsole.RegisterCommand that takes an IConsoleCommand instance.
  • Added VerbCommand, a new IConsoleCommand implementation, with support for verb commands, as in the case of git push or git pull
    • Allows for multiple subcommands to be called from one single root command by specifying verbs
    • Use the RegisterVerb and its overloads to register verb implementations

Changed

  • Made the formatting of the help command more rigorous, supporting multi-line command descriptions and coloring built-in commands blue.
  • Renamed DeveloperConsole.RegisterCommand(string, Action<string>, string, string) overload to DeveloperConsole.RegisterCommandManual to avoid ambiguity with DeveloperConsole.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

23 Mar 16:13

Choose a tag to compare

[1.1.1] - 2021-03-23

Changed

  • Changed package.json version to reflect actual, current version

v1.1.0

23 Mar 01:52

Choose a tag to compare

[1.1.0] - 2021-03-22

Added

  • Added new built-in commands
    • rm: Removes files and directories
    • mkdir: Creates directories

Changed

  • Changed Third Party Notices.md markdown

v1.0.0

04 Mar 01:43

Choose a tag to compare

[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