refactor(ipc): rename IPC channels from ChatTwo.* to HellionChat.*
All 6 inter-plugin communication channels are renamed for the v1.0.0 standalone cut. Prevents Dalamud IPC registration conflicts when a user has both Hellion Chat and upstream Chat 2 installed. - IpcManager: Register, Available, Unregister, Invoke - TypingIpc: GetChatInputState, ChatInputStateChanged Breaking change for third-party plugins that bound to ChatTwo.* — none known at the time of this commit.
This commit is contained in:
@@ -19,8 +19,8 @@ internal sealed class TypingIpc : IDisposable
|
||||
{
|
||||
Plugin = plugin;
|
||||
|
||||
StateQueryGate = Plugin.Interface.GetIpcProvider<ChatInputState>("ChatTwo.GetChatInputState");
|
||||
StateChangedGate = Plugin.Interface.GetIpcProvider<ChatInputState, object?>("ChatTwo.ChatInputStateChanged");
|
||||
StateQueryGate = Plugin.Interface.GetIpcProvider<ChatInputState>("HellionChat.GetChatInputState");
|
||||
StateChangedGate = Plugin.Interface.GetIpcProvider<ChatInputState, object?>("HellionChat.ChatInputStateChanged");
|
||||
|
||||
StateQueryGate.RegisterFunc(GetState);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user