[PR #55] [MERGED] Dev #55

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

📋 Pull Request Information

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

Base: masterHead: dev


📝 Commits (8)

  • 494dcb4 feat: Update CI workflows to trigger on successful completion of previous CI runs
  • dbf6565 feat: Implement update confirmation handling and streamline update process
  • e797ec2 feat: add /meta command for channel metadata retrieval
  • b9a8080 Merge pull request #54 from HueByte/dev_update_fixes
  • 3886e71 feat(chat): enhance chat UI with new features and visual improvements
  • c048b39 feat: release v0.2.13 with chat visual overhaul and new features
  • aae7880 feat: enhance chat functionality with auto-join, persistent read positions, and theme border customization
  • b62729d feat: enhance message decryption for IRC clients and improve attachment handling

📊 Changes

48 files changed (+1681 additions, -343 deletions)

View changed files

📝 .github/workflows/ci.yml (+2 -0)
📝 .github/workflows/docker.yml (+17 -7)
📝 .github/workflows/release.yml (+17 -7)
docs/articles/encrypted-rooms.md (+160 -0)
📝 docs/articles/encryption.md (+1 -1)
📝 docs/articles/toc.yml (+2 -0)
📝 docs/changelog/index.md (+1 -0)
📝 docs/changelog/toc.yml (+2 -0)
📝 docs/changelog/v0.2.12.md (+8 -1)
docs/changelog/v0.2.13.md (+26 -0)
src/.dockerignore (+2 -0)
📝 src/Directory.Build.props (+1 -1)
📝 src/EchoHub.Client/AppOrchestrator.cs (+140 -12)
📝 src/EchoHub.Client/Commands/CommandHandler.cs (+10 -0)
📝 src/EchoHub.Client/Config/ClientConfig.cs (+12 -0)
📝 src/EchoHub.Client/Config/ConfigManager.cs (+45 -29)
📝 src/EchoHub.Client/Program.cs (+15 -1)
📝 src/EchoHub.Client/Services/ApiClient.cs (+14 -0)
📝 src/EchoHub.Client/Services/ConnectionManager.cs (+53 -10)
📝 src/EchoHub.Client/Services/UpdateChecker.cs (+110 -69)

...and 28 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/55 **Author:** [@HueByte](https://github.com/HueByte) **Created:** 7/16/2026 **Status:** ✅ Merged **Merged:** 7/16/2026 **Merged by:** [@HueByte](https://github.com/HueByte) **Base:** `master` ← **Head:** `dev` --- ### 📝 Commits (8) - [`494dcb4`](https://github.com/RedWizardsLab/EchoHub/commit/494dcb46cff02361461b61f132c16f515cd4c8e3) feat: Update CI workflows to trigger on successful completion of previous CI runs - [`dbf6565`](https://github.com/RedWizardsLab/EchoHub/commit/dbf6565d185022424ba23bb23e9ac27a1a9d5c36) feat: Implement update confirmation handling and streamline update process - [`e797ec2`](https://github.com/RedWizardsLab/EchoHub/commit/e797ec254243725a493d679ec0086f49d54e8da4) feat: add /meta command for channel metadata retrieval - [`b9a8080`](https://github.com/RedWizardsLab/EchoHub/commit/b9a80806e147d9c33cba811816621630aac2ebdb) Merge pull request #54 from HueByte/dev_update_fixes - [`3886e71`](https://github.com/RedWizardsLab/EchoHub/commit/3886e7148cad10a03a4a565c4c89bf182e2dba00) feat(chat): enhance chat UI with new features and visual improvements - [`c048b39`](https://github.com/RedWizardsLab/EchoHub/commit/c048b39e42aac112a64a5ab262ce07ec37438646) feat: release v0.2.13 with chat visual overhaul and new features - [`aae7880`](https://github.com/RedWizardsLab/EchoHub/commit/aae788028eaca52a32ef69c1ed4d7939086cec46) feat: enhance chat functionality with auto-join, persistent read positions, and theme border customization - [`b62729d`](https://github.com/RedWizardsLab/EchoHub/commit/b62729dc95f0eabf18e6b0cc747d4eb4878a6090) feat: enhance message decryption for IRC clients and improve attachment handling ### 📊 Changes **48 files changed** (+1681 additions, -343 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yml` (+2 -0) 📝 `.github/workflows/docker.yml` (+17 -7) 📝 `.github/workflows/release.yml` (+17 -7) ➕ `docs/articles/encrypted-rooms.md` (+160 -0) 📝 `docs/articles/encryption.md` (+1 -1) 📝 `docs/articles/toc.yml` (+2 -0) 📝 `docs/changelog/index.md` (+1 -0) 📝 `docs/changelog/toc.yml` (+2 -0) 📝 `docs/changelog/v0.2.12.md` (+8 -1) ➕ `docs/changelog/v0.2.13.md` (+26 -0) ➕ `src/.dockerignore` (+2 -0) 📝 `src/Directory.Build.props` (+1 -1) 📝 `src/EchoHub.Client/AppOrchestrator.cs` (+140 -12) 📝 `src/EchoHub.Client/Commands/CommandHandler.cs` (+10 -0) 📝 `src/EchoHub.Client/Config/ClientConfig.cs` (+12 -0) 📝 `src/EchoHub.Client/Config/ConfigManager.cs` (+45 -29) 📝 `src/EchoHub.Client/Program.cs` (+15 -1) 📝 `src/EchoHub.Client/Services/ApiClient.cs` (+14 -0) 📝 `src/EchoHub.Client/Services/ConnectionManager.cs` (+53 -10) 📝 `src/EchoHub.Client/Services/UpdateChecker.cs` (+110 -69) _...and 28 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:55 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: RedWizardsLab/EchoHub#55