Skip to content

Commit 955f551

Browse files
committed
version update
1 parent ec11cfb commit 955f551

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

internal/runner/banner.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ const banner = `
99
___ _______ __ __ (_) _/_ __
1010
/ _ \/ __/ _ \\ \ // / _/ // /
1111
/ .__/_/ \___/_\_\/_/_/ \_, /
12-
/_/ /___/ v0.0.4
12+
/_/ /___/ v0.0.5
1313
`
1414

1515
// Version is the current version
16-
const Version = `0.0.4`
16+
const Version = `0.0.5`
1717

1818
// showBanner is used to show the banner to the user
1919
func showBanner() {

internal/runner/options.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func ParseOptions() *Options {
6868
)
6969

7070
createGroup(flagSet, "network", "Network",
71-
flagSet.StringVarP(&options.ListenAddrHTTP, "http-add", "ha", "127.0.0.1:8888", "Listening HTTP IP and Port address (ip:port)"),
71+
flagSet.StringVarP(&options.ListenAddrHTTP, "http-addr", "ha", "127.0.0.1:8888", "Listening HTTP IP and Port address (ip:port)"),
7272
flagSet.StringVarP(&options.ListenAddrSocks5, "socks-addr", "sa", "127.0.0.1:10080", "Listening SOCKS IP and Port address (ip:port)"),
7373
flagSet.StringVarP(&options.ListenDNSAddr, "dns-addr", "da", "", "Listening DNS IP and Port address (ip:port)"),
7474
flagSet.StringVarP(&options.DNSMapping, "dns-mapping", "dm", "", "Domain to IP DNS mapping (eg domain:ip,domain:ip,..)"),
@@ -100,7 +100,7 @@ func ParseOptions() *Options {
100100
flagSet.StringVar(&options.Deny, "deny", "", "Denied list of IP/CIDR's to be proxied"),
101101
)
102102

103-
createGroup(flagSet, "miscellaneous", "Miscellaneous",
103+
createGroup(flagSet, "debug", "debug",
104104
flagSet.BoolVar(&options.Silent, "silent", false, "Silent"),
105105
flagSet.BoolVarP(&options.NoColor, "no-color", "nc", true, "No Color"),
106106
flagSet.BoolVar(&options.Version, "version", false, "Version"),

0 commit comments

Comments
 (0)