Changelog (Commits)
- bump: version v4.8.7 (7b8112d)
- docs: update full window hotkey behavior (a71c6f1)
- fix: align full window foreground activation (835f306)
Security Verification
SHA-256 Checksums
- Lertaro-Setup.exe (x64):
8443d95a8108c54cfc561263cdd9e98f14d30de13cdf071beb1158c397f6542d - Lertaro-Portable.zip (x64):
4e28ec80d686057faaa2c096f4b3da8c39dd8069cf23bab8cd613ae8b4d71943 - Lertaro-Setup-arm64.exe (arm64):
2b588f2c1d0a163acb693f8d3604e0cf474de3f33ecd3b586f77f38279cafb5b - Lertaro-Portable-arm64.zip (arm64):
8758d9737982946c880f8258be8172a870d420adc238b78612e418a394c48ba9
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 Lertaro-Portable.zip.sig Lertaro-Portable.zip
# Expected output: Verified OKTo verify the signature manually in PowerShell (.NET 5.0+):
$zipBytes = [System.IO.File]::ReadAllBytes('Lertaro-Portable.zip')
$sigBytes = [System.IO.File]::ReadAllBytes('Lertaro-Portable.zip.sig')
$ecdsa = [System.Security.Cryptography.ECDsa]::Create()
$pubKeyPem = '-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE117370jTbSPgIwHLntC+Bi3SD6gJ
QfxAySjSpUWa6zy4n0YHVv/ZWXM9zQlF2LTqpQC0iHNdJNH+MKU9UvDMTQ==
-----END PUBLIC KEY-----'
$ecdsa.ImportFromPem($pubKeyPem)
$ecdsa.VerifyData($zipBytes, $sigBytes, [System.Security.Cryptography.HashAlgorithmName]::SHA256, [System.Security.Cryptography.DSASignatureFormat]::Rfc3279DerSequence)
# Expected output: True