This is why I actually use a really simple bash script to capture things to my scratch notebook, it just uses the joplin terminal commands. I'll then format it and clear it out later. I have the script bound to a shortcut so it opens anywhere.
#!/bin/bash
joplin use @scratch
read -p 'Title: ' title
read -p 'Text: ' text
joplin mknote "$title"
joplin set "$title" body "$text"
Hi @cornsplicer, I'm glade that you like this plugin.
And, the current features are also what I am using everyday, and will be kept in newer version.
By the way, each version would be available here Releases ยท leenzhu/joplin-plugin-journal ยท GitHub, if someday you feel the newer versions are too bloated, you could still download the old versions, and install them.
The option/cmd/D keyboard shortcut in Journal used to open a Journal note for today, isn't working any longer...
Option/cmd/D is now part of Apple multitasking shortcuts and opens the Dock when Hiding is turned on. Perhaps option/cmd/T (for Today) could be a replacement?
Alternatively, I can use the menu or option/cmd/O, click the date and click OK.
Yes I encountered this problem the other day. My suggestion is to go into Joplin/Preferences/Keyboard shortcuts/Journal today and change the keystroke combination. In my case I just added "Shift" to the string and it now works fine.
I just opened an issue to have the ability to use time elements (hour, 24hour, min, sec) in the default note name. I like having multiple journal notes/day with the date AND time in the note name. The default note naming already partially supports this ability. I put more tech details in the issue.
@DeanH Thanks for pointing out this issue. I was planning to support time at the beginning, buf after fixing timezone(UTC/Local) problem, I forgot to implent it. I'll try to complete it latter.