Skip to content

Commit

Permalink
Merge branch 'dev' into fix/mobile-identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Aug 21, 2024
2 parents 2c1a8dd + da8c9a7 commit 003d8e8
Show file tree
Hide file tree
Showing 17 changed files with 2,468 additions and 146 deletions.
5 changes: 5 additions & 0 deletions .changes/fix-android-remove-current-script.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"tauri-utils": patch:bug
---

Properly remove isolation script on Android.
6 changes: 6 additions & 0 deletions .changes/ios-codesign-on-build.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"tauri-cli": patch:breaking
"@tauri-apps/cli": patch:breaking
---

The `IOS_CERTIFICATE`, `IOS_CERTIFICATE_PASSWORD` and `IOS_MOBILE_PROVISION` environment variables are now read by the `ios build` command instead of `ios init`.
6 changes: 6 additions & 0 deletions .changes/synchronize-pbxproj-export-options.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"tauri-cli": patch:bug
"@tauri-apps/cli": patch:bug
---

Synchronize Xcode project changes with the ExportOptions.plist file so `ios build` calls can work with code signing changes made in Xcode.
6 changes: 6 additions & 0 deletions .changes/update-pbxproj-codesign.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"tauri-cli": patch:enhance
"@tauri-apps/cli": patch:enhance
---

Modify both ExportOptions.plist and project.pbxproj to reflect changes for the `IOS_CERTIFICATE`, `IOS_CERTIFICATE_PASSWORD` and `IOS_MOBILE_PROVISION` environment variables.
4 changes: 2 additions & 2 deletions core/tauri-utils/src/pattern/isolation.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,6 @@
}

setTimeout(waitUntilReady, readyIntervalMs)

document.currentScript.remove()
})()

document.currentScript?.remove()
26 changes: 26 additions & 0 deletions tooling/cli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions tooling/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ phf = { version = "0.11", features = ["macros"] }
walkdir = "2"
elf = "0.7"
memchr = "2"
tempfile = "3"

[dev-dependencies]
insta = "1"

[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
Expand Down
2 changes: 2 additions & 0 deletions tooling/cli/src/helpers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ pub mod flock;
pub mod framework;
pub mod fs;
pub mod npm;
#[cfg(target_os = "macos")]
pub mod pbxproj;
pub mod plugins;
pub mod prompts;
pub mod template;
Expand Down
Loading

0 comments on commit 003d8e8

Please sign in to comment.