Skip to content

Commit df7d36a

Browse files
committed
chore: more English-friendly, and updated trash4wsl-demo.gif
1 parent edf7dbd commit df7d36a

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## [2.0.0] - 最新
3+
## [2.0.0]
44
### Added
55
- 🚀 **全新升级为原生基于 Rust (NAPI-rs) 引擎底层架构**。零依赖、完全免安装,开箱即用。彻底抛弃了对环境中原生 `trash-cli` python 包的强依赖。
66
- **优势**:跨环境免依赖(内置二进制)、绝对安全无 Shell 调用、极致性能、能基于文件原路径(Original Parent Path)安全隔离多工作区操作。

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
## 如何使用
1818
1. 直接在 VSCode Marketplace 搜索 `trash4WSL-in-vscode` 并安装插件。
19-
2. 在左侧资源管理器中选中你想清理的文件(支持多选),右键选择 `丢入回收站 (Trash)`,或者直接施放快捷键 `delete` 即可删除。
19+
2. 在左侧资源管理器中选中你想清理的文件(支持多选),右键选择 `丢入回收站 (Trash It)`,或者直接施放快捷键 `delete` 即可删除。
2020
3. `ctrl+shift+p` 执行命令或使用快捷键 `ctrl+shift+delete`,将在主编辑区打开宏伟的「工作区回收站」详情面板,进行相关后悔药操作。
2121

2222
>温馨提示:其底层标准严格遵守 FreeDesktop Trash 规范体系,所以你在插件内删除的数据、都会无缝与系统桌面默认回收站生态共存(存放路径通常为:`~/.local/share/Trash/`)。

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"version": "2.0.0",
2+
"version": "2.0.1",
33
"contributes": {
44
"commands": [
55
{
66
"command": "trash4wsl-in-vscode.trashPutViaContextMenu",
7-
"title": "丢入回收站"
7+
"title": "丢入回收站(Trash It)"
88
},
99
{
1010
"command": "trash4wsl-in-vscode.trashPutViaShortcut",

src/ui/TrashPalette.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class TrashPalette {
5050
const quickPick = vscode.window.createQuickPick<TrashItem2Display>();
5151
quickPick.canSelectMany = false;
5252
quickPick.onDidHide(() => quickPick.dispose());
53-
quickPick.placeholder = "输入关键词实时搜索回收站内容...";
53+
quickPick.placeholder = "输入关键词实时搜索回收站内容...(input keywords to filter trash items...)";
5454
quickPick.canSelectMany = false;
5555
if (IS_DEBUG) {
5656
quickPick.ignoreFocusOut = true;

trash4wsl-demo.gif

-303 KB
Loading

0 commit comments

Comments
 (0)