Skip to content

Commit

Permalink
[REL] Release 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
czottmann committed Jun 18, 2024
1 parent 285d826 commit 161caf2
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release history

## 1.5.3, 2024-06-18

### No longer broken

- Fixes the plugin not sending out return calls when the requested vault wasn't loaded yet, e.g. when Obsidian wasn't running or when another vault was active.


## 1.5.2, 2024-05-11

House keeping release, no new features.
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.2",
"version": "1.5.3",
"minAppVersion": "1.5.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.2",
"version": "1.5.3",
"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
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import {
export default class ActionsURI extends Plugin {
async onload() {
obsEnv.app = this.app;
this.app.workspace.onLayoutReady(() => this.registerRoutes(routes));
this.registerRoutes(routes);
}

onunload() {
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.2",
"pluginReleasedAt": "2024-05-11T12:39:26+0200"
"pluginVersion": "1.5.3",
"pluginReleasedAt": "2024-06-18T15:07:53+0200"
}
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.2",
"pluginReleasedAt": "2024-05-11T12:39:26+0200"
"pluginVersion": "1.5.3",
"pluginReleasedAt": "2024-06-18T15:07:53+0200"
}
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@
"1.4.2": "1.4.0",
"1.5.0": "1.4.0",
"1.5.1": "1.4.0",
"1.5.2": "1.5.0"
"1.5.2": "1.5.0",
"1.5.3": "1.5.0"
}

0 comments on commit 161caf2

Please sign in to comment.