Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions plugins/process-manager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [1.0.1] — 2026-07-08

### 🐛 修复

- **中文路径乱码** — 使用 iconv-lite 将 `wmic` 输出的 GBK 编码转换为 UTF-8,修复中文 Windows 下进程路径显示乱码的问题

### 🧹 优化

- 移除 `App.tsx` 中未使用的 `route` state
- 统一 `CACHE_TTL` 常量定义,消除重复代码

## [1.0.0] — 2026-07-07

### 🎉 初始发布
Expand Down
9 changes: 6 additions & 3 deletions plugins/process-manager/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{
"name": "process-manager",
"version": "1.0.0",
"description": "",
"version": "1.0.1",
"description": "快速搜索进程、端口、PID、路径,支持一键 Kill 进程,支持深色模式",
"type": "module",
"author": "Agitator",
"homepage": "https://github.com/Code-Agitator/process-manager",
"scripts": {
"dev": "vite",
"build": "tsc && vite build"
},
"dependencies": {
"iconv-lite": "^0.7.3",
"react": "^19.0.0",
Comment on lines +13 to 14

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.

medium

由于我们在 services.js 中通过 chcp 65001 解决了乱码问题,不再需要 iconv-lite 依赖,可以将其从 dependencies 中移除。

Suggested change
"iconv-lite": "^0.7.3",
"react": "^19.0.0",
"react": "^19.0.0",

"react-dom": "^19.0.0",
"react-icons": "^5.7.0"
Expand All @@ -20,4 +23,4 @@
"typescript": "^5.3.0",
"vite": "^6.0.11"
}
}
}
Loading
Loading