Changelog (Commits)
- bump: version v3.6.5 (364dad7)
- feat: let the Path column open its folder on double-click, plugin-overridable per column (08c6b2a)
- docs: document the auto-playing media preview and per-monitor window position (12b2b85)
- feat: replace static audio/video thumbnails with an auto-playing preview (83489cc)
- perf: opt the quick/inline search windows out of Windows Power Throttling while visible (e85165f)
- perf: skip redundant DPI/monitor lookups when the inline window's target position hasn't changed (db3fa79)
- fix: stop the inline window's current-folder search from freezing on large directories (6d13bbb)
- feat: make the quick window's remembered position follow the current monitor (c08c7db)
Security Verification
SHA-256 Checksums
- SwiftList-Setup.exe:
d197c64240e6652eec306677d5d54135c558c97d2a234ff6aaed5885c8d998f0 - SwiftList-Portable.zip:
c8e797a52ee7c8121e4ec48f75337d3dcba3764c94ff4d7990c405238b9d7388
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