14
0
forked from pool/python-pyglet

- Update to 2.0.9:

* Changes and Improvements
    + Initialize AudioDriver when media module is imported, prevent pause
      on first sound playback.
    + New TextureArrayBin class for managing TextureArray based atlases.
    + text: Caret supports RGBA color, in line with other pyglet objects.
    + gui: Add alpha value to the Caret's default color.
    + shapes: Allow checking if a point is in a shape, using the in operator
    + Add missing OpenGL extensions
    + Add support for FFmpeg 6.0
    + Sprite width & height properties are now settable, allowing scaling by
      pixels
    + app: Passing None to pyglet.app.run will disable automatic Window
      redraws.
    + window: Add a Window.draw method to help when manually scheduling
      Window redraws.
    + shapes: Add a border thickness setter to BorderedRectangle
  * Bugfixes
    + Fix numerous bugs remaining with IncrementalTextLayout, with
      translation, caret, etc. #786
    + shader: add missing sampler type definitions.
    + Fix broken struct format strings in png and ttf decoders.
    + text: Clear Group cache when a Layout's Group is changed.
    + Fix incorrect string formatting in the timer.py example.
    + input: ensure Xinput controllers dispatch events on the main thread
* Switch to pyproject macros.
* Remove unneeded futures module from {Build,}Requires.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyglet?expand=0&rev=46
This commit is contained in:
2023-08-29 06:53:54 +00:00
committed by Git OBS Bridge
parent c537a871f1
commit d2182403df
4 changed files with 43 additions and 11 deletions

View File

@@ -1,3 +1,34 @@
-------------------------------------------------------------------
Tue Aug 29 06:52:57 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 2.0.9:
* Changes and Improvements
+ Initialize AudioDriver when media module is imported, prevent pause
on first sound playback.
+ New TextureArrayBin class for managing TextureArray based atlases.
+ text: Caret supports RGBA color, in line with other pyglet objects.
+ gui: Add alpha value to the Caret's default color.
+ shapes: Allow checking if a point is in a shape, using the in operator
+ Add missing OpenGL extensions
+ Add support for FFmpeg 6.0
+ Sprite width & height properties are now settable, allowing scaling by
pixels
+ app: Passing None to pyglet.app.run will disable automatic Window
redraws.
+ window: Add a Window.draw method to help when manually scheduling
Window redraws.
+ shapes: Add a border thickness setter to BorderedRectangle
* Bugfixes
+ Fix numerous bugs remaining with IncrementalTextLayout, with
translation, caret, etc. #786
+ shader: add missing sampler type definitions.
+ Fix broken struct format strings in png and ttf decoders.
+ text: Clear Group cache when a Layout's Group is changed.
+ Fix incorrect string formatting in the timer.py example.
+ input: ensure Xinput controllers dispatch events on the main thread
* Switch to pyproject macros.
* Remove unneeded futures module from {Build,}Requires.
-------------------------------------------------------------------
Thu May 4 19:33:34 UTC 2023 - Dirk Müller <dmueller@suse.com>