Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 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.3.0</version>
<version>2.4.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.3.0/src/main/resources/icons/app_icon.png</iconUrl>
<copyright>2020 Markus Fleischhacker</copyright>
<iconUrl>https://cdn.jsdelivr.net/gh/mfl28/BoundingBoxEditor@2.4.0/src/main/resources/icons/app_icon.png</iconUrl>
<copyright>2022 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.3.0</releaseNotes>
<releaseNotes>https://github.com/mfl28/BoundingBoxEditor/releases/tag/v2.4.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.3.0/boundingboxeditor-2.3.0.exe'
$url64 = 'https://github.com/mfl28/BoundingBoxEditor/releases/download/v2.4.0/boundingboxeditor-2.4.0.exe'

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