Skip to content

Commit c946b39

Browse files
committed
Version 1.7.1
1 parent 9869c40 commit c946b39

File tree

3 files changed

+9
-20
lines changed

3 files changed

+9
-20
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Change log
22
==========
33

4+
## May 24, 2016 - v1.7.1
5+
* JSON2 library was updated to version of May 10, 2016
6+
47
## March 4, 2016 - v1.7.0
58
* Added the `EmbedHostObject` method (embeds a instance of simple class, structure or delegate to script code)
69
* Added the `EmbedHostType` method (embeds a host type to script code)

NuGet/MsieJavaScriptEngine.nuspec

+4-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>MsieJavaScriptEngine</id>
5-
<version>1.7.0</version>
5+
<version>1.7.1</version>
66
<title>MSIE JavaScript Engine for .NET</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
@@ -12,11 +12,7 @@
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<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) and Chakra Sample Hosts (http://github.com/panopticoncentral/chakra-host).</description>
1414
<summary>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).</summary>
15-
<releaseNotes>1. Added the `EmbedHostObject` method (embeds a instance of simple class, structure or delegate to script code);
16-
2. Added the `EmbedHostType` method (embeds a host type to script code);
17-
3. Added a possibility to debug in Visual Studio by adding the `debugger` statement to script code. This feature only works in the `ChakraIeJsRt` and `ChakraEdgeJsRt` modes.
18-
4. In JavaScript engine settings was added one new property - `EnableDebugging` (default `false`);
19-
5. Improved implementation of the `CallFunction` method for Chakra JsRT modes.</releaseNotes>
15+
<releaseNotes>JSON2 library was updated to version of May 10, 2016.</releaseNotes>
2016
<copyright>Copyright (c) 2012-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
2117
<language>en-US</language>
2218
<tags>JavaScript ECMAScript MSIE IE Edge Chakra</tags>
@@ -25,8 +21,8 @@
2521
</references>
2622
</metadata>
2723
<files>
28-
<file src="..\src\MsieJavaScriptEngine\bin\Release\MsieJavaScriptEngine.dll" target="lib\net40" />
29-
<file src="..\src\MsieJavaScriptEngine\bin\Release\**\MsieJavaScriptEngine.resources.dll" target="lib\net40" />
24+
<file src="..\src\MsieJavaScriptEngine\bin\Release\MsieJavaScriptEngine.dll" target="lib\net40-client" />
25+
<file src="..\src\MsieJavaScriptEngine\bin\Release\**\MsieJavaScriptEngine.resources.dll" target="lib\net40-client" />
3026
<file src="readme.txt" />
3127
<file src="..\Licenses\sass-and-coffee-license.txt" />
3228
<file src="..\Licenses\chakra-host-license.txt" />

NuGet/readme.txt

+2-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
----------------------------------------------------------------------
4-
README file for MSIE JavaScript Engine for .NET v1.7.0
4+
README file for MSIE JavaScript Engine for .NET v1.7.1
55

66
----------------------------------------------------------------------
77

@@ -21,17 +21,7 @@
2121
=============
2222
RELEASE NOTES
2323
=============
24-
1. Added the `EmbedHostObject` method (embeds a instance of simple
25-
class, structure or delegate to script code);
26-
2. Added the `EmbedHostType` method (embeds a host type to script
27-
code);
28-
3. Added a possibility to debug in Visual Studio by adding the
29-
`debugger` statement to script code. This feature only works in the
30-
`ChakraIeJsRt` and `ChakraEdgeJsRt` modes.
31-
4. In JavaScript engine settings was added one new property -
32-
`EnableDebugging` (default `false`);
33-
5. Improved implementation of the `CallFunction` method for Chakra
34-
JsRT modes.
24+
JSON2 library was updated to version of May 10, 2016.
3525

3626
============
3727
PROJECT SITE

0 commit comments

Comments
 (0)