From 496b1f107891a658609ba9c686dba3479e76e4f1 Mon Sep 17 00:00:00 2001 From: fatedier Date: Mon, 23 Oct 2023 10:47:59 +0800 Subject: [PATCH] remove configuration files in release assets (#3713) --- conf/frpc.toml | 2 ++ conf/frps.toml | 2 ++ package.sh | 2 -- pkg/util/version/version.go | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/conf/frpc.toml b/conf/frpc.toml index 5c2504f..bdfc564 100644 --- a/conf/frpc.toml +++ b/conf/frpc.toml @@ -1,3 +1,5 @@ +# This configuration file is for reference only. Please do not use this configuration directly to run the program as it may have various issues. + # your proxy name will be changed to {user}.{proxy} user = "your_name" diff --git a/conf/frps.toml b/conf/frps.toml index 1aec1f0..d25f647 100644 --- a/conf/frps.toml +++ b/conf/frps.toml @@ -1,3 +1,5 @@ +# This configuration file is for reference only. Please do not use this configuration directly to run the program as it may have various issues. + # A literal address or host name for IPv6 must be enclosed # in square brackets, as in "[::1]:80", "[ipv6-host]:http" or "[ipv6-host%zone]:80" # For single "bindAddr" field, no need square brackets, like `bindAddr = "::"`. diff --git a/package.sh b/package.sh index f3b220b..5d51434 100755 --- a/package.sh +++ b/package.sh @@ -46,8 +46,6 @@ for os in $os_all; do mv ./frps_${os}_${arch} ${frp_path}/frps fi cp ../LICENSE ${frp_path} - cp -rf ../conf/* ${frp_path} - rm -rf ${frp_path}/legacy # packages cd ./packages diff --git a/pkg/util/version/version.go b/pkg/util/version/version.go index 5f6f370..0f58a3b 100644 --- a/pkg/util/version/version.go +++ b/pkg/util/version/version.go @@ -19,7 +19,7 @@ import ( "strings" ) -var version = "0.52.1" +var version = "0.52.2" func Full() string { return version