Skip to content

Commit

Permalink
[NEW] Adds v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
czottmann committed Feb 19, 2024
1 parent ce402d1 commit 867258c
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,28 @@
# Release history

## 1.5.0, 2024-02-__
## 1.5.0, 2024-02-19

### New stuff

- New route path: [`/file`](https://czottmann.github.io/obsidian-actions-uri/routes/file/) for working with non-note files. While the Obsidian API doesn't allow for uploading attachment files, you can now at least list, open, delete, or rename them. (#85)
- New route: [`/note/touch`](https://czottmann.github.io/obsidian-actions-uri/routes/note/#notetouch) sets the modification date of a note to the current date and time (force Obsidian to reload it in views/ embeddings).
- New route path: [`/file`](https://czottmann.github.io/obsidian-actions-uri/routes/file/) for working with files. The Obsidian API doesn't allow for uploading attachment files, but now you can at least handle them. (#85)
- `/file/list`: Returns the paths of all files in the vault.
- `/file/get-active`: Return the path of the currently active/ focussed file.
- `/file/open`: Opens a file in Obsidian.
- `/file/delete`: Deletes a file.
- `/file/trash`: Moves a file to the trash.
- `/file/rename`: Renames a file.
- New route: [`/note/get-active`](https://czottmann.github.io/obsidian-actions-uri/routes/note/#noteget-active) returns the currently active/ focussed note.
- New route: [`/note/get-first-named`](https://czottmann.github.io/obsidian-actions-uri/routes/note/#noteget-first-named) returns the first note found with a given name.
- New route: [`/note/touch`](https://czottmann.github.io/obsidian-actions-uri/routes/note/#notetouch) sets the modification date of a note to the current date and time (side effect: it makes Obsidian reload it in views/ embeddings).


### Changes

- [`/command/execute`](https://czottmann.github.io/obsidian-actions-uri/routes/command/#commandexecute) no longer requires the `x-success` and `x-error` parameters to be present. If they are, they will be used, but if they are not, the route will still work. (#84)
- Appending below headline: Now inserts before any trailing new lines in a section instead of after them.
- Changed route: [`/command/execute`](https://czottmann.github.io/obsidian-actions-uri/routes/command/#commandexecute) no longer requires the `x-success` and `x-error` parameters to be present. If they are, they will be used, but they are optional now. (#84)
- Removed route: `/vault/list-folders` was marked as deprecated in 0.16, and is now gone for good. Use [`/folder/list`](https://czottmann.github.io/obsidian-actions-uri/routes/folder/#folderlist) instead.


### No longer broken

TODO


## 1.4.2, 2023-12-12

### No longer broken
Expand Down

0 comments on commit 867258c

Please sign in to comment.