mirror of
https://github.com/marty-oehme/scripts.git
synced 2024-12-21 23:48:08 +00:00
Merge pull request #16 from sanderboom/journal-default-folder
Add a setting to specify a folder where created journal notes will be placed.
This commit is contained in:
commit
452f90601c
2 changed files with 12 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
"name": "Journal entry",
|
||||
"identifier": "journal-entry",
|
||||
"script": "journal-entry.qml",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.1",
|
||||
"minAppVersion": "17.11.6",
|
||||
"authors": ["@pbek", "@sanderboom"],
|
||||
"description" : "This script creates a menu item and a button to create or jump to the current date's journal entry."
|
||||
|
|
|
@ -48,6 +48,17 @@ QtObject {
|
|||
var headline = "Journal " + m.getFullYear() + ("0" + (m.getMonth()+1)).slice(-2) + ("0" + m.getDate()).slice(-2);
|
||||
|
||||
var fileName = headline + ".md";
|
||||
|
||||
// Check if we already have a Journal note for today.
|
||||
|
||||
// When a default folder is set, make sure to search in that folder.
|
||||
// This has the highest chance of finding an existing journal note.
|
||||
// Right now we can not search the whole database for a note with this
|
||||
// name / filename.
|
||||
if (defaultFolder && defaultFolder !== '') {
|
||||
script.jumpToNoteSubFolder(defaultFolder);
|
||||
}
|
||||
|
||||
var note = script.fetchNoteByFileName(fileName);
|
||||
|
||||
// check if note was found
|
||||
|
|
Loading…
Reference in a new issue