更新版本至 1.0.12,新增示範影片連結、JSON 格式注意事項及網頁圖形介面功能,並移除不必要的錯誤日誌輸出。

This commit is contained in:
siage 2025-04-29 20:16:57 +08:00
parent 406eb4689e
commit 259fe36eda
3 changed files with 25 additions and 1 deletions

View File

@ -2,6 +2,18 @@
# Changelog # Changelog
## [1.0.12]
### Added
- Added demonstration video links to README and Chinese README, along with demonstration video image files. (406eb46)
- Added JSON format notes emphasizing the prohibition of comments and the requirement for special character escaping to prevent parsing failures. (a328322)
- Added a web-based graphical interface feature, controlled by the `ENABLE_GUI` environment variable. (bf5f367)
### Removed
- Removed unnecessary error log outputs in multiple places to avoid Cursor errors. (552eed8)
## [1.0.11] ## [1.0.11]
### Changed ### Changed

View File

@ -2,6 +2,18 @@
# 更新日誌 # 更新日誌
## [1.0.12]
### 新增
- 新增蝦米任務管理器示範影片連結至 README 和中文 README並新增示範影片圖片檔案。 (406eb46)
- 新增 JSON 格式注意事項,強調禁止註解及特殊字元轉義要求,以避免解析失敗。 (a328322)
- 新增網頁圖形介面功能,透過環境變數 `ENABLE_GUI` 控制。 (bf5f367)
### 移除
- 移除多處不必要的錯誤日誌輸出,避免 Cursor 報錯。 (552eed8)
## [1.0.11] ## [1.0.11]
### 變更 ### 變更

View File

@ -1,6 +1,6 @@
{ {
"name": "mcp-shrimp-task-manager", "name": "mcp-shrimp-task-manager",
"version": "1.0.11", "version": "1.0.12",
"description": "Shrimp Task Manager is a task tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. It converts natural language into structured dev tasks with dependency tracking and iterative refinement, enabling agent-like developer behavior in reasoning AI systems", "description": "Shrimp Task Manager is a task tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. It converts natural language into structured dev tasks with dependency tracking and iterative refinement, enabling agent-like developer behavior in reasoning AI systems",
"main": "dist/index.js", "main": "dist/index.js",
"type": "module", "type": "module",