Skip to content

Commit

Permalink
Forgot to update man pages
Browse files Browse the repository at this point in the history
  • Loading branch information
llComodino committed Mar 21, 2024
1 parent b065305 commit a74f3c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ani-cli
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ episodes_list() {
process_hist_entry() {
ep_list=$(episodes_list "$id")
ep_no=$(printf "%s" "$ep_list" | sed -n "/^${ep_no}$/{n;p;}") 2>/dev/null
[ -n "$ep_no" ] && printf "%s\t%s - episode %s%s\n" "$id" "$title" "$ep_no" "$([ "$countdown" = "1" ] && printf "%s%s" " - Next episode in: " "$(time_until_next_ep "$title")")"
[ -n "$ep_no" ] && printf "%s\t%s - episode %s%s\n" "$id" "$title" "$ep_no" "$([ "$countdown" = "1" ] && [ "$(time_until_next_ep "$title")" = "" ] && printf "%s%s" " - Next episode in: " "$(time_until_next_ep "$title")")"
}

update_history() {
Expand Down
3 changes: 3 additions & 0 deletions ani-cli.1
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ Disable the interactive menu.
\fB\-S | --select-nth\fR \fI\,<index>\/\fR
Selects nth entry.
.TP
\fB\-N | --nextep-countdown\fR
Prints a countdown to the next episode as the last episode in the list. If in history is after the current episode.
.TP
\fB\--dub\fR
Play the dubbed version. Without this flag, it'll always play the subbed version.
.TP
Expand Down

0 comments on commit a74f3c4

Please sign in to comment.