release v0.3.0

- 新增字幕字体粗细、文本阴影等设置选项
- 更新相关文档,增加新功能说明
- 修复系统主题载入颜色bug
This commit is contained in:
himeditator
2025-07-09 01:33:21 +08:00
parent 546beb3112
commit 606f9b480b
27 changed files with 272 additions and 72 deletions

View File

@@ -65,8 +65,11 @@ class ControlWindow {
})
ipcMain.handle('control.nativeTheme.get', () => {
if(nativeTheme.shouldUseDarkColors) return 'dark'
return 'light'
if(allConfig.uiTheme === 'system'){
if(nativeTheme.shouldUseDarkColors) return 'dark'
return 'light'
}
return allConfig.uiTheme
})
ipcMain.on('control.uiLanguage.change', (_, args) => {