diff --git a/README.md b/README.md index 2ac4276..5f2ffd8 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ - [x] Login - [x] View Task-List - [x] Create Task-List -- [ ] Update Task-List title +- [x] Update Task-List title - [x] Delete Task-List - [x] View Tasks - [x] Create Tasks diff --git a/cmd/root.go b/cmd/root.go index 4ce87c3..24e46cc 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -16,7 +16,7 @@ var cfgFile string var rootCmd = &cobra.Command{ Use: "gtasks", Short: "A CLI Tool for Google Tasks", - Version: "0.8.0", + Version: "0.9.0", Long: `A CLI Tool for managing your Google Tasks: Made with ♥ by https://github.com/BRO3886 diff --git a/cmd/tasklists.go b/cmd/tasklists.go index 67b6152..f999754 100644 --- a/cmd/tasklists.go +++ b/cmd/tasklists.go @@ -84,7 +84,8 @@ var createlistsCmd = &cobra.Command{ if err != nil { log.Fatalf("Unable to create task list. %v", err) } - fmt.Println("Created: " + r.Title) + title = "" + fmt.Println(color.GreenString("Created: ") + r.Title) }, } @@ -132,10 +133,58 @@ var removeListCmd = &cobra.Command{ }, } +var updateTitleCmd = &cobra.Command{ + Use: "update", + Short: "update tasklist title", + Long: `Update tasklist title for the currently signed in account`, + Run: func(cmd *cobra.Command, args []string) { + config := utils.ReadCredentials() + client := getClient(config) + srv, err := tasks.New(client) + if err != nil { + log.Fatalf("Unable to retrieve tasks Client %v", err) + } + if title == "" { + fmt.Println("Title should not be empty. Use -t for title.\nExamples:\ngtasks tasklists create -t