CaptureGem 2.14.5 Generated: 2026-07-18T22:27:57Z SHA-256 checksums GitHub Actions artifact download ZIPs macOS Apple Silicon file CaptureGem-2.14.5-macOS-arm64.zip sha256 17da327e1594e1fcc9dd2d665f21bc2d749fb1c77d5fd648f423ba6dc90c2f5c macOS Intel file CaptureGem-2.14.5-macOS-x64.zip sha256 b25438c5fd29cba5cf95f056a59b63ea7d9afe9c22b84b5b4542ab0b61cf89d6 Linux x64 file CaptureGem-2.14.5-Linux.zip sha256 5d12458aede5f6708ad4c58d3578718ec89cffa04d58bad14aaf7aec6fa2a12b Windows x64 file CaptureGem-2.14.5-Windows.zip sha256 fd5d6bc966ec17c11a9249cdd28a964d9cbf832d7430c6b3ad81bdea75d13a6d Packaged release contents macOS Apple Silicon (arm64 ZIP) file CaptureGem-2.14.5-macOS-arm64.zip sha256 8bd6e110f9485a24d419228c28b8d30270868e13de8bae03c49acea2a7267c6b macOS Intel (x64 ZIP) file CaptureGem-2.14.5-macOS-x64.zip sha256 59ea6fabc5e55f9966c9758e5520a90c983db9bf980758efa8347b99daef96a9 Linux x64 (AppImage) file CaptureGem-2.14.5.AppImage sha256 c15abd6d732236c69329f3c2340cffb4675f467de7d06e4886c5dc9fcaccf17a Windows x64 (unpacked directory) file not a single file - see Windows section below sha256 2fc4e11a3a5161698694caf9f9382364e6fb9ee95e93b3b9b6d19aff57241686 -------------------------------------------------------------------- HOW TO VERIFY -------------------------------------------------------------------- Compare the checksum you compute against the matching line above. They must match exactly. If they do not, do not run the download. macOS - verify the .zip you downloaded, before unzipping: shasum -a 256 CaptureGem-*.zip Use the arm64 line for Apple Silicon (M1 and later) and the x64 line for Intel Macs. Run 'uname -m' if you are unsure: arm64 or x86_64. Linux - verify the .AppImage you downloaded: sha256sum CaptureGem-*.AppImage On distros without sha256sum, use: shasum -a 256 CaptureGem-*.AppImage Windows - the Windows build ships as an unpacked directory rather than a single file, so its checksum covers every file at once. It is the hash OF a listing that itself contains one hash per file. Reproduce it in Git Bash or WSL, from inside the app directory (the folder holding CaptureGem.exe): find . -type f -print0 | LC_ALL=C sort -z | xargs -0 shasum -a 256 > ../manifest.txt shasum -a 256 ../manifest.txt The second command prints the 'Windows x64' checksum above. Note the '../': the listing must be written OUTSIDE the app directory. Writing it inside makes the listing hash itself, which produces a different (wrong) checksum. Windows PowerShell cannot reproduce the aggregate value directly. To spot-check one file there, use: Get-FileHash .\CaptureGem.exe -Algorithm SHA256 and compare it to that file's line in the per-file listing published alongside this file (windows_x64_file_hashes_2_14_5.txt).