| OLD | NEW |
| 1 2011-05-02: Version 3.3.3 |
| 2 |
| 3 Added support for generating Visual Studio solution and project files |
| 4 using GYP. |
| 5 |
| 6 Implemented support for ARM EABI calling convention variation where |
| 7 floating-point arguments are passed in registers (hardfloat). |
| 8 |
| 9 Added Object::HasOwnProperty() to the API. |
| 10 |
| 11 Added support for compressing startup data to reduce binary size. This |
| 12 includes build time support and an API for the embedder to decompress |
| 13 the startup data before initializing V8. |
| 14 |
| 15 Reduced the profiling hooks overhead from >400% to 25% when using |
| 16 ll_prof. |
| 17 |
| 18 Performance improvements and bug fixes on all platforms. |
| 19 |
| 20 |
| 1 2011-04-27: Version 3.3.2 | 21 2011-04-27: Version 3.3.2 |
| 2 | 22 |
| 3 Fixed crash bug on ARM with no VFP3 hardware. | 23 Fixed crash bug on ARM with no VFP3 hardware. |
| 4 | 24 |
| 5 Fixed compilation of V8 without debugger support. | 25 Fixed compilation of V8 without debugger support. |
| 6 | 26 |
| 7 Improved performance on JSLint. | 27 Improved performance on JSLint. |
| 8 | 28 |
| 9 Added support Float64 WebGL arrays. | 29 Added support Float64 WebGL arrays. |
| 10 | 30 |
| 11 Fixed crash bug in regexp replace. | 31 Fixed crash bug in regexp replace. |
| 12 | 32 |
| 13 » | 33 |
| 14 2011-04-20: Version 3.3.1 | 34 2011-04-20: Version 3.3.1 |
| 15 | 35 |
| 16 Reduced V8 binary size by removing virtual functions from hydrogen. | 36 Reduced V8 binary size by removing virtual functions from hydrogen. |
| 17 | 37 |
| 18 Fixed crash bug on x64. | 38 Fixed crash bug on x64. |
| 19 | 39 |
| 20 Performance improvements on ARM and IA32. | 40 Performance improvements on ARM and IA32. |
| 21 | 41 |
| 22 | 42 |
| 23 2011-04-18: Version 3.3.0 | 43 2011-04-18: Version 3.3.0 |
| (...skipping 2692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2716 | 2736 |
| 2717 Improved debugger support by allowing nested break points and by | 2737 Improved debugger support by allowing nested break points and by |
| 2718 dealing with stack-overflows when compiling functions before | 2738 dealing with stack-overflows when compiling functions before |
| 2719 setting break points in them. | 2739 setting break points in them. |
| 2720 | 2740 |
| 2721 | 2741 |
| 2722 2008-07-03: Version 0.1.0 | 2742 2008-07-03: Version 0.1.0 |
| 2723 | 2743 |
| 2724 Initial export. | 2744 Initial export. |
| 2725 | 2745 |
| OLD | NEW |