Skip to content

fix: 更新下载页面到最新 release 链接#19

Merged
KercyDing merged 1 commit into
mainfrom
fix-update-download-url-v1.0.1
Feb 28, 2026
Merged

fix: 更新下载页面到最新 release 链接#19
KercyDing merged 1 commit into
mainfrom
fix-update-download-url-v1.0.1

Conversation

@KercyDing
Copy link
Copy Markdown
Member

@KercyDing KercyDing commented Feb 28, 2026

变更内容

  • 同步文档版本到 v1.0.1(RELEASE_TAG)
  • 按最新 release 真实资产命名修正三语下载页链接
  • 补充 v1.0.1 changelog 条目并修正最新版本锚点

验证

  • 使用 gh 查询最新 release:v1.0.1(2026-02-27)
  • 下载页链接已指向 releases/download/v1.0.1 下对应资产

Summary by Sourcery

更新站点版本元数据和文档,使其引用 v1.0.1 版本及其相关资源。

Bug Fixes:

  • 调整多语言下载页面中的链接,使其在所有平台上都与最新版本的实际资源文件名保持一致。

Enhancements:

  • 引入独立的资源版本常量,将安装程序文件名与文档中记录的版本号解耦。
  • 更新英文、简体中文和繁体中文的更新日志页面,添加 v1.0.1 作为最新发布版本并附上摘要说明。
Original summary in English

Summary by Sourcery

Update site version metadata and docs to reference the v1.0.1 release and its assets.

Bug Fixes:

  • Align multilingual download page links with the actual asset filenames for the latest release across all platforms.

Enhancements:

  • Introduce separate asset version constants to decouple installer filenames from the documented version number.
  • Update English, Simplified Chinese, and Traditional Chinese changelog pages to add v1.0.1 as the latest release with summary notes.

Copilot AI review requested due to automatic review settings February 28, 2026 11:00
@sourcery-ai
Copy link
Copy Markdown
Contributor

sourcery-ai Bot commented Feb 28, 2026

Reviewer's Guide

更新文档以引用 v1.0.1 版本,包括将展示用版本号与下载 URL 中资源命名所用的版本号分离,并在三种语言的文档中添加 v1.0.1 的更新日志条目。

版本配置和下载页面的类图

classDiagram
  class VersionConfig {
    +string VERSION
    +string RELEASE_TAG
    +string RELEASE_BASE
    +string ASSET_VERSION
    +string ARCH_PKG_ASSET_VERSION
  }

  class EnDownloadPage {
    +renderWindowsLinks()
    +renderMacOSLinks()
    +renderLinuxLinks()
  }

  class ZhDownloadPage {
    +renderWindowsLinks()
    +renderMacOSLinks()
    +renderLinuxLinks()
  }

  class ZhTwDownloadPage {
    +renderWindowsLinks()
    +renderMacOSLinks()
    +renderLinuxLinks()
  }

  VersionConfig <.. EnDownloadPage : uses
  VersionConfig <.. ZhDownloadPage : uses
  VersionConfig <.. ZhTwDownloadPage : uses
Loading

构建发布资源下载 URL 的流程图

flowchart LR
  VERSION[VERSION 1.0.1]
  RELEASE_TAG[v1.0.1]
  ASSET_VERSION[ASSET_VERSION 1.0.0-1]
  ARCH_PKG_ASSET_VERSION[ARCH_PKG_ASSET_VERSION 1.0.1-1]

  RELEASE_TAG --> RELEASE_BASE[RELEASE_BASE https://github.com/SeaLantern-Studio/SeaLantern/releases/download/RELEASE_TAG]

  subgraph Windows_and_macOS_assets
    ASSET_VERSION --> Win_exe[Sea.Lantern_ASSET_VERSION_x64-setup.exe]
    ASSET_VERSION --> Win_msi[Sea.Lantern_ASSET_VERSION_x64_zh-CN.msi]
    ASSET_VERSION --> Win_exe_arm64[Sea.Lantern_ASSET_VERSION_arm64-setup.exe]
    ASSET_VERSION --> Win_msi_arm64[Sea.Lantern_ASSET_VERSION_arm64_zh-CN.msi]
    ASSET_VERSION --> Mac_aarch64_dmg[Sea.Lantern_ASSET_VERSION_aarch64.dmg]
    ASSET_VERSION --> Mac_x64_dmg[Sea.Lantern_ASSET_VERSION_x64.dmg]
  end

  subgraph Linux_assets
    ASSET_VERSION --> Deb_amd64[Sea.Lantern_ASSET_VERSION_amd64.deb]
    ASSET_VERSION --> Deb_arm64[Sea.Lantern_ASSET_VERSION_arm64.deb]
    ASSET_VERSION --> Rpm_x86_64[Sea.Lantern-ASSET_VERSION.x86_64.rpm]
    ASSET_VERSION --> Rpm_aarch64[Sea.Lantern-ASSET_VERSION.aarch64.rpm]
    ASSET_VERSION --> AppImage_amd64[Sea.Lantern_ASSET_VERSION_amd64.AppImage]
    ASSET_VERSION --> AppImage_aarch64[Sea.Lantern_ASSET_VERSION_aarch64.AppImage]
    ARCH_PKG_ASSET_VERSION --> Arch_pkg[sealantern-ARCH_PKG_ASSET_VERSION-x86_64.pkg.tar.zst]
  end

  RELEASE_BASE --> Win_exe
  RELEASE_BASE --> Win_msi
  RELEASE_BASE --> Win_exe_arm64
  RELEASE_BASE --> Win_msi_arm64
  RELEASE_BASE --> Mac_aarch64_dmg
  RELEASE_BASE --> Mac_x64_dmg
  RELEASE_BASE --> Deb_amd64
  RELEASE_BASE --> Deb_arm64
  RELEASE_BASE --> Rpm_x86_64
  RELEASE_BASE --> Rpm_aarch64
  RELEASE_BASE --> AppImage_amd64
  RELEASE_BASE --> AppImage_aarch64
  RELEASE_BASE --> Arch_pkg
Loading

文件级变更

Change Details Files
使所有语言中的下载 URL 与实际 GitHub 发布资源名称保持一致,使用独立的资源版本常量。
  • 扩展版本模块以导出用于通用安装程序构件的 ASSET_VERSION,以及用于 Arch Linux 软件包的 ARCH_PKG_ASSET_VERSION
  • 在英文下载页中,更新所有 Windows、macOS、Linux 和 Arch 的下载链接,在资源文件名中使用 ASSET_VERSIONARCH_PKG_ASSET_VERSION 替代 VERSION,同时仍然使用 RELEASE_BASE
  • 在繁体中文和简体中文下载页面中,对安装程序链接应用相同的资源版本替换,以保持三种语言一致。
.vitepress/version.ts
en/download.md
zh-tw/download.md
zh/download.md
在文档中将 v1.0.1 提升为最新版本,并在所有语言中添加该版本的更新日志条目。
  • 在版本模块中将 VERSION 提升到 1.0.1,并将 RELEASE_TAG 提升到 v1.0.1,使文档指向最新的 GitHub 发布路径。
  • 在英文更新日志中,在 v1.0.0 之上插入新的 v1.0.1 小节,将其标记为最新版本,并列出关键修复和改进。
  • 在繁体中文和简体中文的更新日志文件中镜像 v1.0.1 的更新日志小节和“最新”标记更新,并使用本地化的标题和项目符号内容。
.vitepress/version.ts
en/changelog.md
zh-tw/changelog.md
zh/changelog.md

提示和命令

与 Sourcery 交互

  • 触发新评审: 在 Pull Request 中评论 @sourcery-ai review
  • 继续讨论: 直接回复 Sourcery 的评审评论。
  • 从评审评论生成 GitHub Issue: 回复 Sourcery 的评审评论,要求从该评论创建 issue。你也可以在评审评论下回复 @sourcery-ai issue 来从中创建一个 issue。
  • 生成 Pull Request 标题: 在 Pull Request 标题的任意位置写入 @sourcery-ai 以在任意时间生成标题。你也可以在 Pull Request 中评论 @sourcery-ai title 来(重新)生成标题。
  • 生成 Pull Request 摘要: 在 Pull Request 正文的任意位置写入 @sourcery-ai summary,即可在你想要的确切位置生成 PR 摘要。你也可以在 Pull Request 中评论 @sourcery-ai summary 来在任意时间(重新)生成摘要。
  • 生成评审者指南: 在 Pull Request 中评论 @sourcery-ai guide,可在任意时间(重新)生成评审者指南。
  • 解决所有 Sourcery 评论: 在 Pull Request 中评论 @sourcery-ai resolve 以解决所有 Sourcery 评论。如果你已经处理了所有评论且不希望再看到它们,这会很有用。
  • 忽略所有 Sourcery 评审: 在 Pull Request 中评论 @sourcery-ai dismiss 以忽略所有现有的 Sourcery 评审。如果你想从一个全新的评审开始,这尤其有用——别忘了再评论 @sourcery-ai review 来触发新的评审!

自定义你的体验

访问你的 仪表盘 以:

  • 启用或禁用评审特性,例如 Sourcery 自动生成的 Pull Request 摘要、评审者指南等。
  • 更改评审语言。
  • 添加、移除或编辑自定义评审说明。
  • 调整其他评审设置。

获取帮助

Original review guide in English

Reviewer's Guide

Updates docs to reference the v1.0.1 release, including separating display version from asset naming for download URLs and adding v1.0.1 changelog entries in all three languages.

Class diagram for version configuration and download pages

classDiagram
  class VersionConfig {
    +string VERSION
    +string RELEASE_TAG
    +string RELEASE_BASE
    +string ASSET_VERSION
    +string ARCH_PKG_ASSET_VERSION
  }

  class EnDownloadPage {
    +renderWindowsLinks()
    +renderMacOSLinks()
    +renderLinuxLinks()
  }

  class ZhDownloadPage {
    +renderWindowsLinks()
    +renderMacOSLinks()
    +renderLinuxLinks()
  }

  class ZhTwDownloadPage {
    +renderWindowsLinks()
    +renderMacOSLinks()
    +renderLinuxLinks()
  }

  VersionConfig <.. EnDownloadPage : uses
  VersionConfig <.. ZhDownloadPage : uses
  VersionConfig <.. ZhTwDownloadPage : uses
Loading

Flow diagram for constructing release asset download URLs

flowchart LR
  VERSION[VERSION 1.0.1]
  RELEASE_TAG[v1.0.1]
  ASSET_VERSION[ASSET_VERSION 1.0.0-1]
  ARCH_PKG_ASSET_VERSION[ARCH_PKG_ASSET_VERSION 1.0.1-1]

  RELEASE_TAG --> RELEASE_BASE[RELEASE_BASE https://github.com/SeaLantern-Studio/SeaLantern/releases/download/RELEASE_TAG]

  subgraph Windows_and_macOS_assets
    ASSET_VERSION --> Win_exe[Sea.Lantern_ASSET_VERSION_x64-setup.exe]
    ASSET_VERSION --> Win_msi[Sea.Lantern_ASSET_VERSION_x64_zh-CN.msi]
    ASSET_VERSION --> Win_exe_arm64[Sea.Lantern_ASSET_VERSION_arm64-setup.exe]
    ASSET_VERSION --> Win_msi_arm64[Sea.Lantern_ASSET_VERSION_arm64_zh-CN.msi]
    ASSET_VERSION --> Mac_aarch64_dmg[Sea.Lantern_ASSET_VERSION_aarch64.dmg]
    ASSET_VERSION --> Mac_x64_dmg[Sea.Lantern_ASSET_VERSION_x64.dmg]
  end

  subgraph Linux_assets
    ASSET_VERSION --> Deb_amd64[Sea.Lantern_ASSET_VERSION_amd64.deb]
    ASSET_VERSION --> Deb_arm64[Sea.Lantern_ASSET_VERSION_arm64.deb]
    ASSET_VERSION --> Rpm_x86_64[Sea.Lantern-ASSET_VERSION.x86_64.rpm]
    ASSET_VERSION --> Rpm_aarch64[Sea.Lantern-ASSET_VERSION.aarch64.rpm]
    ASSET_VERSION --> AppImage_amd64[Sea.Lantern_ASSET_VERSION_amd64.AppImage]
    ASSET_VERSION --> AppImage_aarch64[Sea.Lantern_ASSET_VERSION_aarch64.AppImage]
    ARCH_PKG_ASSET_VERSION --> Arch_pkg[sealantern-ARCH_PKG_ASSET_VERSION-x86_64.pkg.tar.zst]
  end

  RELEASE_BASE --> Win_exe
  RELEASE_BASE --> Win_msi
  RELEASE_BASE --> Win_exe_arm64
  RELEASE_BASE --> Win_msi_arm64
  RELEASE_BASE --> Mac_aarch64_dmg
  RELEASE_BASE --> Mac_x64_dmg
  RELEASE_BASE --> Deb_amd64
  RELEASE_BASE --> Deb_arm64
  RELEASE_BASE --> Rpm_x86_64
  RELEASE_BASE --> Rpm_aarch64
  RELEASE_BASE --> AppImage_amd64
  RELEASE_BASE --> AppImage_aarch64
  RELEASE_BASE --> Arch_pkg
Loading

File-Level Changes

Change Details Files
Align download URLs in all languages with actual GitHub release asset names using separate asset version constants.
  • Extend the version module to export ASSET_VERSION for general installer artifacts and ARCH_PKG_ASSET_VERSION for Arch Linux packages.
  • Update all Windows, macOS, Linux, and Arch download links in the English download page to use ASSET_VERSION and ARCH_PKG_ASSET_VERSION instead of VERSION in asset filenames while still using RELEASE_BASE.
  • Apply the same asset version substitutions for installer links on the Traditional Chinese and Simplified Chinese download pages to keep them in sync.
.vitepress/version.ts
en/download.md
zh-tw/download.md
zh/download.md
Promote v1.0.1 to the latest release in docs and add its changelog entries in all languages.
  • Bump VERSION to 1.0.1 and RELEASE_TAG to v1.0.1 in the version module so docs point to the latest GitHub release path.
  • Insert a new v1.0.1 section above v1.0.0 in the English changelog, mark it as latest, and list the key fixes and improvements.
  • Mirror the v1.0.1 changelog section and latest badge updates in the Traditional Chinese and Simplified Chinese changelog files, with localized headings and bullet points.
.vitepress/version.ts
en/changelog.md
zh-tw/changelog.md
zh/changelog.md

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link
Copy Markdown
Contributor

@sourcery-ai sourcery-ai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey,我这边发现了两个问题,并且有一些整体性的反馈:

  • 既然 VERSION、ASSET_VERSION 和 ARCH_PKG_ASSET_VERSION 现在可能不再保持一致,建议将它们集中到一个带类型的配置对象中(例如按平台区分的 metadata),或者增加一个用于生成资源 URL 的小工具函数,这样以后版本升级时就不需要手动维护三份常量并保持同步了。
给 AI Agent 的提示
请根据本次代码评审中的评论进行修改:

## 整体反馈
- 既然 VERSION、ASSET_VERSION 和 ARCH_PKG_ASSET_VERSION 现在可能不再保持一致,建议将它们集中到一个带类型的配置对象中(例如按平台区分的 metadata),或者增加一个用于生成资源 URL 的小工具函数,这样以后版本升级时就不需要手动维护三份常量并保持同步了。

## 单条评论

### Comment 1
<location path="en/changelog.md" line_range="14" />
<code_context>
+### Fixes & Improvements
+- Replaced installer links
+- Added commit conventions and formatting hooks
+- Optimized terminal log system with xtermjs and sqlite
+
+---
</code_context>
<issue_to_address>
**suggestion (typo):** 建议使用 xterm.js 和 SQLite 的官方大小写形式。

具体来说,将本条 bullet 中的 `xtermjs``xterm.js``sqlite``SQLite`。

Suggested implementation:

```
- Optimized terminal log system with xterm.js and SQLite

```

只要在 `en/changelog.md` 中存在这条完全相同的 bullet 行,就不需要做其他代码改动。如果该行的文案略有不同(例如在 `xtermjs``sqlite` 前后有额外文本),请在应用替换前先调整搜索行,使其与实际内容完全一致。
</issue_to_address>

### Comment 2
<location path="zh-tw/changelog.md" line_range="14" />
<code_context>
+### 修復與優化
+- 更換安裝器連結
+- 新增提交規範與格式化 hooks
+- 使用 xtermjs 與 sqlite 優化終端日誌系統
+
+---
</code_context>
<issue_to_address>
**suggestion (typo):** 建議將 xtermjs 與 sqlite 改為官方命名形式。

例如改為 `xterm.js``SQLite`,以符合官方寫法。

Suggested implementation:

```
- 新增提交規範與格式化 hooks
- 使用 xterm.js 與 SQLite 優化終端日誌系統

```

```
### 修復與優化
- 使用 xterm.js 與 SQLite 優化終端日誌系統

```
</issue_to_address>

Sourcery 对开源项目是免费的——如果你觉得这些评审有帮助,欢迎分享 ✨
请帮我变得更有用!可以对每条评论点 👍 或 👎,我会根据你的反馈改进后续评审质量。
Original comment in English

Hey - I've found 2 issues, and left some high level feedback:

  • Now that VERSION, ASSET_VERSION, and ARCH_PKG_ASSET_VERSION can diverge, consider centralizing them in a single typed config object (e.g., per-platform metadata) or adding a small helper to generate asset URLs so future bumps don’t require manually keeping three separate constants in sync.
Prompt for AI Agents
Please address the comments from this code review:

## Overall Comments
- Now that VERSION, ASSET_VERSION, and ARCH_PKG_ASSET_VERSION can diverge, consider centralizing them in a single typed config object (e.g., per-platform metadata) or adding a small helper to generate asset URLs so future bumps don’t require manually keeping three separate constants in sync.

## Individual Comments

### Comment 1
<location path="en/changelog.md" line_range="14" />
<code_context>
+### Fixes & Improvements
+- Replaced installer links
+- Added commit conventions and formatting hooks
+- Optimized terminal log system with xtermjs and sqlite
+
+---
</code_context>
<issue_to_address>
**suggestion (typo):** Consider using the official capitalization for xterm.js and SQLite.

Specifically, update `xtermjs``xterm.js` and `sqlite``SQLite` in this bullet point.

Suggested implementation:

```
- Optimized terminal log system with xterm.js and SQLite

```

No further code changes are required as long as this exact bullet line exists somewhere in `en/changelog.md`. If the line’s wording differs slightly (e.g., extra text around `xtermjs` or `sqlite`), adjust the SEARCH line to match the actual content exactly before applying this replacement.
</issue_to_address>

### Comment 2
<location path="zh-tw/changelog.md" line_range="14" />
<code_context>
+### 修復與優化
+- 更換安裝器連結
+- 新增提交規範與格式化 hooks
+- 使用 xtermjs 與 sqlite 優化終端日誌系統
+
+---
</code_context>
<issue_to_address>
**suggestion (typo):** 建議將 xtermjs 與 sqlite 改為官方命名形式。

例如改為 `xterm.js``SQLite`,以符合官方寫法。

Suggested implementation:

```
- 新增提交規範與格式化 hooks
- 使用 xterm.js 與 SQLite 優化終端日誌系統

```

```
### 修復與優化
- 使用 xterm.js 與 SQLite 優化終端日誌系統

```
</issue_to_address>

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Comment thread en/changelog.md
### Fixes & Improvements
- Replaced installer links
- Added commit conventions and formatting hooks
- Optimized terminal log system with xtermjs and sqlite
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (typo): 建议使用 xterm.js 和 SQLite 的官方大小写形式。

具体来说,将本条 bullet 中的 xtermjsxterm.jssqliteSQLite

Suggested implementation:

- Optimized terminal log system with xterm.js and SQLite

只要在 en/changelog.md 中存在这条完全相同的 bullet 行,就不需要做其他代码改动。如果该行的文案略有不同(例如在 xtermjssqlite 前后有额外文本),请在应用替换前先调整搜索行,使其与实际内容完全一致。

Original comment in English

suggestion (typo): Consider using the official capitalization for xterm.js and SQLite.

Specifically, update xtermjsxterm.js and sqliteSQLite in this bullet point.

Suggested implementation:

- Optimized terminal log system with xterm.js and SQLite

No further code changes are required as long as this exact bullet line exists somewhere in en/changelog.md. If the line’s wording differs slightly (e.g., extra text around xtermjs or sqlite), adjust the SEARCH line to match the actual content exactly before applying this replacement.

Comment thread zh-tw/changelog.md
### 修復與優化
- 更換安裝器連結
- 新增提交規範與格式化 hooks
- 使用 xtermjs 與 sqlite 優化終端日誌系統
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (typo): 建議將 xtermjs 與 sqlite 改為官方命名形式。

例如改為 xterm.jsSQLite,以符合官方寫法。

Suggested implementation:

- 新增提交規範與格式化 hooks
- 使用 xterm.js 與 SQLite 優化終端日誌系統

### 修復與優化
- 使用 xterm.js 與 SQLite 優化終端日誌系統

Original comment in English

suggestion (typo): 建議將 xtermjs 與 sqlite 改為官方命名形式。

例如改為 xterm.jsSQLite,以符合官方寫法。

Suggested implementation:

- 新增提交規範與格式化 hooks
- 使用 xterm.js 與 SQLite 優化終端日誌系統

### 修復與優化
- 使用 xterm.js 與 SQLite 優化終端日誌系統

@KercyDing KercyDing merged commit 71bcfed into main Feb 28, 2026
4 checks passed
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates the VitePress docs to reflect the latest SeaLantern release (v1.0.1), including changelog entries and download links that match the current release asset naming across CN / TW / EN pages.

Changes:

  • Bumped docs “latest version” constants to v1.0.1 and introduced per-platform asset version constants in .vitepress/version.ts.
  • Updated download links in zh/, zh-tw/, and en/ download pages to use the new asset version constants.
  • Added v1.0.1 sections to CN / TW / EN changelogs and moved the “Latest/最新” badge to the new version.

Reviewed changes

Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
.vitepress/version.ts Bumps version/tag and adds asset-version constants used to build download URLs.
zh/download.md Switches Windows/macOS/Linux download URLs to the updated asset naming variables.
zh/changelog.md Adds v1.0.1 entry and updates the “最新” marker.
zh-tw/download.md Switches download URLs to the updated asset naming variables.
zh-tw/changelog.md Adds v1.0.1 entry and updates the “最新” marker.
en/download.md Switches download URLs to the updated asset naming variables.
en/changelog.md Adds v1.0.1 entry and updates the “Latest” marker.
Comments suppressed due to low confidence (3)

en/changelog.md:15

  • 更新日志里第三条提到的依赖名称建议使用官方写法以避免歧义:xtermjs 通常写作 xterm.jssqlite 通常写作 SQLite
### Fixes & Improvements
- Replaced installer links
- Added commit conventions and formatting hooks
- Optimized terminal log system with xtermjs and sqlite

zh/changelog.md:15

  • 更新日志里第三条提到的依赖名称建议使用官方写法以避免歧义:xtermjs 通常写作 xterm.jssqlite 通常写作 SQLite
### 修复与优化
- 更换安装器链接
- 增加提交规范与格式化钩子
- 使用 xtermjs 与 sqlite 优化终端日志系统

zh-tw/changelog.md:15

  • 更新日誌第三點提到的依賴名稱建議使用官方寫法以避免歧義:xtermjs 通常寫作 xterm.jssqlite 通常寫作 SQLite
### 修復與優化
- 更換安裝器連結
- 新增提交規範與格式化 hooks
- 使用 xtermjs 與 sqlite 優化終端日誌系統


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread .vitepress/version.ts
Comment on lines 1 to +14
/** 当前最新版本号,更新时只需修改此处 */
export const VERSION = '1.0.0'
export const VERSION = '1.0.1'

/** GitHub Release 的 tag(不同版本可能不是固定命名规则) */
export const RELEASE_TAG = 'v1.0.0'
export const RELEASE_TAG = 'v1.0.1'

/** GitHub Release 下载基础 URL */
export const RELEASE_BASE = `https://github.com/SeaLantern-Studio/SeaLantern/releases/download/${RELEASE_TAG}`

/** 安装包资产版本(受上游打包命名影响,可能与 VERSION 不一致) */
export const ASSET_VERSION = '1.0.0-1'

/** Arch 包资产版本(当前发布命名与其它平台不同) */
export const ARCH_PKG_ASSET_VERSION = '1.0.1-1'
Copy link

Copilot AI Feb 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

version.ts 现在需要同时维护 VERSIONRELEASE_TAGASSET_VERSIONARCH_PKG_ASSET_VERSION,但文件头注释仍写“更新时只需修改此处”,容易误导并导致漏改(尤其当 ASSET_VERSIONVERSION 不一致时)。建议更新注释说明需要同步更新哪些常量,或让 RELEASE_TAG/asset 版本默认从 VERSION 派生(仅在确有差异时覆写)。

Copilot uses AI. Check for mistakes.
@KercyDing KercyDing deleted the fix-update-download-url-v1.0.1 branch February 28, 2026 12:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants