Skip to content

1.3.2

Compare
Choose a tag to compare
@Despical Despical released this 30 Jan 18:40
· 127 commits to main since this release

1.3.2 Release Notes

  • Added support for sub-command aliases.
  • Now framework allows users to create sub-commands without creating main command.

Supported Behaviours

	@Command(
		name = "test0",
		aliases = {"cmdName", "name0.randomArg0"} // both will be registered
	)
	public void test0(CommandArguments arguments) {}

	@Command(
		name = "test1.arg1",
		aliases = {"oneWord", "name.randomArg1"} // only second one will be registered
	)
	public void test1(CommandArguments arguments) {}

Full Changelog: 1.3.1...1.3.2