Changelog (Commits)
- bump: version v3.2.0 (b54964d)
- style: run dotnet format (7a15709)
- docs: document the slf CLI companion on the site (145fc89)
- feat: package the CLI and let the installer add it to PATH (8982cae)
- feat: add slf, an fzf-style CLI for SwiftList's search (d419cdb)
- feat: expose the App's full-window search over a per-user named pipe (ae3821b)
- feat: add a search-result wire format that carries highlight ranges (e73604e)
Security Verification
SHA-256 Checksums
- SwiftList-Setup.exe:
2972ab65fb163e3ebdfa7490421b1672eff82dcf42ade7937b9ea748283c54b7 - SwiftList-Portable.zip:
cd405a4562781366d759578fb13aca572d1c64e796bf9ae038b0516a13bd95fa
Signature Verification (ECDsa NistP256)
The portable ZIP release is signed using our official release key.
To verify the signature manually using OpenSSL:
# 1. Save the public key shown above to 'public_key.pem'
# 2. Run the following command:
openssl dgst -sha256 -verify public_key.pem -signature SwiftList-Portable.zip.sig SwiftList-Portable.zip
# Expected output: Verified OKTo verify the signature manually in PowerShell (.NET 5.0+):
$zipBytes = [System.IO.File]::ReadAllBytes('SwiftList-Portable.zip')
$sigBytes = [System.IO.File]::ReadAllBytes('SwiftList-Portable.zip.sig')
$ecdsa = [System.Security.Cryptography.ECDsa]::Create()
$pubKeyPem = '-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEA8CUYlnSks5CMNM3wPz9NTMg8kbs
tEcU4mtgkW0OScTVRO3IhEb6j4H4cjgvM/gyM2sumFpbBR9+VtvVr46nFQ==
-----END PUBLIC KEY-----'
$ecdsa.ImportFromPem($pubKeyPem)
$ecdsa.VerifyData($zipBytes, $sigBytes, [System.Security.Cryptography.HashAlgorithmName]::SHA256, [System.Security.Cryptography.DSASignatureFormat]::Rfc3279DerSequence)
# Expected output: True