Manifests and a playbook for getting Paperling into package managers. Each registry is a discovery channel — people search/browse them, and a one-line install removes friction. winget is the highest-value target for Windows; do that one first.
When a new version ships, bump
PackageVersion/versionand theInstallerUrl/url, then recompute the installer hash:# Windows (Get-FileHash .\Paperling_<ver>_x64-setup.exe -Algorithm SHA256).Hash# macOS/Linux sha256sum Paperling_<ver>_x64-setup.exe
Files: winget/ — three manifests for Razee4315.Paperling v0.6.21,
targeting the per-user NSIS .exe. The hash is already filled in and verified.
Submit:
- Install the tooling and validate locally:
winget install wingetcreate winget validate --manifest packaging/winget # optional sandbox test: winget install --manifest packaging/winget
- Fork
microsoft/winget-pkgsand copy these files tomanifests/r/Razee4315/Paperling/0.6.21/. - Open a PR. Microsoft's bot validates the URL + hash and installs it in a
sandbox; once merged,
winget install Razee4315.Paperlingworks for everyone.
Even easier — let wingetcreate build & submit from the release:
wingetcreate update Razee4315.Paperling -u "https://github.com/Razee4315/Paperling/releases/download/v0.6.21/Paperling_0.6.21_x64-setup.exe" -v 0.6.21 --submitTip: add a
wingetcreate update ... --submitstep torelease.ymlso every release auto-opens the winget PR. (Needs a PAT with access to your fork.)
File: scoop/paperling.json.
Scoop prefers portable apps, but Paperling currently ships only an NSIS
installer. This manifest uses Scoop's #/dl.7z trick to extract the installer
with 7-Zip. Test it before publishing — depending on the NSIS layout the
bin / extract_dir may need adjusting:
scoop install ./packaging/scoop/paperling.jsonTo publish: create a bucket repo (e.g. Razee4315/scoop-bucket), drop the JSON
in, then scoop bucket add paperling https://github.com/Razee4315/scoop-bucket.
Cleaner long-term fix: add a portable .zip artifact to the release (zip the
unpacked Paperling.exe + resources). Then the Scoop manifest points straight at
the zip — no extraction hacks — and it's eligible for the official extras
bucket.
| Channel | Platform | Effort | Notes |
|---|---|---|---|
| Chocolatey | Windows | Low | Installer-native. A .nuspec + chocolateyInstall.ps1 that downloads the .exe and runs /S. Big audience. |
| Flathub | Linux | Medium | Largest Linux app store. Needs a flatpak manifest (can wrap the existing build). Huge organic discovery. |
| AUR | Arch Linux | Low | A PKGBUILD (paperling-bin) pointing at the .AppImage or .deb. The Arch crowd finds apps here. |
| Homebrew cask | macOS | Low | Needs a macOS build first (see below), then a one-file cask. |
| Microsoft Store | Windows | Medium | Free for individuals; massive built-in search. Package the MSI/MSIX. |
CI currently builds Windows + Linux only. To ship macOS, add a
macos-latest entry to the release.yml matrix — tauri-action will produce a
.dmg/.app. Unsigned builds work but warn on first launch; notarization
removes the warning.
packaging/
├── winget/
│ ├── Razee4315.Paperling.yaml # version manifest
│ ├── Razee4315.Paperling.installer.yaml # installer + sha256
│ └── Razee4315.Paperling.locale.en-US.yaml # metadata
└── scoop/
└── paperling.json