Compare commits
44 Commits
91c8a4d61b
...
65482920eb
Author | SHA1 | Date | |
---|---|---|---|
65482920eb | |||
e637e78436 | |||
|
810efcfc91 | ||
|
eabd97ba43 | ||
|
113b7703cd | ||
|
193cf43aa4 | ||
|
6365f11a96 | ||
|
c01282a906 | ||
|
1d1d42ca21 | ||
|
b6f846b2bc | ||
|
baf4edc79e | ||
|
311c87747e | ||
|
41d3c3c999 | ||
|
f19bb08e87 | ||
|
139ba972ba | ||
|
8b11dee01a | ||
|
323a1df846 | ||
|
ebbed19188 | ||
|
6e49bc4b5a | ||
|
c91b0e973c | ||
|
ef76428b16 | ||
|
73de466464 | ||
|
0f89219a76 | ||
|
fbb43ea041 | ||
|
db45206891 | ||
|
393b8adad1 | ||
|
d3eef3616b | ||
|
27b1a87256 | ||
|
2f2c78f9f1 | ||
|
8bb65074c9 | ||
|
4fd97e404e | ||
|
7009b5978b | ||
|
79276d10c3 | ||
|
cb6106e961 | ||
|
fceb08b1ec | ||
|
2ac17f07ee | ||
|
ecac52c31a | ||
|
a0070c87d9 | ||
|
86dcb8b390 | ||
|
b891a8801c | ||
|
3a1e464b14 | ||
|
cd389fa1ce | ||
|
236c4ff06a | ||
|
f5b13d03e8 |
22
cricut-design-space/README.md
Normal file
22
cricut-design-space/README.md
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# Cricut Design Space Chocolatey Package
|
||||||
|
|
||||||
|
|
||||||
|
## Summary
|
||||||
|
|
||||||
|
Chocolatey package configuration for the Cricut Design Space application.
|
||||||
|
|
||||||
|
## Creating Nuget Package
|
||||||
|
|
||||||
|
Clone the repository and use Chocolatey to create the package:
|
||||||
|
|
||||||
|
$ choco pack
|
||||||
|
|
||||||
|
## Testing Nuget Package
|
||||||
|
|
||||||
|
Follow the instructions at the URL below to create and use a Chocolatey test environment:
|
||||||
|
|
||||||
|
https://github.com/chocolatey-community/chocolatey-test-environment
|
||||||
|
|
||||||
|
Note: as March 10, 2020, the default `shell/InstallChocolatey.ps1` file was not creating a TLS channel and thus would not install Chocolatey in the virtual machine. The link below contains a fix. Once the pull request is accepted in the test environment repository this message will be removed.
|
||||||
|
|
||||||
|
https://github.com/chocolatey-community/chocolatey-test-environment/pull/49/commits/6b5563c52cf208834cc662e3f14a00bdad9bf567
|
26
cricut-design-space/cricut-design-space.nuspec
Normal file
26
cricut-design-space/cricut-design-space.nuspec
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
|
||||||
|
<metadata>
|
||||||
|
<id>cricut-design-space</id>
|
||||||
|
<version>8.60.67</version>
|
||||||
|
<owners>stevenpickles</owners>
|
||||||
|
<title>CricutDesignSpace (Install)</title>
|
||||||
|
<authors>Cricut</authors>
|
||||||
|
<projectUrl>https://design.cricut.com/</projectUrl>
|
||||||
|
<iconUrl>https://is5-ssl.mzstatic.com/image/thumb/Purple114/v4/2d/e1/51/2de1511b-f8ad-320c-77d9-e809e1d65928/AppIcon-0-0-1x_U007emarketing-0-0-0-9-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/246x0w.png</iconUrl>
|
||||||
|
<copyright>2021 Cricut, Inc.</copyright>
|
||||||
|
<licenseUrl>https://us.cricut.com/legal</licenseUrl>
|
||||||
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||||
|
<!-- Since Cricut Design Space is closed source there is no projectSourceUrl to link -->
|
||||||
|
<!-- <projectSourceUrl></projectSourceUrl>-->
|
||||||
|
<docsUrl>https://help.cricut.com/hc/en-us/articles/360009428814-Downloading-and-Installing-Design-Space#windowsinstall</docsUrl>
|
||||||
|
<bugTrackerUrl>https://help.cricut.com/hc/en-us/articles/360020316674-Cricut-Contact-Information</bugTrackerUrl>
|
||||||
|
<tags>cricut design space</tags>
|
||||||
|
<summary>Design and wirelessly cut using Cricut Explore and Cricut Maker machines.</summary>
|
||||||
|
<description>Cricut Design Space is a companion app that lets you design and wirelessly cut with Cricut Explore and Cricut Maker machines. Create a project from scratch or browse thousands of images, predesigned Make It Now projects, and fonts in the Cricut Image Library.</description>
|
||||||
|
<releaseNotes>No release notes are available from the manufacturer.</releaseNotes>
|
||||||
|
</metadata>
|
||||||
|
<files>
|
||||||
|
<file src="tools\**" target="tools" />
|
||||||
|
</files>
|
||||||
|
</package>
|
39
cricut-design-space/tools/chocolateyinstall.ps1
Normal file
39
cricut-design-space/tools/chocolateyinstall.ps1
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
$ErrorActionPreference = 'Stop';
|
||||||
|
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
|
||||||
|
|
||||||
|
|
||||||
|
$packageArgs = @{
|
||||||
|
packageName = $env:ChocolateyPackageName
|
||||||
|
unzipLocation = $toolsDir
|
||||||
|
fileType = 'EXE'
|
||||||
|
File = '\\ucs\software\CricutDesignSpace-Install-v8.60.67.exe'
|
||||||
|
|
||||||
|
softwareName = 'cricutdesignspace*'
|
||||||
|
|
||||||
|
checksum = '78b04935a1be4cef0e9f690a75b53c86c5783d8491760a5dada709544cf25d0c'
|
||||||
|
checksumType = 'sha256'
|
||||||
|
|
||||||
|
silentArgs = '/S'
|
||||||
|
validExitCodes= @(0)
|
||||||
|
}
|
||||||
|
|
||||||
|
Install-ChocolateyPackage @packageArgs
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user