Skip to content

Commit a9e5392

Browse files
committed
chore: rename VersionFox to vfox
1 parent 775a147 commit a9e5392

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to VersionFox
1+
# Contributing to vfox
22

33
We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
44

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img src="./logo.png" alt="Logo" width="250" height="250">
33
</p>
44

5-
# VersionFox
5+
# vfox
66

77
[![Go Report Card](https://img.shields.io/badge/go%20report-A+-brightgreen.svg?style=for-the-badge)](https://goreportcard.com/report/github.com/version-fox/vfox)
88
[![GitHub License](https://img.shields.io/github/license/version-fox/vfox?style=for-the-badge)](LICENSE)
@@ -18,7 +18,7 @@ or **you are tired of all kinds of cumbersome environment configurations**, `vfo
1818
**`vfox` is a cross-platform version manager(similar to `nvm`, `fvm`, `sdkman`, `asdf-vm`, etc.), extendable via plugins**. It allows you to quickly install
1919
and switch between different environment you need via the command line.
2020

21-
## Why use VersionFox?
21+
## Why use vfox?
2222

2323
- **cross-platform support** (Windows, Linux, macOS)
2424
- single CLI for multiple languages

README_CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img src="./logo.png" alt="Logo" width="250" height="250">
33
</p>
44

5-
# VersionFox
5+
# vfox
66

77
[![Go Report Card](https://img.shields.io/badge/go%20report-A+-brightgreen.svg?style=for-the-badge)](https://goreportcard.com/report/github.com/version-fox/vfox)
88
[![GitHub License](https://img.shields.io/github/license/version-fox/vfox?style=for-the-badge)](LICENSE)

cmd/cmd.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ func newCmd() *cmd {
5454

5555
app := &cli.App{}
5656
app.EnableBashCompletion = true
57-
app.Name = "VersionFox"
58-
app.Usage = "VersionFox is a tool for sdk version management"
57+
app.Name = "vfox"
58+
app.Usage = "vfox is a tool for runtime version management."
5959
app.UsageText = "vfox [command] [command options]"
6060
app.Copyright = "Copyright 2024 Han Li. All rights reserved."
6161
app.Version = version
62-
app.Description = "VersionFox is a tool for sdk version management, which allows you to quickly install and use different versions of targeted sdk via the command line."
62+
app.Description = "vfox is a cross-platform version manager, extendable via plugins. It allows you to quickly install and switch between different environment you need via the command line."
6363
app.Suggest = true
6464
app.BashComplete = func(ctx *cli.Context) {
6565
for _, command := range ctx.App.Commands {

docs/guides/intro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ implementation (e.g., `$PATH` operations, shims, environment variables, etc.). `
1414
and configuration file to simplify the development workflow and can be extended to all tools and runtime environments
1515
through a simple plugin interface.
1616

17-
## Why use VersionFox?
17+
## Why use vfox?
1818

1919
- **Cross-platform** Supports Windows (non-WSL), Linux, macOS!
2020
- **Consistent commands** for managing all your languages

0 commit comments

Comments
 (0)