Skip to content

Commit 0343710

Browse files
committed
update dev 20231010
1 parent 486afa6 commit 0343710

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

README.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -254,4 +254,15 @@ Umi-OCR 允许通过命令行调用每一个标签页(模块)上的任意函
254254
根据下列文档,完成对应平台的开发/运行环境部署。
255255

256256
- [Windows](https://github.com/hiroi-sora/Umi-OCR_runtime_windows)
257-
- 跨平台的支持筹备中
257+
- 跨平台的支持筹备中
258+
259+
## 更新日志
260+
261+
点击版本号链接可前往对应备份分支。
262+
263+
##### v2.0.0 dev `2023.10.10`
264+
- 新功能:第一次启动软件时,根据系统情况,选择最恰当的渲染器。解决截图闪烁问题 (#7)
265+
- 优化:调整截图页UI,提高屏占比。优化标签栏阴影。 (#8)
266+
- 优化:双击通知弹窗可打开主窗口。 (#10)
267+
- 优化:截图完成后,如果主窗口在前台,则不弹出成功提示。 (#10)
268+
- 优化:禁用美化效果时,外部弹窗将不会渲染阴影区域。 (#14)

UmiOCR-data/py_src/event_bus/pubsub_connector.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def subscribeGroup(self, title, item, funcName, groupName):
3939
def unsubscribe(self, title, item, funcName):
4040
fKey = title + funcName
4141
if fKey not in self.__funcDict:
42-
print(f"[Error] qml取消订阅事件失败!fKey {fKey} 未在 __funcDict 中。")
42+
print(f"[Warning] qml取消订阅事件失败!fKey {fKey} 未在 __funcDict 中。")
4343
return
4444
func = self.__funcDict[fKey]
4545
del self.__funcDict[fKey]

UmiOCR-data/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
# 预发布阶段
1010
PRE_RELEASE = "dev"
1111
# 预发布版本号
12-
PRE_RELEASE_VERSION = 20230925
12+
PRE_RELEASE_VERSION = 20231010
1313

1414
# TODO: 补充更多信息

0 commit comments

Comments
 (0)