Changelog (Commits)
- bump: version v2.6.2 (1c3c71d)
- style: run dotnet format across the full solution (45569f1)
- fix: honor the custom next/previous-item hotkey in the action flyout menus (1c50db1)
- feat: make the ":[SCMA]"/".ext" query suffix and sidebar filters plugin-driven (c65aad4)
- feat: support a ":[SCMA]" query suffix to sort results by size/date (27da4de)
Security Verification
SHA-256 Checksums
- SwiftList-Setup.exe:
00f79830cec9ab96492ac43e101abc5438cb55db67f1fdd90fef5d01d02a5947 - SwiftList-Portable.zip:
dbb90886d421155687a2f734949bc76afaf6f6704cd7f4cd9268dbd08ea16a2b
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