[PR #58] [MERGED] Dev #60

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/58
Author: @HueByte
Created: 7/16/2026
Status: Merged
Merged: 7/16/2026
Merged by: @HueByte

Base: masterHead: dev


📝 Commits (10+)

  • b6c01da feat: enhance IRC support with display name handling, private channel tracking, and connection identification
  • e439c8a feat: implement end-to-end encryption for room keys with secure storage and migration support
  • 31a0bb8 Merge pull request #56 from HueByte/dev_fixes_features_and_nightmares
  • 4f2cffa feat: add clipboard image handling for pasting and staging attachments
  • 2157884 refactor: replace Key constants with KeyCode for improved clarity and performance
  • 78f18a3 docs: update changelog for v0.2.14 to include clipboard image and multi-file paste features
  • 35a4eec Merge pull request #57 from HueByte/dev_copy_paste_qol
  • ca3c1ec feat: add documentation for TUI, messages & attachments, and IRC gateway; update index and TOC
  • 53927b1 Add markdown linting tools and scripts
  • 584ce45 Merge branch 'master' into dev

📊 Changes

42 files changed (+3107 additions, -151 deletions)

View changed files

📝 .github/workflows/ci.yml (+9 -0)
📝 docs/articles/configuration.md (+17 -0)
📝 docs/articles/getting-started.md (+3 -3)
docs/articles/irc-gateway.md (+103 -0)
docs/articles/messages-and-attachments.md (+109 -0)
docs/articles/moderation.md (+71 -0)
📝 docs/articles/toc.yml (+8 -0)
docs/articles/tui-guide.md (+116 -0)
docs/auriondocs/index.html (+20 -0)
📝 docs/changelog/index.md (+1 -0)
📝 docs/changelog/toc.yml (+2 -0)
docs/changelog/v0.2.14.md (+22 -0)
📝 docs/docfx.json (+2 -2)
📝 docs/index.md (+4 -0)
📝 docs/toc.yml (+2 -0)
package-lock.json (+1365 -0)
package.json (+12 -0)
scripts/lint-markdown.ps1 (+61 -0)
📝 scripts/lint-markdown.sh (+7 -4)
📝 src/Directory.Build.props (+1 -1)

...and 22 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/58 **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 (10+) - [`b6c01da`](https://github.com/RedWizardsLab/EchoHub/commit/b6c01dab155b15d9826f6943a9ebab333a1dfae0) feat: enhance IRC support with display name handling, private channel tracking, and connection identification - [`e439c8a`](https://github.com/RedWizardsLab/EchoHub/commit/e439c8ae723ff60cadf306383301f4d5456b94d7) feat: implement end-to-end encryption for room keys with secure storage and migration support - [`31a0bb8`](https://github.com/RedWizardsLab/EchoHub/commit/31a0bb8c9fc9fff32fa44001c0c6b5bd246df716) Merge pull request #56 from HueByte/dev_fixes_features_and_nightmares - [`4f2cffa`](https://github.com/RedWizardsLab/EchoHub/commit/4f2cffa37230fd88ae66c26a555966c1826e80e4) feat: add clipboard image handling for pasting and staging attachments - [`2157884`](https://github.com/RedWizardsLab/EchoHub/commit/2157884e6122b9b5c08c4ad2618e989d37c5419d) refactor: replace Key constants with KeyCode for improved clarity and performance - [`78f18a3`](https://github.com/RedWizardsLab/EchoHub/commit/78f18a36ba5fa8d8756e794b73b7c9747f723976) docs: update changelog for v0.2.14 to include clipboard image and multi-file paste features - [`35a4eec`](https://github.com/RedWizardsLab/EchoHub/commit/35a4eec749ed16923cdf3ff714e522b30798f332) Merge pull request #57 from HueByte/dev_copy_paste_qol - [`ca3c1ec`](https://github.com/RedWizardsLab/EchoHub/commit/ca3c1ec2b5807a11ef9d1553f5a7945166be23b9) feat: add documentation for TUI, messages & attachments, and IRC gateway; update index and TOC - [`53927b1`](https://github.com/RedWizardsLab/EchoHub/commit/53927b130c7b16cda396cf02aab2534b6f643344) Add markdown linting tools and scripts - [`584ce45`](https://github.com/RedWizardsLab/EchoHub/commit/584ce45979cb65f674643c0929a07c73ab14d305) Merge branch 'master' into dev ### 📊 Changes **42 files changed** (+3107 additions, -151 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yml` (+9 -0) 📝 `docs/articles/configuration.md` (+17 -0) 📝 `docs/articles/getting-started.md` (+3 -3) ➕ `docs/articles/irc-gateway.md` (+103 -0) ➕ `docs/articles/messages-and-attachments.md` (+109 -0) ➕ `docs/articles/moderation.md` (+71 -0) 📝 `docs/articles/toc.yml` (+8 -0) ➕ `docs/articles/tui-guide.md` (+116 -0) ➕ `docs/auriondocs/index.html` (+20 -0) 📝 `docs/changelog/index.md` (+1 -0) 📝 `docs/changelog/toc.yml` (+2 -0) ➕ `docs/changelog/v0.2.14.md` (+22 -0) 📝 `docs/docfx.json` (+2 -2) 📝 `docs/index.md` (+4 -0) 📝 `docs/toc.yml` (+2 -0) ➕ `package-lock.json` (+1365 -0) ➕ `package.json` (+12 -0) ➕ `scripts/lint-markdown.ps1` (+61 -0) 📝 `scripts/lint-markdown.sh` (+7 -4) 📝 `src/Directory.Build.props` (+1 -1) _...and 22 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#60