Skip to content

Commit

Permalink
update dev 20231010
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroi-sora committed Oct 10, 2023
1 parent 486afa6 commit 0343710
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,4 +254,15 @@ Umi-OCR 允许通过命令行调用每一个标签页(模块)上的任意函
根据下列文档,完成对应平台的开发/运行环境部署。

- [Windows](https://github.com/hiroi-sora/Umi-OCR_runtime_windows)
- 跨平台的支持筹备中
- 跨平台的支持筹备中

## 更新日志

点击版本号链接可前往对应备份分支。

##### v2.0.0 dev `2023.10.10`
- 新功能:第一次启动软件时,根据系统情况,选择最恰当的渲染器。解决截图闪烁问题 (#7)
- 优化:调整截图页UI,提高屏占比。优化标签栏阴影。 (#8)
- 优化:双击通知弹窗可打开主窗口。 (#10)
- 优化:截图完成后,如果主窗口在前台,则不弹出成功提示。 (#10)
- 优化:禁用美化效果时,外部弹窗将不会渲染阴影区域。 (#14)
2 changes: 1 addition & 1 deletion UmiOCR-data/py_src/event_bus/pubsub_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def subscribeGroup(self, title, item, funcName, groupName):
def unsubscribe(self, title, item, funcName):
fKey = title + funcName
if fKey not in self.__funcDict:
print(f"[Error] qml取消订阅事件失败!fKey {fKey} 未在 __funcDict 中。")
print(f"[Warning] qml取消订阅事件失败!fKey {fKey} 未在 __funcDict 中。")
return
func = self.__funcDict[fKey]
del self.__funcDict[fKey]
Expand Down
2 changes: 1 addition & 1 deletion UmiOCR-data/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
# 预发布阶段
PRE_RELEASE = "dev"
# 预发布版本号
PRE_RELEASE_VERSION = 20230925
PRE_RELEASE_VERSION = 20231010

# TODO: 补充更多信息

0 comments on commit 0343710

Please sign in to comment.