From cdc3989de0a1f190d9fad14d6459f66349f385ef Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Thu, 30 Jun 2022 21:02:30 +0530 Subject: added version command --- cmd/chapters.go | 2 +- cmd/episodes.go | 2 +- cmd/version.go | 39 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+), 2 deletions(-) create mode 100644 cmd/version.go (limited to 'cmd') diff --git a/cmd/chapters.go b/cmd/chapters.go index 87cdd19..0c00998 100644 --- a/cmd/chapters.go +++ b/cmd/chapters.go @@ -68,7 +68,7 @@ var chaptersCmd = &cobra.Command{ prevChRead := selectedManga.MyListStatus.ChaptersRead if queryOnlyMode { - fmt.Printf("You Have read \x1b[1;36m%d\x1b[0m out of \x1b[1;33m%d\x1b[0m chapters from \x1b[35m%s\x1b[0m\n", prevChRead, selectedManga.NumChapters, manga.Title) + fmt.Printf("You Have Read \x1b[1;36m%d\x1b[0m Out Of \x1b[1;33m%d\x1b[0m Chapters From \x1b[35m%s\x1b[0m.\n", prevChRead, selectedManga.NumChapters, manga.Title) os.Exit(0) } diff --git a/cmd/episodes.go b/cmd/episodes.go index e26e190..d4efc32 100644 --- a/cmd/episodes.go +++ b/cmd/episodes.go @@ -68,7 +68,7 @@ var episodesCmd = &cobra.Command{ prevEpWatched := selectedAnime.MyListStatus.EpWatched if queryOnlyMode { - fmt.Printf("You Have watched \x1b[1;36m%d\x1b[0m out of \x1b[1;33m%d\x1b[0m episodes from \x1b[35m%s\x1b[0m\n", prevEpWatched, selectedAnime.NumEpisodes, anime.Title) + fmt.Printf("You Have Watched \x1b[1;36m%d\x1b[0m Out Of \x1b[1;33m%d\x1b[0m Wpisodes From \x1b[35m%s\x1b[0m.\n", prevEpWatched, selectedAnime.NumEpisodes, anime.Title) os.Exit(0) } diff --git a/cmd/version.go b/cmd/version.go new file mode 100644 index 0000000..0169dd2 --- /dev/null +++ b/cmd/version.go @@ -0,0 +1,39 @@ +/* +macli - Unofficial CLI-Based MyAnimeList Client +Copyright © 2022 Vidhu Kant Sharma + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ + +package cmd + +import ( + "fmt" + "github.com/spf13/cobra" +) + +var version string = "v1.4.0" + +var versionCmd = &cobra.Command { + Use: "version", + Short: "Shows current version", + Long: "Shows current version of macli", + Run: func(cmd *cobra.Command, args []string) { + fmt.Println("macli ::", version) + }, +} + +func init() { + rootCmd.AddCommand(versionCmd) +} -- cgit v1.2.3