github SwiftList/SwiftList v3.0.3

latest releases: v4.2.2, v4.2.1, v4.2.0...
one month ago

Changelog (Commits)

  • bump: version v3.0.3 (bc69d37)
  • fix: fullscreen detection failed above 100% DPI scaling (f75b8c3)
  • docs: sync plugin component interfaces and tooltip features with SDK changes (a19aa59)

Security Verification

SHA-256 Checksums

  • SwiftList-Setup.exe: cbd917db85e37d1205941b1ab69c3bf5c2878ff63da3f1a4a17b93d6fce57a10
  • SwiftList-Portable.zip: 4f1c811f8d294c75ff41f80d9e0f048d428244a77bde6cde968858e560b75829

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 OK

To 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

Don't miss a new SwiftList release

NewReleases is sending notifications on new releases.