From fbb4dcf2b1950ce0e1381306ceeba8c74d4174c1 Mon Sep 17 00:00:00 2001 From: warrenjokinen <110791849+warrenjokinen@users.noreply.github.com> Date: Mon, 29 Sep 2025 15:21:53 -0600 Subject: [PATCH] Update a Help menu item in app_menus.rs with "Locally" (#39151) Add the single word "Locally" to clarify where the info is coming from, (and that you don't need to be online.) Closes #ISSUE Release Notes: - N/A *or* Added/Fixed/Improved ... --- crates/zed/src/zed/app_menus.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/zed/src/zed/app_menus.rs b/crates/zed/src/zed/app_menus.rs index cc4398d0a71fc9f74282a08b7d2b470c4a268da7..00bde74928ba9ae22020d7dde8ced654a0b83557 100644 --- a/crates/zed/src/zed/app_menus.rs +++ b/crates/zed/src/zed/app_menus.rs @@ -252,7 +252,7 @@ pub fn app_menus() -> Vec { name: "Help".into(), items: vec![ MenuItem::action( - "View Release Notes", + "View Release Notes Locally", auto_update_ui::ViewReleaseNotesLocally, ), MenuItem::action("View Telemetry", zed_actions::OpenTelemetryLog),