mirror of
https://github.com/LHY0125/Gobang-Game.git
synced 2026-06-28 16:35:55 +08:00
chore: bump version to 2.0.1
This commit is contained in:
@@ -1,5 +1,25 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.0.1 (2026-05-31)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- 修复悔棋奇数步崩溃(新增 NoHistory 错误语义)
|
||||||
|
- AI 搜索使用 Arc + 独立线程执行,不阻塞 GUI
|
||||||
|
- 计时器改为双方独立象棋钟,归零自动判负
|
||||||
|
- 补全全部 i18n 硬编码中文,中英双语完整
|
||||||
|
- 棋谱日期从 Unix 时间戳改为 ISO 8601 格式
|
||||||
|
- 禁用未完成的网络对战入口,避免用户困惑
|
||||||
|
- clippy needless_range_loop 警告
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- 前端核心逻辑和棋盘渲染 10 个 vitest 单元测试
|
||||||
|
- LLM AI 接入 GUI(GameConfig.useLlm 切换)
|
||||||
|
- 认输和保存棋谱 JSON 下载功能
|
||||||
|
- 棋盘大小选择器(9x9 ~ 19x19)
|
||||||
|
- React Error Boundary 组件防白屏
|
||||||
|
- env_logger 基础日志系统
|
||||||
|
- CONTRIBUTING.md 修正
|
||||||
|
|
||||||
## 2.0.0 (2026-05-31)
|
## 2.0.0 (2026-05-31)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@ members = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "2.0.0"
|
version = "2.0.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["刘航宇"]
|
authors = ["刘航宇"]
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img src="https://img.shields.io/badge/version-2.0.0-blue" alt="version">
|
<img src="https://img.shields.io/badge/version-2.0.1-blue" alt="version">
|
||||||
<img src="https://img.shields.io/badge/tauri-2.x-ffa03a" alt="tauri">
|
<img src="https://img.shields.io/badge/tauri-2.x-ffa03a" alt="tauri">
|
||||||
<img src="https://img.shields.io/badge/react-19-61dafb" alt="react">
|
<img src="https://img.shields.io/badge/react-19-61dafb" alt="react">
|
||||||
<img src="https://img.shields.io/badge/rust-1.95-000000" alt="rust">
|
<img src="https://img.shields.io/badge/rust-1.95-000000" alt="rust">
|
||||||
|
|||||||
+2
-2
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://raw.githubusercontent.com/nicknisi/tauri-config-schema/main/tauri.conf.json",
|
"$schema": "https://raw.githubusercontent.com/nicknisi/tauri-config-schema/main/tauri.conf.json",
|
||||||
"productName": "Gobang",
|
"productName": "Gobang",
|
||||||
"version": "2.0.0",
|
"version": "2.0.1",
|
||||||
"identifier": "com.liuhangyu.gobang",
|
"identifier": "com.liuhangyu.gobang",
|
||||||
"build": {
|
"build": {
|
||||||
"frontendDist": "../dist",
|
"frontendDist": "../dist",
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
"app": {
|
"app": {
|
||||||
"windows": [
|
"windows": [
|
||||||
{
|
{
|
||||||
"title": "五子棋 v2.0",
|
"title": "五子棋 v2.0.1",
|
||||||
"width": 900,
|
"width": 900,
|
||||||
"height": 700,
|
"height": 700,
|
||||||
"resizable": true,
|
"resizable": true,
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "gobang",
|
"name": "gobang",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "2.0.0",
|
"version": "2.0.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
Reference in New Issue
Block a user