Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

27,956

Downloads of v 2.20.0:

326

Last Update:

09 Oct 2018

Package Maintainer(s):

Software Author(s):

  • PicklesDoc and contributors

Tags:

specificationbyexample bdd specflow gherkin cucumber specbyex livingdocumentation documentation

Pickles UI - The Open Source Living Documentation Generator (GUI)

This is not the latest version of Pickles UI - The Open Source Living Documentation Generator (GUI) available.

  • 1
  • 2
  • 3

2.20.0 | Updated: 09 Oct 2018

Downloads:

27,956

Downloads of v 2.20.0:

326

Software Author(s):

  • PicklesDoc and contributors

Pickles UI - The Open Source Living Documentation Generator (GUI) 2.20.0

This is not the latest version of Pickles UI - The Open Source Living Documentation Generator (GUI) available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Pickles UI - The Open Source Living Documentation Generator (GUI), run the following command from the command line or from PowerShell:

>

To upgrade Pickles UI - The Open Source Living Documentation Generator (GUI), run the following command from the command line or from PowerShell:

>

To uninstall Pickles UI - The Open Source Living Documentation Generator (GUI), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade picklesui -y --source="'INTERNAL REPO URL'" --version="'2.20.0'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade picklesui -y --source="'INTERNAL REPO URL'" --version="'2.20.0'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install picklesui
  win_chocolatey:
    name: picklesui
    version: '2.20.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'picklesui' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.20.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller picklesui
{
    Name     = "picklesui"
    Version  = "2.20.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'picklesui':
  ensure   => '2.20.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 09 Oct 2018.

Description

Pickles is an open source living documentation generator that works on feature files written in the Gherkin language, popularized in tools like Cucumber and SpecFlow.

This GUI version of Pickles provides an easy way to produce living documentation in a format that is more accessible to your clients. Gherkin language files are written in plain text and stored in your source folder. This can make them inaccessible to clients who may not know how to work with source control or who are not interested in seeing all of the source code, just the features.

Pickles can produce output in different formats:

  • Static HTML: a set of HTML files with minimal JavaScript
  • Dynamic HTML: a JavaScript-rich single page app with integrated search
  • Word: Microsoft Word
  • Excel: Microsoft Excel
  • JSON: a custom JSON format

Optionally, Pickles can integrate test results, so that your stakeholders know which scenarios pass validation. Pickles supports these test formats:

  • NUnit
  • MSTest
  • XUnit
  • SpecRun
  • Cucumber JSON

tools\Autofac.dll
md5: 9C02BBD8D2606B9D981F2DB98BFCAB54 | sha1: C577A19567AB2DEF1DC0D49C1A6C72568E721AB9 | sha256: 128A9AFD89BD2E98D6941C00C3349B35E1C13F714A6C46109801D11DF3D75E57 | sha512: 52BACA0E0E7AFB791F95DD1A7ED5DE58DA71A68495ACF12C5076F1F1E3BDF6681AF4C846EAF2F682CBAEA5B939F4E3080E8B99A98458255F25BB1A59273F2DA9
tools\ClosedXML.dll
md5: ECACCF48C6B7534C050BE80A8CDFB0B9 | sha1: DD8D80D1DBD0420F7E7489BF31875BA1B938AE25 | sha256: 2E10C6F7535AF4F3E4AAEB891259C1B5ED921076C147B5005DF653ADFCF0B3A9 | sha512: 666166020917F83C5C790212542661FEBC391C207532579938BE22B04F43F9234044F69FDD37E73890BE782A12A9831F2F5712D54E9AEAD1BF694B863B9FD66E
tools\CommonServiceLocator.dll
md5: 61D2FA6C77A04AF4683183A5624F8C88 | sha1: 1659B894379C72A8AD0E0E9BF59587CBC158FA6B | sha256: C5A30F8D7C0D126EB3AC568138241B7BB9D234D3C7F7FF723EA0FCEB4CAF3D62 | sha512: 294221BC45F5339EBAA5F8BFA066E042B05204E22F0C9B96B4145D3EE74227BF744105A5ECFC176F33056142EB98CD1B2B7805AAACDAC540C2BAF4FE8079936B
tools\ControlzEx.dll
md5: 5CF2837021516334344629CB679D40B5 | sha1: 92D9304196ADBA968C05C4D120387E464391B792 | sha256: 55CAE0AF8517AC2D787B210AC6F79C9AAC7F58035B69FAAF620A90F33E2676FC | sha512: 200EF0B7A3F6F7907A355C4DE88F21783D535355BC1A71AE6B463C25B8D9AC84940380E1E71927247AF6D5E9B9621A3CEFA841A705B7179D8AA5A3904AC27924
tools\DocumentFormat.OpenXml.dll
md5: 8BF2D98EB3CEA4E624FBFF8E6AEC7C8F | sha1: 8604A515B29A6DB99230E5D72E6EF0924AFBBFEC | sha256: 40F293A772B3017814557BFB6FFD0077C7B81DC4FDC1CAA7498DB64C38DCC25F | sha512: 8CA3882076D50C24926A179FF87C5708040A46AEE33B5EDAD392BEF9D357BF803837F47FA6C73178EBF9C0AC189DAD79CE777FB76170E8CB91818EAE458540AE
tools\FeatureSwitcher.dll
md5: 87C7E94393317CFD6A72FFB96AA6D69F | sha1: 9FF4A4733D2925FC2CA1B74FC9448410C69FB56B | sha256: 637979879D1BA63BBB9DFBEF7D68822892C40543F2B61133709574F902D78A76 | sha512: 2668E2EFB4AEA9FA44A40D8D7E7192B967215F9215A13307E5BC174AFD0CC13A9666819DBE9435C1B4A58670C7948FF47775C5581F6319AF7F3728F271D6889F
tools\GalaSoft.MvvmLight.dll
md5: AF04687248DA9E95A7FF65AB538D0BCF | sha1: 7511184300E2B6F70BC92333392386A812B2DABF | sha256: B097FCA120A9E76FA870D82662BDD233ADBF08FC34A3C509F31CC5CED0AC1ECF | sha512: A5EAB337F6386DE5FB2CC809730BAC7D17CDFB309AFEA32E65E9D8C457F97AC3E3F03CEBD48535CF253E28F3AA600F234631C2060EC59ACB917CB5F135F4B67A
tools\GalaSoft.MvvmLight.Extras.dll
md5: 810E42E2BBFB536BDC01ABF882A24938 | sha1: 7BD37217AAF5EC27D2F993BB4212B0B8AB94D220 | sha256: CB4D844434A8FFBD33531470E094524BE27B88CA42B2C2197492BBE8246EA1BB | sha512: 176769EF15D87373C53CC39241126BD39CE57B18AF0DF4D9D2CF68645868DD53090CB5AB93B8BA78303A3E6B5F3888D2150E6DEF57B26462DF1B12FE7450F650
tools\GalaSoft.MvvmLight.Platform.dll
md5: 5B958B4229538AC23099CE9ED6F37DE4 | sha1: 32CD46E39C4F6334D28788D5E3AFAA19D4FD1041 | sha256: 2A1114C99533AAE7442B298336247350B55CAA193C06454EA606D6A394656573 | sha512: 87B6A509D1CB262E6BA198819FFEC3B8E03E4672B031FF918FE406307F750192A73C73DCD8140D8BE5DCC8286A79E779FAD59189AE7AC759CEC6223E55B9B899
tools\Gherkin.dll
md5: 999C6BC2D2CE7565A861394B01B3B3A9 | sha1: 251E4AE6ED3707B6F91C05982135735D4117B973 | sha256: E44DFDBCBA8B343E9E506DE567F9F3BD236F80112B6078A07B1498DF838F90E1 | sha512: A003137E67B28ECE5E32B7A5FAD3C20395717469C0EB044D7C273D18F99C3EF01CF3CA675EDD0A730A4127F18833F7215CC033DABFD0294C347FDB07278C59D1
tools\Jint.dll
md5: E0F990882B2C743EA13AEB79476DEC1B | sha1: 07908FC55B93349C7C69E1BC69DAC384AD8876B9 | sha256: 897CC6D3BC67C7259D3BAE2D9246F6195474B51848490B595E2CD1AC15CF7A66 | sha512: 4A1CA286092D571C22E2C962526493308541CBCE2DC7AB680B8C2140DB9C3DAE6972F85C105423B547490D2DA43375A999E62E6519B64F7851F24E28991B793B
tools\LICENSE.txt
Apache License

Version 2.0, January 2004

http://www.apache.org/licenses/

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

1. Definitions.

"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.

"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.

"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.

"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.

"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.

"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.

"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).

"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.

"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."

"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.

2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.

3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.

4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:

You must give any other recipients of the Work or Derivative Works a copy of this License; and

You must cause any modified files to carry prominent notices stating that You changed the files; and

You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and

If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.

5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.

6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.

7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.

8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.

9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS


Pickles contains code of SpecFlow (http://specflow.org/). That code is licensed under these terms:

SpecFlow Licence (New BSD License)

Copyright (c) 2009, TechTalk

Disclaimer:
 * The initial codebase of Specflow was written by TechTalk employees. 
   No 3rd party code was included.
 * No code of customer projects was used to create this project.
 * TechTalk had the full rights to publish the initial codebase.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
 * Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
 * Neither the name of the SpecFlow project nor the
   names of its contributors may be used to endorse or promote products
   derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL TECHTALK OR CONTRIBUTORS  BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
tools\MahApps.Metro.dll
md5: 33E31AE82039F836C3A1DF23C8B46139 | sha1: 706FE3E4410D5D687EBDFBB2CF1B4088ADDEE5F1 | sha256: 097828E83B9918B953E79667AC11A187BA7B2AD0AD3FE410E5A8EECF593ADEF9 | sha512: CC9674D01B16BA3564317D5672EB61AF92F674CAC36BD5F6925B32C7138574CD4B35D997999BEBB2754D03A8DA789955A37B19B23BFF5EB9E0244E31A28F71E7
tools\MarkdownDeep.dll
md5: 8CBBD216E99B1D4D9304231235FF8C59 | sha1: CFE5C3A8BD9F2A3B814E7DFF271CD3620A04B299 | sha256: C44C392D40A05C5D1356B7F90171318BC03C766F15DE97E08E7F115D10159C87 | sha512: C7E38E07270CFB4DC66DD839D696D51CB3B4241959AD63EC391DD74ECD2C9437E8C9B4AA0F3F4A905BB3D906660597E4F142D3F34BB15E1A228B6341FA9449D7
tools\Newtonsoft.Json.dll
md5: 5AFDA7C7D4F7085E744C2E7599279DB3 | sha1: 3A833EB7C6BE203F16799D7B7CCD8B8C9D439261 | sha256: F58C374FFCAAE4E36D740D90FBF7FE70D0ABB7328CD9AF3A0A7B70803E994BA4 | sha512: 7CBBBEF742F56AF80F1012D7DA86FE5375AC05813045756FB45D0691C36EF13C069361457500BA4200157D5EE7922FD118BF4C0635E5192E3F8C6183FD580944
tools\NLog.config
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

  <extensions>
    <add assembly="NlogViewer" />
  </extensions>
  <targets>
    <target xsi:type="NlogViewer" name="ctrl" />
  </targets>
  <rules>
    <logger name="*" minlevel="Trace" writeTo="ctrl" />
  </rules>
</nlog>
tools\NLog.dll
md5: AA0FC18AD19CEE41578C1DD2E4B1B75C | sha1: 894ACC2ECD0C86CAE06BCF8C68F920700843311D | sha256: CA20AB8E9F53229B229CACE3FAE5A5CFCE6E3EA8C9CCFDB3394EFD5666B018B0 | sha512: 4E9B045732B486F85871C3BA5FED871338433EDB35C7E5CAB7DDF4E7A29FD419761FC4C5BD23FCE8EAE9F9D707795C62B5034B3B9A121B96B4ED50A5543BD5E2
tools\NlogViewer.dll
md5: 48802ECC0F75C66AC24977E7584F6F80 | sha1: 102E4CCC563FEA6C9207F0BFFDD53835A2D86082 | sha256: D5DDD439971597BA31EC804B339F49FF0583EA19C5FC7A089CFF454D782BF455 | sha512: 0D75E8824887E6B9F70622BCC09386906ACD59091C642BAE478BE06FB99787F9154269052CAB9C3C02CB3FE68B833233FA1DE989A04FF8A2249F35405C9DC460
tools\Ookii.Dialogs.Wpf.dll
md5: 5926472580C7A7B45CD611DC0FB06244 | sha1: A3B33BC8C9963F727BC2A2714EC6DE0C607BCA40 | sha256: 04B8CB55FF481A4F4F9A60BC3C5E06ED78C12A8677C211621EDCF9D8467BD823 | sha512: BE05B4695896B4A2AD2CA63836C9D05084B8AA1B71929E1B081FD47B851282438BDF8C7BC65466CE7F3FE30335E743C0BD12AA52670B12D6EAEC8B3BFD193056
tools\PicklesDoc.Pickles.DocumentationBuilders.Cucumber.dll
md5: CD1E258C6344156D738889ED2AD7CCC2 | sha1: 035696810A444E7B4B0279BEF9201E21F2C9682E | sha256: 6A826D4B1AB289E8F7A63846DB65B93529B5901179C61A8328DBEF13768C179A | sha512: 14C61186A4201C79307AD226BC78DFF6C095662C7463E1AFB172D4C63DE87608BB4AD44504DA49C60334F8ADC89CFAB34AD134A952FA3E4082C5E713A845B455
tools\PicklesDoc.Pickles.DocumentationBuilders.Dhtml.dll
md5: 59E82DFFA368A4B68A8AB9D0F0E37148 | sha1: 63AE9C366CD2D295F6D738694D3613636201A024 | sha256: D0ABD55AD3BAEE7A31B579823450697AAE7F6CCE37BD1FB821D721E3243907E0 | sha512: B21E9BA9E405519F2780A63C6FFCB2646A8A92E4991A1EE906181E0A7C3B2F9F0BEF3F9D7024048C668E7FA19239A8CA5011F3BD57F1F24348C79631E5CF3277
tools\PicklesDoc.Pickles.DocumentationBuilders.Excel.dll
md5: 82DE7494181C8F9F5D344ED09B572A40 | sha1: 4805B7B22146A063462C518EA21A587E18CB87E4 | sha256: B31FAF4E098F03B6C60D0D3630971277E7173F306D0EE601166A87FF5F07DA6D | sha512: F7E2B553722551E5AD8DE56AC0D2039DCD0497B126F288FBAF8816BCA8085D6BB5578271764DD26671E86F1F5C14F36CA54DD453209164E5C6EBD49B48EC838E
tools\PicklesDoc.Pickles.DocumentationBuilders.Html.dll
md5: FD69A893E221177467474146D1FFA71C | sha1: 7A59E4C281BA47873062CF9F69185C3A3531F1B7 | sha256: 99BEEBE13925CEB4D900EB6984A3B031C1451D4DC7838BDB06E79E3BBBAD165B | sha512: ACD7F093AFFEE3B66D06D78DC4818AC4D566EC502B356E2F9377A999ACD584DB56F6EFF60697B672F7DED0593EF3360CCD30F7107F2E1CA9139EB1AE14FBE479
tools\PicklesDoc.Pickles.DocumentationBuilders.Json.dll
md5: F332758DD204C8959FCF2798249E5FF8 | sha1: CD9B7D738FCA4F989808D7ACFD23A5B847644124 | sha256: 2194EDE1E6349FA91B0B7C1869033E8E7DAFC92F666FBD292361162E3F55E5DA | sha512: F740556C988788CBB34B52682DF6313F04ADEE7207D31DB0A28134A3964A3744034D604AFAC40A747BD24D36BEC3FEDB12837DA809B5024C9E07B08540DD067A
tools\PicklesDoc.Pickles.DocumentationBuilders.Word.dll
md5: 03B8410FC47CFA7A199A9B106E75B8A7 | sha1: F21DFA5B99AC8079EC163B10AAA28BC0EA0C2AA0 | sha256: 79F163479A49E8980311F2612A57B8574B3AF789C2DA635D616C7E8A9BCEC6EF | sha512: 159AE746554984E561D7BB2B5AAF6F8F7A297E2CDB670C8A3E1FFA5E8B8D92EC5721373A855ECF2F83C71F719FC96275D9A55B8FDF8ABCF3796B24C84E233E37
tools\PicklesDoc.Pickles.Library.dll
md5: 02BAA9CB1049671ECFAA1786231136B1 | sha1: D247513431421D4C41A97800529936F05166EDA0 | sha256: F1B24502E43D7A7DAA6346E41FD0AF621FB99DF72E8FD07D6AB2E7E9FDE5043B | sha512: 976E72B50A5D538E1F8D05786BA3A5234E27BC036A45F7CA5D19049903367EAD65DAC56AC575FE1F9613F86D42734B6CBAAC06C769194D27B5117F72679D5A22
tools\PicklesDoc.Pickles.ObjectModel.dll
md5: 1AF2FCAE4C4386E2FE8487BD98A180E1 | sha1: B26905ED450B5C4AE4E57A58ED771E90FC163505 | sha256: 706374002A8FB54CEF5EFD9A2BF8D4F0092D0483C7CE651A1BF84C33BDF7ADD4 | sha512: 391E404E7937B04873F13402A435998E085D59CD7D3CE3D8C09DA0DC41A9B6B8E670EF7BBD8507A9D1D89288D1115D8EF4A926222AE130C4ACA4375AF47A0F96
tools\PicklesDoc.Pickles.TestFrameworks.dll
md5: 05C153E92ABB15623B7D5DEB5C868CDC | sha1: 77620AA6B683C9DF2101D7A2DCE6754FE6725EF7 | sha256: 9835BAEDC4B7A275760227A37B017C706767A75D0DEB380624C9E817739A705F | sha512: C9CC7D3A107AB2DBF2B547FC06F71BD7D2EBFFA27A63DB21EEBE1910FFFF0B02B2030CD743D02F576AA99E09B78A4FA4CAE057B8BB1F2FE23E0193530550D605
tools\picklesui.exe
md5: 7FDF55BFB9CACDFCEA31BC5425E8DA7F | sha1: 14107FBE8DF30FC30833573C6C74D9DBD6598EBC | sha256: 8861ECB1E7458B2901A0031BD847B1E190AB4541469B961C6344ECC0EC97DF1F | sha512: 8D6E7ACF872F6C300F5BB375AAE7AE0FB8B564DC5BE5314518A132A0E05CE980367798BA10E23856547D2EF91FE29F8BFA7B581798FD14ADA8795BCBEA888BB3
tools\PicklesUI.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
    <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
        <section name="Pickles.UserInterface.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
    </sectionGroup>
</configSections>
<startup>
  <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-3.5.0.0" newVersion="3.5.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="NLog" publicKeyToken="5120e14c03d0593c" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Practices.ServiceLocation" publicKeyToken="31bf3856ad364e35" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Windows.Interactivity" publicKeyToken="31bf3856ad364e35" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.5.0.0" newVersion="4.5.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="CommonServiceLocator" publicKeyToken="489b6accfaf20ef0" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-2.0.3.0" newVersion="2.0.3.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
    <userSettings>
        <Pickles.UserInterface.Properties.Settings>
            <setting name="FeatureFolder" serializeAs="String">
                <value />
            </setting>
            <setting name="OutputFolder" serializeAs="String">
                <value />
            </setting>
            <setting name="TestResultsFile" serializeAs="String">
                <value />
            </setting>
        </Pickles.UserInterface.Properties.Settings>
    </userSettings>
</configuration>
tools\picklesui.exe.gui
 
tools\Strike.Jint.dll
md5: 512B102E9DE55235FA56D6D796EB280E | sha1: 50EE4D230B198472A7D6416CE78DDB576439153F | sha256: C7A7EE1BC20CEF26D26DDA222FEA2A179197575DCDE9C2BEE9E0085B3798CBC8 | sha512: A016E40B7EBD4A05522084BAD7005D7627B7606E6DE8783BCF3A09F1ACC0D4E8C9DA110B825503ABDEF4A875CD823E86D4EA5C37103017BAD65667F521200BCE
tools\System.IO.Abstractions.dll
md5: 0FBFC69113DEE5346374EB23916375FC | sha1: 9D274345E9E11D4EC7D14AD8327AC425B16DADCE | sha256: 59D237F7C63D5D339C2A49E5C4785E86CA09188C453356AC27385BA141237F0B | sha512: 1E8C549D86CC8EDCDD79B5AA78DA278330E17D169ADA6103150E9B190D32AB7DD4D8400D7426030C4AE8E5651948097D970266903F6E53AFAEA56E1FEEECA8E9
tools\System.Windows.Interactivity.dll
md5: 580244BC805220253A87196913EB3E5E | sha1: CE6C4C18CF638F980905B9CB6710EE1FA73BB397 | sha256: 93FBC59E4880AFC9F136C3AC0976ADA7F3FAA7CACEDCE5C824B337CBCA9D2EBF | sha512: 2666B594F13CE9DF2352D10A3D8836BF447EAF6A08DA528B027436BB4AFFAAD9CD5466B4337A3EAF7B41D3021016B53C5448C7A52C037708CAE9501DB89A73F0
tools\VERIFICATION.txt

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.

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.21.0 435 Tuesday, July 14, 2020 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.20.1 1587 Thursday, October 18, 2018 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.20.0 326 Tuesday, October 9, 2018 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.19.0 533 Friday, July 20, 2018 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.18.2 580 Saturday, April 28, 2018 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.18.1 378 Friday, April 20, 2018 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.18.0 609 Friday, February 2, 2018 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.17.0 575 Thursday, November 30, 2017 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.16.2 749 Sunday, August 13, 2017 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.16.1 455 Monday, August 7, 2017 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.16.0 681 Tuesday, June 6, 2017 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.15.0 670 Thursday, March 9, 2017 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.14.0 480 Friday, February 24, 2017 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.13.0 515 Friday, February 10, 2017 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.12.0 460 Thursday, January 26, 2017 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.11.1 509 Friday, December 16, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.11.0 445 Monday, December 5, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.10.0 601 Saturday, October 22, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.9.0 494 Friday, October 7, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.8.3 521 Wednesday, September 28, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.8.2 678 Thursday, August 18, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.8.1 579 Friday, July 29, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.8.0 545 Wednesday, June 29, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.7.0 459 Tuesday, June 14, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.6.3 422 Tuesday, May 24, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.6.2 420 Wednesday, May 11, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.6.1 458 Tuesday, May 10, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.6.0 533 Tuesday, April 12, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.5.0 579 Monday, March 21, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.4.1 599 Tuesday, March 1, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.4.0 465 Friday, February 26, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.3.3 124 Thursday, March 11, 2021 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.3.2 88 Thursday, March 11, 2021 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.3.0 473 Wednesday, January 27, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.2.1 478 Monday, January 25, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.2.0 490 Friday, January 15, 2016 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.1.0 475 Wednesday, December 30, 2015 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.0.4 434 Sunday, December 27, 2015 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.0.3 523 Wednesday, December 23, 2015 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.0.2 525 Saturday, November 21, 2015 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.0.1 446 Friday, November 20, 2015 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 2.0.0 530 Tuesday, November 3, 2015 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 1.2.3 491 Tuesday, October 6, 2015 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 1.2.2 465 Thursday, September 24, 2015 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 1.2.1 551 Friday, August 14, 2015 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 1.2.0 538 Tuesday, July 28, 2015 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 1.1.0 594 Tuesday, May 12, 2015 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 1.0.1 609 Tuesday, March 31, 2015 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 1.0.0 724 Monday, December 15, 2014 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 0.20.0 518 Thursday, December 11, 2014 Approved
Pickles UI - The Open Source Living Documentation Generator (GUI) 0.19.0 509 Monday, December 1, 2014 Approved

This package has no dependencies.

Discussion for the Pickles UI - The Open Source Living Documentation Generator (GUI) Package

Ground Rules:

  • This discussion is only about Pickles UI - The Open Source Living Documentation Generator (GUI) and the Pickles UI - The Open Source Living Documentation Generator (GUI) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Pickles UI - The Open Source Living Documentation Generator (GUI), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus