feat: add 'full' and 'recent' recipes
This commit is contained in:
parent
40141e0c0b
commit
7d2fe6462f
2 changed files with 8 additions and 3 deletions
|
@ -103,7 +103,7 @@ From here you can select items to download by pressing `TAB` (for selecting mutl
|
|||
```shell
|
||||
just
|
||||
# or
|
||||
just select-download-recent
|
||||
just recent
|
||||
```
|
||||
|
||||
This will use the `library-recent.txt` file, showing only new additions to your library.
|
||||
|
@ -111,7 +111,7 @@ This will use the `library-recent.txt` file, showing only new additions to your
|
|||
To select from your full library:
|
||||
|
||||
```shell
|
||||
just select-download-full
|
||||
just full
|
||||
```
|
||||
|
||||
Once you have made your selection, the `.aax` and/or `.aaxc/.voucher` files will be downloaded, via a `./TEMP/` directory,
|
||||
|
|
7
justfile
7
justfile
|
@ -1,4 +1,9 @@
|
|||
default: select-download-recent convert refile
|
||||
default: recent
|
||||
|
||||
recent: select-download-recent convert refile
|
||||
@tree M4B/
|
||||
|
||||
full: select-download-full convert refile
|
||||
@tree M4B/
|
||||
|
||||
doctor:
|
||||
|
|
Loading…
Reference in a new issue