diff --git a/DeployOutput.cmd b/DeployOutput.cmd new file mode 100644 index 000000000..725b60b33 --- /dev/null +++ b/DeployOutput.cmd @@ -0,0 +1,7 @@ +@ECHO OFF + +cd ..\picklesdoc.github.com +rmdir Output /s /q +echo D | xcopy ..\pickles\Output Output /e +powershell -Command "(gc index_template.md) -replace 'VERSION_PLACEHOLDER', '%1' | Out-File -encoding ASCII index.md" +cd ..\pickles diff --git a/ReleaseNotes.md b/ReleaseNotes.md index cd41ece88..46b5cdac2 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,5 +1,11 @@ # Pickles Release Notes +## v1.2.3 - 2015-10-06 + +### Bugs Fixed + +- In the DHtml version, the alignment of the keywords (Given, When, Then) was fixed for non-English languages ([#219](https://github.com/picklesdoc/pickles/issues/219)) + ## v1.2.2 - 2015-09-24 ### Bugs Fixed diff --git a/build.bat b/build.bat index 446098d93..faa745fc1 100644 --- a/build.bat +++ b/build.bat @@ -1,5 +1,5 @@ @echo off -set "picklesVersion=1.2.2" +set "picklesVersion=1.2.3" set "fakeVersion=3.36.0" cls diff --git a/src/Pickles/Pickles.BaseDhtmlFiles/css/styles.css b/src/Pickles/Pickles.BaseDhtmlFiles/css/styles.css index a11066bca..6c4048c8e 100644 --- a/src/Pickles/Pickles.BaseDhtmlFiles/css/styles.css +++ b/src/Pickles/Pickles.BaseDhtmlFiles/css/styles.css @@ -67,10 +67,6 @@ li.step { .keyword { font-weight: bold; color: #0000FF; - float: left; - width: 40px; - text-align: right; - margin-right: 4px; } .steps table { diff --git a/src/Pickles/VersionInfo.cs b/src/Pickles/VersionInfo.cs index 93cf923d9..d52dd64be 100644 --- a/src/Pickles/VersionInfo.cs +++ b/src/Pickles/VersionInfo.cs @@ -8,10 +8,10 @@ [assembly: AssemblyTrademarkAttribute("")] [assembly: AssemblyCultureAttribute("")] [assembly: ComVisibleAttribute(false)] -[assembly: AssemblyVersionAttribute("1.2.2")] -[assembly: AssemblyFileVersionAttribute("1.2.2")] +[assembly: AssemblyVersionAttribute("1.2.3")] +[assembly: AssemblyFileVersionAttribute("1.2.3")] namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "1.2.2"; + internal const string Version = "1.2.3"; } }