Skip to content

Releases: Mqzn/mCommands

v1.1.7

10 Jul 21:17
Compare
Choose a tag to compare

What's new in 1.1.7?

  • Fixed flags bug

v1.1.6

22 Apr 20:44
Compare
Choose a tag to compare

What's new in v1.1.6?

  • NEW FEATURE: Custom error/exception handlers for commands execution
  • Converted kotlin code to java manually regarding some developers' requests
  • Some code improvements and clean up

v1.1.5

17 Apr 09:46
Compare
Choose a tag to compare

What's new in 1.1.5?

  • FIXED: not checking properly for syntax permission on execution

  • FIXED: permission-filtering the subcommand suggestions to the player

  • NEW FEATURE: Added execution coordinator per command (each command will have it's own execution coordinator)

  • NEW FEATURE: Changed the basic format of annotated command method, allowing the ability to use the raw-arguments entered :
    Old-Format -> public void exec(YourSenderType sender)
    New-Format -> public void exec(YourSenderType sender, CommandArgs args)

  • Added more documentation in the code

  • Removed all annoying debugging

v1.1.4

17 Apr 09:25
Compare
Choose a tag to compare

Replaced by 1.1.5 due to technical issues,
DO NOT USE THIS VERSION IN THE DEPENDENCIES SECTION

v1.1.3

14 Apr 22:35
Compare
Choose a tag to compare

What's new about 1.1.3 ?

v1.1.2

26 Jun 16:58
Compare
Choose a tag to compare

What's new about 1.1.2 ?

  • Made Cooldown caption message configurable (since it's originally dynamic , it wasn't configurable)
  • Fixed greedy argument detection issue
  • Minor code improvements and additions.

v1.1.1

18 Jun 10:58
Compare
Choose a tag to compare

What's new about v1.1.1?

  • Recoded the commands/subcommands help API to be able to condense subcommands into one syntax which will contain a help syntax like a tree of help menus
  • Fixed bugs regarding subcommands searching in the command tree
  • Recoded SubCommandArgumentWrapper and refactored it to CommandSubTree
  • Added new caption key called UNKNOWN_HELP_PAGE that is sent when a user enters help page that doesn't exist
  • Minor code structure improvements & cleaned some parts of the code
  • Removed a redundant class in the velocity platform

v1.1.0

31 May 13:09
Compare
Choose a tag to compare

What's new about 1.1.0?

  • Fixed bug regarding permissions
  • Added arguments for Location , World and UUID in spigot platform
  • @Range now autocompletes from min to max Inclusively (instead of exclusively)
  • Minor improvements to the code structure

v1.0.9

24 May 05:25
Compare
Choose a tag to compare

What's new about 1.0.9?

  • Fixed bugs regarding tab completion
  • Fixed bugs regarding ambiguity check
  • Ambiguity check is now more accurate
  • Fixed exception throwed when auto completing a dynamic argument

HotFixes #4

21 May 02:04
Compare
Choose a tag to compare

What's new about 1.0.8?

  • Fixed bugs regarding tab completion of subcommands
  • Fixed redundant exceptions thrown when using empty syntax in a subcommand
  • Fixed abnormal help message when registering subcommands inside of a command
  • Minor code improvement