diff options
| author | Fuwn <[email protected]> | 2024-01-18 22:07:22 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-18 22:07:22 -0800 |
| commit | 6457205caef49953779f43048fb110b4c23ca574 (patch) | |
| tree | c61893cc36fdd2993edc622baaebb3d407f8f9dc | |
| parent | feat: current (diff) | |
| download | tama-6457205caef49953779f43048fb110b4c23ca574.tar.xz tama-6457205caef49953779f43048fb110b4c23ca574.zip | |
docs(readme): add update help output
| -rw-r--r-- | README.md | 14 | ||||
| -rw-r--r-- | src/bashly.yml | 7 | ||||
| -rwxr-xr-x | tama | 10 |
3 files changed, 18 insertions, 13 deletions
@@ -43,12 +43,14 @@ Usage: tama --version | -v Commands: - trending Trending anime - popular Popular anime - upcoming Upcoming anime - search Search for a number of anime - watch Watch an anime by episode - episodes An anime's episodes + trending Trending anime + popular Popular anime + upcoming Upcoming anime + current Currently airing anime + search Search for a number of anime + watch Watch an anime by episode + episodes An anime's episodes + recommend View recommended and similar anime ``` ### Dependencies diff --git a/src/bashly.yml b/src/bashly.yml index 9685972..9234aed 100644 --- a/src/bashly.yml +++ b/src/bashly.yml @@ -28,7 +28,8 @@ commands: - name: id required: true help: | - Found by either the trending, popular, upcoming, or search subcommand + Found by either the trending, popular, upcoming, current, or search + subcommand - name: episode required: true help: Episode to watch @@ -52,8 +53,10 @@ commands: dependencies: [head] - name: recommend alias: r + help: View recommended and similar anime args: - name: id required: true help: | - View recommended and similar anime to an anime + Found by either the trending, popular, upcoming, current, or search + subcommand @@ -41,7 +41,7 @@ tama_usage() { printf " %s Search for a number of anime\n" "search " printf " %s Watch an anime by episode\n" "watch " printf " %s An anime's episodes\n" "episodes " - printf " %s \n" "recommend" + printf " %s View recommended and similar anime\n" "recommend" echo # :command.long_usage @@ -273,7 +273,7 @@ tama_watch_usage() { # :argument.usage printf " %s\n" "ID" - printf " Found by either the trending, popular, upcoming, or search subcommand\n" + printf " Found by either the trending, popular, upcoming, current, or search\n subcommand\n" echo # :argument.usage @@ -327,11 +327,11 @@ tama_episodes_usage() { # :command.usage tama_recommend_usage() { if [[ -n $long_usage ]]; then - printf "tama recommend\n" + printf "tama recommend - View recommended and similar anime\n" echo else - printf "tama recommend\n" + printf "tama recommend - View recommended and similar anime\n" echo fi @@ -358,7 +358,7 @@ tama_recommend_usage() { # :argument.usage printf " %s\n" "ID" - printf " View recommended and similar anime to an anime\n" + printf " Found by either the trending, popular, upcoming, current, or search\n subcommand\n" echo fi |