[PR #43] [MERGED] Dev v0.2.10 #43

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

📋 Pull Request Information

Original PR: https://github.com/RedWizardsLab/EchoHub/pull/43
Author: @HueByte
Created: 4/20/2026
Status: Merged
Merged: 4/20/2026
Merged by: @HueByte

Base: masterHead: dev


📝 Commits (10+)

  • 6dbc298 fix: error when trying to zip open log file
  • 5b8df9d fix: remove unnecessary _app.Invoke calls around update progress dialog updates
  • 6aef689 fix: ensure progress dialog updates on the UI thread
  • 335cfcc Merge pull request #42 from HueByte/dev_fix_update_service
  • b98673f fix: set input field insertion point to end after autocomplete
  • 56fccf5 chore: add cursor position fix to changelog
  • 000764f chore: update version to 0.2.10 and enhance installation scripts and changelog
  • 3091a14 Merge pull request #41 from HueByte/dev_move_cursor_to_end_on_autocomplete
  • aa6599a feat: search dialog to navigate app
  • ff9a9e3 chore: mark search bar/modal as completed in the todo list

📊 Changes

23 files changed (+523 additions, -37 deletions)

View changed files

📝 docs/articles/getting-started.md (+1 -1)
📝 docs/changelog/index.md (+2 -1)
📝 docs/changelog/toc.yml (+2 -0)
docs/changelog/v0.2.10.md (+22 -0)
📝 docs/changelog/v0.2.9.md (+18 -0)
📝 docs/todo.md (+1 -1)
📝 scripts/install.sh (+1 -1)
📝 src/Directory.Build.props (+1 -1)
📝 src/EchoHub.Client/AppOrchestrator.cs (+60 -0)
📝 src/EchoHub.Client/Services/ConnectionManager.cs (+2 -2)
📝 src/EchoHub.Client/Services/EchoHubConnection.cs (+2 -2)
📝 src/EchoHub.Client/Services/NotificationSoundService.cs (+20 -3)
📝 src/EchoHub.Client/Services/UpdateBackupService.cs (+31 -1)
📝 src/EchoHub.Client/Services/UpdateChecker.cs (+9 -15)
📝 src/EchoHub.Client/UI/Chat/ChatMessageManager.cs (+33 -0)
src/EchoHub.Client/UI/Dialogs/SearchDialog.cs (+160 -0)
src/EchoHub.Client/UI/ListSources/SearchListSource.cs (+87 -0)
📝 src/EchoHub.Client/UI/MainWindow.cs (+61 -1)
📝 src/EchoHub.Core/Constants/ValidationConstants.cs (+1 -1)
📝 src/EchoHub.Core/Contracts/IChatService.cs (+1 -1)

...and 3 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/43 **Author:** [@HueByte](https://github.com/HueByte) **Created:** 4/20/2026 **Status:** ✅ Merged **Merged:** 4/20/2026 **Merged by:** [@HueByte](https://github.com/HueByte) **Base:** `master` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`6dbc298`](https://github.com/RedWizardsLab/EchoHub/commit/6dbc29818c86eb03e1847902276f96e4a4992f5f) fix: error when trying to zip open log file - [`5b8df9d`](https://github.com/RedWizardsLab/EchoHub/commit/5b8df9d505195043df8a9059fb24beae7c30f342) fix: remove unnecessary _app.Invoke calls around update progress dialog updates - [`6aef689`](https://github.com/RedWizardsLab/EchoHub/commit/6aef6890cfaae88f30a53070303feb49261c1fe0) fix: ensure progress dialog updates on the UI thread - [`335cfcc`](https://github.com/RedWizardsLab/EchoHub/commit/335cfcc28a278455caec39c6d6aed9f8919e17ba) Merge pull request #42 from HueByte/dev_fix_update_service - [`b98673f`](https://github.com/RedWizardsLab/EchoHub/commit/b98673f8c59093af319978d45640db20b420e9be) fix: set input field insertion point to end after autocomplete - [`56fccf5`](https://github.com/RedWizardsLab/EchoHub/commit/56fccf5cfbb7e3080a8a0fe0b8ddf578158529b7) chore: add cursor position fix to changelog - [`000764f`](https://github.com/RedWizardsLab/EchoHub/commit/000764fdb433913d78d2c7ee1f651510188ede4b) chore: update version to 0.2.10 and enhance installation scripts and changelog - [`3091a14`](https://github.com/RedWizardsLab/EchoHub/commit/3091a146eb8d314c35476ec9964706f76265a9ea) Merge pull request #41 from HueByte/dev_move_cursor_to_end_on_autocomplete - [`aa6599a`](https://github.com/RedWizardsLab/EchoHub/commit/aa6599a4e0547d327421160029879a5c13bc9d56) feat: search dialog to navigate app - [`ff9a9e3`](https://github.com/RedWizardsLab/EchoHub/commit/ff9a9e3dd0b5ef8f0db9ac44d4b3fceb194e8a46) chore: mark search bar/modal as completed in the todo list ### 📊 Changes **23 files changed** (+523 additions, -37 deletions) <details> <summary>View changed files</summary> 📝 `docs/articles/getting-started.md` (+1 -1) 📝 `docs/changelog/index.md` (+2 -1) 📝 `docs/changelog/toc.yml` (+2 -0) ➕ `docs/changelog/v0.2.10.md` (+22 -0) 📝 `docs/changelog/v0.2.9.md` (+18 -0) 📝 `docs/todo.md` (+1 -1) 📝 `scripts/install.sh` (+1 -1) 📝 `src/Directory.Build.props` (+1 -1) 📝 `src/EchoHub.Client/AppOrchestrator.cs` (+60 -0) 📝 `src/EchoHub.Client/Services/ConnectionManager.cs` (+2 -2) 📝 `src/EchoHub.Client/Services/EchoHubConnection.cs` (+2 -2) 📝 `src/EchoHub.Client/Services/NotificationSoundService.cs` (+20 -3) 📝 `src/EchoHub.Client/Services/UpdateBackupService.cs` (+31 -1) 📝 `src/EchoHub.Client/Services/UpdateChecker.cs` (+9 -15) 📝 `src/EchoHub.Client/UI/Chat/ChatMessageManager.cs` (+33 -0) ➕ `src/EchoHub.Client/UI/Dialogs/SearchDialog.cs` (+160 -0) ➕ `src/EchoHub.Client/UI/ListSources/SearchListSource.cs` (+87 -0) 📝 `src/EchoHub.Client/UI/MainWindow.cs` (+61 -1) 📝 `src/EchoHub.Core/Constants/ValidationConstants.cs` (+1 -1) 📝 `src/EchoHub.Core/Contracts/IChatService.cs` (+1 -1) _...and 3 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:51 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: RedWizardsLab/EchoHub#43