feat(renderer): 添加界面主题颜色功能,添加复制最新字幕选项(#13)

- 新增界面主题颜色功能,支持自定义主题颜色
- 使用 antd 滑块替代原生 input 元素
- 添加复制字幕记录功能,可选择复制最近的字幕记录
This commit is contained in:
himeditator
2025-08-18 16:03:46 +08:00
parent 1c0bf1f9c4
commit 01936d5f12
18 changed files with 148 additions and 51 deletions

View File

@@ -109,6 +109,10 @@ class ControlWindow {
allConfig.uiTheme = args
})
ipcMain.on('control.uiColor.change', (_, args) => {
allConfig.uiColor = args
})
ipcMain.on('control.leftBarWidth.change', (_, args) => {
allConfig.leftBarWidth = args
})