[PR #60] [MERGED] Dev irc fixes adjustments #59

Closed
opened 2026-09-04 00:49:57 +02:00 by Stone_Red · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/RedWizardsLab/EchoHub/pull/60
Author: @HueByte
Created: 7/17/2026
Status: Merged
Merged: 7/17/2026
Merged by: @HueByte

Base: devHead: dev_irc_fixes_adjustments


📝 Commits (3)

  • 953e081 feat: add image handling actions and improve IRC message formatting
  • 96736d6 feat: enhance message broadcasting to exclude sender's connection and improve IRC compliance
  • e71575d feat: update changelog for v0.2.15 release with new features and bug fixes

📊 Changes

22 files changed (+308 additions, -225 deletions)

View changed files

📝 docs/changelog/index.md (+1 -0)
📝 docs/changelog/toc.yml (+2 -0)
📝 docs/changelog/v0.2.15.md (+9 -0)
📝 src/EchoHub.Client/AppOrchestrator.cs (+57 -0)
📝 src/EchoHub.Client/UI/Chat/ChatLine.cs (+22 -0)
📝 src/EchoHub.Client/UI/Chat/ChatMessageManager.cs (+36 -3)
📝 src/EchoHub.Client/UI/MainWindow.cs (+36 -2)
📝 src/EchoHub.Core/Contracts/IChatBroadcaster.cs (+8 -1)
📝 src/EchoHub.Core/Contracts/IChatService.cs (+4 -2)
📝 src/EchoHub.Server.Irc/IrcBroadcaster.cs (+10 -14)
📝 src/EchoHub.Server.Irc/IrcCommandHandler.cs (+2 -2)
📝 src/EchoHub.Server.Irc/IrcMessageFormatter.cs (+21 -63)
📝 src/EchoHub.Server.Irc/IrcOptions.cs (+7 -0)
📝 src/EchoHub.Server/Controllers/FilesController.cs (+12 -0)
📝 src/EchoHub.Server/Hubs/ChatHub.cs (+1 -1)
📝 src/EchoHub.Server/Services/ChatService.cs (+2 -2)
📝 src/EchoHub.Server/Services/SignalRBroadcaster.cs (+3 -1)
📝 src/EchoHub.Tests/DataMigrationServiceTests.cs (+3 -5)
📝 src/EchoHub.Tests/Irc/IrcBroadcasterTests.cs (+25 -8)
📝 src/EchoHub.Tests/Irc/IrcMessageFormatterTests.cs (+32 -77)

...and 2 more files

📄 Description

Summary

See changelog


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/RedWizardsLab/EchoHub/pull/60 **Author:** [@HueByte](https://github.com/HueByte) **Created:** 7/17/2026 **Status:** ✅ Merged **Merged:** 7/17/2026 **Merged by:** [@HueByte](https://github.com/HueByte) **Base:** `dev` ← **Head:** `dev_irc_fixes_adjustments` --- ### 📝 Commits (3) - [`953e081`](https://github.com/RedWizardsLab/EchoHub/commit/953e0811238cf29a2a09392bc8fdd28971df8b20) feat: add image handling actions and improve IRC message formatting - [`96736d6`](https://github.com/RedWizardsLab/EchoHub/commit/96736d69df39701b0c30da0f241f29e2a3272c9b) feat: enhance message broadcasting to exclude sender's connection and improve IRC compliance - [`e71575d`](https://github.com/RedWizardsLab/EchoHub/commit/e71575d920ae23c5dd3135d45affa5191bdf0381) feat: update changelog for v0.2.15 release with new features and bug fixes ### 📊 Changes **22 files changed** (+308 additions, -225 deletions) <details> <summary>View changed files</summary> 📝 `docs/changelog/index.md` (+1 -0) 📝 `docs/changelog/toc.yml` (+2 -0) 📝 `docs/changelog/v0.2.15.md` (+9 -0) 📝 `src/EchoHub.Client/AppOrchestrator.cs` (+57 -0) 📝 `src/EchoHub.Client/UI/Chat/ChatLine.cs` (+22 -0) 📝 `src/EchoHub.Client/UI/Chat/ChatMessageManager.cs` (+36 -3) 📝 `src/EchoHub.Client/UI/MainWindow.cs` (+36 -2) 📝 `src/EchoHub.Core/Contracts/IChatBroadcaster.cs` (+8 -1) 📝 `src/EchoHub.Core/Contracts/IChatService.cs` (+4 -2) 📝 `src/EchoHub.Server.Irc/IrcBroadcaster.cs` (+10 -14) 📝 `src/EchoHub.Server.Irc/IrcCommandHandler.cs` (+2 -2) 📝 `src/EchoHub.Server.Irc/IrcMessageFormatter.cs` (+21 -63) 📝 `src/EchoHub.Server.Irc/IrcOptions.cs` (+7 -0) 📝 `src/EchoHub.Server/Controllers/FilesController.cs` (+12 -0) 📝 `src/EchoHub.Server/Hubs/ChatHub.cs` (+1 -1) 📝 `src/EchoHub.Server/Services/ChatService.cs` (+2 -2) 📝 `src/EchoHub.Server/Services/SignalRBroadcaster.cs` (+3 -1) 📝 `src/EchoHub.Tests/DataMigrationServiceTests.cs` (+3 -5) 📝 `src/EchoHub.Tests/Irc/IrcBroadcasterTests.cs` (+25 -8) 📝 `src/EchoHub.Tests/Irc/IrcMessageFormatterTests.cs` (+32 -77) _...and 2 more files_ </details> ### 📄 Description # Summary See changelog --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Stone_Red added the pull-request label 2026-09-04 00:49:57 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: RedWizardsLab/EchoHub#59