[patch] 优化版本管理显示

This commit is contained in:
2025-10-10 10:10:07 +08:00
parent e7a7bd2644
commit a21e2693fa
3 changed files with 12 additions and 10 deletions

View File

@@ -2,7 +2,7 @@ name: GUI Version Release
on: on:
push: push:
branches: [ master ] branches: [ master, develop ] # 临时添加 develop 用于测试
jobs: jobs:
gui-version-release: gui-version-release:
@@ -145,9 +145,11 @@ jobs:
$hasChanges = git diff --staged --quiet $hasChanges = git diff --staged --quiet
if ($LASTEXITCODE -ne 0) { if ($LASTEXITCODE -ne 0) {
# 动态获取当前分支名 (用于测试使用)
$BRANCH = git rev-parse --abbrev-ref HEAD
git commit -m "[skip ci] Update version to $VERSION" git commit -m "[skip ci] Update version to $VERSION"
git push origin master git push origin $BRANCH
Write-Host "Version changes committed and pushed" Write-Host "Version changes committed and pushed to $BRANCH"
} else { } else {
Write-Host "No changes to commit" Write-Host "No changes to commit"
} }

View File

@@ -9,13 +9,13 @@ import json # 用于将令牌保存为 JSON 格式
# 后端服务器配置 # 后端服务器配置
# BACKEND_HOST = "192.168.5.233" # BACKEND_HOST = "192.168.5.233"
BACKEND_HOST = "192.168.5.12" # BACKEND_HOST = "192.168.5.12"
# BACKEND_HOST = "shuidrop.com" BACKEND_HOST = "shuidrop.com"
# BACKEND_HOST = "test.shuidrop.com" # BACKEND_HOST = "test.shuidrop.com"
BACKEND_PORT = "8000" # BACKEND_PORT = "8000"
# BACKEND_PORT = "" BACKEND_PORT = ""
BACKEND_WS_URL = f"ws://{BACKEND_HOST}:{BACKEND_PORT}" # BACKEND_WS_URL = f"ws://{BACKEND_HOST}:{BACKEND_PORT}"
# BACKEND_WS_URL = f"wss://{BACKEND_HOST}" BACKEND_WS_URL = f"wss://{BACKEND_HOST}"
# WebSocket配置 # WebSocket配置
WS_CONNECT_TIMEOUT = 16.0 WS_CONNECT_TIMEOUT = 16.0

View File

@@ -48,7 +48,7 @@ class LoginWindow(QMainWindow):
def initUI(self): def initUI(self):
# 设置窗口基本属性 # 设置窗口基本属性
self.setWindowTitle('AI客服智能助手') self.setWindowTitle(f'AI客服智能助手 v{config.APP_VERSION}')
self.setGeometry(300, 300, 450, 300) # 进一步减小窗口尺寸 self.setGeometry(300, 300, 450, 300) # 进一步减小窗口尺寸
self.setMinimumSize(420, 280) # 设置更小的最小尺寸 self.setMinimumSize(420, 280) # 设置更小的最小尺寸
self.setMaximumSize(500, 350) # 设置最大尺寸,保持紧凑 self.setMaximumSize(500, 350) # 设置最大尺寸,保持紧凑