Skip to content

Commit 9f3fdfd

Browse files
committed
Version 1.7.0
1 parent d3fe4c5 commit 9f3fdfd

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

CHANGELOG.md

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

4+
## March 4, 2016 - v1.7.0
5+
* Added the `EmbedHostObject` method (embeds a instance of simple class, structure or delegate to script code)
6+
* Added the `EmbedHostType` method (embeds a host type to script code)
7+
* 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.
8+
* In JavaScript engine settings was added one new property - `EnableDebugging` (default `false`)
9+
* Improved implementation of the `CallFunction` method for Chakra JsRT modes
10+
411
## February 26, 2016 - v1.7.0 Beta 1
512
* Added the `EmbedHostType` method (embeds a host type to script code)
613

NuGet/MsieJavaScriptEngine.nuspec

+6-2
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-beta1</version>
5+
<version>1.7.0</version>
66
<title>MSIE JavaScript Engine for .NET</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
@@ -12,7 +12,11 @@
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>Added the `EmbedHostType` method (embeds a host type to script code).</releaseNotes>
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>
1620
<copyright>Copyright (c) 2012-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1721
<language>en-US</language>
1822
<tags>JavaScript ECMAScript MSIE IE Edge Chakra</tags>

NuGet/readme.txt

+12-2
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 Beta 1
4+
README file for MSIE JavaScript Engine for .NET v1.7.0
55

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

@@ -21,7 +21,17 @@
2121
=============
2222
RELEASE NOTES
2323
=============
24-
Added the `EmbedHostType` method (embeds a host type to script code).
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.
2535

2636
============
2737
PROJECT SITE

0 commit comments

Comments
 (0)