Skip to content

Commit 6a2dbb6

Browse files
committed
Version 1.2.0:
1. From JavaScriptEngineSwitcher.V8 and JavaScriptEngineSwitcher.Jint removed dependency on `System.Web.Extensions.dll`; 2. All assemblies is now targeted on the .NET Framework 4 Client Profile; 3. In JavaScriptEngineSwitcher.Msie added support of MSIE JavaScript Engine version 1.5.0; 4. In JavaScriptEngineSwitcher.Jint added support of Jint version of October 9, 2014.
1 parent bb7685d commit 6a2dbb6

File tree

40 files changed

+317
-145
lines changed

40 files changed

+317
-145
lines changed

Binaries/ClearScript/ClearScript.dll

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

Binaries/Jint/Jint.dll

10.5 KB
Binary file not shown.

Binaries/Jurassic/Jurassic.dll

0 Bytes
Binary file not shown.

CHANGELOG.md

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

4+
## October 13, 2014 - v1.2.0
5+
6+
* From JavaScriptEngineSwitcher.V8 and JavaScriptEngineSwitcher.Jint removed dependency on `System.Web.Extensions.dll`
7+
* All assemblies is now targeted on the .NET Framework 4 Client Profile
8+
* In JavaScriptEngineSwitcher.Msie added support of MSIE JavaScript Engine version 1.5.0
9+
* In JavaScriptEngineSwitcher.Jint added support of Jint version of October 9, 2014
10+
411
## September 17, 2014 - v1.1.13
512

613
* In JavaScriptEngineSwitcher.V8 added support of Microsoft ClearScript.V8 version of September 6, 2014

JavaScriptEngineSwitcher.Core/JavaScriptEngineSwitcher.Core.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<AssemblyName>JavaScriptEngineSwitcher.Core</AssemblyName>
1212
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14+
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
1415
</PropertyGroup>
1516
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1617
<DebugSymbols>true</DebugSymbols>
@@ -68,6 +69,7 @@
6869
</Compile>
6970
<Compile Include="Undefined.cs" />
7071
<Compile Include="Utilities\StringBuilderExtensions.cs" />
72+
<Compile Include="Utilities\TypeConverter.cs" />
7173
<Compile Include="Utilities\Utils.cs" />
7274
</ItemGroup>
7375
<ItemGroup>

JavaScriptEngineSwitcher.Core/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("9f7e9fff-da85-4609-8bee-bdead5a3afe2")]
1515

16-
[assembly: AssemblyVersion("1.1.3.0")]
17-
[assembly: AssemblyFileVersion("1.1.3.0")]
16+
[assembly: AssemblyVersion("1.2.0.0")]
17+
[assembly: AssemblyFileVersion("1.2.0.0")]

JavaScriptEngineSwitcher.Core/Resources/Strings.Designer.cs

Lines changed: 19 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

JavaScriptEngineSwitcher.Core/Resources/Strings.resx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,9 @@
126126
<data name="Common_AssemblyNameIsEmpty" xml:space="preserve">
127127
<value>You do not specified a name of assembly.</value>
128128
</data>
129+
<data name="Common_CannotConvertObjectToType" xml:space="preserve">
130+
<value>Cannot convert object of type `{0}` to type `{1}`.</value>
131+
</data>
129132
<data name="Common_EnumValueConversionFailed" xml:space="preserve">
130133
<value>Can not convert value '{0}' of enumeration type `{1}` to value of enumeration type `{2}`.</value>
131134
</data>
@@ -144,6 +147,9 @@
144147
<data name="Common_ValueIsNull" xml:space="preserve">
145148
<value>Value cannot be null.</value>
146149
</data>
150+
<data name="Common_ValueTypeCannotBeNull" xml:space="preserve">
151+
<value>Cannot convert null to a value type.</value>
152+
</data>
147153
<data name="Configuration_DefaultJsEngineNotSpecified" xml:space="preserve">
148154
<value>Default JavaScript engine not specified.</value>
149155
</data>

0 commit comments

Comments
 (0)