Skip to content

Commit 4eaac1a

Browse files
committed
Bump version
1 parent f59900b commit 4eaac1a

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,27 @@ Possible sections in each release:
1818
* Security: in case of vulnerabilities.
1919

2020

21+
### [v0.8.2] - 06-10-2022
22+
23+
Fixed:
24+
25+
* Fixed imports for PyQt6.
26+
* Keyboard events work again for Qt 6.3.
27+
* Fixed that overloading ``handle_event()`` did not work for a canvas based on a Qt or wx main widget/window.
28+
29+
Added:
30+
31+
* Can now add a wildcard ("*") to ``add_event_handler`` to handle all events.
32+
* Shader error messages show more context, making shader debugging much easier.
33+
* VSync can now be turned off to raise the frame rate when needed. Note that FPS measurements are still a poor performance benchmark!
34+
35+
Changed:
36+
37+
* GLFW canvas does not draw when minimized anymore.
38+
* The offscreen and Jupyter canvas now use the srgb format for consistency with normal canvases.
39+
* The examples have been adjusted for srgb colors.
40+
41+
2142
### [v0.8.1] - 29-04-2022
2243

2344
Fixed:

wgpu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .base import * # noqa: F401,F403
99
from .gui import WgpuCanvasInterface # noqa: F401,F403
1010

11-
__version__ = "0.8.1"
11+
__version__ = "0.8.2"
1212
version_info = tuple(map(int, __version__.split(".")))
1313

1414

0 commit comments

Comments
 (0)