Skip to content

Commit 6c288c3

Browse files
committed
Version 1.7.0 Alpha 2
1 parent a97b6d3 commit 6c288c3

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

CHANGELOG.md

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

4+
## January 16, 2016 - v1.7.0 Alpha 2
5+
* 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.
6+
* In JavaScript engine settings was added one new property - `EnableDebugging` (default `false`)
7+
48
## January 5, 2016 - v1.7.0 Alpha 1
59
* Added the `EmbedHostObject` method (embeds a instance of simple class, structure or delegate to script code)
610
* Improved implementation of the `CallFunction` method for Chakra JsRT modes

NuGet/MsieJavaScriptEngine.nuspec

+3-3
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-alpha1</version>
5+
<version>1.7.0-alpha2</version>
66
<title>MSIE JavaScript Engine for .NET</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
@@ -12,8 +12,8 @@
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. Improved implementation of the `CallFunction` method for Chakra JsRT modes.</releaseNotes>
15+
<releaseNotes>1. 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.
16+
2. In JavaScript engine settings was added one new property - `EnableDebugging` (default `false`).</releaseNotes>
1717
<copyright>Copyright (c) 2012-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1818
<language>en-US</language>
1919
<tags>JavaScript ECMAScript MSIE IE Edge Chakra</tags>

NuGet/readme.txt

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

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

@@ -21,10 +21,11 @@
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. Improved implementation of the `CallFunction` method for Chakra
27-
JsRT modes.
24+
1. Added a possibility to debug in Visual Studio by adding the
25+
`debugger` statement to script code. This feature only works in the
26+
`ChakraIeJsRt` and `ChakraEdgeJsRt` modes.
27+
2. In JavaScript engine settings was added one new property -
28+
`EnableDebugging` (default `false`).
2829

2930
============
3031
PROJECT SITE

0 commit comments

Comments
 (0)