Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
almarklein committed Oct 6, 2022
1 parent f59900b commit 4eaac1a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,27 @@ Possible sections in each release:
* Security: in case of vulnerabilities.


### [v0.8.2] - 06-10-2022

Fixed:

* Fixed imports for PyQt6.
* Keyboard events work again for Qt 6.3.
* Fixed that overloading ``handle_event()`` did not work for a canvas based on a Qt or wx main widget/window.

Added:

* Can now add a wildcard ("*") to ``add_event_handler`` to handle all events.
* Shader error messages show more context, making shader debugging much easier.
* VSync can now be turned off to raise the frame rate when needed. Note that FPS measurements are still a poor performance benchmark!

Changed:

* GLFW canvas does not draw when minimized anymore.
* The offscreen and Jupyter canvas now use the srgb format for consistency with normal canvases.
* The examples have been adjusted for srgb colors.


### [v0.8.1] - 29-04-2022

Fixed:
Expand Down
2 changes: 1 addition & 1 deletion wgpu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from .base import * # noqa: F401,F403
from .gui import WgpuCanvasInterface # noqa: F401,F403

__version__ = "0.8.1"
__version__ = "0.8.2"
version_info = tuple(map(int, __version__.split(".")))


Expand Down

0 comments on commit 4eaac1a

Please sign in to comment.