1
1
mirror of https://github.com/KenanZhu/AutoLibrary.git synced 2026-08-02 06:09:36 +08:00

Compare commits

...

5 Commits

Author SHA1 Message Date
github-actions[bot] 88393f53e4 chore(release): merge release/v1.4.0 to main [auto release commit] 2026-07-14 02:23:16 +00:00
github-actions[bot] e4d838a9d0 chore(release): v1.4.0 [auto release commit] 2026-07-14 02:19:40 +00:00
Kenan Zhu 70f78c2a6f chore: 从 KenanZhu/develop 合并到主分支 (#14)
feat:    公告栏系统、定时任务重构、检查更新与多项缺陷修复
2026-07-14 08:42:35 +08:00
KenanZhu e40e7767c7 style(settings): 移除导入主题后冗余的状态刷新调用 2026-07-10 11:41:43 +08:00
KenanZhu 1b6c170d6c style(ReserveFlow): 提取容器类的UI设置到setupUi方法 2026-07-10 10:07:38 +08:00
3 changed files with 25 additions and 7 deletions
+22 -3
View File
@@ -104,6 +104,7 @@ class _DateInputContainer(QWidget):
):
super().__init__(parent)
self.setupUi()
def setupUi(
@@ -153,10 +154,16 @@ class _TimeInputContainer(QWidget):
):
super().__init__(parent)
self.setupUi()
def setupUi(
self
):
self.TimeEdit = QTimeEdit(self)
self.TimeEdit.setDisplayFormat("HH:mm")
self.TimeEdit.setFixedHeight(25)
Layout = QHBoxLayout(self)
Layout.setContentsMargins(0, 0, 0, 0)
Layout.addWidget(self.TimeEdit)
@@ -176,6 +183,13 @@ class _DateOffsetContainer(QWidget):
):
super().__init__(parent)
self.setupUi()
def setupUi(
self
):
self.SpinBox = QSpinBox(self)
self.SpinBox.setRange(0, 99999)
self.SpinBox.setFixedHeight(25)
@@ -183,7 +197,6 @@ class _DateOffsetContainer(QWidget):
for display, data in DATE_OFFSET_OPTIONS:
self.UnitCombo.addItem(display, data)
self.UnitCombo.setFixedHeight(25)
Layout = QHBoxLayout(self)
Layout.setContentsMargins(0, 0, 0, 0)
Layout.setSpacing(4)
@@ -220,11 +233,17 @@ class _TimeOffsetContainer(QWidget):
):
super().__init__(parent)
self.setupUi()
def setupUi(
self
):
self.SpinBox = QSpinBox(self)
self.SpinBox.setRange(0, 99999)
self.SpinBox.setSuffix(" 小时")
self.SpinBox.setFixedHeight(25)
Layout = QHBoxLayout(self)
Layout.setContentsMargins(0, 0, 0, 0)
Layout.addWidget(self.SpinBox)
-1
View File
@@ -388,7 +388,6 @@ class ALSettingsWidget(CenterOnParentMixin, QWidget, Ui_ALSettingsWidget):
idx = self.CustomThemeComboBox.findData(file_id)
if idx >= 0:
self.CustomThemeComboBox.setCurrentIndex(idx)
self.updateCustomThemeStatus()
self.updateCustomThemeInfo()
except Exception as e:
QMessageBox.warning(
+3 -3
View File
@@ -5,11 +5,11 @@
workflow process. Do not edit manually.
This file is auto-generated during the workflow process.
Last updated: 2026-05-09 06:05:13 UTC
Last updated: 2026-07-14 02:19:31 UTC
"""
AL_VERSION = "1.3.0"
AL_TAG = "v1.3.0"
AL_VERSION = "1.4.0"
AL_TAG = "v1.4.0"
AL_COMMIT_SHA = "local"
AL_COMMIT_DATE = "null" # time zone : UTC
AL_BUILD_DATE = "null" # time zone : UTC