Skip to content

v1.4.3 — Browser login, configurable lockout, PDF print fixes

Choose a tag to compare

@NimaShafie NimaShafie released this 07 May 16:54
· 280 commits to main since this release
9a30b81

Download

Platform File Notes
Linux x86-64 oxide-sloc-linux-x86_64 Static binary (musl) — works on any x86-64 Linux
Linux arm64 oxide-sloc-linux-arm64 Requires glibc ≥ 2.17 (Raspberry Pi 4, AWS Graviton, Ampere, etc.)
Windows x86-64 oxide-sloc-windows-x86_64.exe Windows 10/11
macOS x86-64 oxide-sloc-macos-x86_64 Intel Mac
macOS Apple Silicon oxide-sloc-macos-arm64 M1/M2/M3/M4 Mac
Vendor archive vendor.tar.xz + vendor.tar.xz.sha256 Rust dependency sources for air-gapped builds

Checksums for all release assets are in SHA256SUMS.txt.
GPG detached signatures (.sig) and Sigstore cosign bundles (.bundle) are included for each binary.
The GPG public key used for signing is oxide-sloc-signing-key.asc.

Quick install

# Linux x86-64
curl -Lo oxide-sloc https://github.com/oxide-sloc/oxide-sloc/releases/download/v1.4.3/oxide-sloc-linux-x86_64
chmod +x oxide-sloc && sudo mv oxide-sloc /usr/local/bin/

# Linux arm64
curl -Lo oxide-sloc https://github.com/oxide-sloc/oxide-sloc/releases/download/v1.4.3/oxide-sloc-linux-arm64
chmod +x oxide-sloc && sudo mv oxide-sloc /usr/local/bin/

# macOS (Apple Silicon)
curl -Lo oxide-sloc https://github.com/oxide-sloc/oxide-sloc/releases/download/v1.4.3/oxide-sloc-macos-arm64
chmod +x oxide-sloc && sudo mv oxide-sloc /usr/local/bin/

# macOS (Intel)
curl -Lo oxide-sloc https://github.com/oxide-sloc/oxide-sloc/releases/download/v1.4.3/oxide-sloc-macos-x86_64
chmod +x oxide-sloc && sudo mv oxide-sloc /usr/local/bin/

# Windows — rename and add to PATH
ren oxide-sloc-windows-x86_64.exe oxide-sloc.exe

# Verify checksum (Linux / macOS)
sha256sum --check SHA256SUMS.txt

# Verify GPG signature (Linux / macOS)
gpg --import oxide-sloc-signing-key.asc
gpg --verify oxide-sloc-linux-x86_64.sig oxide-sloc-linux-x86_64

# Verify cosign bundle (requires cosign installed)
cosign verify-blob \
  --bundle oxide-sloc-linux-x86_64.bundle \
  oxide-sloc-linux-x86_64

Air-gapped build

# Download source + vendor archive from this release, then on the air-gapped machine:
bash scripts/internal/airgap-build.sh vendor.tar.xz

Or build from source (requires Rust 1.95+)

cargo install --git https://github.com/oxide-sloc/oxide-sloc oxide-sloc

Full Changelog: v1.4.2...v1.4.3