summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-11-29 20:04:30 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-11-29 20:05:14 +0200
commitee035bd7dca7f122ef5e965ea22777584ff774cb (patch)
tree61d348cfae09f7e8d4245f419d7ede2188308587
parentebca60ac5682343eae2d570d5390fda235ad33fb (diff)
Windows: Tell WinSparkle the correct app version
-rw-r--r--src/updater.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/updater.c b/src/updater.c
index 706de31d..0e813231 100644
--- a/src/updater.c
+++ b/src/updater.c
@@ -67,6 +67,9 @@ static const char *signaturePublicKeyPem_ =
67void init_Updater(void) { 67void init_Updater(void) {
68 win_sparkle_set_appcast_url("https://etc.skyjake.fi/lagrange/appcast-windows.xml"); 68 win_sparkle_set_appcast_url("https://etc.skyjake.fi/lagrange/appcast-windows.xml");
69 win_sparkle_set_dsa_pub_pem(signaturePublicKeyPem_); 69 win_sparkle_set_dsa_pub_pem(signaturePublicKeyPem_);
70 win_sparkle_set_app_details(L"Jaakko Keränen",
71 L"Lagrange",
72 L"" LAGRANGE_APP_VERSION);
70 win_sparkle_init(); 73 win_sparkle_init();
71} 74}
72 75