blob: c956a569117ade2405f6953a134c2057b49ab12d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
## 0.4.6
### Bug Fixes
* Compatibility with Node.js 0.10.
## 0.4.5
### Bug Fixes
* new Worker("filename.js") was broken on OS X. (@dfellis)
## 0.4.3
### Bug Fixes
* Fix Linux compilation issue introduced in 0.4.1. (@dfellis)
* `importScripts` now checks if the files have been read entirely,
instead of (potentially) evaluating part of the file in case
of filesystem failure.
## 0.4.2
### Global Worker API
* Set `onmessage = function(event) { ... }` directly now works
as specced. (Previously it required `self.onmessage = ...`.)
## 0.4.1
### Global Worker API
* Add `importScripts` for loading on-disk files.
* Add `console.log` and `console.error` from thread.js.
## 0.4.0
* Support for Windows with Node.js 0.9.3+.
## 0.3.2
* Fix BSON building on SunOS.
## 0.3.1
* Switch to BSON instead of JSON for message serialization.
Note that neither one supports circular structures or
native buffer objects yet.
## 0.3.0
* Require Node.js 0.8.
## 0.2.3
* Add SunOS to supported OSs; tested on Linux.
## 0.2.2
* Allow an empty `new Worker()` constructor.
* Update API documentation in README.
## 0.2.1
* Allow any JSON-serializable structures in postMessage/onmessage.
## 0.2.0
* Initial release.
|