Skip to content

Commit

Permalink
Misc tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jgclark committed Jan 24, 2025
1 parent 08eefd0 commit 2a438a7
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 36 deletions.
79 changes: 45 additions & 34 deletions jgclark.EventHelpers/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,17 @@
"description": "takes dates in the selection and shifts them forwards or backwards by a given date interval",
"jsFunction": "shiftDates"
},
{
"name": "shiftDatesCore",
"hidden": true,
"description": "Entry point for shiftDates for other commands",
"jsFunction": "shiftDatesCore",
"parameters": [
"note",
"parasToProcess",
"interval"
]
},
{
"name": "listDaysEvents",
"description": "function to list events for the current open Calendar note (for use in Templating)",
Expand Down Expand Up @@ -72,7 +83,7 @@
"plugin.settings": [
{
"type": "heading",
"title": "Settings for insert day's events as list"
"title": "'insert day's events as list' command settings"
},
{
"key": "eventsHeading",
Expand Down Expand Up @@ -140,7 +151,7 @@
},
{
"type": "heading",
"title": "Additional '/insert matching events' settings"
"title": "Additional 'insert matching events' command settings"
},
{
"key": "matchingEventsHeading",
Expand Down Expand Up @@ -171,7 +182,38 @@
},
{
"type": "heading",
"title": "'/time blocks to calendar' settings"
"title": "'shift dates' command settings"
},
{
"key": "removeDoneDates",
"title": "Remove @done dates?",
"description": "Whether to remove @done(...) dates, if present, when shifting dates.",
"type": "bool",
"default": true,
"required": true
},
{
"key": "uncompleteTasks",
"title": "Set any closed tasks or checklists to open?",
"description": "Whether to change any completed or cancelled tasks or checklists back to open.",
"type": "bool",
"default": true,
"required": true
},
{
"key": "removeProcessedTagName",
"title": "Remove any 'processed tag name' on tasks or checklists?",
"description": "Whether to remove any 'processed tag name' (as set above) from tasks or checklists",
"type": "bool",
"default": true,
"required": true
},
{
"type": "separator"
},
{
"type": "heading",
"title": "'time blocks to calendar' command settings"
},
{
"key": "includeCompletedTasks",
Expand Down Expand Up @@ -232,37 +274,6 @@
{
"type": "separator"
},
{
"type": "heading",
"title": "'/shift dates' settings"
},
{
"key": "removeDoneDates",
"title": "Remove @done dates?",
"description": "Whether to remove @done(...) dates, if present, when shifting dates.",
"type": "bool",
"default": true,
"required": true
},
{
"key": "uncompleteTasks",
"title": "Set any closed tasks or checklists to open?",
"description": "Whether to change any completed or cancelled tasks or checklists back to open.",
"type": "bool",
"default": true,
"required": true
},
{
"key": "removeProcessedTagName",
"title": "Remove any 'processed tag name' on tasks or checklists?",
"description": "Whether to remove any 'processed tag name' (as set above) from tasks or checklists",
"type": "bool",
"default": true,
"required": true
},
{
"type": "separator"
},
{
"type": "heading",
"title": "Shared Settings"
Expand Down
9 changes: 7 additions & 2 deletions jgclark.NoteHelpers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# What's changed in 📙 Note Helpers plugin?
For more details see the [plugin's README](https://github.com/NotePlan/plugins/tree/main/jgclark.NoteHelpers/).

<!--
- ??? Shift /new note etc. from Filers plugin
- ??? Look at spinning out Index... commands to separate plugin
- -->

## [1.0.0] - 2024-12-31
### New
- the **new note** command has been revived (alias **nn**). It creates a new (regular, not calendar) note with a title you give, and in a folder you can select. If the "Default Text to add to frontmatter" setting isn't blank, then the note will be created using that frontmatter.
Expand Down Expand Up @@ -46,8 +51,8 @@ For more details see the [plugin's README](https://github.com/NotePlan/plugins/t

## [0.18.1] - 2023-08-15
- New commands by @Leo:
- "/list inconsistent note filenames": lists the names of notes whose filenames are inconsistent with their titles
- "/rename filename to title": renames the current filename to the title of the note
- **list inconsistent note filenames** lists the names of notes whose filenames are inconsistent with their titles
- **rename filename to title** renames the current filename to the title of the note
- when the command bar shows list of notes to choose, it now includes Template files again.

## [0.18.0] - 2023-08-13
Expand Down

0 comments on commit 2a438a7

Please sign in to comment.