build(electron): Add "Office" as category for Desktop file

as per https://specifications.freedesktop.org/menu-spec/latest/category-registry.html

checked with other NoteTaking apps and they all (e.g. Obsidian, Joplin) use "Office" as main category as well, which makes sense here
This commit is contained in:
Panagiotis Papadopoulos 2025-02-07 08:57:20 +01:00
parent e288272b22
commit 8cf6a4bec7

View File

@ -7,6 +7,7 @@ const extraResourcesForPlatform = getExtraResourcesForPlatform();
const baseLinuxMakerConfigOptions = { const baseLinuxMakerConfigOptions = {
icon: "./images/app-icons/png/128x128.png", icon: "./images/app-icons/png/128x128.png",
desktopTemplate: path.resolve("./bin/electron-forge/desktop.ejs"), desktopTemplate: path.resolve("./bin/electron-forge/desktop.ejs"),
categories: ["Office", "Utility"]
}; };
module.exports = { module.exports = {