feat: 定位模型重做、聚焦短显、托盘交互与 host spawn 修复

- 定位改为 水平(左/中/右) × 垂直(上/中/下) + 边缘留白,取代四角枚举
- 完成类通知在目标窗口已聚焦时用更短停留(FocusedDurationSeconds)
- 托盘左键单击直接打开设置,右键菜单仅保留退出
- 修复 host 拉起用 UseShellExecute=true,脱离钩子 stdout 管道,避免 Claude 卡在 running stop hook
This commit is contained in:
2026-06-22 16:40:27 +08:00
Unverified
parent 6551c65bb8
commit b89223fa54
9 changed files with 119 additions and 51 deletions
+5
View File
@@ -33,4 +33,9 @@ public sealed class ToastRequest
/// 调用方 App 的 exe 路径,用于显示其图标
/// </summary>
public string? IconPath { get; init; }
/// <summary>
/// 覆盖停留秒数;为 null 时用设置里的默认值
/// </summary>
public int? DurationSecondsOverride { get; init; }
}