Skip to content

Commit

Permalink
prepared new tag; update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Karmenzind committed Nov 21, 2024
1 parent a2ef927 commit 3a9b02b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
* [Linux/MacOS](#linuxmacos)
* [ArchLinux](#archlinux)
* [Windows](#windows)
* [其他平台](#其他平台)
* [卸载](#卸载)
* [:gear: 用法和配置](#gear-用法和配置)
* [🎈 提升体验技巧](#-提升体验技巧)
Expand Down Expand Up @@ -104,6 +105,24 @@ Invoke-WebRequest -uri 'https://github.com/Karmenzind/kd/releases/latest/downloa

> 或手动下载文件,然后通过“计算机->属性->修改环境变量”修改PATH
### 其他平台

**Android**

经测试(感谢@Ze-Wshine协助),用aarch64-linux-android-clang交叉编译的kd可以在Termux(安卓平台上的Linux模拟器APP)运行,可以[在此处下载试用](https://github.com/Karmenzind/kd/issues/33#issuecomment-2447229385)。后续有时间会加入标准编译流程作为release发布。

**自行编译**

其他暂未支持的平台,可创建issue反馈需求。也可以自己动手安装最新Go环境,clone此项目,然后执行以下流程编译安装:

> 此处为类unix环境,具体命令根据平台修改
```bash
go mod tidy
CGO_ENABLED=1 go build -o kd cmd/kd.go
mv kd /usr/bin/kd
```

### 卸载

<details><summary>🖱️ 点击展开</summary><pre>
Expand Down
2 changes: 1 addition & 1 deletion cmd/kd.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
// "github.com/kyokomi/emoji/v2"
)

var VERSION = "v0.0.12.dev"
var VERSION = "v0.0.12"

func showPrompt() {
exename, err := pkg.GetExecutableBasename()
Expand Down

0 comments on commit 3a9b02b

Please sign in to comment.