Changelog

This page keeps a detailed human friendly rendering of what’s new and changed in specific versions.

v1.3.0

Warning

Heads up! This version is the last version that supports a lower version of discord.py than 2.5.2.

Please update your discord.py version to 2.5.2 or higher to use this extension.

Features

  • (b17db08) Added a support for __iter__ to ModalPaginator. This means you can now easily iterate over all modals and their text inputs:

    for modal, text_inputs in paginator:
        ...
    
  • (6adc7b2) Added two new kwargs to ModalPaginator.from_text_inputs():

    • max_inputs_per_modal

    • titles_steps

    See the kwarg’s docstring for more information.

Bug Fixes

  • (ba5e8a9) Fix a bug where it couldn’t edit it’s own message due to a semi-breaking change in discord.py 2.5.0.

v1.2.0

Features

Bug Fixes

v1.1.1

Miscellaneous

  • (92d852a) Bumped the minimum discord.py version required. From 2.0.0 to 2.2.0.

v1.1.0

Features

Bug Fixes

  • (2f032a5) Fix not being able to remove a “default” button using the buttons= kwarg.

Miscellaneous

v1.0.0

  • First stable release!

  • Added the ability to customize the buttons of the paginator. See the buttons= kwarg on ModalPaginator for more information.

v0.0.1

  • Initial release!