File tree 2 files changed +22
-1
lines changed
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:
18
18
* Security: in case of vulnerabilities.
19
19
20
20
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
+
21
42
### [ v0.8.1] - 29-04-2022
22
43
23
44
Fixed:
Original file line number Diff line number Diff line change 8
8
from .base import * # noqa: F401,F403
9
9
from .gui import WgpuCanvasInterface # noqa: F401,F403
10
10
11
- __version__ = "0.8.1 "
11
+ __version__ = "0.8.2 "
12
12
version_info = tuple (map (int , __version__ .split ("." )))
13
13
14
14
You can’t perform that action at this time.
0 commit comments