Skip to content

Commit ef2f86a

Browse files
committed
Edge -> Edge Legacy
1 parent 99b6cb7 commit ef2f86a

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ MSIE JavaScript Engine for .NET [![NuGet version](http://img.shields.io/nuget/v/
33

44
![MSIE JS Engine Logo](http://i.imgur.com/T3K5q.png)
55

6-
This project is a .NET wrapper for working with the JavaScript engines of Internet Explorer and Edge (JsRT versions of Chakra, ActiveScript version of Chakra and Classic JavaScript Engine).
6+
This project is a .NET wrapper for working with the JavaScript engines of Internet Explorer and Edge Legacy (JsRT versions of Chakra, ActiveScript version of Chakra and Classic JavaScript Engine).
77
Project was based on the code of [SassAndCoffee.JavaScript](http://github.com/paulcbetts/SassAndCoffee), [Chakra Sample Hosts](http://github.com/panopticoncentral/chakra-host) and [jsrt-dotnet](http://github.com/robpaveza/jsrt-dotnet).
88

9-
MSIE JavaScript Engine requires a installation of Internet Explorer or Edge on the machine and can work in 5 modes, that are defined in the <code title="MsieJavaScriptEngine.JsEngineMode">JsEngineMode</code> enumeration:
9+
MSIE JavaScript Engine requires a installation of Internet Explorer or Edge Legacy on the machine and can work in 5 modes, that are defined in the <code title="MsieJavaScriptEngine.JsEngineMode">JsEngineMode</code> enumeration:
1010

1111
* `Auto`. Automatically selects the most modern JavaScript engine from available on the machine.
1212
* `Classic`. Classic MSIE JavaScript engine (supports ECMAScript 3 with possibility of using the ECMAScript 5 Polyfill and the JSON2 library). Requires Internet Explorer 6 or higher on the machine. **Not supported in version for .NET Core.**
1313
* `ChakraActiveScript`. ActiveScript version of Chakra JavaScript engine (supports ECMAScript 5). Requires Internet Explorer 9 or higher on the machine. **Not supported in version for .NET Core.**
14-
* `ChakraIeJsRt`. “IE” JsRT version of Chakra JavaScript engine (supports ECMAScript 5). Requires Internet Explorer 11 or Microsoft Edge on the machine.
15-
* `ChakraEdgeJsRt`. “Edge” JsRT version of Chakra JavaScript engine (supports ECMAScript 5). Requires Microsoft Edge on the machine.
14+
* `ChakraIeJsRt`. “IE” JsRT version of Chakra JavaScript engine (supports ECMAScript 5). Requires Internet Explorer 11 or Microsoft Edge Legacy on the machine.
15+
* `ChakraEdgeJsRt`. “Edge” JsRT version of Chakra JavaScript engine (supports ECMAScript 5). Requires Microsoft Edge Legacy on the machine.
1616

1717
The supported .NET types are as follows:
1818

src/MsieJavaScriptEngine/MsieJavaScriptEngine.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<DisableDefaultResxToCsConversionTarget>true</DisableDefaultResxToCsConversionTarget>
1414
<Title>$(Product)</Title>
1515
<Authors>Andrey Taritsyn</Authors>
16-
<Description>This library is a .NET wrapper for working with the JavaScript engines of Internet Explorer and Edge (JsRT versions of Chakra, ActiveScript version of Chakra and Classic JavaScript Engine). Project was based on the code of SassAndCoffee.JavaScript (http://github.com/paulcbetts/SassAndCoffee), Chakra Sample Hosts (http://github.com/panopticoncentral/chakra-host) and jsrt-dotnet (http://github.com/robpaveza/jsrt-dotnet).</Description>
16+
<Description>This library is a .NET wrapper for working with the JavaScript engines of Internet Explorer and Edge Legacy (JsRT versions of Chakra, ActiveScript version of Chakra and Classic JavaScript Engine). Project was based on the code of SassAndCoffee.JavaScript (http://github.com/paulcbetts/SassAndCoffee), Chakra Sample Hosts (http://github.com/panopticoncentral/chakra-host) and jsrt-dotnet (http://github.com/robpaveza/jsrt-dotnet).</Description>
1717
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
1818
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1919
<PackageProjectUrl>https://github.com/Taritsyn/MsieJavaScriptEngine</PackageProjectUrl>

src/MsieJavaScriptEngine/Resources/CommonStrings.Designer.cs

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

src/MsieJavaScriptEngine/Resources/CommonStrings.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
<value>Most likely it happened, because the '{0}' assembly was not registered in your system.</value>
143143
</data>
144144
<data name="Engine_EdgeInstallationRequired" xml:space="preserve">
145-
<value>Try to install the Windows 10 with Edge browser.</value>
145+
<value>Try to install the Windows 10 with Edge Legacy browser.</value>
146146
</data>
147147
<data name="Engine_IeInstallationRequired" xml:space="preserve">
148148
<value>Try to install the Internet Explorer {0} or higher.</value>

src/MsieJavaScriptEngine/Resources/CommonStrings.ru-ru.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
<value>Скорее всего, это произошло, потому что сборка "{0}" не была зарегистрирована в вашей системе.</value>
143143
</data>
144144
<data name="Engine_EdgeInstallationRequired" xml:space="preserve">
145-
<value>Попробуйте установить Windows 10 с веб-браузером Edge.</value>
145+
<value>Попробуйте установить Windows 10 с веб-браузером Edge Legacy.</value>
146146
</data>
147147
<data name="Engine_IeInstallationRequired" xml:space="preserve">
148148
<value>Попробуйте установить Internet Explorer {0} или выше.</value>

src/MsieJavaScriptEngine/Resources/NetCoreStrings.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<value>The parameter '{0}' must have a `{1}` type.</value>
122122
</data>
123123
<data name="Engine_JsEnginesNotFound" xml:space="preserve">
124-
<value>Could not found none of the JavaScript engines, which would be compatible with .NET Core. Perhaps you have not installed the Microsoft Edge or Internet Explorer 11 browser.</value>
124+
<value>Could not found none of the JavaScript engines, which would be compatible with .NET Core. Perhaps you have not installed the Microsoft Edge Legacy or Internet Explorer 11 browser.</value>
125125
</data>
126126
<data name="Runtime_HostDelegateInvocationFailed" xml:space="preserve">
127127
<value>During invocation of the host delegate an error has occurred - “{0}”.</value>

src/MsieJavaScriptEngine/Resources/NetCoreStrings.ru-ru.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<value>Параметр с именем "{0}" должен иметь тип `{1}`!</value>
122122
</data>
123123
<data name="Engine_JsEnginesNotFound" xml:space="preserve">
124-
<value>Не удалось найти ни один из JavaScript-движков, который был бы совместим с .NET Core! Возможно, на вашем компьютере не установлен браузер Microsoft Edge или Internet Explorer 11.</value>
124+
<value>Не удалось найти ни один из JavaScript-движков, который был бы совместим с .NET Core! Возможно, на вашем компьютере не установлен браузер Microsoft Edge Legacy или Internet Explorer 11.</value>
125125
</data>
126126
<data name="Runtime_HostDelegateInvocationFailed" xml:space="preserve">
127127
<value>Во время вызова делегата хоста произошла ошибка - «{0}»!</value>

src/MsieJavaScriptEngine/readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
DESCRIPTION
1313
===========
1414
This library is a .NET wrapper for working with the JavaScript engines of
15-
Internet Explorer and Edge (JsRT versions of Chakra, ActiveScript version of
16-
Chakra and Classic JavaScript Engine). Project was based on the code of
15+
Internet Explorer and Edge Legacy (JsRT versions of Chakra, ActiveScript version
16+
of Chakra and Classic JavaScript Engine). Project was based on the code of
1717
SassAndCoffee.JavaScript (http://github.com/paulcbetts/SassAndCoffee),
1818
Chakra Sample Hosts (http://github.com/panopticoncentral/chakra-host) and
1919
jsrt-dotnet (http://github.com/robpaveza/jsrt-dotnet).

0 commit comments

Comments
 (0)