Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 23e0f37dfb | |||
| 96fa05dc9b | |||
| d891ec5e50 | |||
| e219b3e1fe | |||
| 135f7a9bf7 | |||
| 81d3c9ca6b | |||
| cb90c6ab93 | |||
| 2ad81cc3ef |
+12
-1
@@ -4,7 +4,7 @@
|
||||
0.1.0 is our bootstrap release; the underlying Chat 2 base is
|
||||
called out in the yaml changelog so users can see what it
|
||||
derives from. -->
|
||||
<Version>0.1.0</Version>
|
||||
<Version>0.1.2</Version>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<!-- HellionChat fork: assembly is renamed so Dalamud uses
|
||||
pluginConfigs/HellionChat instead of pluginConfigs/ChatTwo,
|
||||
@@ -62,6 +62,17 @@
|
||||
<Folder Include="images\" />
|
||||
</ItemGroup>
|
||||
|
||||
<!-- Copy images/icon.png next to the built DLL so Dalamud's local
|
||||
plugin loader finds it at <plugindir>/images/icon.png. The
|
||||
DalamudPackager.targets file in this directory then includes
|
||||
the same path inside the release ZIP — see that file for the
|
||||
full packaging override. -->
|
||||
<ItemGroup>
|
||||
<None Include="images\icon.png">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
<!--This doesn't work until Plogon is updated to include NodeJS-->
|
||||
<!-- <Target Name="NodeJS Compile" BeforeTargets="BeforeCompile">-->
|
||||
<!-- <Exec Command="npm install" WorkingDirectory="Http\Frontend"/>-->
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
HellionChat — DalamudPackager override.
|
||||
|
||||
The default DalamudPackager.targets shipped by the SDK does not set
|
||||
HandleImages / ImagesPath, so the images/ directory is silently
|
||||
excluded from the release ZIP. The presence of this file at
|
||||
$(ProjectDir)DalamudPackager.targets disables the SDK's default
|
||||
target (it guards on `!Exists('$(PackagerTargetFile)')`) and lets
|
||||
us call the packager task ourselves with the image fields wired in.
|
||||
|
||||
Apart from HandleImages + ImagesPath the property list mirrors the
|
||||
SDK default verbatim so we don't lose any other manifest field as
|
||||
the upstream SDK evolves.
|
||||
-->
|
||||
<Project>
|
||||
<Target Name="HellionDalamudPackagerDebug"
|
||||
AfterTargets="Build"
|
||||
Condition="'$(Configuration)' == 'Debug'">
|
||||
<DalamudPackager ProjectDir="$(ProjectDir)"
|
||||
OutputPath="$(OutputPath)"
|
||||
AssemblyName="$(AssemblyName)"
|
||||
MakeZip="false"
|
||||
Author="$(Author)"
|
||||
Name="$(Name)"
|
||||
MinimumDalamudVersion="$(MinimumDalamudVersion)"
|
||||
Punchline="$(Punchline)"
|
||||
Description="$(Description)"
|
||||
ApplicableVersion="$(ApplicableVersion)"
|
||||
RepoUrl="$(RepoUrl)"
|
||||
Tags="$(Tags)"
|
||||
CategoryTags="$(CategoryTags)"
|
||||
DalamudApiLevel="$(DalamudApiLevel)"
|
||||
LoadRequiredState="$(LoadRequiredState)"
|
||||
LoadSync="$(LoadSync)"
|
||||
CanUnloadAsync="$(CanUnloadAsync)"
|
||||
LoadPriority="$(LoadPriority)"
|
||||
ImageUrls="$(ImageUrls)"
|
||||
IconUrl="$(IconUrl)"
|
||||
Changelog="$(Changelog)"
|
||||
AcceptsFeedback="$(AcceptsFeedback)"
|
||||
FeedbackMessage="$(FeedbackMessage)"
|
||||
HandleImages="true"
|
||||
ImagesPath="$(ProjectDir)images" />
|
||||
</Target>
|
||||
|
||||
<Target Name="HellionDalamudPackagerRelease"
|
||||
AfterTargets="Build"
|
||||
Condition="'$(Configuration)' == 'Release'">
|
||||
<DalamudPackager ProjectDir="$(ProjectDir)"
|
||||
OutputPath="$(OutputPath)"
|
||||
AssemblyName="$(AssemblyName)"
|
||||
MakeZip="true"
|
||||
Author="$(Author)"
|
||||
Name="$(Name)"
|
||||
MinimumDalamudVersion="$(MinimumDalamudVersion)"
|
||||
Punchline="$(Punchline)"
|
||||
Description="$(Description)"
|
||||
ApplicableVersion="$(ApplicableVersion)"
|
||||
RepoUrl="$(RepoUrl)"
|
||||
Tags="$(Tags)"
|
||||
CategoryTags="$(CategoryTags)"
|
||||
DalamudApiLevel="$(DalamudApiLevel)"
|
||||
LoadRequiredState="$(LoadRequiredState)"
|
||||
LoadSync="$(LoadSync)"
|
||||
CanUnloadAsync="$(CanUnloadAsync)"
|
||||
LoadPriority="$(LoadPriority)"
|
||||
ImageUrls="$(ImageUrls)"
|
||||
IconUrl="$(IconUrl)"
|
||||
Changelog="$(Changelog)"
|
||||
AcceptsFeedback="$(AcceptsFeedback)"
|
||||
FeedbackMessage="$(FeedbackMessage)"
|
||||
HandleImages="true"
|
||||
ImagesPath="$(ProjectDir)images" />
|
||||
</Target>
|
||||
</Project>
|
||||
+58
-16
@@ -1,16 +1,31 @@
|
||||
name: Hellion Chat
|
||||
author: JonKazama-Hellion
|
||||
punchline: GDPR-compliant, Linux-aware fork of Chat 2
|
||||
punchline: Chat 2 with privacy controls aligned to EU, US and JP rules
|
||||
description: |-
|
||||
Hellion Chat is a privacy-focused, Linux-aware fork of Chat 2.
|
||||
Hellion Chat is built on top of Chat 2 — every Chat 2 feature, command
|
||||
and shortcut you already know works the same. The /chat2 command, tabs,
|
||||
channel filters, RGB colours, emotes, screenshot mode, IPC integration
|
||||
and the chat replacement window itself are all unchanged.
|
||||
|
||||
Same chat replacement you know from upstream, with extra controls
|
||||
for what actually gets stored:
|
||||
On top of that, Hellion Chat adds privacy and data-handling controls
|
||||
designed to align with the modern data protection rules that apply
|
||||
across the EU, the United States and Japan. By default only your own
|
||||
conversations are stored; messages from strangers, NPCs and system
|
||||
spam stay out of the database. Retention windows are configurable per
|
||||
channel, history can be wiped retroactively, and stored data can be
|
||||
exported on demand.
|
||||
|
||||
- Channel whitelist for database persistence (GDPR Art. 25)
|
||||
- Privacy-First defaults: only your own conversations are kept
|
||||
- Failsafe for unknown ChatTypes (default OFF)
|
||||
- Independent plugin state (own config + database directory)
|
||||
Key additions on top of Chat 2:
|
||||
|
||||
- Channel whitelist with a Privacy-First default
|
||||
- Per-channel retention with a daily background sweep
|
||||
- Retroactive cleanup with a Ctrl+Shift confirm
|
||||
- Export to Markdown, JSON or CSV
|
||||
- First-run wizard with three preset profiles (Privacy-First, Casual,
|
||||
Full History)
|
||||
- Bilingual UI (English and German) with live language switching
|
||||
- Independent plugin state — own config file and database directory,
|
||||
so Hellion Chat does not share state with the upstream plugin
|
||||
|
||||
Based on Chat 2 by Infi and Anna, licensed under EUPL-1.2.
|
||||
repo_url: https://github.com/JonKazama-Hellion/HellionChat
|
||||
@@ -22,30 +37,57 @@ tags:
|
||||
- Replacement
|
||||
- Privacy
|
||||
changelog: |-
|
||||
**Hellion Chat 0.1.2 — About tab rebrand, DBViewer polish**
|
||||
|
||||
- About tab now shows Hellion-specific maintainer, license, EU/US/JP
|
||||
disclaimer and SQUARE ENIX disclaimer instead of the inherited
|
||||
Chat 2 contact info; original ChatTwo translator credits stay
|
||||
visible under a clearly labelled upstream tree node
|
||||
- Localization clarified: Hellion-specific German strings are
|
||||
maintained by the fork maintainer, the Crowdin contributor list
|
||||
only covers the inherited upstream strings
|
||||
- Cherry-picked DBViewer UI improvements from upstream Chat 2
|
||||
(auto-scroll-reset on page change, tooltips on date reset,
|
||||
folder export, page arrows, localized export-running messages)
|
||||
- README rewritten in the Hellion project style with a tech-stack
|
||||
table, architecture tree, database column list, install guide,
|
||||
upstream-sync workflow notes and project-status checklist
|
||||
|
||||
**Hellion Chat 0.1.1 — Packaging and migration fixes**
|
||||
|
||||
- Plugin icon now ships inside the bundle, so the Hellion logo
|
||||
renders locally in the Dalamud plugin list once installed (the
|
||||
previous release relied only on the remote IconUrl)
|
||||
- Plugin icon downsampled from 1024×1024 to 256×256 to match the
|
||||
rendered size; loads faster and caches better
|
||||
- Migration from upstream Chat 2 is more robust: each file move is
|
||||
wrapped individually, a locked SQLite database no longer aborts
|
||||
the rest of the migration, and a warning notification fires when
|
||||
any file is held open (with a hint to disable Chat 2 and restart
|
||||
the game)
|
||||
- README ships a step-by-step migration guide (fresh install versus
|
||||
coming from Chat 2) and a troubleshooting section with manual
|
||||
recovery commands for Linux and Windows
|
||||
|
||||
**Hellion Chat 0.1.0 — Initial fork release**
|
||||
|
||||
Privacy
|
||||
- Channel whitelist filter in MessageStore.UpsertMessage with a
|
||||
Privacy-First default (own conversations only)
|
||||
- Per-channel retention with a 24-hour idempotent background sweep
|
||||
(default OFF; spec defaults of 365 / 90 / 30 days)
|
||||
- Retroactive cleanup with a Ctrl+Shift confirm and VACUUM
|
||||
- Export to Markdown / JSON / CSV via Dalamud's file dialog
|
||||
(GDPR Art. 15 right of access)
|
||||
|
||||
Onboarding
|
||||
- First-run wizard with three profiles: Privacy-First / Casual /
|
||||
Full History
|
||||
- Configuration v6 → v7 migration that seeds defaults and shows a
|
||||
notification once on update
|
||||
- Configuration migration that seeds defaults on update
|
||||
- One-shot migration from upstream Chat 2's pluginConfigs layout
|
||||
so the fork uses pluginConfigs/HellionChat without losing state
|
||||
- Migrate3 idempotency recovery for half-migrated databases
|
||||
|
||||
Look & feel
|
||||
- Localized UI (English and German) with live language switching
|
||||
- Hellion industrial HUD theme with cyan-teal action accents,
|
||||
slate-violet tabs, amber active highlights and a window-opacity
|
||||
slider for combat-friendly transparency
|
||||
- Industrial HUD theme with cyan-teal action accents, slate-violet
|
||||
tabs, amber active highlights and a window-opacity slider
|
||||
|
||||
Based on Chat 2 1.35.3 (upstream Infiziert90/ChatTwo, EUPL-1.2).
|
||||
|
||||
+77
-30
@@ -272,61 +272,108 @@ public sealed class Plugin : IDalamudPlugin
|
||||
|
||||
private static void MigrateFromChatTwoLayout()
|
||||
{
|
||||
var pluginConfigsDir = Interface.ConfigDirectory.Parent?.FullName;
|
||||
if (pluginConfigsDir is null)
|
||||
return;
|
||||
|
||||
var legacyConfigFile = Path.Combine(pluginConfigsDir, "ChatTwo.json");
|
||||
var legacyConfigDir = Path.Combine(pluginConfigsDir, "ChatTwo");
|
||||
var ourConfigFile = Path.Combine(pluginConfigsDir, "HellionChat.json");
|
||||
var ourConfigDir = Interface.ConfigDirectory.FullName;
|
||||
|
||||
// Track whether anything legitimately blocked us. The most common
|
||||
// cause is upstream Chat 2 still being loaded — its SQLite handle
|
||||
// keeps chat-sqlite.db locked and File.Move throws IOException.
|
||||
var lockedBlocker = false;
|
||||
|
||||
try
|
||||
{
|
||||
var pluginConfigsDir = Interface.ConfigDirectory.Parent?.FullName;
|
||||
if (pluginConfigsDir is null)
|
||||
return;
|
||||
|
||||
var legacyConfigFile = Path.Combine(pluginConfigsDir, "ChatTwo.json");
|
||||
var legacyConfigDir = Path.Combine(pluginConfigsDir, "ChatTwo");
|
||||
var ourConfigFile = Path.Combine(pluginConfigsDir, "HellionChat.json");
|
||||
var ourConfigDir = Interface.ConfigDirectory.FullName;
|
||||
|
||||
if (!File.Exists(ourConfigFile) && File.Exists(legacyConfigFile))
|
||||
{
|
||||
File.Move(legacyConfigFile, ourConfigFile);
|
||||
Log.Information($"HellionChat: migrated config file {legacyConfigFile} → {ourConfigFile}");
|
||||
}
|
||||
}
|
||||
catch (IOException e)
|
||||
{
|
||||
Log.Warning(e, $"HellionChat: config file move blocked, leaving {legacyConfigFile} in place");
|
||||
lockedBlocker = true;
|
||||
}
|
||||
|
||||
// The plugin's ConfigDirectory may already exist on first load
|
||||
// (Dalamud creates it), so check at the file level instead of
|
||||
// skipping when the directory is present. Move every legacy
|
||||
// entry whose target name is not occupied yet, then remove the
|
||||
// source dir if it ends up empty.
|
||||
if (Directory.Exists(legacyConfigDir))
|
||||
// The plugin's ConfigDirectory may already exist on first load
|
||||
// (Dalamud creates it), so check at the file level instead of
|
||||
// skipping when the directory is present. Move every legacy
|
||||
// entry whose target name is not occupied yet, then remove the
|
||||
// source dir if it ends up empty. Each move is wrapped on its
|
||||
// own so a single locked file (the SQLite db while ChatTwo still
|
||||
// runs) does not abandon the rest of the migration.
|
||||
if (!Directory.Exists(legacyConfigDir))
|
||||
return;
|
||||
|
||||
try
|
||||
{
|
||||
Directory.CreateDirectory(ourConfigDir);
|
||||
|
||||
foreach (var file in Directory.EnumerateFiles(legacyConfigDir))
|
||||
{
|
||||
Directory.CreateDirectory(ourConfigDir);
|
||||
|
||||
foreach (var file in Directory.EnumerateFiles(legacyConfigDir))
|
||||
var target = Path.Combine(ourConfigDir, Path.GetFileName(file));
|
||||
if (File.Exists(target))
|
||||
continue;
|
||||
try
|
||||
{
|
||||
var target = Path.Combine(ourConfigDir, Path.GetFileName(file));
|
||||
if (File.Exists(target))
|
||||
continue;
|
||||
File.Move(file, target);
|
||||
Log.Information($"HellionChat: migrated file {file} → {target}");
|
||||
}
|
||||
|
||||
foreach (var dir in Directory.EnumerateDirectories(legacyConfigDir))
|
||||
catch (IOException e)
|
||||
{
|
||||
Log.Warning(e, $"HellionChat: file move blocked for {file}, will retry on next load");
|
||||
lockedBlocker = true;
|
||||
}
|
||||
}
|
||||
|
||||
foreach (var dir in Directory.EnumerateDirectories(legacyConfigDir))
|
||||
{
|
||||
var target = Path.Combine(ourConfigDir, Path.GetFileName(dir));
|
||||
if (Directory.Exists(target))
|
||||
continue;
|
||||
try
|
||||
{
|
||||
var target = Path.Combine(ourConfigDir, Path.GetFileName(dir));
|
||||
if (Directory.Exists(target))
|
||||
continue;
|
||||
Directory.Move(dir, target);
|
||||
Log.Information($"HellionChat: migrated subdir {dir} → {target}");
|
||||
}
|
||||
|
||||
if (!Directory.EnumerateFileSystemEntries(legacyConfigDir).Any())
|
||||
catch (IOException e)
|
||||
{
|
||||
Directory.Delete(legacyConfigDir);
|
||||
Log.Information($"HellionChat: removed empty legacy dir {legacyConfigDir}");
|
||||
Log.Warning(e, $"HellionChat: subdir move blocked for {dir}, will retry on next load");
|
||||
lockedBlocker = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (!Directory.EnumerateFileSystemEntries(legacyConfigDir).Any())
|
||||
{
|
||||
Directory.Delete(legacyConfigDir);
|
||||
Log.Information($"HellionChat: removed empty legacy dir {legacyConfigDir}");
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Log.Error(e, "HellionChat: layout migration failed, continuing with whatever exists");
|
||||
}
|
||||
|
||||
if (lockedBlocker)
|
||||
{
|
||||
// Surface the most common cause to the user as a notification
|
||||
// so they don't think Hellion Chat lost their history when in
|
||||
// fact upstream Chat 2 was still holding the database file.
|
||||
Notification.AddNotification(new Dalamud.Interface.ImGuiNotification.Notification
|
||||
{
|
||||
Title = "Hellion Chat",
|
||||
Content = "Could not migrate the Chat 2 database — the file appears to be in use. " +
|
||||
"Disable Chat 2, fully close the game, then start it again. " +
|
||||
"See the README troubleshooting section if the issue persists.",
|
||||
Type = Dalamud.Interface.ImGuiNotification.NotificationType.Warning,
|
||||
InitialDuration = TimeSpan.FromSeconds(30),
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
private void OpenMainUi()
|
||||
|
||||
Generated
+100
@@ -131,6 +131,15 @@ namespace ChatTwo.Resources {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Loading logs ....
|
||||
/// </summary>
|
||||
internal static string ChatExport_Initial {
|
||||
get {
|
||||
return ResourceManager.GetString("ChatExport_Initial", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Input is disabled for this tab.
|
||||
/// </summary>
|
||||
@@ -1454,6 +1463,34 @@ namespace ChatTwo.Resources {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Database migration has failed, a new database will be created.
|
||||
///Your old database can still be recovered, please contact the plugin author for help..
|
||||
/// </summary>
|
||||
internal static string Database_Migration_Error_Desc {
|
||||
get {
|
||||
return ResourceManager.GetString("Database_Migration_Error_Desc", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Chat2 Database Migration Error.
|
||||
/// </summary>
|
||||
internal static string Database_Migration_Error_Title {
|
||||
get {
|
||||
return ResourceManager.GetString("Database_Migration_Error_Title", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Open date picker.
|
||||
/// </summary>
|
||||
internal static string DatePicker_Tooltip {
|
||||
get {
|
||||
return ResourceManager.GetString("DatePicker_Tooltip", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Fri.
|
||||
/// </summary>
|
||||
@@ -1643,6 +1680,15 @@ namespace ChatTwo.Resources {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Reset date selection..
|
||||
/// </summary>
|
||||
internal static string DbViewer_Date_Reset_Tooltip {
|
||||
get {
|
||||
return ResourceManager.GetString("DbViewer_Date_Reset_Tooltip", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to FromTo:.
|
||||
/// </summary>
|
||||
@@ -1733,6 +1779,24 @@ namespace ChatTwo.Resources {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Export the message history to a json file..
|
||||
/// </summary>
|
||||
internal static string Export_Json_Tooltip {
|
||||
get {
|
||||
return ResourceManager.GetString("Export_Json_Tooltip", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Export the message history to a text file..
|
||||
/// </summary>
|
||||
internal static string Export_Txt_Tooltip {
|
||||
get {
|
||||
return ResourceManager.GetString("Export_Txt_Tooltip", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Chinese (full).
|
||||
/// </summary>
|
||||
@@ -1796,6 +1860,24 @@ namespace ChatTwo.Resources {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Pick a folder location for export..
|
||||
/// </summary>
|
||||
internal static string Folder_Export_Location_Tooltip {
|
||||
get {
|
||||
return ResourceManager.GetString("Folder_Export_Location_Tooltip", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Pick an export location.
|
||||
/// </summary>
|
||||
internal static string Folder_Selection_Header {
|
||||
get {
|
||||
return ResourceManager.GetString("Folder_Selection_Header", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Source.
|
||||
/// </summary>
|
||||
@@ -3713,6 +3795,24 @@ namespace ChatTwo.Resources {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Previous page.
|
||||
/// </summary>
|
||||
internal static string Page_ArrowLeft_Tooltip {
|
||||
get {
|
||||
return ResourceManager.GetString("Page_ArrowLeft_Tooltip", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Next page.
|
||||
/// </summary>
|
||||
internal static string Page_ArrowRight_Tooltip {
|
||||
get {
|
||||
return ResourceManager.GetString("Page_ArrowRight_Tooltip", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Unable to find ID for this message, please try another one..
|
||||
/// </summary>
|
||||
|
||||
Generated
+34
@@ -1432,4 +1432,38 @@
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
Generated
+34
@@ -1435,4 +1435,38 @@ Nachdem du 'Aktiviert' angeklickt und auf 'Start' gedrückt hast, wird die einge
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
Generated
+34
@@ -1432,4 +1432,38 @@
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
Generated
+34
@@ -1432,4 +1432,38 @@
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
Generated
+34
@@ -1432,4 +1432,38 @@
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
Generated
+34
@@ -1432,4 +1432,38 @@
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
Generated
+34
@@ -1432,4 +1432,38 @@
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
Generated
+34
@@ -1432,4 +1432,38 @@
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
Generated
+34
@@ -1432,4 +1432,38 @@
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
@@ -1432,4 +1432,38 @@
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
Generated
+34
@@ -1432,4 +1432,38 @@
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
Generated
+34
@@ -1432,4 +1432,38 @@
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
Generated
+34
@@ -1432,4 +1432,38 @@
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
Generated
+34
@@ -1432,4 +1432,38 @@
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
Generated
+34
@@ -1433,4 +1433,38 @@
|
||||
<data name="ChannelSelector_Select" xml:space="preserve">
|
||||
<value>Select all</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Title" xml:space="preserve">
|
||||
<value>Chat2 Database Migration Error</value>
|
||||
</data>
|
||||
<data name="Database_Migration_Error_Desc" xml:space="preserve">
|
||||
<value>Database migration has failed, a new database will be created.
|
||||
Your old database can still be recovered, please contact the plugin author for help.</value>
|
||||
</data>
|
||||
<data name="DbViewer_Date_Reset_Tooltip" xml:space="preserve">
|
||||
<value>Reset date selection.</value>
|
||||
</data>
|
||||
<data name="Folder_Export_Location_Tooltip" xml:space="preserve">
|
||||
<value>Pick a folder location for export.</value>
|
||||
</data>
|
||||
<data name="Folder_Selection_Header" xml:space="preserve">
|
||||
<value>Pick an export location</value>
|
||||
</data>
|
||||
<data name="Export_Txt_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a text file.</value>
|
||||
</data>
|
||||
<data name="Export_Json_Tooltip" xml:space="preserve">
|
||||
<value>Export the message history to a json file.</value>
|
||||
</data>
|
||||
<data name="Page_ArrowLeft_Tooltip" xml:space="preserve">
|
||||
<value>Previous page</value>
|
||||
</data>
|
||||
<data name="Page_ArrowRight_Tooltip" xml:space="preserve">
|
||||
<value>Next page</value>
|
||||
</data>
|
||||
<data name="DatePicker_Tooltip" xml:space="preserve">
|
||||
<value>Open date picker</value>
|
||||
</data>
|
||||
<data name="ChatExport_Initial" xml:space="preserve">
|
||||
<value>Loading logs ...</value>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
+27
-9
@@ -56,6 +56,8 @@ public class DbViewer : Window
|
||||
private string InputPath = string.Empty;
|
||||
private IActiveNotification Notification = null!;
|
||||
|
||||
private bool NeedsScrollReset;
|
||||
|
||||
public DbViewer(Plugin plugin) : base("DBViewer###chat2-dbviewer")
|
||||
{
|
||||
Plugin = plugin;
|
||||
@@ -104,11 +106,17 @@ public class DbViewer : Window
|
||||
var spacing = 3.0f * ImGuiHelpers.GlobalScale;
|
||||
DateWidget.DatePickerWithInput("##FromDate", 1, ref MinDateString, ref AfterDate, DateFormat);
|
||||
DateWidget.DatePickerWithInput("##ToDate", 2, ref MaxDateString, ref BeforeDate, DateFormat, true);
|
||||
|
||||
ImGui.SameLine(0, spacing);
|
||||
|
||||
if (ImGuiUtil.IconButton(FontAwesomeIcon.Recycle))
|
||||
DateReset();
|
||||
ImGuiUtil.DrawArrows(ref CurrentPage, 1, totalPages, spacing);
|
||||
|
||||
if (ImGui.IsItemHovered())
|
||||
ImGui.SetTooltip(Language.DbViewer_Date_Reset_Tooltip);
|
||||
|
||||
ImGui.SameLine(0, spacing);
|
||||
|
||||
ChannelSelection();
|
||||
|
||||
var skipText = Language.DbViewer_CharacterOption;
|
||||
@@ -128,12 +136,12 @@ public class DbViewer : Window
|
||||
ImGui.OpenPopup("InputPathDialog");
|
||||
|
||||
if (ImGui.IsItemHovered(ImGuiHoveredFlags.AllowWhenDisabled))
|
||||
ImGui.SetTooltip("Pick a folder location for export.");
|
||||
ImGui.SetTooltip(Language.Folder_Export_Location_Tooltip);
|
||||
|
||||
using (var innerPopup = ImRaii.Popup("InputPathDialog"))
|
||||
{
|
||||
if (innerPopup.Success)
|
||||
Plugin.FileDialogManager.OpenFolderDialog("Pick an export location", (b, s) => { if (b) InputPath = s; }, null, true);
|
||||
Plugin.FileDialogManager.OpenFolderDialog(Language.Folder_Selection_Header, (b, s) => { if (b) InputPath = s; }, null, true);
|
||||
}
|
||||
|
||||
ImGui.SameLine(0, spacing);
|
||||
@@ -145,7 +153,7 @@ public class DbViewer : Window
|
||||
new Notification
|
||||
{
|
||||
Title = "Chat2 Text Export",
|
||||
Content = "Loading logs ...",
|
||||
Content = Language.ChatExport_Initial,
|
||||
Type = NotificationType.Info,
|
||||
Minimized = false,
|
||||
UserDismissable = false,
|
||||
@@ -157,7 +165,7 @@ public class DbViewer : Window
|
||||
}
|
||||
|
||||
if (ImGui.IsItemHovered(ImGuiHoveredFlags.AllowWhenDisabled))
|
||||
ImGui.SetTooltip("Export the message history to a text file.");
|
||||
ImGui.SetTooltip(Language.Export_Txt_Tooltip);
|
||||
|
||||
ImGui.SameLine(0, spacing);
|
||||
using (ImRaii.Disabled(InputPath.Length == 0 || IsExporting))
|
||||
@@ -168,7 +176,7 @@ public class DbViewer : Window
|
||||
new Notification
|
||||
{
|
||||
Title = "Chat2 Json Export",
|
||||
Content = "Loading logs ...",
|
||||
Content = Language.ChatExport_Initial,
|
||||
Type = NotificationType.Info,
|
||||
Minimized = false,
|
||||
UserDismissable = false,
|
||||
@@ -180,13 +188,15 @@ public class DbViewer : Window
|
||||
}
|
||||
|
||||
if (ImGui.IsItemHovered(ImGuiHoveredFlags.AllowWhenDisabled))
|
||||
ImGui.SetTooltip("Export the message history to a json file.");
|
||||
ImGui.SetTooltip(Language.Export_Json_Tooltip);
|
||||
|
||||
var width = 350 * ImGuiHelpers.GlobalScale;
|
||||
var loadingIndicator = IsProcessing && ProcessingStart < Environment.TickCount64;
|
||||
|
||||
ImGui.AlignTextToFramePadding();
|
||||
ImGui.TextUnformatted(string.Format(Language.DbViewer_Page, CurrentPage, totalPages, Count, loadingIndicator ? Language.DbViewer_LoadingIndicator : ""));
|
||||
ImGuiUtil.DrawArrows(ref CurrentPage, 1, totalPages, spacing, tooltipLeft: Language.Page_ArrowLeft_Tooltip, tooltipRight: Language.Page_ArrowRight_Tooltip);
|
||||
|
||||
ImGui.SameLine(ImGui.GetContentRegionMax().X - width);
|
||||
ImGui.SetNextItemWidth(width);
|
||||
if (ImGui.InputTextWithHint("##searchbar", Language.DbViewer_SearcHint, ref SimpleSearchTerm, 30))
|
||||
@@ -222,6 +232,7 @@ public class DbViewer : Window
|
||||
Messages = rangeMessageEnumerator.ToArray();
|
||||
|
||||
Filtered = Filter(Messages);
|
||||
NeedsScrollReset = true;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
@@ -246,6 +257,12 @@ public class DbViewer : Window
|
||||
if (!child.Success)
|
||||
return;
|
||||
|
||||
if (NeedsScrollReset)
|
||||
{
|
||||
NeedsScrollReset = false;
|
||||
ImGui.SetScrollY(0.0f);
|
||||
}
|
||||
|
||||
using var table = ImRaii.Table("##messageHistory", 4, ImGuiTableFlags.Borders | ImGuiTableFlags.RowBg | ImGuiTableFlags.Resizable);
|
||||
if (!table.Success)
|
||||
return;
|
||||
@@ -281,6 +298,7 @@ public class DbViewer : Window
|
||||
private void ChannelSelection()
|
||||
{
|
||||
const string addTabPopup = "add-channel-popup";
|
||||
var spacing = 3.0f * ImGuiHelpers.GlobalScale;
|
||||
|
||||
if (ImGui.Button("Channels"))
|
||||
ImGui.OpenPopup(addTabPopup);
|
||||
@@ -306,7 +324,7 @@ public class DbViewer : Window
|
||||
if (ImGui.IsItemHovered())
|
||||
ImGui.SetTooltip("Select all");
|
||||
|
||||
ImGui.SameLine();
|
||||
ImGui.SameLine(0, spacing);
|
||||
|
||||
if (ImGuiComponents.IconButton(FontAwesomeIcon.Times))
|
||||
{
|
||||
@@ -317,7 +335,7 @@ public class DbViewer : Window
|
||||
if (ImGui.IsItemHovered())
|
||||
ImGui.SetTooltip("Unselect all");
|
||||
|
||||
ImGui.SameLine();
|
||||
ImGui.SameLine(0, spacing);
|
||||
|
||||
using var headerNode = ImRaii.TreeNode(header);
|
||||
if (!headerNode.Success)
|
||||
|
||||
@@ -45,7 +45,7 @@ internal sealed class About : ISettingsTab
|
||||
|
||||
ImGui.TextUnformatted(Language.Options_About_Discord);
|
||||
ImGui.SameLine();
|
||||
ImGui.TextColored(ImGuiColors.ParsedGold, "@infi");
|
||||
ImGui.TextColored(ImGuiColors.ParsedGold, "@j.j_kazama");
|
||||
|
||||
ImGui.TextUnformatted(Language.Options_About_Version);
|
||||
ImGui.SameLine();
|
||||
@@ -53,24 +53,54 @@ internal sealed class About : ISettingsTab
|
||||
|
||||
ImGuiHelpers.ScaledDummy(10.0f);
|
||||
|
||||
ImGui.TextUnformatted(Language.Options_About_Discord_Thread);
|
||||
ImGui.SameLine();
|
||||
if (ImGuiUtil.IconButton(FontAwesomeIcon.ExternalLinkAlt, "discordThread"))
|
||||
Dalamud.Utility.Util.OpenLink("https://canary.discord.com/channels/581875019861328007/1224865018789761126");
|
||||
|
||||
ImGui.Spacing();
|
||||
|
||||
ImGui.TextUnformatted(Language.Options_About_Github_Issues);
|
||||
ImGui.SameLine();
|
||||
if (ImGuiUtil.IconButton(FontAwesomeIcon.ExternalLinkAlt, "githubIssues"))
|
||||
Dalamud.Utility.Util.OpenLink("https://github.com/Infiziert90/ChatTwo/issues");
|
||||
Dalamud.Utility.Util.OpenLink("https://github.com/JonKazama-Hellion/HellionChat/issues");
|
||||
|
||||
ImGuiHelpers.ScaledDummy(10.0f);
|
||||
|
||||
ImGui.TextUnformatted(Language.Options_About_CrowdIn);
|
||||
// Hellion-specific maintainer / attribution / license / SE-
|
||||
// disclaimer block. Hand-rolled in English here rather than via
|
||||
// HellionStrings — the legal-ish copy stays close to the EUPL-1.2
|
||||
// wording and the SE disclaimer is the same in every locale.
|
||||
ImGui.TextColored(ImGuiColors.ParsedGold, "Maintainer");
|
||||
ImGui.TextUnformatted("Hellion Chat is maintained by Hellion Online Media (Florian Wathling).");
|
||||
ImGui.TextUnformatted("Website:");
|
||||
ImGui.SameLine();
|
||||
if (ImGuiUtil.IconButton(FontAwesomeIcon.ExternalLinkAlt, "crowdin"))
|
||||
Dalamud.Utility.Util.OpenLink("https://crowdin.com/project/chattwo");
|
||||
if (ImGuiUtil.IconButton(FontAwesomeIcon.ExternalLinkAlt, "hellionMedia"))
|
||||
Dalamud.Utility.Util.OpenLink("https://hellion-media.de");
|
||||
ImGui.TextUnformatted("For licensing, legal or contact inquiries please reach out via the website above.");
|
||||
|
||||
ImGuiHelpers.ScaledDummy(10.0f);
|
||||
|
||||
ImGui.TextColored(ImGuiColors.ParsedGold, "Built on Chat 2");
|
||||
ImGui.TextUnformatted("Hellion Chat is a fork of Chat 2 by Infi and Anna (ascclemens).");
|
||||
ImGui.TextUnformatted("Every chat replacement feature, the IPC integration, the rendering engine and the storage core come from upstream Chat 2.");
|
||||
ImGui.TextUnformatted("Upstream repository:");
|
||||
ImGui.SameLine();
|
||||
if (ImGuiUtil.IconButton(FontAwesomeIcon.ExternalLinkAlt, "chatTwoUpstream"))
|
||||
Dalamud.Utility.Util.OpenLink("https://github.com/Infiziert90/ChatTwo");
|
||||
|
||||
ImGuiHelpers.ScaledDummy(10.0f);
|
||||
|
||||
ImGui.TextColored(ImGuiColors.ParsedGold, "License");
|
||||
ImGui.TextUnformatted("Hellion Chat and Chat 2 are licensed under the European Union Public License v1.2 (EUPL-1.2).");
|
||||
ImGui.TextUnformatted("© 2023–2026 the Chat 2 authors (Infi, Anna and the upstream contributors).");
|
||||
ImGui.TextUnformatted("© 2026 Hellion Online Media — for the Hellion Chat additions.");
|
||||
|
||||
ImGuiHelpers.ScaledDummy(10.0f);
|
||||
|
||||
ImGui.TextColored(ImGuiColors.DalamudOrange, "FINAL FANTASY XIV disclaimer");
|
||||
ImGui.TextUnformatted("FINAL FANTASY XIV © SQUARE ENIX CO., LTD. All rights reserved.");
|
||||
ImGui.TextUnformatted("Hellion Chat is an unofficial, fan-made plugin and is not affiliated with, endorsed, sponsored or approved by Square Enix.");
|
||||
|
||||
ImGui.Spacing();
|
||||
|
||||
ImGui.TextColored(ImGuiColors.ParsedGold, "Localization");
|
||||
ImGui.TextUnformatted("German translations of Hellion-specific UI strings (HellionStrings.de.resx) are written by the Hellion Online Media maintainer.");
|
||||
ImGui.TextUnformatted("All other locales for Hellion-specific strings are not currently provided.");
|
||||
ImGui.TextUnformatted("The translator list below covers the upstream Chat 2 community translators on Crowdin — their work covers the inherited Chat 2 strings, not the Hellion additions.");
|
||||
|
||||
ImGui.Spacing();
|
||||
|
||||
@@ -79,7 +109,7 @@ internal sealed class About : ISettingsTab
|
||||
{
|
||||
if (aboutChild)
|
||||
{
|
||||
using var treeNode = ImRaii.TreeNode(Language.Options_About_Translators);
|
||||
using var treeNode = ImRaii.TreeNode("Chat 2 community translators (upstream)");
|
||||
if (treeNode)
|
||||
{
|
||||
using var translatorChild = ImRaii.Child("translators");
|
||||
|
||||
@@ -65,6 +65,9 @@ public static class DateWidget
|
||||
ImGui.SameLine(0, 3.0f * ImGuiHelpers.GlobalScale);
|
||||
|
||||
ImGuiUtil.IconButton(FontAwesomeIcon.Calendar, id.ToString());
|
||||
if (ImGui.IsItemHovered())
|
||||
ImGui.SetTooltip(Language.DatePicker_Tooltip);
|
||||
|
||||
if (DatePicker(label, ref date, closeWhenMouseLeavesIt))
|
||||
dateString = date.ToString(format);
|
||||
}
|
||||
|
||||
@@ -391,7 +391,7 @@ internal static class ImGuiUtil
|
||||
}
|
||||
}
|
||||
|
||||
public static void DrawArrows(ref int selected, int min, int max, float spacing, int id = 0)
|
||||
public static void DrawArrows(ref int selected, int min, int max, float spacing, int id = 0, string? tooltipLeft = null, string? tooltipRight = null)
|
||||
{
|
||||
// Prevents changing values from triggering EndDisable
|
||||
var isMin = selected == min;
|
||||
@@ -404,12 +404,19 @@ internal static class ImGuiUtil
|
||||
selected--;
|
||||
}
|
||||
|
||||
if (tooltipLeft != null && ImGui.IsItemHovered(ImGuiHoveredFlags.AllowWhenDisabled))
|
||||
ImGui.SetTooltip(tooltipLeft);
|
||||
|
||||
ImGui.SameLine(0, spacing);
|
||||
|
||||
using (ImRaii.Disabled(isMax))
|
||||
{
|
||||
if (IconButton(FontAwesomeIcon.ArrowRight, id+1.ToString()))
|
||||
selected++;
|
||||
}
|
||||
|
||||
if (tooltipRight != null && ImGui.IsItemHovered(ImGuiHoveredFlags.AllowWhenDisabled))
|
||||
ImGui.SetTooltip(tooltipRight);
|
||||
}
|
||||
|
||||
public static void WrappedTextWithColor(Vector4 color, string text)
|
||||
@@ -544,6 +551,8 @@ internal static class ImGuiUtil
|
||||
|
||||
public static void ChannelSelector(string headerText, Dictionary<ChatType, (ChatSource Source, ChatSource Target)> chatCodes)
|
||||
{
|
||||
var spacing = 3.0f * ImGuiHelpers.GlobalScale;
|
||||
|
||||
using var channelNode = ImRaii.TreeNode(headerText);
|
||||
if (!channelNode.Success)
|
||||
return;
|
||||
@@ -561,7 +570,7 @@ internal static class ImGuiUtil
|
||||
if (ImGui.IsItemHovered())
|
||||
ImGui.SetTooltip(Language.ChannelSelector_Select);
|
||||
|
||||
ImGui.SameLine();
|
||||
ImGui.SameLine(0, spacing);
|
||||
|
||||
if (ImGuiComponents.IconButton(FontAwesomeIcon.Times))
|
||||
{
|
||||
@@ -572,7 +581,7 @@ internal static class ImGuiUtil
|
||||
if (ImGui.IsItemHovered())
|
||||
ImGui.SetTooltip(Language.ChannelSelector_Unselect);
|
||||
|
||||
ImGui.SameLine();
|
||||
ImGui.SameLine(0, spacing);
|
||||
|
||||
using var headerNode = ImRaii.TreeNode(header);
|
||||
if (!headerNode.Success)
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 481 KiB After Width: | Height: | Size: 53 KiB |
@@ -1,110 +1,280 @@
|
||||
# Hellion Chat
|
||||
|
||||
A GDPR-compliant, Linux-aware fork of [Chat 2](https://github.com/Infiziert90/ChatTwo)
|
||||
for FINAL FANTASY XIV / Dalamud.
|
||||
**Version 0.1.2** — DSGVO-bewusste Erweiterung von [Chat 2](https://github.com/Infiziert90/ChatTwo) für FINAL FANTASY XIV / Dalamud.
|
||||
|
||||
Same chat replacement you know from upstream, with extra controls for what
|
||||
actually gets stored:
|
||||
Hellion Chat baut auf Chat 2 auf und ergänzt es um Datenschutz- und Daten-Handling-Kontrollen, die mit den Datenschutz-Regeln in der EU, den USA und Japan im Einklang sind. Alle Chat-2-Funktionen, Befehle und Tastenkürzel funktionieren unverändert. Eigenständiger Plugin-Slot, eigene Konfiguration, eigene Datenbank.
|
||||
|
||||
- **Channel whitelist** for database persistence (GDPR Art. 25 — privacy by
|
||||
default). Out-of-the-box only your own conversations are kept: Tells, Party,
|
||||
Free Company, Linkshells, Cross-World Linkshells, Alliance, ExtraChat. Public
|
||||
chat from strangers (Say/Shout/Yell), Novice Network, NPC dialogue, system
|
||||
spam and battle messages stay outside the database unless you opt them in.
|
||||
- **Per-channel retention** with a 24-hour idempotent background sweep. Tells
|
||||
default to 365 days, own-conversation channels to 90, the global default to
|
||||
30. Off until you switch it on — the plugin never deletes history without
|
||||
your explicit consent.
|
||||
- **Retroactive cleanup** with a Ctrl+Shift confirm. Apply the current
|
||||
whitelist to an existing 800-MB+ database, watch it shrink to MBs, all on a
|
||||
background thread.
|
||||
- **Export** to Markdown, JSON or CSV (GDPR Art. 15 right of access). Filter
|
||||
by channel, date range or sender substring; written via Dalamud's file
|
||||
dialog without blocking the UI.
|
||||
- **First-run wizard** with three profiles (Privacy-First / Casual / Full
|
||||
History) that maps to concrete configuration sets. Reopenable from the
|
||||
Privacy tab any time.
|
||||
- **Independent plugin state.** Config and database live under
|
||||
`pluginConfigs/HellionChat/`, completely separate from upstream Chat 2 — you
|
||||
can run both side by side, or migrate from Chat 2 once and keep going.
|
||||
- **Migration recovery.** Heals databases left in a half-applied Migrate3
|
||||
state (columns added, `user_version` never bumped) without needing the
|
||||
backup file upstream creates.
|
||||
- **Localized UI (EN + DE).** All Hellion-specific surfaces follow Dalamud's
|
||||
language override and switch live. Translations live in
|
||||
`Resources/HellionStrings.<lang>.resx`.
|
||||
Privates Repository, EUPL-1.2-lizenziert. Distribution über Custom-Repo während der Bootstrap-Phase.
|
||||
|
||||
## Status
|
||||
---
|
||||
|
||||
Bootstrap (v0.1.x). Used in production on a single user's setup. Not (yet)
|
||||
submitted to the official Dalamud plugin repository — distributed as a
|
||||
custom-repo / dev-plugin while the architecture stabilises.
|
||||
## Tech Stack
|
||||
|
||||
## Install (testers)
|
||||
| Kategorie | Technologie |
|
||||
| --------------- | ---------------------------------------------------- |
|
||||
| Plattform | Dalamud Plugin (API Level 15) |
|
||||
| Sprache | C# 13 / .NET 10 (`net10.0-windows`) |
|
||||
| Build | Dalamud.NET.Sdk 15.0.0, DalamudPackager 15.0.0 |
|
||||
| UI | Dear ImGui (Dalamud-Bindings) |
|
||||
| Datenbank | SQLite (Microsoft.Data.Sqlite, MessagePack-Storage) |
|
||||
| Lokalisierung | ResX (HellionStrings.resx, .de.resx) + Crowdin-Sync |
|
||||
| Schriftart | Exo 2 (SIL Open Font License 1.1, gebündelt) |
|
||||
| Toolchain | dotnet 10 SDK, VS Code mit C# Dev Kit |
|
||||
| Deployment | GitHub Releases + Custom-Repo (`repo.json`) |
|
||||
|
||||
Hellion Chat is shipped via a Dalamud **custom repository** during the
|
||||
bootstrap phase. To install:
|
||||
---
|
||||
|
||||
1. Open Dalamud settings (`/xlsettings`) → **Experimental**.
|
||||
2. Add a new entry under **Custom Plugin Repositories**:
|
||||
## Features
|
||||
|
||||
### Privacy / Compliance
|
||||
|
||||
- **Channel-Whitelist** für die Datenbank-Persistenz mit Privacy-First-Default. Out-of-the-box werden nur eigene Konversationen gespeichert (Tells, Gruppe, FC, Linkshells, Cross-World-Linkshells, Allianz, ExtraChat). Öffentlicher Chat, NPC-Dialoge, System-Spam und Battle-Logs werden auf der Storage-Ebene verworfen.
|
||||
- **Aufbewahrungsdauer pro Kanal** mit täglicher Background-Bereinigung. Tells 365 Tage, eigene Konversations-Kanäle 90 Tage, globaler Default 30 Tage. Standard ist AUS, das Plugin löscht ohne ausdrückliche Zustimmung nichts.
|
||||
- **Retroaktive Säuberung** mit Vorschau und Strg+Umschalt-Bestätigung. Wendet die aktuelle Whitelist auf eine bestehende Datenbank an, läuft im Hintergrund, ruft danach VACUUM auf.
|
||||
- **Export** nach Markdown, JSON oder CSV via Dalamud-Datei-Dialog (DSGVO Art. 15 Auskunftsrecht). Filter nach Kanal, Datums-Bereich oder Sender-Substring.
|
||||
|
||||
### Onboarding
|
||||
|
||||
- **First-Run-Wizard** mit drei Profilen (Privacy-First, Locker, Volle Historie) und DSGVO-Hinweis bei der "Volle Historie"-Option.
|
||||
- **Konfigurations-Migration v6→v7** seedet Privacy-Defaults bei Bestand-Usern und zeigt eine Benachrichtigung beim Ersten Plugin-Start nach Update.
|
||||
- **Layout-Migration aus Chat 2** verschiebt Konfiguration und Datenbank in `pluginConfigs/HellionChat/` ohne Datenverlust. Robust gegen blockierte Dateien (Warnung beim User wenn Chat 2 noch geladen ist).
|
||||
- **Migrate3-Recovery** heilt halb-migrierte Datenbanken aus alten Chat-2-Installationen.
|
||||
|
||||
### Look & Feel
|
||||
|
||||
- **Bilinguale UI** (Englisch + Deutsch) mit Live-Sprachwechsel. Hellion-spezifische Strings in `HellionStrings.<lang>.resx`.
|
||||
- **Hellion-HUD-Theme** mit Cyan-Teal-Akzenten, Slate-Violet-Tabs, Bernstein-Highlights für aktive Zustände.
|
||||
- **Fenster-Deckkraft-Slider** für Kampf-freundliche Transparenz.
|
||||
- **Mitgelieferte Hellion-Schrift** (Exo 2, OFL-1.1) als optionaler Default statt System-Font.
|
||||
- **Hellion-Logo** im Plugin-Bundle und in der Dalamud-Plugin-Liste.
|
||||
|
||||
### Stability
|
||||
|
||||
- BetterTTV-Cache-Crash-Fix (Null-Key-Handling).
|
||||
- Font-Atlas-Build-Fallback bei nicht-installierten System-Fonts.
|
||||
- Defensive Wrapping aller Migrations-Operationen.
|
||||
|
||||
---
|
||||
|
||||
## Architektur
|
||||
|
||||
```
|
||||
ChatTwo/
|
||||
├── Privacy/
|
||||
│ └── PrivacyDefaults.cs # Whitelist-Sets, Spec-Retention-Tabelle
|
||||
├── Export/
|
||||
│ └── MessageExporter.cs # Markdown / JSON / CSV Serializer
|
||||
├── Resources/
|
||||
│ ├── HellionStrings.resx # Hellion-eigene UI-Strings (EN)
|
||||
│ ├── HellionStrings.de.resx # Deutsche Übersetzung
|
||||
│ ├── HellionStrings.Designer.cs # Hand-maintained Accessor
|
||||
│ ├── HellionFont.ttf # Exo 2 Variable Font
|
||||
│ ├── HellionFont-OFL.txt # OFL-1.1 Lizenztext (mit Font gebundelt)
|
||||
│ └── Language*.resx # Upstream-Lokalisierung (Crowdin)
|
||||
├── Ui/
|
||||
│ ├── FirstRunWizard.cs # Drei-Profile-Onboarding
|
||||
│ ├── HellionStyle.cs # ImGui-Theme-Push (lokal + global)
|
||||
│ └── SettingsTabs/
|
||||
│ └── Privacy.cs # Datenschutz-Tab (Filter, Retention, Cleanup, Export)
|
||||
├── images/
|
||||
│ └── icon.png # Hellion-Logo (256×256)
|
||||
├── DalamudPackager.targets # Override für ImagesPath / HandleImages
|
||||
└── HellionChat.yaml # Plugin-Manifest (DalamudPackager-Source)
|
||||
```
|
||||
|
||||
### Regeln
|
||||
|
||||
- **Code-Namespace bleibt `ChatTwo.*`** — Cherry-Picks von Upstream-Bugfixes bleiben damit konfliktarm.
|
||||
- **AssemblyName ist `HellionChat`** — eigener Slot in `pluginConfigs/`, eigene Datei-Manifest, kein Shared State mit Chat 2.
|
||||
- **Hellion-eigene Strings nur in `HellionStrings.*.resx`** — die Upstream-`Language.*.resx` bleiben unverändert für sauberen Crowdin-Sync.
|
||||
- **Kein Direkt-Eingriff in `Plugin.Interface.UiBuilder.FontAtlas`** außerhalb von `FontManager` — Font-Fallback und Hellion-Font laufen zentral.
|
||||
|
||||
---
|
||||
|
||||
## Datenbank
|
||||
|
||||
SQLite, Schema von Upstream Chat 2 übernommen (Migration-Stand v3). Hellion-Erweiterungen sind in `Configuration` als Felder, nicht im DB-Schema:
|
||||
|
||||
| Spalte | Typ | Beschreibung |
|
||||
| ---------------- | -------- | --------------------------------------------- |
|
||||
| Id | BLOB | Guid |
|
||||
| Receiver | INTEGER | Empfänger-ContentId |
|
||||
| ContentId | INTEGER | Sender-ContentId |
|
||||
| Date | INTEGER | Unix-Timestamp (ms) |
|
||||
| ChatType | INTEGER | XivChatType / LogKind |
|
||||
| SourceKind | INTEGER | Player / NPC / Server / etc. |
|
||||
| TargetKind | INTEGER | Player / NPC / Server / etc. |
|
||||
| Sender | BLOB | MessagePack `List<Chunk>` |
|
||||
| Content | BLOB | MessagePack `List<Chunk>` |
|
||||
| SenderSource | BLOB | MessagePack `SeString` |
|
||||
| ContentSource | BLOB | MessagePack `SeString` |
|
||||
| ExtraChatChannel | BLOB | Guid |
|
||||
| Deleted | BOOLEAN | Soft-Delete-Marker |
|
||||
|
||||
Pfad: `pluginConfigs/HellionChat/chat-sqlite.db`. WAL-Modus, Synchronous=NORMAL.
|
||||
|
||||
---
|
||||
|
||||
## Installation (Tester)
|
||||
|
||||
Hellion Chat wird während der Bootstrap-Phase über ein Dalamud-**Custom-Repository** verteilt.
|
||||
|
||||
### Frische Installation (kein Chat 2 vorher)
|
||||
|
||||
1. Dalamud-Settings (`/xlsettings`) → **Experimental** öffnen.
|
||||
2. Neuen Eintrag unter **Custom Plugin Repositories** anlegen:
|
||||
```
|
||||
https://raw.githubusercontent.com/JonKazama-Hellion/HellionChat/main/repo.json
|
||||
```
|
||||
3. Click **Save**, then back in `/xlplugins` hit **All Plugins** and refresh.
|
||||
4. **Hellion Chat** now appears in the list — install it from there.
|
||||
5. If you previously had **Chat 2** installed, disable it first. The two
|
||||
share their database and config dir until Hellion Chat's first launch
|
||||
migrates everything into `pluginConfigs/HellionChat/`.
|
||||
3. **Save**, dann in `/xlplugins` → **All Plugins** → Refresh.
|
||||
4. **Hellion Chat** taucht in der Liste auf — installieren.
|
||||
|
||||
Updates land in the same plugin list once the maintainer pushes a new
|
||||
`v0.1.x` tag.
|
||||
### Migration aus Chat 2 (mit bestehendem Verlauf)
|
||||
|
||||
## Why a fork
|
||||
Chat 2 und Hellion Chat teilen sich die Datenbank-Datei, bis Hellion Chat sie beim ersten Start in den eigenen Pfad verschiebt. Die Reihenfolge ist wichtig:
|
||||
|
||||
The upstream maintainer has left filtering-related issues open since 2024
|
||||
([#84](https://github.com/Infiziert90/ChatTwo/issues/84),
|
||||
[#173](https://github.com/Infiziert90/ChatTwo/issues/173),
|
||||
[#174](https://github.com/Infiziert90/ChatTwo/issues/174)). The original
|
||||
design treats the database as an unlimited searchable archive of *everything*
|
||||
the chat window sees, which is fine in the US-/JP-shaped privacy mindset but
|
||||
hard to reconcile with EU GDPR data minimization rules when the archive
|
||||
contains messages from third parties.
|
||||
1. **Chat 2 deaktivieren** in `/xlplugins` (nicht deinstallieren, nur deaktivieren).
|
||||
2. **FFXIV komplett schließen**, damit SQLite die Datei-Sperre freigibt. Plugin-Reload allein reicht nicht.
|
||||
3. Spiel neu starten.
|
||||
4. Custom-Repo wie oben hinzufügen.
|
||||
5. Hellion Chat installieren. Beim ersten Start wandert die Konfigurations-Datei und das gesamte Datenbank-Verzeichnis in das HellionChat-Layout.
|
||||
6. **Verifizieren** unter Einstellungen → Datenschutz → Vorschau aktualisieren, dass die Nachrichten-Anzahl plausibel ist.
|
||||
|
||||
Forking under EUPL-1.2 is explicitly permitted, the upstream stays
|
||||
authoritative for the chat-replacement engine, and we cherry-pick relevant
|
||||
upstream bugfixes from `Infiziert90/ChatTwo` periodically.
|
||||
### Troubleshooting
|
||||
|
||||
## Build
|
||||
**Hellion Chat zeigt 0 Nachrichten, obwohl Chat 2 vorher aktiv war:**
|
||||
|
||||
Migration wurde durch eine gesperrte Datei blockiert. Spiel schließen und manuell verschieben:
|
||||
|
||||
Linux / XIVLauncher Core:
|
||||
```bash
|
||||
mv ~/.xlcore/pluginConfigs/ChatTwo/chat-sqlite.db \
|
||||
~/.xlcore/pluginConfigs/HellionChat/chat-sqlite.db
|
||||
[ -d ~/.xlcore/pluginConfigs/ChatTwo/EmoteCacheV1 ] && \
|
||||
mv ~/.xlcore/pluginConfigs/ChatTwo/EmoteCacheV1 \
|
||||
~/.xlcore/pluginConfigs/HellionChat/
|
||||
```
|
||||
|
||||
Windows / XIVLauncher:
|
||||
```powershell
|
||||
Move-Item "$env:AppData\XIVLauncher\pluginConfigs\ChatTwo\chat-sqlite.db" `
|
||||
"$env:AppData\XIVLauncher\pluginConfigs\HellionChat\chat-sqlite.db" -Force
|
||||
```
|
||||
|
||||
Spiel starten, Hellion Chat aktivieren, Verlauf ist zurück.
|
||||
|
||||
### Updates
|
||||
|
||||
Updates erscheinen automatisch in der Plugin-Liste, sobald ein neuer `v0.1.x`-Tag mit GitHub-Release publiziert ist. Keine Neu-Installation nötig.
|
||||
|
||||
---
|
||||
|
||||
## Entwicklung
|
||||
|
||||
### Voraussetzungen
|
||||
|
||||
- .NET 10 SDK (`10.0.104+`) und .NET 9 SDK (`9.0.115+` parallel)
|
||||
- Dalamud-Hooks im XIVLauncher-`addon`-Verzeichnis
|
||||
- VS Code mit C# Dev Kit (oder Rider, JetBrains)
|
||||
- Linux: WireGuard-Mount für Test-Spiel-Setup falls Remote-DB
|
||||
|
||||
### Setup
|
||||
|
||||
```bash
|
||||
# Linux with XIVLauncher Core
|
||||
git clone --recurse-submodules https://github.com/JonKazama-Hellion/HellionChat.git
|
||||
cd HellionChat
|
||||
git remote add upstream https://github.com/Infiziert90/ChatTwo.git
|
||||
|
||||
# Linux: DALAMUD_HOME exportieren falls Hooks nicht im Standardpfad
|
||||
cp .env.example .env
|
||||
# adjust DALAMUD_HOME if your hooks live somewhere else
|
||||
set -a; source .env; set +a
|
||||
|
||||
dotnet build ChatTwo/ChatTwo.csproj
|
||||
```
|
||||
|
||||
The output assembly is `ChatTwo/bin/Debug/HellionChat.dll`. Add the parent
|
||||
directory as a Dev Plugin Location in Dalamud's experimental settings.
|
||||
Output: `ChatTwo/bin/Debug/HellionChat.dll`. Den Ordner `ChatTwo/bin/Debug` in Dalamud unter Experimental → Dev Plugin Locations eintragen.
|
||||
|
||||
## Branding assets
|
||||
### Build-Konfigurationen
|
||||
|
||||
`ChatTwo/images/icon.png` is the upstream Chat 2 icon and stays in place
|
||||
until a hand-drawn Hellion logo replaces it. **No AI-generated artwork —
|
||||
ever.**
|
||||
| Configuration | Output | Zweck |
|
||||
| ------------- | ----------------------------------------------------- | -------------------------------- |
|
||||
| Debug | `bin/Debug/HellionChat.dll` | Dev-Plugin-Loading |
|
||||
| Release | `bin/Release/HellionChat/latest.zip` + Manifest | Custom-Repo / GitHub Release |
|
||||
|
||||
## License
|
||||
### Upstream-Sync
|
||||
|
||||
EUPL-1.2 (same as upstream Chat 2). See `LICENCE`.
|
||||
```bash
|
||||
git fetch upstream
|
||||
git log --oneline HEAD..upstream/main # Welche Commits gibt es?
|
||||
git cherry-pick -x <commit> # Selektiv übernehmen
|
||||
```
|
||||
|
||||
## Acknowledgments
|
||||
Konflikte in Upstream-Sprach-Ressourcen (`Language.<lang>.resx`) kommen häufig vor weil Crowdin sie regelmäßig anfasst. Pragmatisch mit `git checkout --theirs` auflösen, da wir sie selbst nicht editieren.
|
||||
|
||||
- **Infi & Anna (ascclemens)** — original Chat 2 engine, filtering, IPC, all
|
||||
the heavy lifting before this fork existed.
|
||||
- **Dalamud team** — the plugin framework underneath everything.
|
||||
- **JonKazama-Hellion** — fork maintenance, privacy/retention/export
|
||||
features, German localization.
|
||||
---
|
||||
|
||||
## AI assistance disclosure
|
||||
## Distribution
|
||||
|
||||
See `AI_DISCLOSURE.md`.
|
||||
| Phase | Version | Distribution |
|
||||
| --------------- | ------------- | -------------------------------------------------- |
|
||||
| Bootstrap | v0.1.x | Eigenes Custom-Repo (`repo.json` im Repo-Root) |
|
||||
| Stable | v1.0 | Eigenes Custom-Repo |
|
||||
| Optional | v1.1+ | Submission ans Dalamud-Main-Plugin-Repo (zusätzlich) |
|
||||
|
||||
`repo.json` wird beim Versions-Bump per Hand aus dem generierten `HellionChat.json` plus den GitHub-Release-Download-Links zusammengebaut. Skript-Automatisierung via GitHub Actions ist geplant aber noch nicht eingerichtet.
|
||||
|
||||
---
|
||||
|
||||
## Projektstatus
|
||||
|
||||
**Version 0.1.2** | Stand: Mai 2026
|
||||
|
||||
Alle Bootstrap-Phasen abgeschlossen:
|
||||
|
||||
- [x] Privacy-Filter (Whitelist + Retention + Cleanup + Export)
|
||||
- [x] First-Run-Wizard mit drei Profilen
|
||||
- [x] Plugin-Identity (eigener Slot, Layout-Migration, Recovery)
|
||||
- [x] Bilinguale UI (EN + DE) mit Live-Sprachwechsel
|
||||
- [x] Hellion-Theme + Hellion-Logo + gebündelter Exo-2-Font
|
||||
- [x] Custom-Repo-Pipeline mit GitHub-Release-Distribution
|
||||
- [x] About-Tab im Hellion-Branding mit License + Disclaimer
|
||||
- [x] AI-Disclosure dokumentiert (Pair-Klassifikation)
|
||||
|
||||
Phase 2 (offen, kein festes Datum):
|
||||
|
||||
- [ ] MySQL/MariaDB-Backend mit Drei-Stufen-Bestätigung
|
||||
- [ ] PostgreSQL-Backend
|
||||
- [ ] Encryption für sensible Channels (AES-256, lokaler Key)
|
||||
- [ ] WireGuard-Network-Detection (optionaler Filter)
|
||||
- [ ] libnotify-Integration (native Linux-Toasts)
|
||||
- [ ] XDG-Compliance (komplex unter Wine)
|
||||
- [ ] Hand-gezeichnetes Hellion-Logo (Platzhalter aus Hellion-Online-Media-Brand-Repo)
|
||||
- [ ] GitHub-Actions für reproduzierbaren Build und automatischen `repo.json`-Sync
|
||||
- [ ] Submission ans Dalamud-Main-Plugin-Repo
|
||||
|
||||
---
|
||||
|
||||
## Lizenz
|
||||
|
||||
EUPL-1.2 (gleiche Lizenz wie Upstream Chat 2). Siehe `LICENCE`.
|
||||
|
||||
© 2023–2026 die Chat-2-Autoren (Infi, Anna und die Upstream-Contributors) für die Engine, IPC und Storage-Schicht.
|
||||
© 2026 Hellion Online Media für die Hellion-Chat-Erweiterungen.
|
||||
|
||||
### Acknowledgments
|
||||
|
||||
- **Infi & Anna (ascclemens)** — die Chat-2-Engine, ohne die dieser Fork nicht existieren würde.
|
||||
- **Dalamud-Team** — das Plugin-Framework.
|
||||
- **Chat-2-Crowdin-Community** — Übersetzungen der Upstream-Strings (siehe Settings → Info → "Chat 2 community translators").
|
||||
|
||||
### FFXIV-Disclaimer
|
||||
|
||||
FINAL FANTASY XIV © SQUARE ENIX CO., LTD. Alle Rechte vorbehalten. Hellion Chat ist ein inoffizielles, von Fans erstelltes Plugin und ist weder mit Square Enix verbunden noch von ihnen unterstützt, gesponsert oder genehmigt.
|
||||
|
||||
### KI-Unterstützung
|
||||
|
||||
Siehe [`AI_DISCLOSURE.md`](AI_DISCLOSURE.md) für die Pair-Level-Disclosure.
|
||||
|
||||
---
|
||||
|
||||
**Hellion Online Media** | Bad Harzburg | [hellion-media.de](https://hellion-media.de)
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
"Author": "JonKazama-Hellion",
|
||||
"Name": "Hellion Chat",
|
||||
"InternalName": "HellionChat",
|
||||
"AssemblyVersion": "0.1.0.0",
|
||||
"Description": "Hellion Chat is a privacy-focused, Linux-aware fork of Chat 2.\n\nSame chat replacement you know from upstream, with extra controls\nfor what actually gets stored:\n\n- Channel whitelist for database persistence (GDPR Art. 25)\n- Privacy-First defaults: only your own conversations are kept\n- Failsafe for unknown ChatTypes (default OFF)\n- Independent plugin state (own config + database directory)\n\nBased on Chat 2 by Infi and Anna, licensed under EUPL-1.2.",
|
||||
"AssemblyVersion": "0.1.2.0",
|
||||
"Description": "Hellion Chat is built on top of Chat 2 — every Chat 2 feature, command\nand shortcut you already know works the same. The /chat2 command, tabs,\nchannel filters, RGB colours, emotes, screenshot mode, IPC integration\nand the chat replacement window itself are all unchanged.\n\nOn top of that, Hellion Chat adds privacy and data-handling controls\ndesigned to align with the modern data protection rules that apply\nacross the EU, the United States and Japan. By default only your own\nconversations are stored; messages from strangers, NPCs and system\nspam stay out of the database. Retention windows are configurable per\nchannel, history can be wiped retroactively, and stored data can be\nexported on demand.\n\nKey additions on top of Chat 2:\n\n- Channel whitelist with a Privacy-First default\n- Per-channel retention with a daily background sweep\n- Retroactive cleanup with a Ctrl+Shift confirm\n- Export to Markdown, JSON or CSV\n- First-run wizard with three preset profiles (Privacy-First, Casual,\n Full History)\n- Bilingual UI (English and German) with live language switching\n- Independent plugin state — own config file and database directory,\n so Hellion Chat does not share state with the upstream plugin\n\nBased on Chat 2 by Infi and Anna, licensed under EUPL-1.2.",
|
||||
"ApplicableVersion": "any",
|
||||
"RepoUrl": "https://github.com/JonKazama-Hellion/HellionChat",
|
||||
"Tags": [
|
||||
@@ -19,13 +19,13 @@
|
||||
"LoadSync": false,
|
||||
"CanUnloadAsync": false,
|
||||
"LoadPriority": 0,
|
||||
"Punchline": "GDPR-compliant, Linux-aware fork of Chat 2",
|
||||
"Changelog": "**Hellion Chat 0.1.0 — Initial fork release**\n\nPrivacy\n- Channel whitelist filter in MessageStore.UpsertMessage with a\n Privacy-First default (own conversations only)\n- Per-channel retention with a 24-hour idempotent background sweep\n (default OFF; spec defaults of 365 / 90 / 30 days)\n- Retroactive cleanup with a Ctrl+Shift confirm and VACUUM\n- Export to Markdown / JSON / CSV via Dalamud's file dialog\n (GDPR Art. 15 right of access)\n\nOnboarding\n- First-run wizard with three profiles: Privacy-First / Casual /\n Full History\n- Configuration v6 → v7 migration that seeds defaults and shows a\n notification once on update\n- One-shot migration from upstream Chat 2's pluginConfigs layout\n so the fork uses pluginConfigs/HellionChat without losing state\n- Migrate3 idempotency recovery for half-migrated databases\n\nLook & feel\n- Localized UI (English and German) with live language switching\n- Hellion industrial HUD theme with cyan-teal action accents,\n slate-violet tabs, amber active highlights and a window-opacity\n slider for combat-friendly transparency\n\nBased on Chat 2 1.35.3 (upstream Infiziert90/ChatTwo, EUPL-1.2).",
|
||||
"Punchline": "Chat 2 with privacy controls aligned to EU, US and JP rules",
|
||||
"Changelog": "**Hellion Chat 0.1.2 — About tab rebrand, DBViewer polish**\n\n- About tab now shows Hellion-specific maintainer, license, EU/US/JP\n disclaimer and SQUARE ENIX disclaimer instead of the inherited\n Chat 2 contact info; original ChatTwo translator credits stay\n visible under a clearly labelled upstream tree node\n- Localization clarified: Hellion-specific German strings are\n maintained by the fork maintainer, the Crowdin contributor list\n only covers the inherited upstream strings\n- Cherry-picked DBViewer UI improvements from upstream Chat 2\n (auto-scroll-reset on page change, tooltips on date reset,\n folder export, page arrows, localized export-running messages)\n- README rewritten in the Hellion project style with a tech-stack\n table, architecture tree, database column list, install guide,\n upstream-sync workflow notes and project-status checklist\n\n**Hellion Chat 0.1.1 — Packaging and migration fixes**\n\n- Plugin icon now ships inside the bundle, so the Hellion logo\n renders locally in the Dalamud plugin list once installed (the\n previous release relied only on the remote IconUrl)\n- Plugin icon downsampled from 1024×1024 to 256×256 to match the\n rendered size; loads faster and caches better\n- Migration from upstream Chat 2 is more robust: each file move is\n wrapped individually, a locked SQLite database no longer aborts\n the rest of the migration, and a warning notification fires when\n any file is held open (with a hint to disable Chat 2 and restart\n the game)\n- README ships a step-by-step migration guide (fresh install versus\n coming from Chat 2) and a troubleshooting section with manual\n recovery commands for Linux and Windows\n\n**Hellion Chat 0.1.0 — Initial fork release**\n\nPrivacy\n- Channel whitelist filter in MessageStore.UpsertMessage with a\n Privacy-First default (own conversations only)\n- Per-channel retention with a 24-hour idempotent background sweep\n- Retroactive cleanup with a Ctrl+Shift confirm and VACUUM\n- Export to Markdown / JSON / CSV via Dalamud's file dialog\n\nOnboarding\n- First-run wizard with three profiles: Privacy-First / Casual /\n Full History\n- Configuration migration that seeds defaults on update\n- One-shot migration from upstream Chat 2's pluginConfigs layout\n- Migrate3 idempotency recovery for half-migrated databases\n\nLook & feel\n- Localized UI (English and German) with live language switching\n- Industrial HUD theme with cyan-teal action accents, slate-violet\n tabs, amber active highlights and a window-opacity slider\n\nBased on Chat 2 1.35.3 (upstream Infiziert90/ChatTwo, EUPL-1.2).",
|
||||
"AcceptsFeedback": true,
|
||||
"DownloadLinkInstall": "https://github.com/JonKazama-Hellion/HellionChat/releases/download/v0.1.0/latest.zip",
|
||||
"DownloadLinkUpdate": "https://github.com/JonKazama-Hellion/HellionChat/releases/download/v0.1.0/latest.zip",
|
||||
"DownloadLinkTesting": "https://github.com/JonKazama-Hellion/HellionChat/releases/download/v0.1.0/latest.zip",
|
||||
"TestingAssemblyVersion": "0.1.0.0",
|
||||
"DownloadLinkInstall": "https://github.com/JonKazama-Hellion/HellionChat/releases/download/v0.1.2/latest.zip",
|
||||
"DownloadLinkUpdate": "https://github.com/JonKazama-Hellion/HellionChat/releases/download/v0.1.2/latest.zip",
|
||||
"DownloadLinkTesting": "https://github.com/JonKazama-Hellion/HellionChat/releases/download/v0.1.2/latest.zip",
|
||||
"TestingAssemblyVersion": "0.1.2.0",
|
||||
"IconUrl": "https://raw.githubusercontent.com/JonKazama-Hellion/HellionChat/main/ChatTwo/images/icon.png",
|
||||
"ImageUrls": [],
|
||||
"DownloadCount": 0,
|
||||
|
||||
Reference in New Issue
Block a user