From 9e5c0ef3ce4475fd5b19971be4956542ef14ab1c Mon Sep 17 00:00:00 2001 From: Joplin Bot Date: Mon, 6 Jan 2025 18:22:50 +0000 Subject: [PATCH] Doc: Auto-update documentation Auto-updated using release-website.sh --- packages/tools/postPreReleasesToForum.json | 4 +++- readme/about/changelog/desktop.md | 5 +++++ readme/api/references/rest_api.md | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/packages/tools/postPreReleasesToForum.json b/packages/tools/postPreReleasesToForum.json index 4218148f4..a3bace057 100644 --- a/packages/tools/postPreReleasesToForum.json +++ b/packages/tools/postPreReleasesToForum.json @@ -117,6 +117,8 @@ "v3.2.4": true, "ios-v13.2.2": true, "v3.2.5": true, - "v3.2.6": true + "v3.2.6": true, + "v3.2.7": true, + "android-v3.2.4": true } } \ No newline at end of file diff --git a/readme/about/changelog/desktop.md b/readme/about/changelog/desktop.md index 11cd3cd28..58628050b 100644 --- a/readme/about/changelog/desktop.md +++ b/readme/about/changelog/desktop.md @@ -1,5 +1,10 @@ # Joplin Desktop Changelog +## [v3.2.7](https://github.com/laurent22/joplin/releases/tag/v3.2.7) (Pre-release) - 2025-01-06T16:35:41Z + +- Improved: Plugins: Add Toast plugin API ([#11583](https://github.com/laurent22/joplin/issues/11583)) ([#11579](https://github.com/laurent22/joplin/issues/11579)) +- Updated translations + ## [v3.2.6](https://github.com/laurent22/joplin/releases/tag/v3.2.6) (Pre-release) - 2024-12-23T21:54:40Z - Improved: Keep comments when rendering Markdown to allow rendered note metadata ([#11530](https://github.com/laurent22/joplin/issues/11530)) diff --git a/readme/api/references/rest_api.md b/readme/api/references/rest_api.md index 0a7a2e692..4c9821328 100644 --- a/readme/api/references/rest_api.md +++ b/readme/api/references/rest_api.md @@ -136,9 +136,9 @@ Call **GET /ping** to check if the service is available. It should return "Jopli ## Searching -Call **GET /search?query=YOUR_QUERY** to search for notes. This end-point supports the `field` parameter which is recommended to use so that you only get the data that you need. The query syntax is as described in the main documentation: https://joplinapp.org/help/#searching +Call **GET /search?query=YOUR_QUERY** to search for notes. This end-point supports the `field` parameter which is recommended to use so that you only get the data that you need. The query syntax is as described in the main documentation: https://joplinapp.org/help/apps/search -To retrieve non-notes items, such as notebooks or tags, add a `type` parameter and set it to the required [item type name](#item-type-id). In that case, full text search will not be used - instead it will be a simple case-insensitive search. You can also use `*` as a wildcard. This is convenient for example to retrieve notebooks or tags by title. +To retrieve non-notes items, such as notebooks or tags, add a `type` parameter and set it to the required [item type name](#item-type-ids). In that case, full text search will not be used - instead it will be a simple case-insensitive search. You can also use `*` as a wildcard. This is convenient for example to retrieve notebooks or tags by title. For example, to retrieve the notebook named `recipes`: **GET /search?query=recipes&type=folder**