This repository contains a collection of Chocolatey packages that I maintain and keep updated.
| Package Name | Description | Version |
|---|---|---|
| faststone-image-viewer | FastStone Image Viewer - Image viewer and editor | 7.8.0.20250428 |
There are several ways to install packages from this repository:
# Clone the repository
git clone https://github.com/marcodelpin/chocolatey-packages.git
cd chocolatey-packages
# Install a package by specifying the local path
choco install faststone-image-viewer -s .\packages\faststone-image-viewer# Example of installation from GitHub Pages
choco install faststone-image-viewer -s https://marcodelpin.github.io/chocolatey-packages/# Add your repository as a source once
choco source add -n=chocolatey-community -s="https://myget.org/F/chocolatey-community/api/v2" --priority=1
# Install the package
choco install faststone-image-viewerIf you notice a package that needs updating, please open an issue with:
- The name of the package
- The new version number
- Any changes to installation procedures (if known)
packages/ # Contains all Chocolatey packages
├── faststone-image-viewer/ # FastStone Image Viewer package folder
│ └── faststone-image-viewer.nuspec # Package with the new ID
└── other-packages/
tools/ # Utility scripts for package management
docs/ # Documentation
There are two ways to update packages:
-
Using the general script:
.\tools\update-package.ps1 -package_name "package-name" -new_version "x.y.z" -new_url "download-url"
-
For packages with AU scripts (like faststone-image-viewer):
cd packages\package-name .\update.ps1
Contributions are welcome! Please read the guidelines in CONTRIBUTING.md before submitting pull requests.