Changelog (Commits)
- bump: version v2.8.0 (6cc88d4)
- docs: sync Site against IndexV2, hardware acceleration, and hotkey suppression scope (d004b4c)
- fix: scope fullscreen auto-suppression to match the process blacklist's granularity (a0c732d)
- style: align General settings row spacing (b107e36)
- style: shorten the hardware-acceleration setting's label (3835de3)
- fix: set QuickSearchWindow render mode in SourceInitialized, before first render (eeacd13)
- fix: add opt-out for QuickSearchWindow hardware acceleration (#82) (ebccb78)
Security Verification
SHA-256 Checksums
- SwiftList-Setup.exe:
b8a6d3d66d9ef6133f4cdf14583ab23c1b15c64caa639bf3c111e5c7388c9b44 - SwiftList-Portable.zip:
e1bad503f31a40bdeeabddcb9cb12db3a1c0d7ee440d40136dc6da122618921b
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