File tree Expand file tree Collapse file tree 3 files changed +36
-3
lines changed
discord/ext/modal_paginator Expand file tree Collapse file tree 3 files changed +36
-3
lines changed Original file line number Diff line number Diff line change 1
1
from .core import ModalPaginator as ModalPaginator , PaginatorModal as PaginatorModal
2
2
from .custom_button import CustomButton as CustomButton
3
3
4
- __version__ = "1.3.0a "
4
+ __version__ = "1.3.0 "
5
5
__author__ = "Soheab"
6
6
__license__ = "MPL-2.0"
Original file line number Diff line number Diff line change 7
7
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
8
8
9
9
project = "modal-paginator"
10
- copyright = "2023, Soheab_"
10
+ copyright = "2023-2025 , Soheab_"
11
11
author = "Soheab_"
12
- release = "1.3.0a "
12
+ release = "1.3.0 "
13
13
14
14
# -- General configuration ---------------------------------------------------
15
15
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Original file line number Diff line number Diff line change @@ -8,6 +8,39 @@ Changelog
8
8
This page keeps a detailed human friendly rendering of what's new and changed
9
9
in specific versions.
10
10
11
+ v1.3.0
12
+ -------
13
+
14
+ .. warning ::
15
+
16
+ Heads up! This version is the last version that supports a lower version of discord.py than `2.5.2 `.
17
+
18
+ Please update your discord.py version to `2.5.2 ` or higher to use this extension.
19
+
20
+ Features
21
+ ~~~~~~~~
22
+
23
+ - :commit: `b17db0846db299c614f795e71112b578d3e7c2eb ` Added a support for ``__iter__ `` to :class: `.ModalPaginator `.
24
+ This means you can now easily iterate over all modals and their text inputs:
25
+
26
+ .. code-block :: python3
27
+
28
+ for modal, text_inputs in paginator:
29
+ ...
30
+ - :commit: `6adc7b2e4ff14ab75379b33e7c2a7d3480b3d42f ` Added two new kwargs to :meth: `.ModalPaginator.from_text_inputs `:
31
+
32
+ * ``max_inputs_per_modal ``
33
+
34
+ * ``titles_steps ``
35
+
36
+ See the kwarg's docstring for more information.
37
+
38
+ Bug Fixes
39
+ ~~~~~~~~~
40
+
41
+ - :commit: `ba5e8a980461640697429d6c58fff928ab9941ed ` Fix a bug where it couldn't edit
42
+ it's own message due to a semi-breaking change in discord.py 2.5.0.
43
+
11
44
v1.2.0
12
45
-------
13
46
You can’t perform that action at this time.
0 commit comments