Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsandeep committed Nov 19, 2021
1 parent ec11cfb commit 955f551
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions internal/runner/banner.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ const banner = `
___ _______ __ __ (_) _/_ __
/ _ \/ __/ _ \\ \ // / _/ // /
/ .__/_/ \___/_\_\/_/_/ \_, /
/_/ /___/ v0.0.4
/_/ /___/ v0.0.5
`

// Version is the current version
const Version = `0.0.4`
const Version = `0.0.5`

// showBanner is used to show the banner to the user
func showBanner() {
Expand Down
4 changes: 2 additions & 2 deletions internal/runner/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func ParseOptions() *Options {
)

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

createGroup(flagSet, "miscellaneous", "Miscellaneous",
createGroup(flagSet, "debug", "debug",
flagSet.BoolVar(&options.Silent, "silent", false, "Silent"),
flagSet.BoolVarP(&options.NoColor, "no-color", "nc", true, "No Color"),
flagSet.BoolVar(&options.Version, "version", false, "Version"),
Expand Down

0 comments on commit 955f551

Please sign in to comment.