# 查询 MSL / MSLX 最新版本号 & 更新日志

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /software/update:
    get:
      summary: 查询 MSL / MSLX 最新版本号 & 更新日志
      deprecated: false
      description: 查询MSL最新版本号&更新日志
      tags:
        - MSL本体
      parameters:
        - name: software
          in: query
          description: MSLX / MSL
          required: false
          example: MSL
          schema:
            type: string
        - name: User-Agent
          in: header
          description: ''
          example: MSL API Test
          schema:
            type: string
            default: MSL API Test
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  message:
                    type: string
                  data:
                    type: object
                    properties: {}
                    x-apifox-orders: []
                required:
                  - code
                  - message
                  - data
                x-apifox-orders:
                  - code
                  - message
                  - data
              examples:
                '1':
                  summary: 查询MSLX版本
                  value:
                    code: 200
                    message: ''
                    data:
                      daemonLatestVersion: 1.1.0
                      webpanelLatestVersion: 1.1.0
                      desktopLatestVersion: '0.0'
                      log: |-
                        perf(daemon): 对于非MC服务器进程，尝试采用更优雅的结束方式
                        fix(daemon): 修复部分进程强制结束不掉进程树的问题
                        fix(daemon): 修复Frp自启动配置可能存在删除的隧道导致保存不成功
                        style(webpanel): 微调Frp自启动隧道窗口的样式
                      desktopLog: 占位日志
                '2':
                  summary: 查询MSL版本号
                  value:
                    code: 200
                    message: ''
                    data:
                      latestVersion: 3.5.4
                      log: 更新日志测试
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: MSL本体
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/7956474/apis/api-429587260-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
