From da6da3265118ceb60a852bc5c25bda5b2661a29f Mon Sep 17 00:00:00 2001 From: JonKazama-Hellion Date: Wed, 6 May 2026 20:14:29 +0200 Subject: [PATCH] fix(ui): add Integrations card to settings overview grid --- HellionChat/Resources/HellionStrings.Designer.cs | 2 ++ HellionChat/Resources/HellionStrings.de.resx | 6 ++++++ HellionChat/Resources/HellionStrings.resx | 6 ++++++ HellionChat/Ui/SettingsOverview.cs | 1 + 4 files changed, 15 insertions(+) diff --git a/HellionChat/Resources/HellionStrings.Designer.cs b/HellionChat/Resources/HellionStrings.Designer.cs index 66b7489..fdcde43 100644 --- a/HellionChat/Resources/HellionStrings.Designer.cs +++ b/HellionChat/Resources/HellionStrings.Designer.cs @@ -331,6 +331,8 @@ internal class HellionStrings internal static string Settings_Card_FontsAndColours_Subtext => Get(nameof(Settings_Card_FontsAndColours_Subtext)); internal static string Settings_Card_DataManagement_Title => Get(nameof(Settings_Card_DataManagement_Title)); internal static string Settings_Card_DataManagement_Subtext => Get(nameof(Settings_Card_DataManagement_Subtext)); + internal static string Settings_Card_Integrations_Title => Get(nameof(Settings_Card_Integrations_Title)); + internal static string Settings_Card_Integrations_Subtext => Get(nameof(Settings_Card_Integrations_Subtext)); // Hellion Chat — v1.2.1 Theme & Layout tab section headings + WindowOpacity slider internal static string Settings_ThemeAndLayout_Theme_Heading => Get(nameof(Settings_ThemeAndLayout_Theme_Heading)); diff --git a/HellionChat/Resources/HellionStrings.de.resx b/HellionChat/Resources/HellionStrings.de.resx index 3912854..88b978a 100644 --- a/HellionChat/Resources/HellionStrings.de.resx +++ b/HellionChat/Resources/HellionStrings.de.resx @@ -746,6 +746,12 @@ Was passiert mit gespeicherten Daten — Aufbewahrung, Aufräumen, Export, DB-Stats. + + Integrationen + + + Andere Dalamud-Plugins, mit denen HellionChat zusammenarbeitet — auto-detected, mit Vorschau auf kommende Integrationen. + Theme diff --git a/HellionChat/Resources/HellionStrings.resx b/HellionChat/Resources/HellionStrings.resx index 63d6931..ea54085 100644 --- a/HellionChat/Resources/HellionStrings.resx +++ b/HellionChat/Resources/HellionStrings.resx @@ -746,6 +746,12 @@ What happens to stored data — retention, cleanup, export, DB stats. + + Integrations + + + Other Dalamud plugins HellionChat reacts to — auto-detected, with a "coming soon" preview of upcoming integrations. + Theme diff --git a/HellionChat/Ui/SettingsOverview.cs b/HellionChat/Ui/SettingsOverview.cs index f8fcf3a..2e757f4 100644 --- a/HellionChat/Ui/SettingsOverview.cs +++ b/HellionChat/Ui/SettingsOverview.cs @@ -26,6 +26,7 @@ internal sealed class SettingsOverview (FontAwesomeIcon.FolderTree, "Settings_Card_Tabs_Title", "Settings_Card_Tabs_Subtext"), (FontAwesomeIcon.ShieldAlt, "Settings_Card_Privacy_Title", "Settings_Card_Privacy_Subtext"), (FontAwesomeIcon.Database, "Settings_Card_DataManagement_Title", "Settings_Card_DataManagement_Subtext"), + (FontAwesomeIcon.Plug, "Settings_Card_Integrations_Title", "Settings_Card_Integrations_Subtext"), (FontAwesomeIcon.InfoCircle, "Settings_Card_Information_Title", "Settings_Card_Information_Subtext"), ];