Skip to content

Commit

Permalink
0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinbojko committed Sep 3, 2019
1 parent 606e970 commit 90bd692
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 5 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ A tool for exploring a docker image, layer contents, and discovering ways to shr

## Changelog

### 2019-09-03 Build 0.8.0

* version 0.8.0
* 64-bit version [https://www.virustotal.com/gui/file/c17991d1af68bb2d2d74071cc03146be8d0a3454fdafd2562f1551111650dc61/detection](https://www.virustotal.com/gui/file/c17991d1af68bb2d2d74071cc03146be8d0a3454fdafd2562f1551111650dc61/detection)

### 2019-05-16 Build 0.7.2

* version 0.7.2
Expand Down
Binary file removed dive.0.7.2.nupkg
Binary file not shown.
Binary file added dive.0.8.0.nupkg
Binary file not shown.
10 changes: 7 additions & 3 deletions dive.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
<id>dive</id>
<title>Dive</title>
<version>0.7.2</version>
<version>0.8.0</version>
<authors>Alex Goodman</authors>
<owners>Marcin Bojko</owners>
<summary>A tool for exploring a docker image, layer contents, and discovering ways to shrink your Docker image size.</summary>
Expand All @@ -23,6 +23,11 @@ A tool for exploring a docker image, layer contents, and discovering ways to shr

## Changelog

### 2019-09-03 Build 0.8.0

* version 0.8.0
* 64-bit version [https://www.virustotal.com/gui/file/c17991d1af68bb2d2d74071cc03146be8d0a3454fdafd2562f1551111650dc61/detection](https://www.virustotal.com/gui/file/c17991d1af68bb2d2d74071cc03146be8d0a3454fdafd2562f1551111650dc61/detection)

### 2019-05-16 Build 0.7.2

* version 0.7.2
Expand Down Expand Up @@ -54,7 +59,7 @@ dive:
<projectUrl>https://github.com/wagoodman/dive</projectUrl>
<packageSourceUrl>https://github.com/marcinbojko/dive</packageSourceUrl>
<docsUrl>https://github.com/wagoodman/dive</docsUrl>
<iconUrl>https://raw.githubusercontent.com/marcinbojko/dive/master/icons/dive.png</iconUrl>
<iconUrl>https://rawcdn.githack.com/marcinbojko/dive/606e970ab527df05608823d51c958c3a62f0993b/icons/dive.png</iconUrl>
<projectSourceUrl>https://github.com/wagoodman/dive</projectSourceUrl>
<bugTrackerUrl>https://github.com/wagoodman/dive/issues</bugTrackerUrl>
<tags>dive docker image admin</tags>
Expand All @@ -67,6 +72,5 @@ dive:
</metadata>
<files>
<file src="tools\**" target="tools" />
<file src="icons\**" target="icons" />
</files>
</package>
Binary file removed icons/dive.png
Binary file not shown.
15 changes: 13 additions & 2 deletions tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
$ErrorActionPreference = 'Stop';

$packageName = 'dive'
$version = '0.7.2'
$version = '0.8.0'
$url64 = "https://github.com/wagoodman/dive/releases/download/v"+$version+"/dive_"+$version+"_windows_amd64.zip"
$checksum64 = "16388360124bdbd55d67cf8fe129b93aa2ae7d220c9fd986cb5c655cb42d3dc6"
$checksum64 = "c17991d1af68bb2d2d74071cc03146be8d0a3454fdafd2562f1551111650dc61"
$killexec = 1
$killexecprocess = "dive*"

$packageArgs = @{
packageName = $packageName
Expand All @@ -14,4 +16,13 @@ $packageArgs = @{
checksum64 = $checksum64
}

# Should we kill some exec ? If package is open we cannot update
if ($killexec) {
try {
Write-Output "Killing all instances of: "$killexecprocess
Stop-Process -processname $killexecprocess -force }
catch {}
}
Start-Sleep -s 3

Install-ChocolateyZipPackage @packageArgs

0 comments on commit 90bd692

Please sign in to comment.