This commit is contained in:
恍兮惚兮 2025-01-10 08:54:07 +08:00
parent f2f77f7f39
commit fcff8c2752
3 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
set(VERSION_MAJOR 6) set(VERSION_MAJOR 6)
set(VERSION_MINOR 19) set(VERSION_MINOR 19)
set(VERSION_PATCH 4) set(VERSION_PATCH 5)
set(VERSION_REVISION 0) set(VERSION_REVISION 0)
set(LUNA_VERSION "{${VERSION_MAJOR},${VERSION_MINOR},${VERSION_PATCH},${VERSION_REVISION}}") set(LUNA_VERSION "{${VERSION_MAJOR},${VERSION_MINOR},${VERSION_PATCH},${VERSION_REVISION}}")
add_library(VERSION_DEF ${CMAKE_CURRENT_LIST_DIR}/version_def.cpp) add_library(VERSION_DEF ${CMAKE_CURRENT_LIST_DIR}/version_def.cpp)

View File

@ -160,9 +160,9 @@ class IndexBuilder(object):
index["file_pos"] = result[1] index["file_pos"] = result[1]
index["compressed_size"] = result[2] index["compressed_size"] = result[2]
index["decompressed_size"] = result[3] index["decompressed_size"] = result[3]
index["record_start"] = result[5] index["record_start"] = result[4]
index["record_end"] = result[6] index["record_end"] = result[5]
index["offset"] = result[7] index["offset"] = result[6]
indexes.append(index) indexes.append(index)
return indexes return indexes

View File

@ -1568,6 +1568,7 @@ class auto_select_webview(QWidget):
self._maybecreate_internal() self._maybecreate_internal()
if dyna: if dyna:
switchtypes.append(self) switchtypes.append(self)
self.setHtml("")
@staticmethod @staticmethod
def switchtype(): def switchtype():