- 新增 AssistOutputMode 配置(inject/notch) - Assist 设置界面添加输出方式弹出菜单 - 新建 NotchDisplayManager:DynamicNotchKit 弹窗,支持滚动、复制、15s 自动消失 - DynamicNotchKit 固化为本地依赖,修复假刘海高度问题(0→内容贴近顶部)
26 lines
702 B
Swift
26 lines
702 B
Swift
// swift-tools-version: 5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "VoiceInput",
|
|
platforms: [.macOS(.v14)],
|
|
dependencies: [
|
|
.package(path: "Dependencies/DynamicNotchKit")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "VoiceInput",
|
|
dependencies: ["DynamicNotchKit"],
|
|
path: "Sources",
|
|
linkerSettings: [
|
|
.linkedFramework("Speech"),
|
|
.linkedFramework("AVFAudio"),
|
|
.linkedFramework("Carbon"),
|
|
.linkedFramework("CoreGraphics"),
|
|
.linkedFramework("AppKit"),
|
|
.linkedFramework("Foundation")
|
|
]
|
|
)
|
|
]
|
|
)
|