mostly implemented an import system
This commit is contained in:
@@ -3,18 +3,14 @@ CLI tracker to prioritize your limited time by ELO ranking media.
|
||||
|
||||
## Initial Ideas
|
||||
- [ ] Mark books read/unread/in-progress.
|
||||
- [ ] Show top 10 / bottom 10. Show only in-progress or unread.
|
||||
- [x] Show top 10 / bottom 10. Show only in-progress or unread.
|
||||
- [ ] Rank only in-progress or unread.
|
||||
- [ ] Track books by title, author, and series. Default is to recognize "by" or "(series)" and automatically sort into relevant fields.
|
||||
- [ ] But also almost nothing is actually *needed*.
|
||||
- [x] But also almost nothing is actually *needed*.
|
||||
- [x] Store progress as a numerical value? (Unread = 0, read = 1, in-progress in-between? Too easy to forget how it works?)
|
||||
- [x] Store pages as an option,
|
||||
- [ ] allow a weighted priority based on remaining percentage or whatever.
|
||||
- [ ] Store items as an array instead of object, because that makes the JSON output more consistent -> smaller JSON commit differences.
|
||||
|
||||
I think the opening UI should be to display the top 10 books in-progress (sort order customizable by user), where pressing a number key
|
||||
allows the user to immediately enter an updated progress. Additional alphabetic keys are an option to access other features. This way
|
||||
tracker use is near frictionless. (0 maps to 10)
|
||||
- [x] Store items as an array instead of object, because that makes the JSON output more consistent -> smaller JSON commit differences.
|
||||
|
||||
## Contributions
|
||||
|
||||
@@ -30,6 +26,7 @@ Licensing? I don't care. Do whatever you want. IP rights are stupid.
|
||||
"title": "Title",
|
||||
"author": "Author",
|
||||
"series": "Series",
|
||||
"genre": "Fiction",
|
||||
"pages": 100,
|
||||
"priority": 0,
|
||||
"progress": 0.5,
|
||||
@@ -37,14 +34,18 @@ Licensing? I don't care. Do whatever you want. IP rights are stupid.
|
||||
}
|
||||
```
|
||||
|
||||
- `title`, `author`, `series`, `pages`, and `hidden` are optional.
|
||||
- At least one of `title`, `author`, or `series` must be defined.
|
||||
- `title`, `author`, `series`, `pages`, `genre`, and `hidden` are optional.
|
||||
- At least one of `title`, `author`, `series`, or `genre` must be defined.
|
||||
- `priority` is the ELO ranking, initializing to `0`.
|
||||
- `progress` represents read/unread/in-progress status. `0` is unread, `1` is
|
||||
read, and anything in-between in a percentage of progress.
|
||||
- `hidden` is undefined or `true` to hide a book from ALL of the interface
|
||||
without deleting its data.
|
||||
|
||||
Despite the script supporting otherwise, I highly recommend only using this for
|
||||
*specific book titles*. In my experience, using entries representing multiple
|
||||
books makes it more difficult to prioritize and use.
|
||||
|
||||
## Why "Asymptome" ?
|
||||
A combination of asymptote - because you will die before you finish your reading
|
||||
list, always getting closer but never arriving - and tome.
|
||||
|
||||
Reference in New Issue
Block a user