Skip to content

v0.2.11

Latest

Choose a tag to compare

@github-actions github-actions released this 11 Jan 15:13
· 1 commit to main since this release

🚀 Slashsum v0.2.11

Calculate multiple checksums simultaneously with parallel processing.

📦 Downloads

Documentation

  • 📖 INSTALL: Complete installation guide for all platforms

Portable packages (includes install script, LICENSE, README)

  • 🐧 Linux: slashsum-linux-amd64-portable.tar.gz
  • 🪟 Windows: slashsum-windows-amd64-portable.zip
  • 🍎 macOS: slashsum-darwin-amd64-portable.tar.gz

Windows Installers

  • 👤 User Installer: slashsum-setup-user-v0.2.11.exe (no admin rights required)
  • 🔐 Admin Installer: slashsum-setup-admin-v0.2.11.exe (system-wide installation)

Linux Packages

  • 📦 Snap: slashsum_v0.2.11_amd64.snap
  • 📋 DEB: slashsum_v0.2.11_amd64.deb

🛠️ Installation

Windows (Recommended - Installers)

👤 User installation (no admin required):

# Download and double-click to install
# Installs to %LOCALAPPDATA%\Slashsum
# Available only for current user

🔐 System installation (admin required):

# Download and right-click → "Run as administrator"
# Installs to C:\Program Files\Slashsum
# Available for all system users

Windows (Portable)

# Extract the ZIP archive
Expand-Archive slashsum-windows-amd64-portable.zip -DestinationPath .
cd slashsum-windows-amd64-portable

# Run install script (or right-click > Run as administrator)
.\install.bat

# Or manual: copy slashsum.exe to a folder in your PATH

Ubuntu/Debian (DEB)

wget https://github.com/NDXDeveloper/slashsum/releases/download/v0.2.11/slashsum_v0.2.11_amd64.deb
sudo apt install ./slashsum_v0.2.11_amd64.deb
hash -r
slashsum --version

Linux (Snap Store - Recommended)

Get it from the Snap Store

sudo snap install slashsum
sudo snap connect slashsum:home
sudo snap connect slashsum:removable-media
hash -r  # Refresh shell path cache
slashsum --version

Linux (Snap from GitHub Release)

wget https://github.com/NDXDeveloper/slashsum/releases/download/v0.2.11/slashsum_v0.2.11_amd64.snap
sudo snap install --dangerous slashsum_v0.2.11_amd64.snap
sudo snap connect slashsum:home
sudo snap connect slashsum:removable-media
hash -r  # Refresh shell path cache
slashsum --version

macOS

# Download and extract
tar -xzvf slashsum-darwin-amd64-portable.tar.gz
cd slashsum-darwin-amd64-portable

# Run the install script
sudo ./install.sh

# Or manual installation
chmod +x slashsum
sudo mv slashsum /usr/local/bin/

Linux (Portable)

# Download and extract
tar -xzvf slashsum-linux-amd64-portable.tar.gz
cd slashsum-linux-amd64-portable

# Run the install script
sudo ./install.sh

# Or manual installation
chmod +x slashsum
sudo mv slashsum /usr/local/bin/

✨ Features

  • Algorithms: CRC32, MD5, SHA1, SHA256, SHA512
  • Parallel processing for optimal performance
  • Chunked reading for large files
  • Save results with --save option
  • Cross-platform: Linux, Windows, macOS

🚀 Usage

# Calculate checksums
slashsum file.txt

# Save to .checksum file
slashsum file.txt --save

# Show help
slashsum --help

# Show version
slashsum --version

🔧 Technical Details

  • Binary size: ~650KB
  • Dependencies: None (static binary)
  • License: MIT
  • Architecture: x86_64 only

📋 Checksums

All binaries are built from the same source code with version v0.2.11.
You can verify integrity by comparing checksums between platforms.

Full Changelog: v0.2.10...v0.2.11