diff --git a/README.md b/README.md index 3fc407a..5ae7e10 100644 --- a/README.md +++ b/README.md @@ -94,10 +94,10 @@ COMMANDS: help, h Shows a list of commands or help for one command GLOBAL OPTIONS: - --username value, -u value channel username to record. - --gui-username value, --gui-u value username for auth web. - --gui-password value, --gui-p value password for auth web. - --framerate value, -f value preferred framerate. (default: 30) + --username value, -u value channel username to record + --gui-username value, --gui-u value username for auth web (optional) + --gui-password value, --gui-p value password for auth web (optional) + --framerate value, -f value preferred framerate (default: 30) --resolution value, -r value preferred resolution (default: 1080) --resolution-fallback value, --rf value fallback to 'up' (larger) or 'down' (smaller) resolution if preferred resolution is not available (default: "down") --filename-pattern value, --fp value filename pattern for videos (default: "videos/{{.Username}}_{{.Year}}-{{.Month}}-{{.Day}}_{{.Hour}}-{{.Minute}}-{{.Second}}{{if .Sequence}}_{{.Sequence}}{{end}}") diff --git a/bin/arm64/darwin/chatubrate-dvr b/bin/arm64/darwin/chatubrate-dvr index e944fc9..4e23749 100755 Binary files a/bin/arm64/darwin/chatubrate-dvr and b/bin/arm64/darwin/chatubrate-dvr differ diff --git a/bin/arm64/linux/chatubrate-dvr b/bin/arm64/linux/chatubrate-dvr index 63cbb22..9ce8886 100755 Binary files a/bin/arm64/linux/chatubrate-dvr and b/bin/arm64/linux/chatubrate-dvr differ diff --git a/bin/arm64/windows/chatubrate-dvr.exe b/bin/arm64/windows/chatubrate-dvr.exe index 189999d..8f0a11f 100755 Binary files a/bin/arm64/windows/chatubrate-dvr.exe and b/bin/arm64/windows/chatubrate-dvr.exe differ diff --git a/bin/darwin/chatubrate-dvr b/bin/darwin/chatubrate-dvr index ed951ca..b788248 100755 Binary files a/bin/darwin/chatubrate-dvr and b/bin/darwin/chatubrate-dvr differ diff --git a/bin/linux/chatubrate-dvr b/bin/linux/chatubrate-dvr index 78204d3..b9c1a71 100755 Binary files a/bin/linux/chatubrate-dvr and b/bin/linux/chatubrate-dvr differ diff --git a/bin/windows/chatubrate-dvr.exe b/bin/windows/chatubrate-dvr.exe index e7e8800..17bb1c9 100755 Binary files a/bin/windows/chatubrate-dvr.exe and b/bin/windows/chatubrate-dvr.exe differ diff --git a/main.go b/main.go index 66014f2..eb2da74 100644 --- a/main.go +++ b/main.go @@ -31,31 +31,31 @@ const logo = ` func main() { app := &cli.App{ Name: "chaturbate-dvr", - Version: "1.0.1", + Version: "1.0.2", Usage: "Records your favorite Chaturbate stream 😎🫵", Flags: []cli.Flag{ &cli.StringFlag{ Name: "username", Aliases: []string{"u"}, - Usage: "channel username to record.", + Usage: "channel username to record", Value: "", }, &cli.StringFlag{ Name: "gui-username", Aliases: []string{"gui-u"}, - Usage: "username for auth web.", + Usage: "username for auth web (optional)", Value: "", }, &cli.StringFlag{ Name: "gui-password", Aliases: []string{"gui-p"}, - Usage: "password for auth web.", + Usage: "password for auth web (optional)", Value: "", }, &cli.IntFlag{ Name: "framerate", Aliases: []string{"f"}, - Usage: "preferred framerate.", + Usage: "preferred framerate", Value: 30, }, &cli.IntFlag{