notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 3938f43d8b2c560057055a357c596e4218234da1
parent 49745dec9287e383b28d52ae050366ebab865406
Author: William Casarin <jb55@jb55.com>
Date:   Mon, 23 Feb 2026 12:07:08 -0800

feature: rename wasm_apps to wasm

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mcrates/notedeck_chrome/Cargo.toml | 2+-
Mcrates/notedeck_chrome/src/chrome.rs | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/crates/notedeck_chrome/Cargo.toml b/crates/notedeck_chrome/Cargo.toml @@ -62,7 +62,7 @@ notebook = ["notedeck_notebook"] nostrverse = ["notedeck_nostrverse"] clndash = ["notedeck_clndash"] dashboard = ["notedeck_dashboard"] -wasm_apps = ["notedeck_wasm"] +wasm = ["notedeck_wasm"] [target.'cfg(target_os = "android")'.dependencies] tracing-logcat = "0.1.0" diff --git a/crates/notedeck_chrome/src/chrome.rs b/crates/notedeck_chrome/src/chrome.rs @@ -161,7 +161,7 @@ impl Chrome { cc.egui_ctx.clone(), context.path, ); - #[cfg(feature = "wasm_apps")] + #[cfg(feature = "wasm")] let wasm_dir = context .path .path(notedeck::DataPathType::Cache) @@ -193,7 +193,7 @@ impl Chrome { notedeck_nostrverse::NostrverseApp::demo(cc.wgpu_render_state.as_ref()), ))); - #[cfg(feature = "wasm_apps")] + #[cfg(feature = "wasm")] { tracing::info!("looking for WASM apps in: {}", wasm_dir.display()); if wasm_dir.is_dir() {