Skip to content

Commit a7df431

Browse files
committed
Version 1.2.7:
1. In JavaScriptEngineSwitcher.ConfigurationIntelliSense updated definitions for configuration settings of V8 JavaScript engine; 2. In JavaScriptEngineSwitcher.V8 added support of Microsoft ClearScript.V8 version 5.4.2 (support of V8 version 4.2.77.18).
1 parent 8847db8 commit a7df431

File tree

16 files changed

+30
-23
lines changed

16 files changed

+30
-23
lines changed

Binaries/ClearScript/ClearScript.dll

16 KB
Binary file not shown.
-1.5 KB
Binary file not shown.

Binaries/ClearScript/x64/v8-x64.dll

719 KB
Binary file not shown.
Binary file not shown.

Binaries/ClearScript/x86/v8-ia32.dll

250 KB
Binary file not shown.

CHANGELOG.md

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

4+
## May 11, 2015 - v1.2.7
5+
* In JavaScriptEngineSwitcher.ConfigurationIntelliSense updated definitions for configuration settings of V8 JavaScript engine
6+
* In JavaScriptEngineSwitcher.V8 added support of Microsoft ClearScript.V8 version 5.4.2 (support of V8 version 4.2.77.18)
7+
48
## May 5, 2015 - v1.2.6
59
* In JavaScriptEngineSwitcher.Msie added support of MSIE JavaScript Engine version 1.5.3
610
* In JavaScriptEngineSwitcher.V8 fixed a [bug #12](http://github.com/Taritsyn/JavaScriptEngineSwitcher/issues/12) “V8 config can be null”

JavaScriptEngineSwitcher.Tests/JavaScriptEngineSwitcher.Configuration.xsd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
</xs:attribute>
156156
<xs:attribute name="maxNewSpaceSize" use="optional" default="0">
157157
<xs:annotation>
158-
<xs:documentation>Maximum size of the new object heap in bytes</xs:documentation>
158+
<xs:documentation>Maximum size of the new object heap in mebibytes</xs:documentation>
159159
</xs:annotation>
160160
<xs:simpleType>
161161
<xs:restriction base="xs:int">
@@ -166,7 +166,7 @@
166166
</xs:attribute>
167167
<xs:attribute name="maxOldSpaceSize" use="optional" default="0">
168168
<xs:annotation>
169-
<xs:documentation>Maximum size of the old object heap in bytes</xs:documentation>
169+
<xs:documentation>Maximum size of the old object heap in mebibytes</xs:documentation>
170170
</xs:annotation>
171171
<xs:simpleType>
172172
<xs:restriction base="xs:int">
@@ -177,7 +177,7 @@
177177
</xs:attribute>
178178
<xs:attribute name="maxExecutableSize" use="optional" default="0">
179179
<xs:annotation>
180-
<xs:documentation>Maximum size of the executable code heap in bytes</xs:documentation>
180+
<xs:documentation>Maximum size of the executable code heap in mebibytes</xs:documentation>
181181
</xs:annotation>
182182
<xs:simpleType>
183183
<xs:restriction base="xs:int">

JavaScriptEngineSwitcher.Tests/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("4cfa9f30-6718-4b7e-8329-7602278b8e31")]
1515

16-
[assembly: AssemblyVersion("1.2.5.0")]
17-
[assembly: AssemblyFileVersion("1.2.5.0")]
16+
[assembly: AssemblyVersion("1.2.7.0")]
17+
[assembly: AssemblyFileVersion("1.2.7.0")]

JavaScriptEngineSwitcher.V8/Configuration/V8Configuration.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public bool DisableGlobalMembers
4040
}
4141

4242
/// <summary>
43-
/// Gets or sets a maximum size of the new object heap in bytes
43+
/// Gets or sets a maximum size of the new object heap in mebibytes
4444
/// </summary>
4545
[ConfigurationProperty("maxNewSpaceSize", DefaultValue = 0)]
4646
[IntegerValidator(MinValue = 0, MaxValue = int.MaxValue, ExcludeRange = false)]
@@ -51,7 +51,7 @@ public int MaxNewSpaceSize
5151
}
5252

5353
/// <summary>
54-
/// Gets or sets a maximum size of the old object heap in bytes
54+
/// Gets or sets a maximum size of the old object heap in mebibytes
5555
/// </summary>
5656
[ConfigurationProperty("maxOldSpaceSize", DefaultValue = 0)]
5757
[IntegerValidator(MinValue = 0, MaxValue = int.MaxValue, ExcludeRange = false)]
@@ -62,7 +62,7 @@ public int MaxOldSpaceSize
6262
}
6363

6464
/// <summary>
65-
/// Gets or sets a maximum size of the executable code heap in bytes
65+
/// Gets or sets a maximum size of the executable code heap in mebibytes
6666
/// </summary>
6767
[ConfigurationProperty("maxExecutableSize", DefaultValue = 0)]
6868
[IntegerValidator(MinValue = 0, MaxValue = int.MaxValue, ExcludeRange = false)]

JavaScriptEngineSwitcher.V8/JavaScriptEngineSwitcher.V8.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<AssemblyOriginatorKeyFile>..\JavaScriptEngineSwitcher.snk</AssemblyOriginatorKeyFile>
3838
</PropertyGroup>
3939
<ItemGroup>
40-
<Reference Include="ClearScript, Version=5.4.0.0, Culture=neutral, PublicKeyToken=935d0c957da47c73, processorArchitecture=MSIL">
40+
<Reference Include="ClearScript, Version=5.4.2.0, Culture=neutral, PublicKeyToken=935d0c957da47c73, processorArchitecture=MSIL">
4141
<SpecificVersion>False</SpecificVersion>
4242
<HintPath>..\Binaries\ClearScript\ClearScript.dll</HintPath>
4343
</Reference>
@@ -90,10 +90,12 @@
9090
<EmbeddedResource Include="Resources\Strings.resx">
9191
<Generator>ResXFileCodeGenerator</Generator>
9292
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
93+
<SubType>Designer</SubType>
9394
</EmbeddedResource>
9495
<EmbeddedResource Include="Resources\Strings.ru-ru.resx">
9596
<Generator>ResXFileCodeGenerator</Generator>
9697
<LastGenOutput>Strings.ru-ru.Designer.cs</LastGenOutput>
98+
<SubType>Designer</SubType>
9799
</EmbeddedResource>
98100
</ItemGroup>
99101
<ItemGroup>

0 commit comments

Comments
 (0)