https://github.com/nickemanarin/screentogif-chocolatey
ScreenToGif's Chocolatey package.
https://github.com/nickemanarin/screentogif-chocolatey
Last synced: 2 months ago
JSON representation
ScreenToGif's Chocolatey package.
- Host: GitHub
- URL: https://github.com/nickemanarin/screentogif-chocolatey
- Owner: NickeManarin
- Created: 2016-05-28T02:04:16.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-13T12:54:44.000Z (about 1 year ago)
- Last Synced: 2025-04-11T00:02:17.313Z (2 months ago)
- Language: PowerShell
- Size: 78.1 KB
- Stars: 12
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chocolatey Package
[](https://chocolatey.org/packages/screentogif) [](https://chocolatey.org/packages/screentogif)
Welcome to the Chocolatey package for ScreenToGif.
## Frequently Updated
Every package version requires the following changes, at least, in the nuspec
and probably in the install/uninstall scripts:* Version
* Release notes (if this is a version-specific URL)
* URL
* ChecksumYou can get the checksum using the built-in PowerShell cmdlet. The Chocolatey
default is MD5, but a stronger/longer checksum is preferred. PowerShell defaults
to SHA256, which is fine.```
PS> Get-FileHash '.\ScreenToGif.Version.Type.Architecture.zip'Algorithm Hash Path
--------- ---- ----
SHA256 AAAAABBBBBCCCCCDDDDDEEEEEFFFFFGGGGGHHHHHIIIIIJJJJJKKKKKLLLLLMMMM C:\Users\Nicke\Downloads\Sc...
```## Infrequently Updated
The package icon is a bit of a pain to update. Update the icon by overwriting
the file in this repository. It may help to run it through an optimizer.```
PS> pngout .\screentogif.png
```Commit and push this. We need to get the canonical URL for this file before we
can update or publish the package.Visit [jsDelivr](https://cdn.jsdelivr.net/gh/NickeManarin/ScreenToGif-Chocolatey@master) and copy the url of the image.
## Pack and Publish
Pack.
```
PS> choco pack .\screentogif\screentogif.nuspec
```Publish.
```
PS> choco push .\screentogif.x.y.z.nupkg
```