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.
After a try, in order to have something "clean", I deleted some months' notebooks in the Journal notebook...
After that when I use "open another day's note" and choose a day in a month I deleted, the new days is not created in the Journal month's notebook (not created again by the plugin) but directly inside... the trash (in the month's notebook deleted) !!!
After checking the database, I found that the folder that been deleted still has the same parent_id as before. And also I found there is deleted_time property to indicate whether the folder has been deleted. I'll fix it by checking this property.
It't not that difficult to implement this feature on the technical side. But I'm not sure whether it is suitable to add a button on the toolbar, as I think the toolbar is used for editing.