Skip to content

Commit

Permalink
Ready v2.0.6 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
benmoran56 committed May 2, 2023
1 parent a44e83a commit 6e895ac
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions RELEASE_NOTES
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
pyglet 2.0.6

Changes and Improvements
------------------------
- Initialize AudioDriver when media module is imported, prevent pause on first sound playback.
- New TextureArrayBin class for managing TextureArray based atlases.
- macOS: implement "file_drop" support for Windows.
- macOS: add support for CoreAudio, allowing native mp3, aiff, etc. support without FFMpeg.
- macOS: alternative NSApplication based event loop, to avoid missing events on M1 Macs. #794
- text: Caret supports RGBA color, in line with other pyglet objects.
- Windows: New context manager for handling of safer handling of platform resources.

Bugfixes
--------
- Fix numerous bugs remaining with IncrementalTextLayout, with translation, caret, etc. #786
- Windows: fix incorrect on_resize values.
- macOS: numerous memory leak fixes.
- shader: add missing sampler type definitions.
- Add missing docstrings, and various documentation fixes.


pyglet 2.0.5

Changes and Improvements
Expand Down
2 changes: 1 addition & 1 deletion pyglet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from typing import TYPE_CHECKING

#: The release version
version = '2.0.5'
version = '2.0.6'
__version__ = version

MIN_PYTHON_VERSION = 3, 8
Expand Down

0 comments on commit 6e895ac

Please sign in to comment.