From 4346ea4b4b82c19c03a427115909b39775c5b569 Mon Sep 17 00:00:00 2001 From: Dirk Rombauts Date: Thu, 18 Oct 2018 19:28:38 +0200 Subject: [PATCH] Version 2.20.1 --- CHANGELOG.md | 6 ++++++ build.bat | 2 +- docs/Output/Dhtml/js/featuresModel.js | 1 + docs/Output/Dhtml/js/heirarchyBuilder.js | 1 + docs/Output/Dhtml/pickledFeatures.js | 4 ++-- docs/Output/Excel/features.xlsx | Bin 38739 -> 38739 bytes .../Features/00BasicGherkin/BasicGherkin.html | 6 +++--- .../Html/Features/00BasicGherkin/index.html | 6 +++--- .../TestRunnerIsNotImportant.html | 6 +++--- .../Html/Features/01TestRunner/index.html | 6 +++--- .../Html/Features/02TagsAndHooks/Hooks.html | 6 +++--- .../Html/Features/02TagsAndHooks/TagDemo.html | 6 +++--- .../Html/Features/02TagsAndHooks/index.html | 6 +++--- .../031ScenarioContext/ScenarioContext.html | 6 +++--- .../Features/031ScenarioContext/index.html | 6 +++--- .../FeatureContextFeatures.html | 6 +++--- .../Features/032FeatureContext/index.html | 6 +++--- .../03ScenarioOutline/ScenarioOutline.html | 6 +++--- .../Features/03ScenarioOutline/index.html | 6 +++--- .../04Background/BackgroundFeature.html | 6 +++--- .../Html/Features/04Background/index.html | 6 +++--- .../05TablesAndAssist/TableScenario.html | 6 +++--- .../Features/05TablesAndAssist/index.html | 6 +++--- .../Features/06CompareToAssist/CompareTo.html | 6 +++--- .../Features/06CompareToAssist/index.html | 6 +++--- .../Html/Features/07Localization/Svenska.html | 6 +++--- .../Html/Features/07Localization/Vlaams.html | 6 +++--- .../Html/Features/07Localization/index.html | 6 +++--- .../AttributeOverloading.html | 6 +++--- .../08AttributeOverloading/index.html | 6 +++--- .../CallingStepsFromSteps.html | 6 +++--- .../09CallingStepsFromSteps/index.html | 6 +++--- .../StepTransformation.html | 6 +++--- .../Features/10StepTransformation/index.html | 6 +++--- .../11ContextInjection/ContextInjection.html | 6 +++--- .../Features/11ContextInjection/index.html | 6 +++--- .../ChildChildFolder/NestedFolderExample.html | 6 +++--- .../ChildFolder/ChildChildFolder/index.html | 6 +++--- .../12NestedFolders/ChildFolder/index.html | 6 +++--- .../Html/Features/12NestedFolders/index.html | 6 +++--- .../MultilineFeatureExample.html | 6 +++--- .../Html/Features/13MultilineText/index.html | 6 +++--- .../14MarkdownExample/MarkdownExamples.html | 6 +++--- .../Features/14MarkdownExample/index.html | 6 +++--- .../15Pickles/InteractiveDHTMLView.html | 6 +++--- .../Output/Html/Features/15Pickles/index.html | 6 +++--- docs/Output/Html/Features/Arithmetic.html | 6 +++--- docs/Output/Html/Features/Trigonometry.html | 6 +++--- .../Features/Workflow/ClearingScreen.html | 6 +++--- docs/Output/Html/Features/Workflow/index.html | 6 +++--- docs/Output/Html/Features/index.html | 6 +++--- docs/Output/Html/index.html | 6 +++--- docs/Output/Html/readme.html | 6 +++--- docs/Output/JSON/pickledFeatures.json | 4 ++-- docs/Output/Word/Pickles.docx | Bin 14061 -> 14061 bytes docs/Output/Word/features.docx | Bin 14047 -> 14043 bytes docs/index.html | 2 +- .../js/featuresModel.js | 1 + .../js/heirarchyBuilder.js | 1 + src/Pickles/Pickles.CommandLine/NLog.xsd | 15 +++++++++++++++ src/Pickles/Pickles.UserInterface/NLog.xsd | 15 +++++++++++++++ src/Pickles/VersionInfo.cs | 8 ++++---- 62 files changed, 191 insertions(+), 151 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d8cc9388..df7e609d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,12 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt ### Security +## [2.20.1] - 2018-10-17 + +### Fixed + +- Javascript error in dhtml doc ([553](https://github.com/picklesdoc/pickles/issues/553)) (by [@dirkrombauts](https://github.com/dirkrombauts)) + ## [2.20.0] - 2018-10-09 ### Added diff --git a/build.bat b/build.bat index 6baf103e1..0eeb4f8a2 100644 --- a/build.bat +++ b/build.bat @@ -1,5 +1,5 @@ @echo off -set "picklesVersion=2.20.0" +set "picklesVersion=2.20.1" cls diff --git a/docs/Output/Dhtml/js/featuresModel.js b/docs/Output/Dhtml/js/featuresModel.js index f76ded584..53803be0e 100644 --- a/docs/Output/Dhtml/js/featuresModel.js +++ b/docs/Output/Dhtml/js/featuresModel.js @@ -61,6 +61,7 @@ function Background(data) { function Result(data) { this.WasExecuted = data.WasExecuted || false; this.WasSuccessful = data.WasSuccessful || false; + this.WasProvided = data.WasProvided || false; } /* JSON Sample diff --git a/docs/Output/Dhtml/js/heirarchyBuilder.js b/docs/Output/Dhtml/js/heirarchyBuilder.js index 9f044d2a8..4bddd578a 100644 --- a/docs/Output/Dhtml/js/heirarchyBuilder.js +++ b/docs/Output/Dhtml/js/heirarchyBuilder.js @@ -14,6 +14,7 @@ function NavigationFeature(name, path, result) { function Result(data) { this.WasExecuted = data.WasExecuted || false; this.WasSuccessful = data.WasSuccessful || false; + this.WasProvided = data.WasProvided || false; } function getFeaturesFromScenariosList(scenarios) { diff --git a/docs/Output/Dhtml/pickledFeatures.js b/docs/Output/Dhtml/pickledFeatures.js index 1e05cd203..3ea6e8def 100644 --- a/docs/Output/Dhtml/pickledFeatures.js +++ b/docs/Output/Dhtml/pickledFeatures.js @@ -3246,7 +3246,7 @@ jsonPWrapper ({ }, "Configuration": { "SutName": "Pickles", - "SutVersion": "2.20.0", - "GeneratedOn": "9 Oktober 2018 17:01:57" + "SutVersion": "2.20.1", + "GeneratedOn": "18 Oktober 2018 19:07:13" } }); \ No newline at end of file diff --git a/docs/Output/Excel/features.xlsx b/docs/Output/Excel/features.xlsx index e5b8f5932bf638221fac15a76d13d864cf9be30d..487ee116b0ff5e030d1100648aa319d514db21a8 100644 GIT binary patch delta 1044 zcmcb-j_L9`Cf)#VW)=|!1_lm>=QDyf@`^BX0BPR^3mC3$)?_wk6fjOPN-;1^H8D>y zF)>LoGud3gV#XMsVw{?2l9p^>VPs)uVw7r}WNB(*U}2nWX<(dekZ59{S5Tarl3bvq z;F)5p6l9TVVVYu+XlRsXW^Q6+o~)#xZ)c+)l$w)Rl9``ZoRL{jY=`2G&8%!!n3;hN z*?fodnGl$9RAx6Ln9(d(3X%G)$j=TI;nn=g#0PRU&lGbXdnN{kS*(*6>Pc?a)X8E3 zE10Gy0nxJ2@FFu<<+{{c>i3u#7>)>oRjxGUWC4rIhNmx#0*dqTfy5^pw6JczXW0PJ zoM@{IVYEBkgxHs{i)%|MD+5E6GT4-M=LM`_`?Nf#L5ws0q#O_obdWL|Siy7OI*5ZZ z0%kGsf?OMKZU^Uu&75Ib4U{V}rx z3NK`x9GERNX$sJR5h)NU{Yz^oCC-C5i9f{}qS`n88-(GOeH_9N$Twl;1iALcm+9X!Cr^x%-<(r41)`0)^b0FE z#YAq($eaAX%1oWeq%oP1OJ?%?TCL5Cs^u7k4J|?p&8-Z~tqe`|jLc0;4U8-&U#@Y- zDz00r4-Vz{+M5C(#$@Y0D|n)vT-#>|7Tnlp4W{4s*@J1repfJE*>3@+xAZ%K>7V`1 zVA_5Hgl>h>r=hgqM2L7el%5NvA46%)Nf7ybD7_U*|Ax|zlOgi$Q2Oj-7qERIQy_FS zlwJg-UqWevsSx>cD7|m03sM{;P7$4~FijI|lFu|-L<~%v=3+)<3q)(hG}{Q#kncT1xgB@ zDYi;MsmUf5=4K`)W+r9^CWfYlN(%aRHu^!SIf*5i`FX_|nFYmmDDK$I%65gB8R(GB zcQ~I3ff+|-b~Az*&2ps>so#qH>|haI&96*+AXoEDG54`&VqloXI(ea<ff2u()h^`obunI3FKKe6m3c>*jlw4G_(V zw#pDjyTeV0eHpvBwv@6mFhnVXO=)*tzzVic%X1pUIO9*s0l`2ADYJnUJol}GI4C1v z785VX#qzhx_S69t^iH1WAT{}YJL_h>;3W{LRZFi}^#Y~7f}}S84BY{-ljYnWGdrO0 zLe|NF*;13H038^S0+G_sw7U2iC^d&0B(*s!S`Omg?zn9b1&4N+FRTD6;9>_Un7p8i zb#q?gJcyI{Q>-DXebc`|7;f3eAq;_h6J}13Yj1p+{w;Iz#5noQIYm<-+L%kfu!2*J z)-&mKlmAzlsS}wrCNpx$OrBq>wRuss9HX#-Wr(4vm4Ts^sfC_}sim=*sqy5?HSSo& zb!+v(p&Va(Qvk%6Y~5!CPqdS3`wYQ?8~d!m^!q-0Fm2fH3Z^UjEx`1aekU;fv)>s^ z+fRVdtx)Using And and But diff --git a/docs/Output/Html/Features/00BasicGherkin/index.html b/docs/Output/Html/Features/00BasicGherkin/index.html index 0bee8bdd7..7cebc22c8 100644 --- a/docs/Output/Html/Features/00BasicGherkin/index.html +++ b/docs/Output/Html/Features/00BasicGherkin/index.html @@ -268,9 +268,9 @@

00 Basic Gherkin

diff --git a/docs/Output/Html/Features/01TestRunner/TestRunnerIsNotImportant.html b/docs/Output/Html/Features/01TestRunner/TestRunnerIsNotImportant.html index 00b39a585..5532d3b05 100644 --- a/docs/Output/Html/Features/01TestRunner/TestRunnerIsNotImportant.html +++ b/docs/Output/Html/Features/01TestRunner/TestRunnerIsNotImportant.html @@ -278,9 +278,9 @@

A couple of simple steps

diff --git a/docs/Output/Html/Features/01TestRunner/index.html b/docs/Output/Html/Features/01TestRunner/index.html index 888dafdd5..5976db7ad 100644 --- a/docs/Output/Html/Features/01TestRunner/index.html +++ b/docs/Output/Html/Features/01TestRunner/index.html @@ -266,9 +266,9 @@

01 Test Runner

diff --git a/docs/Output/Html/Features/02TagsAndHooks/Hooks.html b/docs/Output/Html/Features/02TagsAndHooks/Hooks.html index 55cbaa141..ef02ffac4 100644 --- a/docs/Output/Html/Features/02TagsAndHooks/Hooks.html +++ b/docs/Output/Html/Features/02TagsAndHooks/Hooks.html @@ -340,9 +340,9 @@

Hooking into pre conditions for Steps in SpecFlow

diff --git a/docs/Output/Html/Features/02TagsAndHooks/TagDemo.html b/docs/Output/Html/Features/02TagsAndHooks/TagDemo.html index d21fa1d13..de4bfeb4e 100644 --- a/docs/Output/Html/Features/02TagsAndHooks/TagDemo.html +++ b/docs/Output/Html/Features/02TagsAndHooks/TagDemo.html @@ -358,9 +358,9 @@

A scenario with 2 tags

diff --git a/docs/Output/Html/Features/02TagsAndHooks/index.html b/docs/Output/Html/Features/02TagsAndHooks/index.html index 17efd6576..73d412fc3 100644 --- a/docs/Output/Html/Features/02TagsAndHooks/index.html +++ b/docs/Output/Html/Features/02TagsAndHooks/index.html @@ -275,9 +275,9 @@

02 Tags And Hooks

diff --git a/docs/Output/Html/Features/031ScenarioContext/ScenarioContext.html b/docs/Output/Html/Features/031ScenarioContext/ScenarioContext.html index a4ff13862..cdd7c692d 100644 --- a/docs/Output/Html/Features/031ScenarioContext/ScenarioContext.html +++ b/docs/Output/Html/Features/031ScenarioContext/ScenarioContext.html @@ -344,9 +344,9 @@

Pending step

diff --git a/docs/Output/Html/Features/031ScenarioContext/index.html b/docs/Output/Html/Features/031ScenarioContext/index.html index a173a28e3..c3bdb7567 100644 --- a/docs/Output/Html/Features/031ScenarioContext/index.html +++ b/docs/Output/Html/Features/031ScenarioContext/index.html @@ -266,9 +266,9 @@

031 Scenario Context

diff --git a/docs/Output/Html/Features/032FeatureContext/FeatureContextFeatures.html b/docs/Output/Html/Features/032FeatureContext/FeatureContextFeatures.html index be79d6656..4443eabbd 100644 --- a/docs/Output/Html/Features/032FeatureContext/FeatureContextFeatures.html +++ b/docs/Output/Html/Features/032FeatureContext/FeatureContextFeatures.html @@ -295,9 +295,9 @@

Showing information of the feature

diff --git a/docs/Output/Html/Features/032FeatureContext/index.html b/docs/Output/Html/Features/032FeatureContext/index.html index 9fe0e3282..de6c103d9 100644 --- a/docs/Output/Html/Features/032FeatureContext/index.html +++ b/docs/Output/Html/Features/032FeatureContext/index.html @@ -266,9 +266,9 @@

032 Feature Context

diff --git a/docs/Output/Html/Features/03ScenarioOutline/ScenarioOutline.html b/docs/Output/Html/Features/03ScenarioOutline/ScenarioOutline.html index c1eebd3bb..989a685ed 100644 --- a/docs/Output/Html/Features/03ScenarioOutline/ScenarioOutline.html +++ b/docs/Output/Html/Features/03ScenarioOutline/ScenarioOutline.html @@ -434,9 +434,9 @@

Examples: more than 100

diff --git a/docs/Output/Html/Features/03ScenarioOutline/index.html b/docs/Output/Html/Features/03ScenarioOutline/index.html index 26224c425..d93946e7c 100644 --- a/docs/Output/Html/Features/03ScenarioOutline/index.html +++ b/docs/Output/Html/Features/03ScenarioOutline/index.html @@ -266,9 +266,9 @@

03 Scenario Outline

diff --git a/docs/Output/Html/Features/04Background/BackgroundFeature.html b/docs/Output/Html/Features/04Background/BackgroundFeature.html index fec879332..d02712782 100644 --- a/docs/Output/Html/Features/04Background/BackgroundFeature.html +++ b/docs/Output/Html/Features/04Background/BackgroundFeature.html @@ -305,9 +305,9 @@

Add 2 to the sum

diff --git a/docs/Output/Html/Features/04Background/index.html b/docs/Output/Html/Features/04Background/index.html index 4ef3fb79c..5282f9b47 100644 --- a/docs/Output/Html/Features/04Background/index.html +++ b/docs/Output/Html/Features/04Background/index.html @@ -266,9 +266,9 @@

04 Background

diff --git a/docs/Output/Html/Features/05TablesAndAssist/TableScenario.html b/docs/Output/Html/Features/05TablesAndAssist/TableScenario.html index 2508ea1f6..bb4f4be58 100644 --- a/docs/Output/Html/Features/05TablesAndAssist/TableScenario.html +++ b/docs/Output/Html/Features/05TablesAndAssist/TableScenario.html @@ -326,9 +326,9 @@

Example of a wide table

diff --git a/docs/Output/Html/Features/05TablesAndAssist/index.html b/docs/Output/Html/Features/05TablesAndAssist/index.html index 96f246655..40c33215f 100644 --- a/docs/Output/Html/Features/05TablesAndAssist/index.html +++ b/docs/Output/Html/Features/05TablesAndAssist/index.html @@ -266,9 +266,9 @@

05 Tables And Assist

diff --git a/docs/Output/Html/Features/06CompareToAssist/CompareTo.html b/docs/Output/Html/Features/06CompareToAssist/CompareTo.html index 76a0e1fa4..49d906250 100644 --- a/docs/Output/Html/Features/06CompareToAssist/CompareTo.html +++ b/docs/Output/Html/Features/06CompareToAssist/CompareTo.html @@ -298,9 +298,9 @@

CompareToSet

diff --git a/docs/Output/Html/Features/06CompareToAssist/index.html b/docs/Output/Html/Features/06CompareToAssist/index.html index 614ee7668..47f4f6f25 100644 --- a/docs/Output/Html/Features/06CompareToAssist/index.html +++ b/docs/Output/Html/Features/06CompareToAssist/index.html @@ -266,9 +266,9 @@

06 Compare To Assist

diff --git a/docs/Output/Html/Features/07Localization/Svenska.html b/docs/Output/Html/Features/07Localization/Svenska.html index c382fdfb1..9bac2978b 100644 --- a/docs/Output/Html/Features/07Localization/Svenska.html +++ b/docs/Output/Html/Features/07Localization/Svenska.html @@ -280,9 +280,9 @@

Summera 5 och 7 ska vara 12

diff --git a/docs/Output/Html/Features/07Localization/Vlaams.html b/docs/Output/Html/Features/07Localization/Vlaams.html index 719a5b726..9f54eb546 100644 --- a/docs/Output/Html/Features/07Localization/Vlaams.html +++ b/docs/Output/Html/Features/07Localization/Vlaams.html @@ -277,9 +277,9 @@

Het Scenario

diff --git a/docs/Output/Html/Features/07Localization/index.html b/docs/Output/Html/Features/07Localization/index.html index 7510f5766..741bb6972 100644 --- a/docs/Output/Html/Features/07Localization/index.html +++ b/docs/Output/Html/Features/07Localization/index.html @@ -273,9 +273,9 @@

07 Localization

diff --git a/docs/Output/Html/Features/08AttributeOverloading/AttributeOverloading.html b/docs/Output/Html/Features/08AttributeOverloading/AttributeOverloading.html index eeed26aca..4f2070e72 100644 --- a/docs/Output/Html/Features/08AttributeOverloading/AttributeOverloading.html +++ b/docs/Output/Html/Features/08AttributeOverloading/AttributeOverloading.html @@ -286,9 +286,9 @@

Checking number for evenness

diff --git a/docs/Output/Html/Features/08AttributeOverloading/index.html b/docs/Output/Html/Features/08AttributeOverloading/index.html index 8a4045673..4db8f4dd6 100644 --- a/docs/Output/Html/Features/08AttributeOverloading/index.html +++ b/docs/Output/Html/Features/08AttributeOverloading/index.html @@ -266,9 +266,9 @@

08 Attribute Overloading

diff --git a/docs/Output/Html/Features/09CallingStepsFromSteps/CallingStepsFromSteps.html b/docs/Output/Html/Features/09CallingStepsFromSteps/CallingStepsFromSteps.html index 2c03a63b6..13bdf8815 100644 --- a/docs/Output/Html/Features/09CallingStepsFromSteps/CallingStepsFromSteps.html +++ b/docs/Output/Html/Features/09CallingStepsFromSteps/CallingStepsFromSteps.html @@ -298,9 +298,9 @@

Do something meaningful

diff --git a/docs/Output/Html/Features/09CallingStepsFromSteps/index.html b/docs/Output/Html/Features/09CallingStepsFromSteps/index.html index d74b415c1..f322c4283 100644 --- a/docs/Output/Html/Features/09CallingStepsFromSteps/index.html +++ b/docs/Output/Html/Features/09CallingStepsFromSteps/index.html @@ -266,9 +266,9 @@

09 Calling Steps From Steps

diff --git a/docs/Output/Html/Features/10StepTransformation/StepTransformation.html b/docs/Output/Html/Features/10StepTransformation/StepTransformation.html index 6bf1f15e4..81c6a81b4 100644 --- a/docs/Output/Html/Features/10StepTransformation/StepTransformation.html +++ b/docs/Output/Html/Features/10StepTransformation/StepTransformation.html @@ -278,9 +278,9 @@

Steps with non-string arguments

diff --git a/docs/Output/Html/Features/10StepTransformation/index.html b/docs/Output/Html/Features/10StepTransformation/index.html index 2988928df..d12c95d63 100644 --- a/docs/Output/Html/Features/10StepTransformation/index.html +++ b/docs/Output/Html/Features/10StepTransformation/index.html @@ -266,9 +266,9 @@

10 Step Transformation

diff --git a/docs/Output/Html/Features/11ContextInjection/ContextInjection.html b/docs/Output/Html/Features/11ContextInjection/ContextInjection.html index a2cd731b9..5e92503b2 100644 --- a/docs/Output/Html/Features/11ContextInjection/ContextInjection.html +++ b/docs/Output/Html/Features/11ContextInjection/ContextInjection.html @@ -346,9 +346,9 @@

Feature with a dependent context

diff --git a/docs/Output/Html/Features/11ContextInjection/index.html b/docs/Output/Html/Features/11ContextInjection/index.html index c1c68b1ed..720008723 100644 --- a/docs/Output/Html/Features/11ContextInjection/index.html +++ b/docs/Output/Html/Features/11ContextInjection/index.html @@ -268,9 +268,9 @@

11 Context Injection

diff --git a/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/NestedFolderExample.html b/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/NestedFolderExample.html index d3e5d767e..62cc6c1bf 100644 --- a/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/NestedFolderExample.html +++ b/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/NestedFolderExample.html @@ -281,9 +281,9 @@

Nested - Add two numbers

diff --git a/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/index.html b/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/index.html index a09b53504..90a6645f8 100644 --- a/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/index.html +++ b/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/index.html @@ -266,9 +266,9 @@

Child Child Folder

diff --git a/docs/Output/Html/Features/12NestedFolders/ChildFolder/index.html b/docs/Output/Html/Features/12NestedFolders/ChildFolder/index.html index 30b7489c1..b00f09e98 100644 --- a/docs/Output/Html/Features/12NestedFolders/ChildFolder/index.html +++ b/docs/Output/Html/Features/12NestedFolders/ChildFolder/index.html @@ -256,9 +256,9 @@

Child Folder

    diff --git a/docs/Output/Html/Features/12NestedFolders/index.html b/docs/Output/Html/Features/12NestedFolders/index.html index 0de0080d6..548c4aa23 100644 --- a/docs/Output/Html/Features/12NestedFolders/index.html +++ b/docs/Output/Html/Features/12NestedFolders/index.html @@ -256,9 +256,9 @@

    12 Nested Folders

      diff --git a/docs/Output/Html/Features/13MultilineText/MultilineFeatureExample.html b/docs/Output/Html/Features/13MultilineText/MultilineFeatureExample.html index fd3a3f267..aabed4a78 100644 --- a/docs/Output/Html/Features/13MultilineText/MultilineFeatureExample.html +++ b/docs/Output/Html/Features/13MultilineText/MultilineFeatureExample.html @@ -281,9 +281,9 @@

      Mutliline Output

    diff --git a/docs/Output/Html/Features/13MultilineText/index.html b/docs/Output/Html/Features/13MultilineText/index.html index 1a3dab8a9..e3ab6400c 100644 --- a/docs/Output/Html/Features/13MultilineText/index.html +++ b/docs/Output/Html/Features/13MultilineText/index.html @@ -266,9 +266,9 @@

    13 Multiline Text

diff --git a/docs/Output/Html/Features/14MarkdownExample/MarkdownExamples.html b/docs/Output/Html/Features/14MarkdownExample/MarkdownExamples.html index 86edd5300..98be965f0 100644 --- a/docs/Output/Html/Features/14MarkdownExample/MarkdownExamples.html +++ b/docs/Output/Html/Features/14MarkdownExample/MarkdownExamples.html @@ -396,9 +396,9 @@

Examples:

diff --git a/docs/Output/Html/Features/14MarkdownExample/index.html b/docs/Output/Html/Features/14MarkdownExample/index.html index 6f90bad55..0fae5707e 100644 --- a/docs/Output/Html/Features/14MarkdownExample/index.html +++ b/docs/Output/Html/Features/14MarkdownExample/index.html @@ -298,9 +298,9 @@

14 Markdown Example

diff --git a/docs/Output/Html/Features/15Pickles/InteractiveDHTMLView.html b/docs/Output/Html/Features/15Pickles/InteractiveDHTMLView.html index 420369c78..8467af152 100644 --- a/docs/Output/Html/Features/15Pickles/InteractiveDHTMLView.html +++ b/docs/Output/Html/Features/15Pickles/InteractiveDHTMLView.html @@ -278,9 +278,9 @@

Scenario with large data table

diff --git a/docs/Output/Html/Features/15Pickles/index.html b/docs/Output/Html/Features/15Pickles/index.html index c5635730b..9e210ed00 100644 --- a/docs/Output/Html/Features/15Pickles/index.html +++ b/docs/Output/Html/Features/15Pickles/index.html @@ -267,9 +267,9 @@

15 Pickles

diff --git a/docs/Output/Html/Features/Arithmetic.html b/docs/Output/Html/Features/Arithmetic.html index a2d57449b..d77e99d8e 100644 --- a/docs/Output/Html/Features/Arithmetic.html +++ b/docs/Output/Html/Features/Arithmetic.html @@ -350,9 +350,9 @@

Divide two numbers

diff --git a/docs/Output/Html/Features/Trigonometry.html b/docs/Output/Html/Features/Trigonometry.html index 4f16d665b..ece05c4bb 100644 --- a/docs/Output/Html/Features/Trigonometry.html +++ b/docs/Output/Html/Features/Trigonometry.html @@ -317,9 +317,9 @@

Tangent

diff --git a/docs/Output/Html/Features/Workflow/ClearingScreen.html b/docs/Output/Html/Features/Workflow/ClearingScreen.html index 0c564c890..99ccf52f4 100644 --- a/docs/Output/Html/Features/Workflow/ClearingScreen.html +++ b/docs/Output/Html/Features/Workflow/ClearingScreen.html @@ -281,9 +281,9 @@

Clear the screen

diff --git a/docs/Output/Html/Features/Workflow/index.html b/docs/Output/Html/Features/Workflow/index.html index 0ba60d84c..976e685ce 100644 --- a/docs/Output/Html/Features/Workflow/index.html +++ b/docs/Output/Html/Features/Workflow/index.html @@ -266,9 +266,9 @@

Workflow

diff --git a/docs/Output/Html/Features/index.html b/docs/Output/Html/Features/index.html index ea812a42d..ef4a7d6b4 100644 --- a/docs/Output/Html/Features/index.html +++ b/docs/Output/Html/Features/index.html @@ -278,9 +278,9 @@

Features

diff --git a/docs/Output/Html/index.html b/docs/Output/Html/index.html index c8838f5fa..b3b1bb52b 100644 --- a/docs/Output/Html/index.html +++ b/docs/Output/Html/index.html @@ -256,9 +256,9 @@

Examples

    diff --git a/docs/Output/Html/readme.html b/docs/Output/Html/readme.html index c5302df82..44a38f525 100644 --- a/docs/Output/Html/readme.html +++ b/docs/Output/Html/readme.html @@ -255,9 +255,9 @@

    In the Features-folders you'll find quite a large population of .feature files that you can use to test out pickles on.

    diff --git a/docs/Output/JSON/pickledFeatures.json b/docs/Output/JSON/pickledFeatures.json index 00d037f73..874f9bfdf 100644 --- a/docs/Output/JSON/pickledFeatures.json +++ b/docs/Output/JSON/pickledFeatures.json @@ -3246,7 +3246,7 @@ }, "Configuration": { "SutName": "Pickles", - "SutVersion": "2.20.0", - "GeneratedOn": "9 Oktober 2018 17:01:58" + "SutVersion": "2.20.1", + "GeneratedOn": "18 Oktober 2018 19:07:15" } } \ No newline at end of file diff --git a/docs/Output/Word/Pickles.docx b/docs/Output/Word/Pickles.docx index 5c533365e596df15a38689f58629f128b91d4fd0..2633669476bd97dd3dfbef7d064dac394761f98f 100644 GIT binary patch delta 1328 zcmaEx`!<(1z?+#xgn@y9gW>s%ppCrWq&R@I?<(2fL7TayEg20BOe~BOO^hroERqsU zOj44R6!h(E^n+4!5=%1k^NKSv3ySSf%-CEibBTu&WXLHS<}A<20h(_0dCdj_Y!6l| zyze$NV_7vJ=a%dCz$NQ?ZJAdzOnkfL?9E*-CRVjxQd@PxyGtwe<;Ne_mv8+0^`m9{ zzVh4;T-QvO>2q)^3puRs$@{fRLAt+OGE(oEcE(b9>zKPddJ_F#)+ucLe%N-Y-_;AA z;)b;RvpbKq>gs(Q5>^=-*gobyT?!<70|nsrj8b}+^BSKA5Eo(YK5| zbJp+%@4JyP;mFT$i)7CSmuAXdy(Dma{>}&Qx;CraTr9cRR<1t8PPuGS@P#n*ye&_5 zWm=?u-ei&B{Vrvt$y=3RJ(Z+{L*Exn&E2_?+xOqpXWeg^Ue;T?=pS7qeP-GgsS^*L z>m3y_$ymXgaca%i-B&|mIx{yVHYg{R=43vses-x-C1$O}*U!J#-`se9Ub|SpeD;r< zCDu>uY`b%R>#vOto<-aD`-ZIM(Tx_(_E5hw-K$`Zf{yO)P7*YsJO7BSGW4v|9>AV?C#y` zUmmXN$$pM|aq+HxAuosGV9vjjE{nasD{Cuy+-~*7i4#`UUUT%5cA0&2<8xk(XUfTr z?FqSak|g@xsfL}2joSU#Ewb%Vq(|d*i+bNl%ySLZ9?U(LcEpeKU5~jb-=s5FwmvY( z?>?0KajweJhijR77bm}QXp`#s*1Mr@;mZG)oHj%%+>P&lF(u|x)$XHfi`MYhh8G#V z>Rr9YSY{9Z_NO8-oxf9@nc0u5x)F59|NK&+qb+fUzrO!pe=qREyxC@p_Q?rV8TL$6 ztrbgK8&!2CbJ88Tyl<&q(^m^+UGw@QCMlY3p66dNRUpV(t+*G`21(ATCN}WWX!1%E zLvR|uYhr~|x+s`B%7e<9+qVn$q%bis@bfY-NCAs81h_M~!Bi8hbB(Dq=SW delta 1334 zcmaEx`!<(1z?+#xgn@y9gTc1Lb0hCJDGng*YjZI?ax=HIC8ME{L8?WHp^349kx7b) znNg~eg1()Neo$&oVo7FxUU5cdL9rc*8JkOGF7a@J4EfHVY~?jMK+~<>@34UY+k@3E z_k^E6v@pxM#jA58Y-)t{Hy@#iM*`n4*-CTw9TDZ&;*`l9)Ouy<@yGG=k9|9S`*+gU zTU!qr_pIAk>-fk(iSf&=SzuPq?~o-Uim!D(p_zS zJ1_8E@VCx5?)Nj(GOQ%vmuINMWR3bqC3DgzJU)}KS^B{wm+l)GJ2qF{c6?vYx$NBg zr~;K6D>gF43;arQFJ93WEX673<9MwwPEF0z^;}C@V9cb3IHy-qwo&O9+i#VzpPjDs zKlI~`AHU=TxBO=|$)0gj!SzgU;GFbHg)?I_eqY~l;alC}Q(}IN_R_`?$C5f#6}m!< z!Wuu#GGM>w-~XYep#4{mYD-t?q=J)*>35!7Pr15)r)T+!+EP2s$!R)9nJrF6yaji) zxBQ#4W&JtNi2)~OPMA53XXh`qi;L&){lkJ9(l52PGBE=~dhLB@J%=Qu-ZIn2O*A%hi#$!Q-hiRw$IgM?6>#($cPf;zLvqkCnrZ6TGrq8 zYcUXLi(mTkFOzpk@`*$D1oqwqhOm*xX4|E*2WrjqYgFP77KJ1ybtqG9A{D*$msKn;NG3DgdkG5Q2j?n+A1iwi>;$X&oj@RO|e(CG7%x1mx_iKmWN!9h+qwi=P|8=2URekZj z9jB}gAN*Yq?RRkM4u3O~0*5tSx~hM^#ApTjybxVn|NsA0Yp#36m))*hcXrZmGu*V~ z{Gl~bq5YP=lWreAyU*ukQK-||sLuOJiyyr?_Lg(KkW<$26uIOFc#QIW{alUojj1&AR9%M28+C;z r-!UvppCrWq&R@I@5foCO`Ex;Eg21sOp{X*lg!P{jV+8! zjEyao6!h(E^n+4!5=%1k^NKSv3ySSf%-CEibBTu&WQdR4!a}#n0h(_0S%(b-*dDCr zc$@uG@pfkCWZ&H{%vg5Goi^UKGFQ?wbN1%ai^^ZQLOnUoEf(Oq=x2QC{Beca`nt2z ziV%S)BUsR08)s3v)Y;#L#Bj z8xH*zKlm~)H-C-}?iReFeMRGu!I}D&nQ0#$`)s?{SK+%zElbocYwOFx0`aES(%XEx z>DdORyPCSob63@xe#o3-8_pVkG}UkAC+-kUPUUk)Oqc8nb&K}Z3)po(yH50{>rwC5 zv(%MB-tk{}a^T3cd+ID&os%YccrDV-{Vyf{^5EKqZ$5}rWcVa19PUt1Kjm=m`KM_H zLEYzmx>wlksI5H|!&zrKvmFN6zEXi*)@u2Gme~rL~ob85qi&7wNh(f*6xu>0Jd29MW%Q1V^H5 zSIDZ#zJ`|d-hROFZ(E;Kd0(Y>fm7h*Jf$091x$~9IzsoS_zP8;iOFSv z%s#sDIj_buY=} z$J~@}(wQq;9~k6!AIkkWS7qtLwM@N>lixVBN%ef|-B7o1<^M}g8zL3%#`nLN67#8Q z_tCXQYxrx!i;Q0Nu3lp-vxk5CQ<0d?-zm<_>_=AJ2s-3{eyPyWmN>&--~X?_7x-b` zY_moC5g39w^Xm`tA(Zl0H7q@R0>`7r_VBqIvV2}c4Jp{O^#W4Aomh|L) zQy#GXd8X2g6DRL7RRr_y0eLqk|1wno^JLAW88=S0G?PQbb-bAvqxs}AGdX#XH7nmu d{-DLkz!1#Bz#xpU1IRi%d9#@sn~MoZ5CBb_vmpQg delta 1098 zcmcbedq0;qz?+#xgn@y9gTbo9b0hCJDGng*yX8uH-ezuTOGZO;3sVb|RMS**OLH?5 z%ajx)1${dk{h-vG#FEVXyyA?^f?_)qGd7pXT;kyb8Im2}@WE?xfTml0-eCm+wg;;t z-eey*)*n*1DO3Ee+r(YR3~q$wCLdgqd+wTR{}t^kxrOw zq3in$=;W8B+z#q?BUK5yHpvg)(_O4h3@ z@;20&u!+Pm`11MWaCR53JZ16FQ!8RxZ07Iq-92v$bx(`+HP%ZDN1U3{W#aEptQHZr zE|2qbgN5Cp%g5fnz8uLF>~(U+nO1?$lLk;O?T3eZzfg!zlo~|n+h%xz@-c_)`KK*7! za70=L2cMkmX=qu0+ponype=ss%fC$CCCMia-4ob*_l58kBah9tOJxt#n(5c5#2+jQ zNlxle%)ET=&wYE@XOG|ht*8o}RPtbtfz|Tg8VgxW%%@(^x6Ivm@9xFm!Z(|xWI0#f zN|$}I#c@ldO!d8nBs(Lq5{_%fG}|7&h)X(pXX#e!yeX*~^IAnJdh0K%SYD7!X1ez> z$L-CO2j?n+A1j>niRI?|yiMbd*nQ6+se4)%EUb?4rK~uZai8P0_^e<0x-7F7exCVoVvr`%%s3!O_#3fpD!_5fj%!p7uWy) zf7P1nUh!qOE7zT!^xF(KEjfQ^O;l*VrSGKMhtKZwd07AJ z4Y!QSAfX>@Vgt`Tlc$>)f}`ZLi4{_A;4^iU2jz|1w+r^9FflOj^D;0<0kaf~*vieTO?An)$vZ>9=ho}`&{{Z@SjhVuNP6#b0U#FW$`y^7qN0B=Sn zT?Tl5_60@1FC)+zW*|n`0c2SlLN%x5=a*pDyz<@T4_ZLY!7L06!YGDownload

- If you prefer to download the .zip files, you can so from the Github release page. + If you prefer to download the .zip files, you can so from the Github release page.