File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff 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
2344Fixed:
Original file line number Diff line number Diff line change 88from .base import * # noqa: F401,F403
99from .gui import WgpuCanvasInterface # noqa: F401,F403
1010
11- __version__ = "0.8.1 "
11+ __version__ = "0.8.2 "
1212version_info = tuple (map (int , __version__ .split ("." )))
1313
1414
You can’t perform that action at this time.
0 commit comments