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:
Patrizio Bekerle 2017-11-30 17:29:45 +01:00 committed by GitHub
commit 452f90601c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View File

@ -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."

View File

@ -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