diff --git a/journal-entry/info.json b/journal-entry/info.json index e7a4c2d..f0a189a 100644 --- a/journal-entry/info.json +++ b/journal-entry/info.json @@ -2,8 +2,8 @@ "name": "Journal entry", "identifier": "journal-entry", "script": "journal-entry.qml", - "version": "1.0.0", - "minAppVersion": "17.05.6", + "version": "1.1.0", + "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." } diff --git a/journal-entry/journal-entry.qml b/journal-entry/journal-entry.qml index b871547..1dff6d6 100644 --- a/journal-entry/journal-entry.qml +++ b/journal-entry/journal-entry.qml @@ -5,12 +5,20 @@ import com.qownnotes.noteapi 1.0 * This script creates a menu item and a button to create or jump to the current date's journal entry */ QtObject { + property string defaultFolder; property string defaultTags; property variant settingsVariables: [ + { + "identifier": "defaultFolder", + "name": "Default folder", + "description": "The default folder where the newly created journal note should be placed. Specify the path to the folder relative to the note folder. Make sure that the full path exists. Examples: to place new journal notes in the subfolder 'Journal' enter: \"Journal\"; to place new journal notes in the subfolder 'Journal' in the subfolder 'Personal' enter: \"Personal/Journal\". Leave blank to disable (notes will be created in the currently active folder).", + "type": "string", + "default": "", + }, { "identifier": "defaultTags", - "name": "Auto-tagging", + "name": "Default tags", "description": "One or more default tags (separated by commas) to assign to a newly created journal note. Leave blank to disable auto-tagging.", "type": "string", "default": "journal", @@ -51,15 +59,29 @@ QtObject { // create a new journal entry note if it wasn't found // keep in mind that the note will not be created instantly on the disk script.log("creating new journal entry: " + headline); + + // Default folder. + if (defaultFolder && defaultFolder !== '') { + var msg = 'Jump to default folder \'' + defaultFolder + '\' before creating a new journal note.'; + script.log('Attempt: ' + msg); + var jump = script.jumpToNoteSubFolder(defaultFolder); + if (jump) { + script.log('Success: ' + msg); + } else { + script.log('Failed: ' + msg); + } + } + + // Create the new journal note. script.createNote(headline + "\n================\n\n"); - // Auto-tagging. + // Default tags. if (defaultTags && defaultTags !== '') { defaultTags // Split on 0..* ws, 1..* commas, 0..* ws. .split(/\s*,+\s*/) .forEach(function(i) { - script.log('Auto-tag new journal entry with: ' + i); + script.log('Tag the new journal note with default tag: ' + i); script.tagCurrentNote(i); }); }