[PR #62] [MERGED] Dev logs room #61

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

📋 Pull Request Information

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

Base: masterHead: dev_logs_room


📝 Commits (10+)

  • a9519a5 feat: add support for broadcasting and handling channel deletions across clients
  • b9d099d chore: bump version and add changelog
  • 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
  • bb987dd Merge pull request #60 from HueByte/dev_irc_fixes_adjustments
  • 3281064 feat: Add invite codes and message replies functionality
  • 53d0d32 feat: Implement spam protection with configurable limits and auto-mute escalation
  • 71d82b4 fix: Remove invisible character from using directive
  • df1bd01 feat: Update configuration files for storage path and spam protection settings

📊 Changes

78 files changed (+5805 additions, -309 deletions)

View changed files

📝 .env.example (+33 -0)
📝 README.md (+14 -2)
📝 docs/articles/configuration.md (+42 -1)
📝 docs/changelog/index.md (+1 -0)
📝 docs/changelog/toc.yml (+2 -0)
docs/changelog/v0.2.15.md (+78 -0)
📝 src/Directory.Build.props (+1 -1)
📝 src/EchoHub.Client/AppOrchestrator.cs (+291 -5)
📝 src/EchoHub.Client/Commands/CommandHandler.cs (+127 -12)
📝 src/EchoHub.Client/Services/ApiClient.cs (+50 -2)
📝 src/EchoHub.Client/Services/ConnectionManager.cs (+6 -3)
📝 src/EchoHub.Client/Services/EchoHubConnection.cs (+14 -3)
📝 src/EchoHub.Client/UI/Chat/ChatLine.cs (+29 -0)
📝 src/EchoHub.Client/UI/Chat/ChatMessageManager.cs (+123 -7)
📝 src/EchoHub.Client/UI/Dialogs/ConnectDialog.cs (+27 -6)
📝 src/EchoHub.Client/UI/ListSources/ChannelListSource.cs (+16 -5)
📝 src/EchoHub.Client/UI/MainWindow.cs (+182 -10)
src/EchoHub.Core/Constants/MessageConventions.cs (+31 -0)
📝 src/EchoHub.Core/Contracts/IChannelService.cs (+5 -0)
📝 src/EchoHub.Core/Contracts/IChatBroadcaster.cs (+9 -1)

...and 58 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/62 **Author:** [@HueByte](https://github.com/HueByte) **Created:** 7/17/2026 **Status:** ✅ Merged **Merged:** 7/17/2026 **Merged by:** [@HueByte](https://github.com/HueByte) **Base:** `master` ← **Head:** `dev_logs_room` --- ### 📝 Commits (10+) - [`a9519a5`](https://github.com/RedWizardsLab/EchoHub/commit/a9519a52cc89811b57c469ffce6196f4c63ce3c2) feat: add support for broadcasting and handling channel deletions across clients - [`b9d099d`](https://github.com/RedWizardsLab/EchoHub/commit/b9d099dd7337419845aecdee0c47d7b8306c6802) chore: bump version and add changelog - [`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 - [`bb987dd`](https://github.com/RedWizardsLab/EchoHub/commit/bb987dda822287493b0052f770884f0e98d252c4) Merge pull request #60 from HueByte/dev_irc_fixes_adjustments - [`3281064`](https://github.com/RedWizardsLab/EchoHub/commit/32810647201fd4461dafac4aa6d8bda019eccdd9) feat: Add invite codes and message replies functionality - [`53d0d32`](https://github.com/RedWizardsLab/EchoHub/commit/53d0d326cbc3289ee64255905842cfc548e3cdbd) feat: Implement spam protection with configurable limits and auto-mute escalation - [`71d82b4`](https://github.com/RedWizardsLab/EchoHub/commit/71d82b45fbf2e664f2f29957d79a7a044f008a84) fix: Remove invisible character from using directive - [`df1bd01`](https://github.com/RedWizardsLab/EchoHub/commit/df1bd0119cb21913c254813102ced3c3b45728f6) feat: Update configuration files for storage path and spam protection settings ### 📊 Changes **78 files changed** (+5805 additions, -309 deletions) <details> <summary>View changed files</summary> 📝 `.env.example` (+33 -0) 📝 `README.md` (+14 -2) 📝 `docs/articles/configuration.md` (+42 -1) 📝 `docs/changelog/index.md` (+1 -0) 📝 `docs/changelog/toc.yml` (+2 -0) ➕ `docs/changelog/v0.2.15.md` (+78 -0) 📝 `src/Directory.Build.props` (+1 -1) 📝 `src/EchoHub.Client/AppOrchestrator.cs` (+291 -5) 📝 `src/EchoHub.Client/Commands/CommandHandler.cs` (+127 -12) 📝 `src/EchoHub.Client/Services/ApiClient.cs` (+50 -2) 📝 `src/EchoHub.Client/Services/ConnectionManager.cs` (+6 -3) 📝 `src/EchoHub.Client/Services/EchoHubConnection.cs` (+14 -3) 📝 `src/EchoHub.Client/UI/Chat/ChatLine.cs` (+29 -0) 📝 `src/EchoHub.Client/UI/Chat/ChatMessageManager.cs` (+123 -7) 📝 `src/EchoHub.Client/UI/Dialogs/ConnectDialog.cs` (+27 -6) 📝 `src/EchoHub.Client/UI/ListSources/ChannelListSource.cs` (+16 -5) 📝 `src/EchoHub.Client/UI/MainWindow.cs` (+182 -10) ➕ `src/EchoHub.Core/Constants/MessageConventions.cs` (+31 -0) 📝 `src/EchoHub.Core/Contracts/IChannelService.cs` (+5 -0) 📝 `src/EchoHub.Core/Contracts/IChatBroadcaster.cs` (+9 -1) _...and 58 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:58 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: RedWizardsLab/EchoHub#61