Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirk Rombauts committed Feb 2, 2018
2 parents 4f17109 + 9ecbfdb commit cbc2dc8
Show file tree
Hide file tree
Showing 86 changed files with 1,402 additions and 499 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,23 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt

### Security

## [2.18.0] - 2018-02-02

### Added

- Dhtml reports and Scenario outline support (includes extension of the JSON output) ([502](https://github.com/picklesdoc/pickles/pull/502)) (by [@DominikBaran](https://github.com/DominikBaran))

### Fixed

- Cache the NUnit feature scan results to improve performance on large solutions ([503](https://github.com/picklesdoc/pickles/pull/503)) (by [@tlecomte](https://github.com/tlecomte))
- Use lookups in JSONDocumentation Builder to improve performance on large solutions ([504](https://github.com/picklesdoc/pickles/pull/504)) (by [@tlecomte](https://github.com/tlecomte))
- Cache LanguageServices and GherkinDialectProvider in FeatureParser to improve performance on large solutions ([505](https://github.com/picklesdoc/pickles/pull/505)) (by [@tlecomte](https://github.com/tlecomte))

## [2.17.0] - 2017-11-06

### Added

- Added error handling for Markdown parsing exceptions ([497](https://github.com/picklesdoc/pickles/pull/497)) (by [@joebuschmann](https://github.com/joebuschmann))
- Added error handling for Markdown parsing exceptions ([497](https://github.com/picklesdoc/pickles/pull/497)) (by [@joebuschmann](https://github.com/joebuschmann))

### Changed

Expand Down
File renamed without changes.
8 changes: 8 additions & 0 deletions VERIFICATION.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

This package is published by the Pickles project itself. The binaries are identical to other
package types published by the project, for example the nuget.org packages or the releases
on the GitHub project page.
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@echo off
set "picklesVersion=2.17.0"
set "picklesVersion=2.18.0"

cls

Expand Down
8 changes: 6 additions & 2 deletions chocolatey.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ Target "CreatePackage CMD" (fun _ ->
cmdDir + "Strike.Jint.dll";
cmdDir + "Jint.dll";
cmdDir + "pickles.exe";
cmdDir + "NLog.config" ]
cmdDir + "NLog.config";
"./LICENSE.txt";
"./VERIFICATION.txt";]

WriteFile (packagingDir + "version.ps1") [("$version = \"" + version + "\"")]
NuGet (fun p ->
Expand Down Expand Up @@ -86,7 +88,9 @@ Target "CreatePackage GUI" (fun _ ->
guiDir + "System.Windows.Interactivity.dll";
guiDir + "picklesui.exe";
guiDir + "NLog.config";
guiDir + "PicklesUI.exe.config"]
guiDir + "PicklesUI.exe.config";
"./LICENSE.txt";
"./VERIFICATION.txt";]

WriteFile (packagingDir + "version.ps1") [("$version = \"" + version + "\"")]
WriteFile (packagingDir + "picklesui.exe.gui") [("")]
Expand Down
2 changes: 2 additions & 0 deletions chocolatey/pickles.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ Optionally, *Pickles* can **integrate test results**, so that your stakeholders
<file src="Strike.Jint.dll" target="tools" />
<file src="Jint.dll" target="tools" />
<file src="pickles.exe" target="tools" />
<file src="VERIFICATION.txt" target="tools" />
<file src="LICENSE.txt" target="tools" />
</files>
</package>

2 changes: 2 additions & 0 deletions chocolatey/picklesui.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ Optionally, *Pickles* can **integrate test results**, so that your stakeholders
<file src="picklesui.exe.gui" target="tools" />
<file src="NLog.config" target="tools" />
<file src="PicklesUI.exe.config" target="tools" />
<file src="VERIFICATION.txt" target="tools" />
<file src="LICENSE.txt" target="tools" />
</files>
</package>

9 changes: 8 additions & 1 deletion docs/Output/Dhtml/Index.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,14 @@

<tbody data-bind="foreach: DataRows, visible:IsShown">
<tr data-bind="foreach: $data">
<td data-bind="text: $data"></td>
<td>
<div data-bind="if: typeof($data) === 'string'">
<div data-bind="text: $data"></div>
</div>
<div data-bind="if: typeof($data) === 'object'">
<div data-bind="template: { name: 'testResults-template', if: $data, data: $data }"></div>
</div>
</td>
</tr>
</tbody>

Expand Down
Loading

0 comments on commit cbc2dc8

Please sign in to comment.