From 9367bab359ec2bdd5840091a7bb126554d59b6ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20=C3=85hall?= Date: Wed, 24 Apr 2024 16:32:41 +0200 Subject: [PATCH 1/2] Better descriptions when extracting --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index accfd37..e4fc1ed 100644 --- a/main.go +++ b/main.go @@ -68,11 +68,11 @@ func main() { dbName := dbMatch[1] db = NewDb(dbName) if (flagIncludeAll && slices.Contains(flagExcept, dbName)) || (flagExcludeAll && !slices.Contains(flagExcept, dbName)) { - fmt.Printf("Skipping %s\n", dbName) + fmt.Printf("Skipping %s\n", dbName) continue } - fmt.Printf("Database %s\n", db.Name) + fmt.Printf("Extracting %s\n", db.Name) if flagList { continue } From aa1ead78e188df234f82794e1af0c7d078f0c722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20=C3=85hall?= Date: Wed, 24 Apr 2024 16:32:51 +0200 Subject: [PATCH 2/2] Bumped to v5 --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index e4fc1ed..fbe38d2 100644 --- a/main.go +++ b/main.go @@ -9,7 +9,7 @@ import ( "slices" ) -const VERSION = "v4" +const VERSION = "v5" const MAXLINE = 1048576 type Db struct {