From 3bc5bb28cd53cc07e785fb3a73c6b21b1cd2cf07 Mon Sep 17 00:00:00 2001 From: Florian Bachmann <834350+baflo@users.noreply.github.com> Date: Mon, 5 Jan 2026 08:03:07 +0100 Subject: [PATCH 1/2] Fixing Plugin API doc on persistence --- docs/plugin-development.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/plugin-development.md b/docs/plugin-development.md index 1c6eb7d99..90af092f4 100644 --- a/docs/plugin-development.md +++ b/docs/plugin-development.md @@ -445,11 +445,11 @@ You can persist data that will also be synced vai the `persistDataSynced` and `l ```javascript // Save plugin data -await PluginAPI.persistDataSynced('myKey', { count: 42 }); +await PluginAPI.persistDataSynced(JSON.stringify({ count: 42 })); // Load saved data -const data = await PluginAPI.loadSyncedData('myKey'); -console.log(data); // { count: 42 } +const data = await PluginAPI.loadSyncedData(); +console.log(data); // '{ count: 42 }' ``` ## Best Practices From 573819b3fe7722aac94922fca5fd85797bcd0832 Mon Sep 17 00:00:00 2001 From: suitably <151583332+suitably@users.noreply.github.com> Date: Mon, 5 Jan 2026 13:26:15 +0100 Subject: [PATCH 2/2] add QuestArc to community plugins list --- src/assets/community-plugins.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/assets/community-plugins.json b/src/assets/community-plugins.json index 76f942996..cbe406ed3 100644 --- a/src/assets/community-plugins.json +++ b/src/assets/community-plugins.json @@ -8,5 +8,10 @@ "name": "Archived Tasks Viewer", "shortDescription": "Read-only viewer to browse archived tasks with grouping, filtering, subtasks preview, and theme toggle.", "url": "https://github.com/baiyina/Archived-Tasks-Viewer" + }, + { + "name": "QuestArc", + "shortDescription": "Turn your workflow into an adventure! Gamify your tasks with Atomic Habit quests, epic boss fights, earnable badges, and a customizable hero profile.", + "url": "https://codeberg.org/Nexumia/QuestArc" } ]