From d7fb5623d6bee3a261e175a3d24d930339f09745 Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Tue, 22 Jul 2025 23:27:41 +0200 Subject: [PATCH] docs(deep-link): update platform support wording ref https://github.com/tauri-apps/tauri/issues/13877 --- plugins/deep-link/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/deep-link/Cargo.toml b/plugins/deep-link/Cargo.toml index 7ede2dc9..f3198f61 100644 --- a/plugins/deep-link/Cargo.toml +++ b/plugins/deep-link/Cargo.toml @@ -17,9 +17,9 @@ targets = ["x86_64-linux-android"] [package.metadata.platforms.support] windows = { level = "full", notes = "" } linux = { level = "full", notes = "" } -macos = { level = "partial", notes = "Runtime deep link registration is not supported" } -android = { level = "partial", notes = "Runtime deep link registration is not supported" } -ios = { level = "partial", notes = "Runtime deep link registration is not supported" } +macos = { level = "partial", notes = "Deep links must be registered in config. Dynamic registration at runtime is not supported." } +android = { level = "partial", notes = "Deep links must be registered in config. Dynamic registration at runtime is not supported." } +ios = { level = "partial", notes = "Deep links must be registered in config. Dynamic registration at runtime is not supported." } [build-dependencies] serde = { workspace = true }