summaryrefslogtreecommitdiff
path: root/Cargo.toml
AgeCommit message (Collapse)AuthorFilesLines
2024-01-13chore: update dependency versionsLars Wirzenius1-11/+11
Signed-off-by: Lars Wirzenius <liw@liw.fi> Sponsored-by: author
2022-04-25chore: port from structopt to clap v3Lars Wirzenius1-1/+1
Sponsored-by: author
2021-08-24feat! rename binary from jt2 to jtLars Wirzenius1-1/+1
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-1/+2
Sponsored-by: author
2021-04-08refactor: sort dependencies in Cargo.toml in alphabetical orderLars Wirzenius1-6/+6
2021-04-08feat! add support for tera templates for new journal entriesLars Wirzenius1-0/+1
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/+2
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-0/+3
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/+2
Also, add some debugging log statements that were needed while making this change.
2020-09-05feat: create and initialise a new journalLars Wirzenius1-0/+10
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.