v1.11 — Full app list, edition-specific availability

- All Office apps listed: Word, Excel, PowerPoint, Outlook, OneNote, Access, Publisher, Teams, Skype
- Access: only available in Professional Plus
- Publisher: available in Professional Plus and Standard, disabled for Home & Business
- Teams and Skype for Business: unchecked by default
- All core apps (Word, Excel, etc.) can be individually excluded

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hariel1985
2026-03-31 08:43:14 +02:00
szülő 0e4253ba37
commit 9c835871ec
4 fájl változott, egészen pontosan 25 új sor hozzáadva és 14 régi sor törölve

Fájl megtekintése

@@ -69,14 +69,18 @@ namespace InstaSoftOfficeTool.Models
public static class ExcludableApps
{
// Id, DisplayName, DefaultChecked (true = telep\u00edt, false = kiz\u00e1r)
public static readonly (string Id, string DisplayName, bool DefaultChecked)[] Apps = new[]
// MinEdition: "all", "standard+" (Standard \u00e9s ProPlus), "proplus" (csak ProPlus)
public static readonly (string Id, string DisplayName, bool DefaultChecked, string MinEdition)[] Apps = new[]
{
("Access", "Access", true),
("Teams", "Teams", true),
("OneNote", "OneNote", true),
("Publisher", "Publisher", true),
("Outlook", "Outlook", true),
("Lync", "Skype for Business", false),
("Word", "Word", true, "all"),
("Excel", "Excel", true, "all"),
("PowerPoint", "PowerPoint", true, "all"),
("Outlook", "Outlook", true, "all"),
("OneNote", "OneNote", true, "all"),
("Access", "Access", true, "proplus"),
("Publisher", "Publisher", true, "standard+"),
("Teams", "Teams", false, "all"),
("Lync", "Skype for Business", false, "all"),
};
}
}