Skip to content

Commit

Permalink
[REL] Release 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
czottmann committed Mar 27, 2024
1 parent 5da464a commit c54b68d
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release history

## 1.5.1, 2024-03-27

### Changes

- `/note/create/`, `/periodic-note/create`: If the file name passed in `template-file` can't be found, the plugin will now check the template folder set in Templates or Templater, respectively, before returning an error.
- Console output will now print the paths contained in the incoming params, instead of their internal file references. This prevents circular references and "max call stack" errors related to files when using [Logstravaganza](https://github.com/czottmann/obsidian-logstravaganza).


## 1.5.0, 2024-02-19

### New stuff
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "actions-uri",
"name": "Actions URI",
"version": "1.5.0",
"version": "1.5.1",
"minAppVersion": "1.4.0",
"description": "Adds additional `x-callback-url` endpoints to the app for common actions — it's a clean, super-charged addition to Obsidian URI.",
"author": "Carlo Zottmann",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-actions-uri",
"version": "1.5.0",
"version": "1.5.1",
"description": "This plugin for Obsidian (https://obsidian.md) adds additional `x-callback-url` endpoints to the app for common actions — it's a clean, super-charged addition to Obsidian URI.",
"main": "main.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/plugin-info.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"pluginVersion": "1.5.0",
"pluginReleasedAt": "2024-02-19T13:37:05+0100"
"pluginVersion": "1.5.1",
"pluginReleasedAt": "2024-03-27T11:54:23+0100"
}
4 changes: 2 additions & 2 deletions src/plugin-info.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* File will be overwritten by bin/release.sh! */
export const PLUGIN_INFO = {
"pluginVersion": "1.5.0",
"pluginReleasedAt": "2024-02-19T13:37:05+0100"
"pluginVersion": "1.5.1",
"pluginReleasedAt": "2024-03-27T11:54:23+0100"
}
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@
"1.4.0": "1.4.0",
"1.4.1": "1.4.0",
"1.4.2": "1.4.0",
"1.5.0": "1.4.0"
"1.5.0": "1.4.0",
"1.5.1": "1.4.0"
}

0 comments on commit c54b68d

Please sign in to comment.