Skip to content

PySDL2 0.9.17

Latest
Compare
Choose a tag to compare
@a-hurst a-hurst released this 30 Dec 18:34
· 2 commits to master since this release

As SDL2 updates have slowed down while SDL3 development has ramped up, updates to PySDL2 have likewise gotten less frequent. This release mostly just updates the bindings to the latest versions of SDL2 (2.30.10), SDL_image (2.8.0), and SDL_mixer (2.8.0). No major clean-up or development on the sdl2.ext side this time, but I have been picking away at an alpha version of PySDL3!

Apart from the binding updates, the only notable change is the addition of a new sdl2.ext function get_key_state(), which allows checking the state (up or down) of a given keyboard key independently of the SDL event loop.

Changelog

  • Updated to wrap new functions and constants in SDL 2.30.10.
  • Updated to wrap new functions and constants in SDL_mixer 2.8.0
  • Updated to wrap new function in SDL_image 2.8.0.
  • Added a new function sdl2.ext.get_key_state for checking if a given key is currently down or up independently of the SDL event queue.