Skip to content

Commit 33a24b6

Browse files
committed
Prepare 19.4.0 release.
1 parent 4822c2b commit 33a24b6

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](https://semver.org/) since version
66

77
## [Unreleased]
88

9+
## [19.4.0] - 2025-08-06
10+
911
### Changed
1012

1113
- Checking "WindowSizeChanged" was not valid since SDL 3 and was also not valid in previous examples.
@@ -101,6 +103,8 @@ Be sure to run [Mypy](https://mypy.readthedocs.io/en/stable/getting_started.html
101103
- `WindowFlags.FULLSCREEN_DESKTOP` is now just `WindowFlags.FULLSCREEN`
102104
- `tcod.sdl.render.Renderer.integer_scaling` removed.
103105
- Removed `callback`, `spec`, `queued_samples`, `queue_audio`, and `dequeue_audio` attributes from `tcod.sdl.audio.AudioDevice`.
106+
- `tcod.event.WindowResized`: `type="WindowSizeChanged"` removed and must no longer be checked for.
107+
`EventDispatch.ev_windowsizechanged` is no longer called.
104108

105109
### Fixed
106110

tcod/event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@ class WindowResized(WindowEvent):
786786
width (int): The current width of the window.
787787
height (int): The current height of the window.
788788
789-
.. versionchanged:: Unreleased
789+
.. versionchanged:: 19.4
790790
Removed "WindowSizeChanged" type.
791791
"""
792792

0 commit comments

Comments
 (0)