From 30f058dc45873084e26387f557f20609b8528a4b Mon Sep 17 00:00:00 2001 From: Agnieszka Besz Date: Mon, 13 Apr 2026 14:14:00 +0200 Subject: [PATCH] chore: update macOS binary and process name to Decentraland Aligns launcher-rust with the productName rename in decentraland/unity-explorer#8207, where Unity's productName changes from "Explorer" to "Decentraland". This updates the post-install chmod path and the running-instance tracking name on macOS. --- core/src/installs.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/installs.rs b/core/src/installs.rs index b2b8d5fb..4115d778 100644 --- a/core/src/installs.rs +++ b/core/src/installs.rs @@ -382,7 +382,7 @@ pub fn install_explorer(version: &str, downloaded_file_path: Option) -> #[cfg(target_os = "macos")] { - const EXPLORER_MAC_BIN_PATH: &str = "Decentraland.app/Contents/MacOS/Explorer"; + const EXPLORER_MAC_BIN_PATH: &str = "Decentraland.app/Contents/MacOS/Decentraland"; let from = &branch_path.join("build"); let to = &branch_path; @@ -619,9 +619,9 @@ impl InstallsHub { #[cfg(target_os = "macos")] { - // Default name of the Explorer client, won't conflict on macOS like it could on - // Windows with the default explorer.exe - const NAME: &str = "Explorer"; + // Default name of the Explorer client after the productName rename in + // decentraland/unity-explorer#8207. + const NAME: &str = "Decentraland"; guard.register_new_opened_instance_by_name(NAME); } }