From 5a34d1c1768ecb04a31c38aad0653e76cafeb145 Mon Sep 17 00:00:00 2001 From: moonD4rk Date: Tue, 9 Jan 2024 18:06:31 +0800 Subject: [PATCH] chore: Downgrade version number and remove unused flag Refactor version number changes and remove unused flag in CLI - Downgrade version number from `0.4.7` to `0.4.5` in main.go and README files - Remove `HelpCommand` flag from `cli.App` - Update `Github Link` in usage text of hack-browser-data CLI --- README.md | 2 +- README_ZH.md | 2 +- cmd/hack-browser-data/main.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index db88b1f..d75d128 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ USAGE: Github Link: https://github.com/moonD4rk/HackBrowserData VERSION: - 0.4.7 + 0.4.5 GLOBAL OPTIONS: --verbose, --vv verbose (default: false) diff --git a/README_ZH.md b/README_ZH.md index 36a4818..5f3cb65 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -130,7 +130,7 @@ USAGE: Github Link: https://github.com/moonD4rk/HackBrowserData VERSION: - 0.4.7 + 0.4.5 GLOBAL OPTIONS: --verbose, --vv verbose (default: false) diff --git a/cmd/hack-browser-data/main.go b/cmd/hack-browser-data/main.go index 3fa4f3b..fad33de 100644 --- a/cmd/hack-browser-data/main.go +++ b/cmd/hack-browser-data/main.go @@ -29,7 +29,7 @@ func Execute() { Name: "hack-browser-data", Usage: "Export passwords|bookmarks|cookies|history|credit cards|download history|localStorage|extensions from browser", UsageText: "[hack-browser-data -b chrome -f json -dir results --zip]\nExport all browsing data (passwords/cookies/history/bookmarks) from browser\nGithub Link: https://github.com/moonD4rk/HackBrowserData", - Version: "0.4.7", + Version: "0.4.5", Flags: []cli.Flag{ &cli.BoolFlag{Name: "verbose", Aliases: []string{"vv"}, Destination: &verbose, Value: false, Usage: "verbose"}, &cli.BoolFlag{Name: "compress", Aliases: []string{"zip"}, Destination: &compress, Value: false, Usage: "compress result to zip"},