File tree 2 files changed +27
-1
lines changed
2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,32 @@ Possible sections in each release:
18
18
* Security: in case of vulnerabilities.
19
19
20
20
21
+ ### [ v0.8.3] - 06-01-2023
22
+
23
+ Fixed:
24
+
25
+ * Prevent Qt warning about setting dpi awareness (#320 )
26
+ * Make canvases close when they get deleted (#319 )
27
+ * Fix qt canvas in ipython (#315 )
28
+ * Make offscreen canvas closable (#309 )
29
+ * Fix that the offscreen canvas had it size hardcoded, ignoring the given size (#317 )
30
+ * Fixed renaming of ` queue ` in docs (#308 )
31
+ * Fix using ` .draw_frame ` on qt canvas (#304 )
32
+ * Add missing dev dependencies (#295 )
33
+
34
+ Added:
35
+
36
+ * A shadertoy utility, plus examples (#312 )
37
+
38
+ Changed:
39
+
40
+ * Improve the error prompt when wgsl code is multi line error (#311 , #316 )
41
+ * Tests: execute examples in the test process (#310 )
42
+ * Package only the release binary (not the debug build) (#299 )
43
+ * Codegen: uses in-memory file system during code generation (#303 )
44
+ * Improve readme (#290 , #302 , #314 )
45
+
46
+
21
47
### [ v0.8.2] - 06-10-2022
22
48
23
49
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.2 "
11
+ __version__ = "0.8.3 "
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