Skip to content

Commit 398f630

Browse files
committed
In JavaScriptEngineSwitcher.V8 added support of Microsoft ClearScript.V8 version 5.4.7 (support of V8 version 5.3.332.45)
1 parent abdb10a commit 398f630

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

NuGet/JavaScriptEngineSwitcher.V8/JavaScriptEngineSwitcher.V8.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<projectUrl>http://github.com/Taritsyn/JavaScriptEngineSwitcher</projectUrl>
1111
<iconUrl>https://raw.githubusercontent.com/Taritsyn/JavaScriptEngineSwitcher/master/Icons/JavaScriptEngineSwitcher_V8_Logo128x128.png</iconUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13-
<description>JavaScriptEngineSwitcher.V8 contains adapter `V8JsEngine` (wrapper for the Microsoft ClearScript.V8 (http://clearscript.codeplex.com) version of June 20, 2016 with support of V8 version 5.1.281.65). For correct working of the Microsoft ClearScript.V8 require assemblies `msvcp120.dll` and `msvcr120.dll` from the Visual C++ Redistributable Packages for Visual Studio 2013.</description>
14-
<summary>JavaScriptEngineSwitcher.V8 contains adapter `V8JsEngine` (wrapper for the Microsoft ClearScript.V8 version of June 20, 2016 with support of V8 version 5.1.281.65).</summary>
15-
<releaseNotes>Removed dependency on `System.Configuration.dll` (no longer supported configuration by using the Web.config and App.config files).</releaseNotes>
13+
<description>JavaScriptEngineSwitcher.V8 contains adapter `V8JsEngine` (wrapper for the Microsoft ClearScript.V8 (http://clearscript.codeplex.com) version 5.4.7 with support of V8 version 5.3.332.45). For correct working of the Microsoft ClearScript.V8 require assemblies `msvcp120.dll` and `msvcr120.dll` from the Visual C++ Redistributable Packages for Visual Studio 2013.</description>
14+
<summary>JavaScriptEngineSwitcher.V8 contains adapter `V8JsEngine` (wrapper for the Microsoft ClearScript.V8 version 5.4.7 with support of V8 version 5.3.332.45).</summary>
15+
<releaseNotes>Microsoft ClearScript.V8 was updated to version 5.4.7 (support of V8 version 5.3.332.45).</releaseNotes>
1616
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1717
<language>en-US</language>
1818
<tags>JavaScriptEngineSwitcher JavaScript ECMAScript V8 ClearScript</tags>

NuGet/JavaScriptEngineSwitcher.V8/readme.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
DESCRIPTION
1313
===========
1414
JavaScriptEngineSwitcher.V8 contains adapter `V8JsEngine` (wrapper for the
15-
Microsoft ClearScript.V8 (http://clearscript.codeplex.com) version of
16-
June 20, 2016 with support of V8 version 5.1.281.65. For correct working of the
17-
Microsoft ClearScript.V8 require assemblies `msvcp120.dll` and `msvcr120.dll`
18-
from the Visual C++ Redistributable Packages for Visual Studio 2013.
15+
Microsoft ClearScript.V8 (http://clearscript.codeplex.com) version 5.4.7 with
16+
support of V8 version 5.3.332.45. For correct working of the Microsoft
17+
ClearScript.V8 require assemblies `msvcp120.dll` and `msvcr120.dll` from the
18+
Visual C++ Redistributable Packages for Visual Studio 2013.
1919

2020
=============
2121
RELEASE NOTES
2222
=============
23-
Removed dependency on `System.Configuration.dll` (no longer supported
24-
configuration by using the Web.config and App.config files).
23+
Microsoft ClearScript.V8 was updated to version 5.4.7 (support of V8 version
24+
5.3.332.45).
2525

2626
====================
2727
POST-INSTALL ACTIONS

lib/ClearScript/ClearScript.dll

512 Bytes
Binary file not shown.
-4 KB
Binary file not shown.

lib/ClearScript/x64/v8-x64.dll

638 KB
Binary file not shown.
-3.5 KB
Binary file not shown.

lib/ClearScript/x86/v8-ia32.dll

452 KB
Binary file not shown.

precompiled/ClearScriptPrecompiled/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2016.6.20",
2+
"version": "5.4.7",
33

44
"frameworks": {
55
"net451": {

src/JavaScriptEngineSwitcher.V8.Net4/JavaScriptEngineSwitcher.V8.Net40.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
</ProjectReference>
4444
</ItemGroup>
4545
<ItemGroup>
46-
<Reference Include="ClearScript, Version=5.4.6.0, Culture=neutral, PublicKeyToken=935d0c957da47c73, processorArchitecture=MSIL">
46+
<Reference Include="ClearScript, Version=5.4.7.0, Culture=neutral, PublicKeyToken=935d0c957da47c73, processorArchitecture=MSIL">
4747
<SpecificVersion>False</SpecificVersion>
4848
<HintPath>..\..\lib\ClearScript\ClearScript.dll</HintPath>
4949
</Reference>

src/JavaScriptEngineSwitcher.V8/V8JsEngine.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public sealed class V8JsEngine : JsEngineBase
2727
/// <summary>
2828
/// Version of original JS engine
2929
/// </summary>
30-
private const string EngineVersion = "5.1.281.65";
30+
private const string EngineVersion = "5.3.332.45";
3131

3232
/// <summary>
3333
/// V8 JS engine
@@ -106,7 +106,7 @@ public V8JsEngine(V8Settings settings)
106106
{
107107
V8Settings v8Settings = settings ?? new V8Settings();
108108

109-
V8RuntimeConstraints constraints = new V8RuntimeConstraints
109+
var constraints = new V8RuntimeConstraints
110110
{
111111
MaxNewSpaceSize = v8Settings.MaxNewSpaceSize,
112112
MaxOldSpaceSize = v8Settings.MaxOldSpaceSize,

0 commit comments

Comments
 (0)