From fe1c93f16422f29895d61bbc0f5817c73ce17d75 Mon Sep 17 00:00:00 2001 From: David Dorchies <david.dorchies@inrae.fr> Date: Mon, 8 Jan 2024 16:23:44 +0000 Subject: [PATCH] docs: update notification body message when a new Cassiopee version is available Refs #640 --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index bdd10ff5a..edc7e2487 100644 --- a/main.js +++ b/main.js @@ -135,7 +135,7 @@ const lookForUpdates = function() { } let notif = new Notification({ title: `Cassiopee version ${data.latest} is available`, - body: `Click to download update installer`, + body: `The desktop distribution of Cassiopeia will no longer be updated in 2024. You are invited to use the progressive web app Cassiopée instead. Click to download update installer.`, icon: nativeImage.createFromPath(iconPath) // @see https://github.com/electron/electron/issues/24221 }); notif.addListener("click", () => { -- GitLab