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: master ← Head: dev
master
dev
cb6b9d1
7bd99be
fbc75ec
35 files changed (+2099 additions, -252 deletions)
📝 .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)
.github/workflows/ci.yml
README.md
docs/api/core-articles/index.md
docs/api/index.md
docs/api/server-articles/index.md
docs/api/toc.yml
docs/articles/architecture.md
docs/articles/getting-started.md
docs/changelog/index.md
docs/changelog/toc.yml
docs/changelog/v0.2.0.md
docs/docfx.json
docs/index.md
examples/nginx.conf
src/EchoHub.Core/Contracts/IChatBroadcaster.cs
src/EchoHub.Core/Contracts/IChatService.cs
src/EchoHub.Server.Irc/EchoHub.Server.Irc.csproj
src/EchoHub.Server.Irc/IrcBroadcaster.cs
src/EchoHub.Server.Irc/IrcClientConnection.cs
src/EchoHub.Server.Irc/IrcCommandHandler.cs
...and 15 more files
See changelog file
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
No dependencies set.
The note is not visible to the blocked user.
📋 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:
master← Head:dev📝 Commits (3)
cb6b9d1feat: Implement IRC Gateway Service and related functionality7bd99befeat: Add IRC gateway functionality and update documentationfbc75ecfix: 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.