Skip to content
This repository has been archived by the owner on May 1, 2022. It is now read-only.

Releases: NAFTeam/molter

v0.3.2

22 Dec 22:59
Compare
Choose a tag to compare
  • Bumped up minimum Dis-Snek version to 4.2.0. Technically, this is breaking, but I think anyone using this is already the latest version anyways.
  • Made MemberConverter be able to fetch users by user/nickname even if the guild is not chunked.

Full Changelog: v0.3.1...v0.3.2

v0.3.1

22 Dec 01:24
Compare
Choose a tag to compare
  • Parse and check parameters on decoration assignment, not on first run of the command. This means errors with parameters are discovered as they are loaded in, not over and over again as the command is run.
  • Changed parameter-analyzing errors to ValueError rather than BadArgument.

Full Changelog: v0.3.0...v0.3.1

v0.3.0

22 Dec 00:39
Compare
Choose a tag to compare
  • Added Greedy converters! They mostly function the same as discord.py's Greedy, though they do not work in variable or keyword-only arguments.
  • ...that's it.

Full Changelog: v0.2.0...v0.3.0

v0.2.0

21 Dec 17:43
Compare
Choose a tag to compare
  • Added support for Literals! Only objects with types with a constructor that accepts one argument will work (the primitive data types like str and int work well with it, so something like Literal["e"] works right out of the box).
  • Fixed weirdness with how quoted arguments were handled.
  • Slightly clearer error message for Union-related errors.

v0.1.0

20 Dec 17:38
Compare
Choose a tag to compare
  • Added proper support for variable arguments, handling type hints correctly.
  • Added support for inline advanced converters.
  • Fixed issues with Optionals at an end of a command.
  • Slight adjustments to error handling.

Full Changelog: v0.0.2...v0.1.0

v0.0.2

20 Dec 03:55
Compare
Choose a tag to compare
  • Added support for | union syntax.
  • Display clearer error messages for error messages involving unions.
  • Fixed consume rest behavior.
  • Added proper error handling for functions with more than 2 arguments.
  • Added support for 0 argument functions.

0.0.1b

19 Dec 19:42
Compare
Choose a tag to compare
0.0.1b Pre-release
Pre-release
  • Initial upload of files.
  • Basic conversion support for basic types and several Dis-Snek types added.
  • Custom converter support added.