summaryrefslogtreecommitdiff
path: root/Cargo.lock
AgeCommit message (Collapse)AuthorFilesLines
2024-01-13chore: update dependency versionsLars Wirzenius1-119/+157
Signed-off-by: Lars Wirzenius <liw@liw.fi> Sponsored-by: author
2024-01-13chore: update Cargo.lockLars Wirzenius1-223/+459
Signed-off-by: Lars Wirzenius <liw@liw.fi> Sponsored-by: author
2022-04-25chore: port from structopt to clap v3Lars Wirzenius1-69/+42
Sponsored-by: author
2021-08-24feat! rename binary from jt2 to jtLars Wirzenius1-57/+123
The software has now replaced all my use of the old Python version. Sponsored-by: author
2021-07-15feat: add command to list current draftsLars Wirzenius1-8/+17
Sponsored-by: author
2021-04-08refactor: sort dependencies in Cargo.toml in alphabetical orderLars Wirzenius1-10/+10
2021-04-08feat! add support for tera templates for new journal entriesLars Wirzenius1-0/+278
There is a hardcoded default template, plus one can be overridden per journal by adding a .config/templates/new_entry file in the journal.
2021-04-02feat! support multiple draftsLars Wirzenius1-0/+50
This changes the command line syntax: subcommands edit and finish now require the draft id. We can change this later so that if there is only one draft, the program picks that one automatically. Also, new entries are 0.md, 1.md, etc, which is not going to be acceptable for real use, but this works minimally.
2021-03-26feat! rewrite codeLars Wirzenius1-46/+149
This started out as a change to re-do the command line parsing. I ended up rewriting everything, and failed to do it in a way that could be rebased into a sensible series of small commits.
2020-11-16feat: add "jt edit" to edit a draft with a chosen editorLars Wirzenius1-0/+115
Also, add some debugging log statements that were needed while making this change.
2020-09-05feat: create and initialise a new journalLars Wirzenius1-0/+251
At the moment this only creates a new directory, but most of the change is scaffolding so that more interesting changes can be built on top of this later.