diff --git a/automatic/stretchly/Changelog.md b/automatic/stretchly/Changelog.md index 6dcc755a6..947af5235 100644 --- a/automatic/stretchly/Changelog.md +++ b/automatic/stretchly/Changelog.md @@ -1,5 +1,5 @@ # ![stretchly Changelog](https://img.shields.io/badge/stretchly-Package%20Changelog-blue.svg?style=for-the-badge) -## UPCOMING - +## Version: 0.18.0 (2018-12-13) - Initial implementation of the stretchly chocolatey package + diff --git a/automatic/stretchly/Readme.md b/automatic/stretchly/Readme.md index 4f2322661..0f8823b4b 100644 --- a/automatic/stretchly/Readme.md +++ b/automatic/stretchly/Readme.md @@ -1,4 +1,4 @@ -# [ ![stretchly](https://img.shields.io/chocolatey/v/stretchly.svg?label=stretchly&style=for-the-badge)](https://chocolatey.org/packages/stretchly) +# [ ![stretchly](https://img.shields.io/chocolatey/v/stretchly.svg?label=stretchly&style=for-the-badge)](https://chocolatey.org/packages/stretchly) stretchly is a cross-platform electron app that reminds you to take breaks when working on your computer. diff --git a/automatic/stretchly/legal/VERIFICATION.txt b/automatic/stretchly/legal/VERIFICATION.txt index e243354bb..4fc0c34d8 100644 --- a/automatic/stretchly/legal/VERIFICATION.txt +++ b/automatic/stretchly/legal/VERIFICATION.txt @@ -6,13 +6,13 @@ The embedded software have been downloaded from the listed download location on and can be verified by doing the following: -1. Download the following <> +1. Download the following 2. Get the checksum using one of the following methods: - Using powershell function 'Get-FileHash' - Use chocolatey utility 'checksum.exe' 3. The checksums should match the following: - checksum type: - checksum: + checksum type: sha256 + checksum: F2CDDF589C61D324137D95D0E473545D2E6E7A5E35AFE2564B230D9837EA2D30 The file 'LICENSE.txt' has been obtained from diff --git a/automatic/stretchly/stretchly.nuspec b/automatic/stretchly/stretchly.nuspec index c494a90a9..5addd646b 100644 --- a/automatic/stretchly/stretchly.nuspec +++ b/automatic/stretchly/stretchly.nuspec @@ -3,13 +3,13 @@ stretchly - 0.0 + 0.18.0 https://github.com/AdmiringWorm/chocolatey-packages/tree/master/automatic/stretchly AdmiringWorm stretchly Jan Hovancik https://hovancik.net/stretchly/ - https://cdn.jsdelivr.net/gh/AdmiringWorm/chocolatey-packages@4a1c8326dae055eba251fe4911ad477523dc9522/icons/stretchly.png + https://cdn.jsdelivr.net/gh/AdmiringWorm/chocolatey-packages@d2b87921365d4a6237272f2ec549c754586bbb53/icons/stretchly.png Jan Hovancik 2014+ https://github.com/hovancik/stretchly/blob/master/LICENSE false @@ -18,15 +18,14 @@ stretchly reminder time-out break cross-platform foss break time reminder app - -stretchly is a cross-platform electron app that reminds you to take breaks when working on your computer. + +]]> [Software Changelog](https://github.com/hovancik/stretchly/blob/master/CHANGELOG.md) [Package Changelog](https://github.com/AdmiringWorm/chocolatey-packages/blob/master/automatic/stretchly/Changelog.md) diff --git a/automatic/stretchly/tools/chocolateyInstall.ps1 b/automatic/stretchly/tools/chocolateyInstall.ps1 index c0e5e91f2..c65d9bdd9 100644 --- a/automatic/stretchly/tools/chocolateyInstall.ps1 +++ b/automatic/stretchly/tools/chocolateyInstall.ps1 @@ -1,11 +1,11 @@ -$ErrorActionPreference = 'Stop' +$ErrorActionPreference = 'Stop' $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition $packageArgs = @{ packageName = $env:ChocolateyPackageName fileType = 'exe' - file = "$toolsPath\" + file = "$toolsPath\stretchly.Setup.0.18.0.exe" softwareName = 'stretchly*' silentArgs = '/S /allusers' validExitCodes = @(0) @@ -13,4 +13,4 @@ $packageArgs = @{ Install-ChocolateyInstallPackage @packageArgs -ls $toolsPath\*.exe | % { rm $_ -ea 0; if (Test-Path $_) { sc "$_.ignore" } } +Get-ChildItem $toolsPath\*.exe | ForEach-Object { Remove-Item $_ -ea 0; if (Test-Path $_) { Set-Content "$_.ignore" } }