[PR #3] [MERGED] Dev #5

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

📋 Pull Request Information

Original PR: https://github.com/RedWizardsLab/EchoHub/pull/3
Author: @HueByte
Created: 2/19/2026
Status: Merged
Merged: 2/19/2026
Merged by: @HueByte

Base: masterHead: dev


📝 Commits (3)

  • cb6b9d1 feat: Implement IRC Gateway Service and related functionality
  • 7bd99be feat: Add IRC gateway functionality and update documentation
  • fbc75ec fix: Update CI workflow to trigger only on master branch for push events

📊 Changes

35 files changed (+2099 additions, -252 deletions)

View changed files

📝 .github/workflows/ci.yml (+1 -1)
📝 README.md (+170 -25)
📝 docs/api/core-articles/index.md (+1 -1)
📝 docs/api/index.md (+6 -2)
📝 docs/api/server-articles/index.md (+2 -0)
📝 docs/api/toc.yml (+4 -0)
📝 docs/articles/architecture.md (+38 -6)
📝 docs/articles/getting-started.md (+33 -0)
📝 docs/changelog/index.md (+1 -0)
📝 docs/changelog/toc.yml (+2 -0)
docs/changelog/v0.2.0.md (+21 -0)
📝 docs/docfx.json (+16 -0)
📝 docs/index.md (+4 -2)
examples/nginx.conf (+94 -0)
src/EchoHub.Core/Contracts/IChatBroadcaster.cs (+13 -0)
src/EchoHub.Core/Contracts/IChatService.cs (+36 -0)
src/EchoHub.Server.Irc/EchoHub.Server.Irc.csproj (+18 -0)
src/EchoHub.Server.Irc/IrcBroadcaster.cs (+67 -0)
src/EchoHub.Server.Irc/IrcClientConnection.cs (+87 -0)
src/EchoHub.Server.Irc/IrcCommandHandler.cs (+641 -0)

...and 15 more files

📄 Description

Summary

See changelog file


🔄 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/3 **Author:** [@HueByte](https://github.com/HueByte) **Created:** 2/19/2026 **Status:** ✅ Merged **Merged:** 2/19/2026 **Merged by:** [@HueByte](https://github.com/HueByte) **Base:** `master` ← **Head:** `dev` --- ### 📝 Commits (3) - [`cb6b9d1`](https://github.com/RedWizardsLab/EchoHub/commit/cb6b9d1e55f5083a7b375a66ee07586208212fd0) feat: Implement IRC Gateway Service and related functionality - [`7bd99be`](https://github.com/RedWizardsLab/EchoHub/commit/7bd99be41e746b0a56326f1bcba6eb999d0f1096) feat: Add IRC gateway functionality and update documentation - [`fbc75ec`](https://github.com/RedWizardsLab/EchoHub/commit/fbc75ec7444a383b9c61daeeba467506ae2fc66f) fix: Update CI workflow to trigger only on master branch for push events ### 📊 Changes **35 files changed** (+2099 additions, -252 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yml` (+1 -1) 📝 `README.md` (+170 -25) 📝 `docs/api/core-articles/index.md` (+1 -1) 📝 `docs/api/index.md` (+6 -2) 📝 `docs/api/server-articles/index.md` (+2 -0) 📝 `docs/api/toc.yml` (+4 -0) 📝 `docs/articles/architecture.md` (+38 -6) 📝 `docs/articles/getting-started.md` (+33 -0) 📝 `docs/changelog/index.md` (+1 -0) 📝 `docs/changelog/toc.yml` (+2 -0) ➕ `docs/changelog/v0.2.0.md` (+21 -0) 📝 `docs/docfx.json` (+16 -0) 📝 `docs/index.md` (+4 -2) ➕ `examples/nginx.conf` (+94 -0) ➕ `src/EchoHub.Core/Contracts/IChatBroadcaster.cs` (+13 -0) ➕ `src/EchoHub.Core/Contracts/IChatService.cs` (+36 -0) ➕ `src/EchoHub.Server.Irc/EchoHub.Server.Irc.csproj` (+18 -0) ➕ `src/EchoHub.Server.Irc/IrcBroadcaster.cs` (+67 -0) ➕ `src/EchoHub.Server.Irc/IrcClientConnection.cs` (+87 -0) ➕ `src/EchoHub.Server.Irc/IrcCommandHandler.cs` (+641 -0) _...and 15 more files_ </details> ### 📄 Description # Summary See changelog file --- <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:39 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: RedWizardsLab/EchoHub#5