From e54913cdc2f544a701f476537c3ae1255e4cf6bd Mon Sep 17 00:00:00 2001 From: HueByte Date: Mon, 20 Apr 2026 16:18:58 +0000 Subject: [PATCH] deploy: 769aa5b468f34dcc4ac3e8b395fe9398e8be752a --- changelog/v0.2.10.html | 1 + index.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/changelog/v0.2.10.html b/changelog/v0.2.10.html index 03e6676..a224fc3 100644 --- a/changelog/v0.2.10.html +++ b/changelog/v0.2.10.html @@ -100,6 +100,7 @@
  • Simplify update progress dispatch — remove redundant Application.Invoke wrappers around progress updates that are already called from the UI thread (introduced while fixing the freeze above)
  • Fix cursor position being reset to the start of the line when auto-completing commands in the CLI app — insertion point is now moved to the end of the completed text
  • Fix notification sounds crashing or being silently dropped when several arrive in quick succession — playback is now serialized through a semaphore that's held for the duration of each sound (using PlaybackFinished with a 10s safety timeout) and always released in finally, so back-to-back notifications queue up and play in order instead of racing the underlying audio player (fixes #20)
  • +
  • Fix client crashing on startup with No Serilog:Using configuration section is defined under single-file publish — pass ConfigurationReaderOptions with the Serilog.Sinks.File assembly explicitly so Serilog can resolve sinks without scanning the filesystem for .dlls (which don't exist in a bundled exe)
  • Refactoring