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.

0 commit comments

Comments
 (0)