You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, first of all thanks for building these packages, really helps aarch64 users!
I was wondering if you experience the same, launching Signal from the two latest releases in this repo instantly show "This version of Signal Desktop has expired" on launch, even though neither 7.31 nor 7.33 are likely meant to be banned just yet.
If I build the artifacts locally using your tooling from this repo, everything works fine, I don't get any warnings - I wonder what could be the reason, could it e.g. be caused by you and me using different values for $SOURCE_DATE_EPOCH?
Here locally I literally just run these 3 commands:
P.S. Not that important perhaps but just fyi, a command to generate a new signing key has changed, I tried to update it like below but I don't think it actually works - maybe it's a step in the right direction.
--- a/signal-buildscript.sh+++ b/signal-buildscript.sh@@ -81,7 +81,7 @@ pushd /Signal-Desktop
debpath=$(ls /Signal-Desktop/release/signal-desktop_*)
if [ ! -f /Signal-Desktop/release/.private.key ]; then
echo "Generating New Keypair."
- npm run ts/updater/generateKeyPair.js -- --key /Signal-Desktop/release/public.key --private /Signal-Desktop/release/.private.key+ ./node_modules/.bin/ts-node ts/updater/generateKeyPair.ts -- --key /Signal-Desktop/release/public.key --private /Signal-Desktop/release/.private.key
echo "Signing Release."
npm run sign-release -- --private /Signal-Desktop/release/.private.key --update $debpath
else
The text was updated successfully, but these errors were encountered:
After testing I see the same problem. I didn't realize the source date also sets the expiry date. I will set a closer date as this was only to influence the reproducibility of the build.
As for the build-tool keypair it seems like its kinda useless for linux builds at the moment but I will look into fixing the commands.
Hey, first of all thanks for building these packages, really helps aarch64 users!
I was wondering if you experience the same, launching Signal from the two latest releases in this repo instantly show "This version of Signal Desktop has expired" on launch, even though neither
7.31
nor7.33
are likely meant to be banned just yet.If I build the artifacts locally using your tooling from this repo, everything works fine, I don't get any warnings - I wonder what could be the reason, could it e.g. be caused by you and me using different values for
$SOURCE_DATE_EPOCH
?Here locally I literally just run these 3 commands:
P.S. Not that important perhaps but just fyi, a command to generate a new signing key has changed, I tried to update it like below but I don't think it actually works - maybe it's a step in the right direction.
The text was updated successfully, but these errors were encountered: