@@ -20,11 +20,16 @@ See docs/process.md for more on how version tagging works.
20
20
21
21
3.1.54 (in development)
22
22
-----------------------
23
- - Added ` --use-port ` option to ` emcc ` . This option allows ports to be enabled
24
- by name and is designed to replace all existing ` -sUSE_XXX ` settings for
25
- ports. You can use ` --show-ports ` to get the list of available ports that
23
+ - Added ` --use-port ` option to ` emcc ` . This option allows ports to be enabled
24
+ by name and is designed to replace all existing ` -sUSE_XXX ` settings for
25
+ ports. You can use ` --show-ports ` to get the list of available ports that
26
26
can be used with this new option. (#21214 )
27
-
27
+ - ` --pre-js ` and ` --post-js ` files can now opt into being run through the JS
28
+ preprocessor. This change was originally landed in #18525 , but it got
29
+ reverted in #19006 . Now it requires explicit opt-in by adding ` #preprocess ` to
30
+ the top of the JS file. This is useful as it allows things like `{{{
31
+ POINTER_SIZE }}}` and ` {{{ makeGetValue(..) }}}` to be used in pre/post JS
32
+ files, just like they can be in JS library files. (#21227 )
28
33
29
34
3.1.53 - 01/29/24
30
35
-----------------
@@ -68,7 +73,7 @@ See docs/process.md for more on how version tagging works.
68
73
is intending to target them today. (#20924 )
69
74
- C++ objects passed into embind's val via constructors, methods, and call
70
75
function will not be automatically destroyed after the function call. This
71
- makes the behavior consistent for invocations.
76
+ makes the behavior consistent for invocations.
72
77
- The ` SUPPORT_ERRNO ` setting is now deprecated as it only controlled setting
73
78
errno from JS library functions and emscripten no longer requires this.
74
79
(#21074 )
@@ -140,7 +145,7 @@ See docs/process.md for more on how version tagging works.
140
145
- The ` glfwSetWindowSize ` function no longer switches to fullscreen when the
141
146
width/height provided as parameters match the screen size. This behavior
142
147
now matches the behavior of SDL and glut. In order to switch to fullscreen,
143
- the client code should invoke ` Module.requestFullscreen(...) ` from a user
148
+ the client code should invoke ` Module.requestFullscreen(...) ` from a user
144
149
triggered event otherwise the browser raises an error. (#20600 )
145
150
146
151
3.1.48 - 11/05/23
@@ -375,7 +380,7 @@ See docs/process.md for more on how version tagging works.
375
380
- When targeting node, and using ` -sMODULARIZE ` , we no longer internally catch
376
381
unhandled promise rejections or exit status code. That is to say the,
377
382
` NODEJS_CATCH_REJECTION ` and ` NODEJS_CATCH_EXIT ` are no longer compatible
378
- with ` -sMODULARIZE ` .
383
+ with ` -sMODULARIZE ` .
379
384
380
385
3.1.33 - 03/08/23
381
386
-----------------
@@ -396,7 +401,7 @@ See docs/process.md for more on how version tagging works.
396
401
(#18861 )
397
402
- The ` emscripten_proxy_async_with_callback ` API was replaced with a simpler
398
403
` emscripten_proxy_callback ` API that takes a second callback to be called if
399
- the worker thread dies before completing the proxied work.
404
+ the worker thread dies before completing the proxied work.
400
405
401
406
3.1.32 - 02/17/23
402
407
-----------------
0 commit comments