Add inkstitch 3.1.0
All checks were successful
/ Build-Chocolatey-Packages (push) Successful in 2m10s

This commit is contained in:
Adam Goldsmith 2025-01-16 20:15:33 -05:00
parent 9b13e4c80c
commit bf924be5f3
4 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Do not remove this test for UTF-8: if “Ω” doesnt appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>inkstitch</id>
<version>3.0.1</version>
<packageSourceUrl>https://git.claremontmakerspace.org/CMS/chocolatey-packages</packageSourceUrl>
<owners>Adam</owners>
<title>Ink/Stitch</title>
<authors>Ink/Stitch</authors>
<projectUrl>https://inkstitch.org/</projectUrl>
<iconUrl>https://inkstitch.org/assets/images/inkstitch-logo.svg</iconUrl>
<copyright>2023 Ink/Stitch</copyright>
<licenseUrl>https://github.com/inkstitch/inkstitch/blob/main/LICENSE</licenseUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<projectSourceUrl>https://github.com/inkstitch/inkstitch</projectSourceUrl>
<docsUrl>https://inkstitch.org/docs/basic-usage/</docsUrl>
<bugTrackerUrl>https://github.com/inkstitch/inkstitch/issues</bugTrackerUrl>
<tags>inkstitch embroidery inkscape</tags>
<summary>Ink/Stitch: an Inkscape extension for machine embroidery design</summary>
<description>Want to design embroidery pattern files (PES, DST, and many more) using free, open source software?
Ink/Stitch aims to be a full-fledged embroidery digitizing platform based entirely on free, open source software. Our goal is to be approachable for hobbyists while also providing the power needed by professional digitizers. We also aim to provide a welcoming opens ource environment where contributing is fun and easy.</description>
<dependencies>
<dependency id="inkscape" />
</dependencies>
</metadata>
</package>

View File

@ -0,0 +1 @@
Uninstall-ChocolateyZipPackage -PackageName $env:ChocolateyPackageName -ZipFileName "inkstitch-v3.0.1-windows.zip"

View File

@ -0,0 +1,13 @@
$ErrorActionPreference = 'Stop'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
PackageName = $env:ChocolateyPackageName
UnzipLocation = "C:\Program Files\Inkscape\share\inkscape\extensions"
Url = "https://github.com/inkstitch/inkstitch/releases/download/v3.1.0/inkstitch-v3.1.0-windows.zip"
Checksum = 'dc0c6d32e204db8ba499344f9effae6aa8cc89f2cd463019e1bb66b3c427e2066f8e96a7b9291d7cd734de5ecce5cb8c268a94c117443d3b764534abf7be8033'
ChecksumType = 'sha512'
}
Install-ChocolateyZipPackage @packageArgs

View File

@ -0,0 +1 @@
Uninstall-ChocolateyZipPackage -PackageName $env:ChocolateyPackageName -ZipFileName "inkstitch-v3.0.1-windows.zip"