diff --git a/build.sh b/build.sh
index 6b236c4..afd4e1e 100755
--- a/build.sh
+++ b/build.sh
@@ -1,5 +1,5 @@
#/bash/sh
-export VERSION=0.26.0
+export VERSION=0.26.1
sudo apt-get install gcc-mingw-w64-i686
env GOOS=windows GOARCH=386 CGO_ENABLED=1 CC=i686-w64-mingw32-gcc go build -ldflags "-s -w -extldflags -static -extldflags -static" -buildmode=c-shared -o npc_sdk.dll cmd/npc/sdk.go
diff --git a/docs/_coverpage.md b/docs/_coverpage.md
index 9bcc15a..8936cfb 100644
--- a/docs/_coverpage.md
+++ b/docs/_coverpage.md
@@ -1,6 +1,6 @@

-# NPS 0.26.0
+# NPS 0.26.1
> 一款轻量级、高性能、功能强大的内网穿透代理服务器
diff --git a/docs/feature.md b/docs/feature.md
index b223f76..c3252b9 100644
--- a/docs/feature.md
+++ b/docs/feature.md
@@ -89,7 +89,7 @@ target_ip=10.1.50.2
```
## KCP协议支持
-KCP 是一个快速可靠协议,能以比 TCP浪费10%-20%的带宽的代价,换取平均延迟降低 30%-40%,在弱网环境下对性能能有一定的提升。可在nps.conf中修改`bridge_type`为kcp
+在网络质量非常好的情况下,例如专线,内网,可以开启略微降低延迟。如需使用可在nps.conf中修改`bridge_type`为kcp
,设置后本代理将开启udp端口(`bridge_port`)
注意:当服务端为kcp时,客户端连接时也需要使用相同配置,无配置文件模式加上参数type=kcp,配置文件模式在配置文件中设置tp=kcp
diff --git a/gui/npc/AndroidManifest.xml b/gui/npc/AndroidManifest.xml
index 6543fbd..550151f 100755
--- a/gui/npc/AndroidManifest.xml
+++ b/gui/npc/AndroidManifest.xml
@@ -2,7 +2,7 @@
diff --git a/lib/version/version.go b/lib/version/version.go
index 6a4c8ab..4f59412 100644
--- a/lib/version/version.go
+++ b/lib/version/version.go
@@ -1,6 +1,6 @@
package version
-const VERSION = "0.26.0"
+const VERSION = "0.26.1"
// Compulsory minimum version, Minimum downward compatibility to this version
func GetVersion() string {