Skip to content

Commit

Permalink
tunnelssh update to 1.1.2. git-tunnel https -V flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Avatar Arctic committed Mar 3, 2021
1 parent 874d9bc commit 3b43189
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: '1.15.x'
go-version: '1.16.x'
- name: Build TunnelSSH
run: ${{ matrix.build_script }}
- name: Upload release
Expand Down
2 changes: 1 addition & 1 deletion bali.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# https://toml.io/en/
name = "TunnelSSH"
version = "1.1.1"
version = "1.1.2"
dirs = [
"cmd/tunnelssh", #
"cmd/netcat",
Expand Down
2 changes: 1 addition & 1 deletion cmd/git-tunnel/balisrc.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "git-tunnel"
description = "TunnelSSH - A witty ssh client"
destination = "bin"
version = "1.1.1"
version = "1.1.2"
versioninfo = "res/versioninfo.json"
manifest = "res/git-tunnel.manifest"
goflags = [
Expand Down
1 change: 1 addition & 0 deletions cmd/git-tunnel/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ func (o *option) Invoke(val int, oa, raw string) error {
os.Exit(0)
case 'V':
os.Setenv("TUNNEL_DEBUG", "YES")
os.Setenv("GIT_CURL_VERBOSE", "2")
IsDebugMode = true
default:
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/netcat/balisrc.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "netcat"
description = "netcat - A witty netcat client"
destination = "bin"
version = "1.1.1"
version = "1.1.2"
versioninfo = "res/versioninfo.json"
manifest = "res/netcat.manifest"
goflags = [
Expand Down
2 changes: 1 addition & 1 deletion cmd/ssh-askpass/balisrc.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ssh-askpass"
description = "Askpass Utility for TunnelSSH"
destination = "bin"
version = "1.1.1"
version = "1.1.2"
versioninfo = "res/versioninfo.json"
icon = "res/ssh-askpass.ico"
manifest = "res/ssh-askpass.manifest"
Expand Down
2 changes: 1 addition & 1 deletion cmd/ssh-askpass/windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func GetActiveWindow() windows.Handle {
// MessageBox todo
func MessageBox(hwnd uintptr, caption, title string, flags uint) int {
ret, _ := windows.MessageBox(
windows.Handle(hwnd),
windows.HWND(hwnd),
StringToUTF16Ptr(caption),
StringToUTF16Ptr(title),
uint32(flags))
Expand Down
2 changes: 1 addition & 1 deletion cmd/tunnelssh/balisrc.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "tunnelssh"
description = "TunnelSSH - A witty ssh client"
destination = "bin"
version = "1.1.1"
version = "1.1.2"
versioninfo = "res/versioninfo.json"
icon = "res/tunnelssh.ico"
manifest = "res/tunnelssh.manifest"
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ go 1.15
require (
github.com/balibuild/winio v0.5.1
github.com/mattn/go-isatty v0.0.12
golang.org/x/crypto v0.0.0-20201208171446-5f87f3452ae9
golang.org/x/net v0.0.0-20201209123823-ac852fbbde11
golang.org/x/sys v0.0.0-20201211090839-8ad439b19e0f
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110
golang.org/x/sys v0.0.0-20210303074136-134d130e1a04
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf
)
16 changes: 6 additions & 10 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,23 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20201208171446-5f87f3452ae9 h1:sYNJzB4J8toYPQTM6pAkcmBRgw9SnQKP9oXCHfgy604=
golang.org/x/crypto v0.0.0-20201208171446-5f87f3452ae9/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83 h1:/ZScEX8SfEmUGRHs0gxpqteO5nfNW6axyZbBdw9A12g=
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/net v0.0.0-20201209123823-ac852fbbde11 h1:lwlPPsmjDKK0J6eG6xDWd5XPehI0R024zxjDnw3esPA=
golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 h1:qWPm9rbaAMKs8Bq/9LRpbMqxWRVUAQwMI9fVrssnTfw=
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9 h1:YTzHMGlqJu67/uEo1lBv0n3wBXhXNeUbB1XfN2vmTm0=
golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 h1:nxC68pudNYkKU6jWhgrqdreuFiOQWj1Fs7T3VrH4Pjw=
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20201211090839-8ad439b19e0f h1:QdHQnPce6K4XQewki9WNbG5KOROuDzqO3NaYjI1cXJ0=
golang.org/x/sys v0.0.0-20201211090839-8ad439b19e0f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221 h1:/ZHdbVpdR/jk3g30/d4yUL0JU9kksj8+F/bnQUVLGDM=
golang.org/x/sys v0.0.0-20210303074136-134d130e1a04 h1:cEhElsAv9LUt9ZUUocxzWe05oFLVd+AA2nstydTeI8g=
golang.org/x/sys v0.0.0-20210303074136-134d130e1a04/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf h1:MZ2shdL+ZM/XzY3ZGOnh4Nlpnxz5GSOhOmtHo3iPU6M=
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
Expand Down

0 comments on commit 3b43189

Please sign in to comment.