From 6be10dbd75c686b77f0b3fce5ea7de73596667f8 Mon Sep 17 00:00:00 2001 From: Leonid Nikitin Date: Sun, 11 May 2025 01:44:17 +0500 Subject: [PATCH] Add FyneApp.toml configuration file Introduce a new FyneApp.toml file to configure application metadata. This includes details like the app's icon, name, and ID, as well as migration settings. These changes prepare the app for Fyne framework integration. --- FyneApp.toml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 FyneApp.toml diff --git a/FyneApp.toml b/FyneApp.toml new file mode 100644 index 0000000..0c816f8 --- /dev/null +++ b/FyneApp.toml @@ -0,0 +1,7 @@ +[Details] + Icon = "icon.png" + Name = "GUI for FFmpeg" + ID = "net.kor-elf.projects.gui-for-ffmpeg" + +[Migrations] + fyneDo = true