Skip to content

Commit

Permalink
Update chocolatey for v2.6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
mfl28 committed Jul 30, 2023
1 parent 0b75154 commit bb95ce6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions chocolatey/boundingboxeditor.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>boundingboxeditor</id>
<version>2.5.1</version>
<version>2.6.0</version>
<owners>Markus Fleischhacker</owners>
<title>Bounding Box Editor</title>
<authors>Markus Fleischhacker</authors>
<projectUrl>https://github.com/mfl28/BoundingBoxEditor</projectUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/mfl28/BoundingBoxEditor@2.5.1/src/main/resources/icons/app_icon.png</iconUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/mfl28/BoundingBoxEditor@2.6.0/src/main/resources/icons/app_icon.png</iconUrl>
<copyright>2023 Markus Fleischhacker</copyright>
<licenseUrl>https://github.com/mfl28/BoundingBoxEditor/blob/master/LICENSE</licenseUrl>
<projectSourceUrl>https://github.com/mfl28/BoundingBoxEditor</projectSourceUrl>
<packageSourceUrl>https://github.com/mfl28/BoundingBoxEditor</packageSourceUrl>
<summary>Graphical image annotation application</summary>
<description>This is an image annotation desktop application that allows you to easily create and edit ground-truth labels for object detection and segmentation models.</description>
<tags>boundingboxeditor 64-bit gui image annotation</tags>
<releaseNotes>https://github.com/mfl28/BoundingBoxEditor/releases/tag/v2.5.1</releaseNotes>
<releaseNotes>https://github.com/mfl28/BoundingBoxEditor/releases/tag/v2.6.0</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
Expand Down
4 changes: 2 additions & 2 deletions chocolatey/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url64 = 'https://github.com/mfl28/BoundingBoxEditor/releases/download/v2.5.1/boundingboxeditor-2.5.1.exe'
$url64 = 'https://github.com/mfl28/BoundingBoxEditor/releases/download/v2.6.0/boundingboxeditor-2.6.0.exe'

$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
url64bit = $url64
softwareName = 'boundingboxeditor*'
checksum64 = 'CF59E2E162D820BC29EBC720EABC01E9630B1B4FE6E22334DB27F8C4FA6FAD50'
checksum64 = '0BAD53E65902B1A7C73565D90DE34B2AE3611353846C7063A17091256D2D4D6B'
checksumType64= 'sha256'
silentArgs = '/quiet'
validExitCodes= @(0)
Expand Down

0 comments on commit bb95ce6

Please sign in to comment.