@@ -98,7 +98,7 @@ class TextInputType(enum.IntEnum):
98
98
:any:`Window.start_text_input`
99
99
https://wiki.libsdl.org/SDL3/SDL_TextInputType
100
100
101
- .. versionadded:: Unreleased
101
+ .. versionadded:: 19.1
102
102
"""
103
103
104
104
TEXT = lib .SDL_TEXTINPUT_TYPE_TEXT
@@ -128,7 +128,7 @@ class Capitalization(enum.IntEnum):
128
128
:any:`Window.start_text_input`
129
129
https://wiki.libsdl.org/SDL3/SDL_Capitalization
130
130
131
- .. versionadded:: Unreleased
131
+ .. versionadded:: 19.1
132
132
"""
133
133
134
134
NONE = lib .SDL_CAPITALIZE_NONE
@@ -449,7 +449,7 @@ def start_text_input(
449
449
:any:`set_text_input_area`
450
450
https://wiki.libsdl.org/SDL3/SDL_StartTextInputWithProperties
451
451
452
- .. versionadded:: Unreleased
452
+ .. versionadded:: 19.1
453
453
"""
454
454
props = Properties ()
455
455
props [("SDL_PROP_TEXTINPUT_TYPE_NUMBER" , int )] = int (type )
@@ -473,7 +473,7 @@ def set_text_input_area(self, rect: tuple[int, int, int, int], cursor: int) -> N
473
473
:any:`start_text_input`
474
474
https://wiki.libsdl.org/SDL3/SDL_SetTextInputArea
475
475
476
- .. versionadded:: Unreleased
476
+ .. versionadded:: 19.1
477
477
"""
478
478
_check (lib .SDL_SetTextInputArea (self .p , (rect ,), cursor ))
479
479
@@ -483,7 +483,7 @@ def stop_text_input(self) -> None:
483
483
.. seealso::
484
484
:any:`start_text_input`
485
485
486
- .. versionadded:: Unreleased
486
+ .. versionadded:: 19.1
487
487
"""
488
488
_check (lib .SDL_StopTextInput (self .p ))
489
489
0 commit comments