Skip to content

Commit

Permalink
Version 1.7.0 Alpha 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Taritsyn committed Jan 16, 2016
1 parent a97b6d3 commit 6c288c3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Change log
==========

## January 16, 2016 - v1.7.0 Alpha 2
* 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.
* In JavaScript engine settings was added one new property - `EnableDebugging` (default `false`)

## January 5, 2016 - v1.7.0 Alpha 1
* Added the `EmbedHostObject` method (embeds a instance of simple class, structure or delegate to script code)
* Improved implementation of the `CallFunction` method for Chakra JsRT modes
Expand Down
6 changes: 3 additions & 3 deletions NuGet/MsieJavaScriptEngine.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>MsieJavaScriptEngine</id>
<version>1.7.0-alpha1</version>
<version>1.7.0-alpha2</version>
<title>MSIE JavaScript Engine for .NET</title>
<authors>Andrey Taritsyn</authors>
<owners>Andrey Taritsyn</owners>
Expand All @@ -12,8 +12,8 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<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>
<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>
<releaseNotes>1. Added the `EmbedHostObject` method (embeds a instance of simple class, structure or delegate to script code);
2. Improved implementation of the `CallFunction` method for Chakra JsRT modes.</releaseNotes>
<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.
2. In JavaScript engine settings was added one new property - `EnableDebugging` (default `false`).</releaseNotes>
<copyright>Copyright (c) 2012-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
<language>en-US</language>
<tags>JavaScript ECMAScript MSIE IE Edge Chakra</tags>
Expand Down
11 changes: 6 additions & 5 deletions NuGet/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


----------------------------------------------------------------------
README file for MSIE JavaScript Engine for .NET v1.7.0 Alpha 1
README file for MSIE JavaScript Engine for .NET v1.7.0 Alpha 2

----------------------------------------------------------------------

Expand All @@ -21,10 +21,11 @@
=============
RELEASE NOTES
=============
1. Added the `EmbedHostObject` method (embeds a instance of simple
class, structure or delegate to script code);
2. Improved implementation of the `CallFunction` method for Chakra
JsRT modes.
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.
2. In JavaScript engine settings was added one new property -
`EnableDebugging` (default `false`).

============
PROJECT SITE
Expand Down

0 comments on commit 6c288c3

Please sign in to comment.