Skip to content

Commit 3208e12

Browse files
committed
Version 1.1.12:
1. In JavaScriptEngineSwitcher.V8 added support of Microsoft ClearScript.V8 version of August 1, 2014; 2. In JavaScriptEngineSwitcher.Jint added support of Jint version of August 16, 2014.
1 parent fef3db8 commit 3208e12

File tree

15 files changed

+39
-26
lines changed

15 files changed

+39
-26
lines changed

Binaries/ClearScript/ClearScript.dll

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

Binaries/Jint/Jint.dll

220 KB
Binary file not shown.

Binaries/Jint/LICENSE.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
BSD 2-Clause License
2+
3+
Copyright (c) 2013, Sebastien Ros
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
7+
8+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
9+
10+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
11+
12+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change log
22
==========
33

4+
## August 19, 2014 - v1.1.12
5+
6+
* In JavaScriptEngineSwitcher.V8 added support of Microsoft ClearScript.V8 version of August 1, 2014
7+
* In JavaScriptEngineSwitcher.Jint added support of Jint version of August 16, 2014
8+
49
## July 22, 2014 - v1.1.11
510

611
* In JavaScriptEngineSwitcher.Msie added support of MSIE JavaScript Engine version 1.4.4

JavaScriptEngineSwitcher.Jint/JavaScriptEngineSwitcher.Jint.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<ItemGroup>
4141
<Reference Include="Jint, Version=2.1.0.0, Culture=neutral, PublicKeyToken=2e92ba9c8d81157f, processorArchitecture=MSIL">
4242
<SpecificVersion>False</SpecificVersion>
43-
<HintPath>..\packages\Jint.2.2.0\lib\portable-net40+sl50+win+wp80\Jint.dll</HintPath>
43+
<HintPath>..\Binaries\Jint\Jint.dll</HintPath>
4444
</Reference>
4545
<Reference Include="System" />
4646
<Reference Include="System.Core" />
@@ -54,7 +54,6 @@
5454
<None Include="..\JavaScriptEngineSwitcher.snk">
5555
<Link>JavaScriptEngineSwitcher.snk</Link>
5656
</None>
57-
<None Include="packages.config" />
5857
</ItemGroup>
5958
<ItemGroup>
6059
<ProjectReference Include="..\JavaScriptEngineSwitcher.Core\JavaScriptEngineSwitcher.Core.csproj">

JavaScriptEngineSwitcher.Jint/JintJsEngine.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public sealed class JintJsEngine : JsEngineBase
2626
/// <summary>
2727
/// Version of original JavaScript engine
2828
/// </summary>
29-
private const string ENGINE_VERSION = "2.2.0";
29+
private const string ENGINE_VERSION = "Aug 16, 2014";
3030

3131
/// <summary>
3232
/// Jint JS engine

JavaScriptEngineSwitcher.Jint/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("4b51319e-014f-4731-8a80-15b5c58f3a72")]
1515

16-
[assembly: AssemblyVersion("1.1.10.0")]
17-
[assembly: AssemblyFileVersion("1.1.10.0")]
16+
[assembly: AssemblyVersion("1.1.12.0")]
17+
[assembly: AssemblyFileVersion("1.1.12.0")]

JavaScriptEngineSwitcher.Jint/packages.config

Lines changed: 0 additions & 4 deletions
This file was deleted.

JavaScriptEngineSwitcher.V8/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("684edd94-43fe-4486-a4f3-6b9197d10ebf")]
1515

16-
[assembly: AssemblyVersion("1.1.10.0")]
17-
[assembly: AssemblyFileVersion("1.1.10.0")]
16+
[assembly: AssemblyVersion("1.1.12.0")]
17+
[assembly: AssemblyFileVersion("1.1.12.0")]

NuGet/JavaScriptEngineSwitcher.Jint/JavaScriptEngineSwitcher.Jint.nuspec

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,32 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>JavaScriptEngineSwitcher.Jint</id>
5-
<version>1.1.10</version>
5+
<version>1.1.12</version>
66
<title>JavaScript Engine Switcher for .Net: Jint</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
99
<licenseUrl>http://github.com/Taritsyn/JavaScriptEngineSwitcher/blob/master/LICENSE</licenseUrl>
1010
<projectUrl>http://github.com/Taritsyn/JavaScriptEngineSwitcher</projectUrl>
1111
<iconUrl>https://raw.githubusercontent.com/Taritsyn/JavaScriptEngineSwitcher/master/Icons/JavaScriptEngineSwitcher_Jint_Logo128x128.png</iconUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13-
<description>JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the Jint JavaScript Engine (http://github.com/sebastienros/jint) version 2.2.0).</description>
14-
<summary>JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the Jint JavaScript Engine version 2.2.0).</summary>
15-
<releaseNotes>Added support of Jint version 2.2.0.</releaseNotes>
13+
<description>JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the Jint JavaScript Engine (http://github.com/sebastienros/jint) version of August 16, 2014).</description>
14+
<summary>JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the Jint JavaScript Engine version of August 16, 2014).</summary>
15+
<releaseNotes>Jint was updated to version of August 16, 2014.</releaseNotes>
1616
<copyright>Copyright 2014 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1717
<language>en-US</language>
1818
<tags>JavaScript ECMAScript Jint</tags>
1919
<dependencies>
2020
<dependency id="JavaScriptEngineSwitcher.Core" version="1.1.3" />
21-
<dependency id="Jint" version="2.2.0" />
2221
</dependencies>
2322
<references>
2423
<reference file="JavaScriptEngineSwitcher.Jint.dll" />
24+
<reference file="Jint.dll" />
2525
</references>
2626
</metadata>
2727
<files>
2828
<file src="..\..\JavaScriptEngineSwitcher.Jint\bin\Release\JavaScriptEngineSwitcher.Jint.dll" target="lib\net40" />
2929
<file src="..\..\JavaScriptEngineSwitcher.Jint\bin\Release\**\JavaScriptEngineSwitcher.Jint.resources.dll" target="lib\net40" />
30+
<file src="..\..\Binaries\Jint\Jint.dll" target="lib\net40" />
3031
<file src="content\web.config.transform" target="content" />
3132
<file src="content\app.config.transform" target="content" />
3233
<file src="readme.txt" />

NuGet/JavaScriptEngineSwitcher.Jint/readme.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
----------------------------------------------------------------------
4-
README file for JavaScript Engine Switcher for .Net: Jint 1.1.10
4+
README file for JavaScript Engine Switcher for .Net: Jint 1.1.12
55

66
----------------------------------------------------------------------
77

@@ -13,12 +13,12 @@
1313
===========
1414
JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine`
1515
(wrapper for the Jint JavaScript Engine
16-
(http://github.com/sebastienros/jint) version 2.2.0).
16+
(http://github.com/sebastienros/jint) version of August 16, 2014).
1717

1818
=============
1919
RELEASE NOTES
2020
=============
21-
Added support of Jint version 2.2.0.
21+
Jint was updated to version of August 16, 2014.
2222

2323
=============
2424
DOCUMENTATION

NuGet/JavaScriptEngineSwitcher.V8/JavaScriptEngineSwitcher.V8.nuspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>JavaScriptEngineSwitcher.V8</id>
5-
<version>1.1.10</version>
5+
<version>1.1.12</version>
66
<title>JavaScript Engine Switcher for .Net: V8</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
99
<licenseUrl>http://github.com/Taritsyn/JavaScriptEngineSwitcher/blob/master/LICENSE</licenseUrl>
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 July 5, 2014 with support of V8 version 3.24.17). For correct working of the Microsoft ClearScript.V8 require assemblies `msvcp110.dll` and `msvcr110.dll` from the Visual C++ Redistributable for Visual Studio 2012.</description>
14-
<summary>JavaScriptEngineSwitcher.V8 contains adapter `V8JsEngine` (wrapper for the Microsoft ClearScript.V8 version of July 5, 2014 with support of V8 version 3.24.17).</summary>
15-
<releaseNotes>Microsoft ClearScript.V8 was updated to version of July 5, 2014.</releaseNotes>
13+
<description>JavaScriptEngineSwitcher.V8 contains adapter `V8JsEngine` (wrapper for the Microsoft ClearScript.V8 (http://clearscript.codeplex.com) version of August 1, 2014 with support of V8 version 3.24.17). For correct working of the Microsoft ClearScript.V8 require assemblies `msvcp110.dll` and `msvcr110.dll` from the Visual C++ Redistributable for Visual Studio 2012.</description>
14+
<summary>JavaScriptEngineSwitcher.V8 contains adapter `V8JsEngine` (wrapper for the Microsoft ClearScript.V8 version of August 1, 2014 with support of V8 version 3.24.17).</summary>
15+
<releaseNotes>Microsoft ClearScript.V8 was updated to version of August 1, 2014.</releaseNotes>
1616
<copyright>Copyright 2014 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1717
<language>en-US</language>
1818
<tags>JavaScript ECMAScript V8 ClearScript</tags>

NuGet/JavaScriptEngineSwitcher.V8/readme.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
-----------------------------------------------------------------------
4-
README file for JavaScript Engine Switcher for .Net: V8 1.1.10
4+
README file for JavaScript Engine Switcher for .Net: V8 1.1.12
55

66
-----------------------------------------------------------------------
77

@@ -13,15 +13,15 @@
1313
===========
1414
JavaScriptEngineSwitcher.V8 contains adapter `V8JsEngine` (wrapper for
1515
the Microsoft ClearScript.V8 (http://clearscript.codeplex.com) version
16-
of July 5, 2014 with support of V8 version 3.24.17. For correct
16+
of August 1, 2014 with support of V8 version 3.24.17. For correct
1717
working of the Microsoft ClearScript.V8 require assemblies
1818
`msvcp110.dll` and `msvcr110.dll` from the Visual C++ Redistributable
1919
for Visual Studio 2012.
2020

2121
=============
2222
RELEASE NOTES
2323
=============
24-
Microsoft ClearScript.V8 was updated to version of July 5, 2014.
24+
Microsoft ClearScript.V8 was updated to version of August 1, 2014.
2525

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

0 commit comments

Comments
 (0)