Checksum verification fails #791
-
Hi, i downloaded the Windows Desktop Version and the corresponding Do I need to encode the result after Hashing or something? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hello @Arthur-DTAG , a very good question! I realise that I have not put the instructions into the release notes. We have to have the latest*.yml files in place, and in this format, for the electron auto updates to work for the desktop version. To get the command line sha512 there is a handy bash script (I am not sure of the windows one) eg for linux sha512: which for the 2.1.1 Windows msi latest.yml installer :
gives:
which compares to:
|
Beta Was this translation helpful? Give feedback.
Hello @Arthur-DTAG , a very good question! I realise that I have not put the instructions into the release notes.
We have to have the latest*.yml files in place, and in this format, for the electron auto updates to work for the desktop version.
The sha512s are in binary format that is base64 encoded - which I agree is not very human readable :)
To get the command line sha512 there is a handy bash script (I am not sure of the windows one) eg for linux sha512:
grep sha512 latest-linux.yml | tail -n 1 | cut -d " " -f 2 | base64 -d | hexdump -ve '1/1 "%.2x"'
which for the 2.1.1 Windows msi latest.yml installer :