From b9d21951ec7a9402e2a54c6318f70363f8a088af Mon Sep 17 00:00:00 2001 From: Lemmy Date: Sat, 8 Aug 2026 23:39:27 -0400 Subject: [PATCH] docs: fix v5 links --- README.md | 12 ++++++------ godot-provider/README.md | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a31f9c3..1409f94 100644 --- a/README.md +++ b/README.md @@ -58,13 +58,13 @@ Anything that looks like it is hiding what it does will be rejected, regardless ## Writing a plugin -The [plugin development docs](https://docs.noctalia.dev/v5/plugins/development/) are the reference: the -[manifest](https://docs.noctalia.dev/v5/plugins/development/manifest/), the -[entry types](https://docs.noctalia.dev/v5/plugins/development/entries/) (`[[widget]]`, `[[panel]]`, `[[shortcut]]`, +The [plugin development docs](https://docs.noctalia.dev/noctalia/plugins/development/) are the reference: the +[manifest](https://docs.noctalia.dev/noctalia/plugins/development/manifest/), the +[entry types](https://docs.noctalia.dev/noctalia/plugins/development/entries/) (`[[widget]]`, `[[panel]]`, `[[shortcut]]`, `[[service]]`, `[[desktop_widget]]`, `[[launcher_provider]]`), the -[declarative UI](https://docs.noctalia.dev/v5/plugins/development/declarative-ui/) vocabulary, the -[runtime API](https://docs.noctalia.dev/v5/plugins/development/runtime-api/), and the -[workflow](https://docs.noctalia.dev/v5/plugins/development/workflow/) for developing and testing locally. +[declarative UI](https://docs.noctalia.dev/noctalia/plugins/development/declarative-ui/) vocabulary, the +[runtime API](https://docs.noctalia.dev/noctalia/plugins/development/runtime-api/), and the +[workflow](https://docs.noctalia.dev/noctalia/plugins/development/workflow/) for developing and testing locally. The fastest start is to read [`noctalia/example`](https://github.com/noctalia-dev/official-plugins/tree/main/example) in the official repo. It diff --git a/godot-provider/README.md b/godot-provider/README.md index 8a1f152..c965b03 100644 --- a/godot-provider/README.md +++ b/godot-provider/README.md @@ -38,6 +38,6 @@ Projects are read from Godot's projects.cfg file, typically at and refreshed when you clear the query. The `sort_by` setting sorts by writing the project's ids in a json inside the plugins' -[`pluginDataDir`](https://docs.noctalia.dev/v5/plugins/development/runtime-api/?section=filesystem#filesystem). +[`pluginDataDir`](https://docs.noctalia.dev/noctalia/plugins/development/runtime-api/?section=filesystem#filesystem). Small parts of the code were taken or based upon the [zed-provider](https://github.com/noctalia-dev/community-plugins/tree/main/zed-provider) plugin.