diff --git a/README.md b/README.md index df417b23..1a2c8007 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,34 @@ gost - GO Simple Tunnel * [权限控制](https://docs.ginuerzh.xyz/gost/permission/) * [负载均衡](https://docs.ginuerzh.xyz/gost/load-balancing/) -Wiki站点: https://docs.ginuerzh.xyz/gost/ +Wiki站点: -Google讨论组: https://groups.google.com/d/forum/go-gost +Google讨论组: + +安装 +------ + +#### 二进制文件 + + + +#### 源码编译 + +```bash +go get -u github.com/ginuerzh/gost/cmd/gost +``` + +#### Docker + +```bash +docker pull ginuerzh/gost +``` + +#### Ubuntu商店 + +```bash +sudo snap install gost +``` 快速上手 ------ diff --git a/README_en.md b/README_en.md index d8d4f474..209d78d6 100644 --- a/README_en.md +++ b/README_en.md @@ -24,9 +24,35 @@ Features * [Permission control](https://docs.ginuerzh.xyz/gost/en/permission/) * [Load balancing](https://docs.ginuerzh.xyz/gost/en/load-balancing/) -Wiki: https://docs.ginuerzh.xyz/gost/en/ +Wiki: -Google group: https://groups.google.com/d/forum/go-gost +Google group: + + +Installation +------ + +#### Binary files + + + +#### From source + +```bash +go get -u github.com/ginuerzh/gost/cmd/gost +``` + +#### Docker + +```bash +docker pull ginuerzh/gost +``` + +#### Ubuntu store + +```bash +sudo snap install gost +``` Getting started ------ diff --git a/gost.go b/gost.go index 88798db2..fbc0dae3 100644 --- a/gost.go +++ b/gost.go @@ -14,7 +14,7 @@ import ( ) // Version is the gost version. -const Version = "2.5-rc2" +const Version = "2.5" // Debug is a flag that enables the debug log. var Debug bool