Skip to content

Commit 6e1fc6d

Browse files
committed
In JavaScriptEngineSwitcher.Msie added support of MSIE JavaScript Engine version 3.0.0 RC 2
1 parent 5bab4c3 commit 6e1fc6d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

src/JavaScriptEngineSwitcher.Core/JavaScriptEngineSwitcher.Core.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
<Description>JavaScript Engine Switcher determines unified interface for access to the basic features of popular JavaScript engines (MSIE JavaScript Engine for .NET, Microsoft ClearScript.V8, Jurassic, Jint, ChakraCore, VroomJs and NiL.JS). This library allows you to quickly and easily switch to using of another JavaScript engine.</Description>
1515
<PackageIconUrl>https://raw.githubusercontent.com/Taritsyn/JavaScriptEngineSwitcher/master/Icons/JavaScriptEngineSwitcher_Core_Logo128x128.png</PackageIconUrl>
1616
<PackageTags>JavaScriptEngineSwitcher;JavaScript;ECMAScript</PackageTags>
17-
<PackageReleaseNotes>`GetSourceFragmentFromCode` and `GetSourceFragmentFromLine` methods of `JsErrorHelpers` class were replaced by the `GetTextFragment` and `GetTextFragmentFromLine` methods of `TextHelpers` class.</PackageReleaseNotes>
17+
<PackageReleaseNotes>1. `GetSourceFragmentFromCode` and `GetSourceFragmentFromLine` methods of `JsErrorHelpers` class were replaced by the `GetTextFragment` and `GetTextFragmentFromLine` methods of `TextHelpers` class;
18+
2. Part of the auxiliary code was moved to external libraries: PolyfillsForOldDotNet and AdvancedStringBuilder.</PackageReleaseNotes>
1819
</PropertyGroup>
1920

2021
<Import Project="../../build/common.props" />

src/JavaScriptEngineSwitcher.Core/readme.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@
2020
=============
2121
RELEASE NOTES
2222
=============
23-
`GetSourceFragmentFromCode` and `GetSourceFragmentFromLine` methods of
24-
`JsErrorHelpers` class were replaced by the `GetTextFragment` and
25-
`GetTextFragmentFromLine` methods of `TextHelpers` class.
23+
1. `GetSourceFragmentFromCode` and `GetSourceFragmentFromLine` methods of
24+
`JsErrorHelpers` class were replaced by the `GetTextFragment` and
25+
`GetTextFragmentFromLine` methods of `TextHelpers` class;
26+
2. Part of the auxiliary code was moved to external libraries:
27+
PolyfillsForOldDotNet and AdvancedStringBuilder.
2628

2729
=============
2830
DOCUMENTATION

src/JavaScriptEngineSwitcher.Msie/JavaScriptEngineSwitcher.Msie.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
<Description>JavaScriptEngineSwitcher.Msie contains adapter `MsieJsEngine` (wrapper for the MSIE JavaScript Engine for .Net (http://github.com/Taritsyn/MsieJavaScriptEngine)). For correct working of the MSIE JavaScript Engine it is recommended to install Internet Explorer 9+ or Microsoft Edge on the machine.</Description>
1515
<PackageIconUrl>https://raw.githubusercontent.com/Taritsyn/JavaScriptEngineSwitcher/master/Icons/JavaScriptEngineSwitcher_Msie_Logo128x128.png</PackageIconUrl>
1616
<PackageTags>JavaScriptEngineSwitcher;JavaScript;ECMAScript;MSIE;IE;Chakra</PackageTags>
17-
<PackageReleaseNotes>1. Added support of MSIE JavaScript Engine version 3.0.0 RC 1;
18-
2. In configuration settings of the MSIE JS engine was added one new property - `MaxStackSize` (default `492` or `984` KB).</PackageReleaseNotes>
17+
<PackageReleaseNotes>Added support of MSIE JavaScript Engine version 3.0.0 RC 2.</PackageReleaseNotes>
1918
</PropertyGroup>
2019

2120
<Import Project="../../build/common.props" />
@@ -24,7 +23,7 @@
2423
<Import Project="../../build/nuget-metadata.props" />
2524

2625
<ItemGroup>
27-
<PackageReference Include="MsieJavaScriptEngine" Version="3.0.0-rc1" />
26+
<PackageReference Include="MsieJavaScriptEngine" Version="3.0.0-rc2" />
2827
<PackageReference Include="ResxToCs.MSBuild" Version="1.0.0-alpha5" PrivateAssets="All" />
2928

3029
<ProjectReference Include="../JavaScriptEngineSwitcher.Core/JavaScriptEngineSwitcher.Core.csproj" />

src/JavaScriptEngineSwitcher.Msie/readme.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919
=============
2020
RELEASE NOTES
2121
=============
22-
1. Added support of MSIE JavaScript Engine version 3.0.0 RC 1;
23-
2. In configuration settings of the MSIE JS engine was added one new property -
24-
`MaxStackSize` (default `492` or `984` KB).
22+
Added support of MSIE JavaScript Engine version 3.0.0 RC 2.
2523

2624
=============
2725
DOCUMENTATION

0 commit comments

Comments
 (0)