From 4a22fce5aa0f4418948f48805756855faff17fdc Mon Sep 17 00:00:00 2001 From: Jacob Ras Date: Fri, 13 Feb 2026 13:19:26 +0100 Subject: [PATCH] Windows: Enable menu and set upgrade UUID This will make the app show up as a start menu entry, so it can be started without having to navigate to the installation folder. The upgrade UUID makes sure the current installation can be updated. --- FloconDesktop/composeApp/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/FloconDesktop/composeApp/build.gradle.kts b/FloconDesktop/composeApp/build.gradle.kts index 58cd63c8f..0dd47d4f8 100644 --- a/FloconDesktop/composeApp/build.gradle.kts +++ b/FloconDesktop/composeApp/build.gradle.kts @@ -131,6 +131,8 @@ compose.desktop { } windows { iconFile.set(project.file("src/desktopMain/resources/files/flocon_big.ico")) + menu = true + upgradeUuid = "5c6d2b4c-360a-4135-a445-68bfa25ce450" } } }