merge master

This commit is contained in:
刘河
2019-09-24 23:11:59 +08:00
3 changed files with 5 additions and 2 deletions

View File

@@ -227,8 +227,10 @@ func dealTunnel(s string) *file.Tunnel {
t.ServerIp = item[1]
case "mode":
t.Mode = item[1]
case "target_port", "target_addr":
case "target_addr":
t.Target.TargetStr = strings.Replace(item[1], ",", "\n", -1)
case "target_port":
t.Target.TargetStr = item[1]
case "target_ip":
t.TargetAddr = item[1]
case "password":

View File

@@ -1,6 +1,6 @@
package version
const VERSION = "0.23.1"
const VERSION = "0.23.2"
// Compulsory minimum version, Minimum downward compatibility to this version
func GetVersion() string {