diff --git a/.changes/dev-app-name.md b/.changes/dev-app-name.md new file mode 100644 index 000000000..cfc23f7fa --- /dev/null +++ b/.changes/dev-app-name.md @@ -0,0 +1,7 @@ +--- +"tauri-codegen": patch +"tauri-macros": patch +"tauri": patch +--- + +Set the bundle name in the Info.plist file in development mode. diff --git a/core/tauri-codegen/Cargo.toml b/core/tauri-codegen/Cargo.toml index 7a038fa8e..d414451af 100644 --- a/core/tauri-codegen/Cargo.toml +++ b/core/tauri-codegen/Cargo.toml @@ -29,6 +29,9 @@ semver = "1" ico = "0.1" png = "0.17" +[target."cfg(target_os = \"macos\")".dependencies] +plist = "1" + [features] default = [ "compression" ] compression = [ "brotli", "tauri-utils/compression" ] diff --git a/core/tauri-codegen/src/context.rs b/core/tauri-codegen/src/context.rs index c6db8cbf9..ca8269e85 100644 --- a/core/tauri-codegen/src/context.rs +++ b/core/tauri-codegen/src/context.rs @@ -261,14 +261,28 @@ pub fn context_codegen(data: ContextData) -> Result