This commit is contained in:
恍兮惚兮 2024-06-18 15:24:41 +08:00
parent 1f410e4714
commit 48f9afae8e
2 changed files with 6 additions and 3 deletions

View File

@ -137,7 +137,10 @@ class basetext:
try:
t = self.gettextthread()
if t and globalconfig["autorun"]:
self.textgetmethod(t)
if isinstance(t, tuple):
self.textgetmethod(*t)
else:
self.textgetmethod(t)
except:
print_exc()

View File

@ -28,8 +28,8 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/version)
include(generate_product_version)
set(VERSION_MAJOR 3)
set(VERSION_MINOR 6)
set(VERSION_PATCH 5)
set(VERSION_MINOR 7)
set(VERSION_PATCH 0)
add_library(pch pch.cpp)
target_precompile_headers(pch PUBLIC pch.h)