Skip to content

Commit a83bffc

Browse files
committed
In JavaScriptEngineSwitcher.ChakraCore added support of ChakraCore version 1.3
1 parent cb2528a commit a83bffc

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

NuGet/JavaScriptEngineSwitcher.ChakraCore/JavaScriptEngineSwitcher.ChakraCore.nuspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@
1010
<projectUrl>http://github.com/Taritsyn/JavaScriptEngineSwitcher</projectUrl>
1111
<iconUrl>https://raw.githubusercontent.com/Taritsyn/JavaScriptEngineSwitcher/master/Icons/JavaScriptEngineSwitcher_ChakraCore_Logo128x128.png</iconUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13-
<description>JavaScriptEngineSwitcher.ChakraCore contains adapter `ChakraCoreJsEngine` (wrapper for the ChakraCore (http://github.com/Microsoft/ChakraCore) version 1.2). Project was based on the code of Chakra-Samples (http://github.com/Microsoft/Chakra-Samples) and jsrt-dotnet (http://github.com/robpaveza/jsrt-dotnet).
13+
<description>JavaScriptEngineSwitcher.ChakraCore contains adapter `ChakraCoreJsEngine` (wrapper for the ChakraCore (http://github.com/Microsoft/ChakraCore) version 1.3). Project was based on the code of Chakra-Samples (http://github.com/Microsoft/Chakra-Samples) and jsrt-dotnet (http://github.com/robpaveza/jsrt-dotnet).
1414

1515
For correct working of the ChakraCore require assemblies `msvcp120.dll` and `msvcr120.dll` from the Visual C++ Redistributable Packages for Visual Studio 2013.</description>
16-
<summary>JavaScriptEngineSwitcher.ChakraCore contains adapter `ChakraCoreJsEngine` (wrapper for the ChakraCore version 1.2).</summary>
16+
<summary>JavaScriptEngineSwitcher.ChakraCore contains adapter `ChakraCoreJsEngine` (wrapper for the ChakraCore version 1.3).</summary>
17+
<releaseNotes>ChakraCore was updated to version 1.3.</releaseNotes>
1718
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1819
<language>en-US</language>
1920
<tags>JavaScriptEngineSwitcher JavaScript ECMAScript ChakraCore</tags>

NuGet/JavaScriptEngineSwitcher.ChakraCore/readme.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,19 @@
1313
===========
1414
JavaScriptEngineSwitcher.ChakraCore contains adapter `ChakraCoreJsEngine`
1515
(wrapper for the ChakraCore (http://github.com/Microsoft/ChakraCore) version
16-
1.2). Project was based on the code of Chakra-Samples
16+
1.3). Project was based on the code of Chakra-Samples
1717
(http://github.com/Microsoft/Chakra-Samples) and jsrt-dotnet
1818
(http://github.com/robpaveza/jsrt-dotnet).
1919

2020
For correct working of the ChakraCore require assemblies `msvcp120.dll` and
2121
`msvcr120.dll` from the Visual C++ Redistributable Packages for Visual Studio
2222
2013.
2323

24+
=============
25+
RELEASE NOTES
26+
=============
27+
ChakraCore was updated to version 1.3.
28+
2429
====================
2530
POST-INSTALL ACTIONS
2631
====================

lib/ChakraCore/x64/ChakraCore.dll

115 KB
Binary file not shown.

lib/ChakraCore/x86/ChakraCore.dll

249 KB
Binary file not shown.

src/JavaScriptEngineSwitcher.ChakraCore/ChakraCoreJsEngine.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public sealed class ChakraCoreJsEngine : JsEngineBase
3030
/// <summary>
3131
/// Version of original JS engine
3232
/// </summary>
33-
private const string EngineVersion = "1.2";
33+
private const string EngineVersion = "1.3";
3434

3535
/// <summary>
3636
/// Instance of JS runtime

0 commit comments

Comments
 (0)