This is why git rebase is a horrible horrible thing.

This commit is contained in:
2025-01-01 20:47:33 +02:00
parent 91b970b387
commit 6ff1689aaa
2 changed files with 7 additions and 1 deletions

View File

@@ -68,6 +68,12 @@ To select which series to resume
grpoppro --select grpoppro --select
``` ```
To view the last episode watched across all series
```sh
grpoppro --history
```
To open in browser To open in browser
```sh ```sh

View File

@@ -159,7 +159,7 @@ function curlRequest {
# Print usage information # Print usage information
function usage { function usage {
echo -e "\n\tUsage:\n\n\t""$(basename "$0")"" \"name of film or show\" [season] [episode(ex 01 02 .. 10 11)]" echo -e "\n\tUsage:\n\n\t""$(basename "$0")"" \"name of film or show\" [season] [episode(ex 01 02 .. 10 11)]"
echo -e "\tOr ""$(basename "$0")"" [--menu|--resume|--select|--finish]" echo -e "\tOr ""$(basename "$0")"" [--menu|--resume|--select|--finish|--history]"
echo -e "\tOr ""$(basename "$0")"" --open \"name of film or show\"" echo -e "\tOr ""$(basename "$0")"" --open \"name of film or show\""
exit 0 exit 0
} }