OLD | NEW |
| 1 2008-09-11: Version 0.3.1 |
| 2 |
| 3 Fixed a number of build issues. |
| 4 |
| 5 Fixed problem with missing I-cache flusing on ARM. |
| 6 |
| 7 Changed space layout in memory management by spliting up |
| 8 code space into old data space and code space. |
| 9 |
| 10 Added utf-8 conversion support to the API. |
| 11 |
| 12 Optimized repeated calls to eval with the same strings. These |
| 13 repeated calls are common in web applications. |
| 14 |
| 15 Added Xcode project file. |
| 16 |
| 17 Optimized a couple of Array operation. |
| 18 |
| 19 Fixed parser bug by checking for end-of-string when parsing break |
| 20 and continue. |
| 21 |
| 22 Fixed problem where asian characters were not categorized as |
| 23 letters. |
| 24 |
| 25 Fixed bug that disallowed calling functions fetched from an array |
| 26 using a string as an array index. |
| 27 |
| 28 Fixed bug where the internal field count on object templates were |
| 29 sometimes ignored. |
| 30 |
| 31 Added -f option to the shell sample for compatibility with other |
| 32 engines. |
| 33 |
| 34 Added source info to TryCatches in the API. |
| 35 |
| 36 Fixed problem where the seed for the random number generator was |
| 37 clipped in a double to unsigned int conversion. |
| 38 |
| 39 Fixed bug where cons string symbols were sometimes converted to |
| 40 non-symbol flat strings during GC. |
| 41 |
| 42 Fixed bug in error reporting when attempting to convert null to an |
| 43 object. |
| 44 |
| 45 |
1 2008-09-04: Version 0.3.0 | 46 2008-09-04: Version 0.3.0 |
2 | 47 |
3 Added support for running tests on the ARM simulator. | 48 Added support for running tests on the ARM simulator. |
4 | 49 |
5 Fixed bug in the 'in' operator where negative indices were not | 50 Fixed bug in the 'in' operator where negative indices were not |
6 treated correctly. | 51 treated correctly. |
7 | 52 |
8 Fixed build issues on gcc-4.3.1. | 53 Fixed build issues on gcc-4.3.1. |
9 | 54 |
10 Changed Date.prototype.toLocaleTimeString to not print the | 55 Changed Date.prototype.toLocaleTimeString to not print the |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 | 258 |
214 Improved debugger support by allowing nested break points and by | 259 Improved debugger support by allowing nested break points and by |
215 dealing with stack-overflows when compiling functions before | 260 dealing with stack-overflows when compiling functions before |
216 setting break points in them. | 261 setting break points in them. |
217 | 262 |
218 | 263 |
219 2008-07-03: Version 0.1.0 | 264 2008-07-03: Version 0.1.0 |
220 | 265 |
221 Initial export. | 266 Initial export. |
222 | 267 |
OLD | NEW |