From 3bf069f84c90d99efccf3a3dba028901ad7d91ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Sat, 4 May 2024 19:40:09 +0200 Subject: [PATCH] build: Use id instead of app-id in Flatpak manifest Even though I couldn't find any information about it, `app-id` is marked as deprecated in the JSON schema of Flatpak manifests, so it triggers a warning in my IDE. Since `id` seems to be supported everywhere, let's just use it. --- build-aux/org.gnome.Fractal.Devel.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/org.gnome.Fractal.Devel.json b/build-aux/org.gnome.Fractal.Devel.json index c6d35ddb..b3d39c09 100644 --- a/build-aux/org.gnome.Fractal.Devel.json +++ b/build-aux/org.gnome.Fractal.Devel.json @@ -1,5 +1,5 @@ { - "app-id": "org.gnome.Fractal.Devel", + "id": "org.gnome.Fractal.Devel", "runtime": "org.gnome.Platform", "runtime-version": "master", "sdk": "org.gnome.Sdk",