Skip to content

v5.0.6

Choose a tag to compare

@github-actions github-actions released this 31 Aug 10:19
· 129 commits to main since this release

Changelog (Commits)

  • bump: version v5.0.6 (2667095)
  • docs: document quick launch menus and source hotkeys (436e7f1)
  • feat: cycle quick launch sources with hotkeys (a845c9e)
  • feat: add quick launch keyboard navigation (e8c1cc9)
  • docs: update quick launch and favorites guides (1d59ca3)
  • feat: add clear buttons to item lists (683a4e4)
  • fix: synchronize service installation lifecycle (2c8248e)
  • feat: reorder quick launch sources (e27832f)

Security Verification

SHA-256 Checksums

  • Lertaro-Setup.exe (x64): 178d26b63bcc1333cf4f16184908209a6c1759ee08c8302ab6cd83f759537456
  • Lertaro-Portable.zip (x64): 02f06d2d7fa8ccce83e8283698f0398bab5e265a5bc4921e32f553dbef643947
  • Lertaro-Setup-arm64.exe (arm64): 86b0f22dbee2fbaa91f1596cdd9733eab852d79ac5549e8eb0711fc604ded237
  • Lertaro-Portable-arm64.zip (arm64): ba9af0f465099728f7bee7180802ceaa5172f78854b7338660037e0525f24a9a

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 OK

To 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