Releases: electronstudio/raylib-python-cffi
Releases · electronstudio/raylib-python-cffi
5.5.0.3
- add a bunch of env variables to configure build paths (requested by Nix but may be useful to others) (@Sigmanificient @3demax )
- switch Linux builds to use very old glibc for universal compatibility
- patch a bug in Raygui GuiGetStyle()
- make it easier to build yourself on windows (@blep )
- can now suppress startup message by doing
logging.basicConfig(level=logging.ERROR)
(@incognitojam ) - fix struct typedefs so you can now do
Texture2D()
orTexture()
if you prefer - update Physac to newer version by @victorfisac
- make the build pep517 compliant so it wont break next month when they remove support
Don't forget to check out the new examples from @blep:
5.5.0.2
- fix
raylib_dynamic
(again)
5.5.0.1
5.5.0.0
- Raylib version 5.5
- New backends! Install
raylib
package for standard,raylib_sdl
package for SDL backend orraylib_drm
for Linux framebuffer. Do not install more than one package. SDL is recommended because it handles fullscreen mode and controllers better. - Fixed typo in vector2 function names
5.0.0.5
The type stubs are now compatible with mypy type checking. All of the examples validate, but there's probably some usecases not covered so please report if you find a type that should be valid but isn't.
5.5.0.0.dev3
This is a dev release, so to install it you must specify the exact version:
pip3 install raylib==5.5.0.0.dev3
- Raylib version 5.5-dev
- New backends! Install
raylib
package for standard,raylib_sdl
package for SDL backend with better controller support, orraylib_drm
for Linux framebuffer. Do not install more than one package.
Please report in the comments whether these packages work for you and what system you are using!
5.0.0.4
Fixes a couple of build issues and improves error messages for users of the source distribution. (No changes if you're using the binary wheels.)
5.0.0.3
pyray
functions optimised to be almost as fast asraylib
functions. Please report any breakage!- Fixed some red underlines in type hints. Improved some error messages.
- Python 3.13 support.
- Raspberry Pi binaries (tested on Pi4).
- MacOS builds are now MacOS 12 x86 and Macos 14 ARM because CI doesn't support older versions. You'll have to compile from source if you are on older MacOS.
5.0.0.2
- Breaking: When a pointer type is required, e.g. in Raygui widgets that need a location to store the result data, you will now get an error rather a silent failure if you don't supply a pointer.
- Struct creation helper methods have been improved so you can use lists, ndarrays, etc as arguments. This is useful in creating a Mesh from a list of points: https://github.com/electronstudio/raylib-python-cffi/blob/master/examples/extra/mesh_creation.py
- Running in web browser with pygbag is now supported: https://electronstudio.github.io/raylib-python-cffi/README.html#running-in-a-web-browser
- Created a chatroom: Discord or Matrix
5.0.0.1
- Fix jpeg support
- Add binding for GLFW
- Improve .pyi stubs for autocompletion
- Lots of constant values added to defines.py
Thanks to @ashleysommer