vfox 0.3.2 发布: 支持 clink 和 cmder
主要变更
Support clink and cmder shell on Windows and refactor tool-version loading mechanism.
支持Windows上的clink和cmder, 重构了.tool-versions文件加载机制.
What's Changed
- feat: 支持
clink、cmdershell by @jan-bar in #167 - feat: 支持一次性更新所有插件 by @gythialy in #181
- feat: 添加
PluginDirPath字段 by @Chance-fyi in #171 - fix: 修复search导致的panic by @jan-bar in #175
- fix: 确保PATH符合 cygpath -u 形式 by @aooohan in 7d1abf3
- fix: 切片拷贝问题 by @jan-bar in #187
- refactor: 简化.tool-version加载机制 by @aooohan in c63d523
New Contributors
Full Changelog: v0.3.1...v0.3.2
已支持插件(20+):
https://vfox.lhan.me/zh-hans/plugins/available.html
快速开始
亮点:
- 跨平台 (Windows、Linux、macOS), 不同的平台拥有相同的用户体验
- 使用一致的命令管理所有语言
- 简单的插件系统添加对您所需 SDK 的支持
- 支持 Global、Project、Session 三种作用域
- 切换项目时,自动切换到对应版本
详细的安装指南请参见 快速入门
1. 选择一个适合你的安装方式。
2. ⚠️ 挂载 vfox 到你的 Shell (从下面选择一条适合你 shell 的命令) ⚠️
echo 'eval "$(vfox activate bash)"' >> ~/.bashrc
echo 'eval "$(vfox activate zsh)"' >> ~/.zshrc
echo 'vfox activate fish | source' >> ~/.config/fish/config.fish
# PowerShell:
# 1. 打开 PowerShell 配置文件:
New-Item -Type File -Path $PROFILE # 无需在意 `文件已存在` 错误
Invoke-Item $PROFILE
# 2. 将下面一行添加到你的 $PROFILE 文件末尾并保存:
Invoke-Expression "$(vfox activate pwsh)"
请记住重启你的 Shell 以应用更改。
3. 添加插件
$ vfox add nodejs
4. 安装版本
vfox install nodejs@latest
5. 切换版本
$ vfox use nodejs@21.5.0 $ node -v 21.5.0
Java 完整演示
作用域演示
Project 作用域
Session 作用域



