-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: lucasfernog <[email protected]>
- Loading branch information
1 parent
6ee75fb
commit 2382a38
Showing
6 changed files
with
26 additions
and
35 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
# Changelog | ||
|
||
## \[0.4.0] | ||
|
||
- Use `duct` to run the ADB commands. | ||
- [8caa30c](https://github.com/tauri-apps/tauri-mobile/commit/8caa30c8fc3369b94f5da18c246bf945e32c8a4f) fix(android): use duct to run the ADB commands ([#134](https://github.com/tauri-apps/tauri-mobile/pull/134)) on 2023-04-15 | ||
- **Breaking** Replace `bossy` with `duct` across the crate. bossy has two ways to create commands, impure and pure. The pure version won't inherit env variables. This causes child processes won't get the env varialbes and results in issues like openssl cross compilation. | ||
- [6ee75fb](https://github.com/tauri-apps/tauri-mobile/commit/6ee75fbb10a17624e3a3ec64ab04dad2928ef9ed) refactor: replace bossy with duct ([#143](https://github.com/tauri-apps/tauri-mobile/pull/143)) on 2023-04-22 | ||
- Return `duct::Handle` in `apple::Device::run` to keep compatibility with Android. | ||
- [84311da](https://github.com/tauri-apps/tauri-mobile/commit/84311da4aec6f30c9158f60caea285e61ffef32f) refactor(apple): use duct for Device::run commands ([#137](https://github.com/tauri-apps/tauri-mobile/pull/137)) on 2023-04-15 | ||
- Update `wry` template to `[email protected]` | ||
- [0b9580f](https://github.com/tauri-apps/tauri-mobile/commit/0b9580ff702d57ba5d3095de95ce77e4539b7874) chore: update wry template ([#141](https://github.com/tauri-apps/tauri-mobile/pull/141)) on 2023-04-17 | ||
|
||
## \[0.3.0] | ||
|
||
- This change manually instructs Java and Kotlin to use/generate code for the same JVM target. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
[package] | ||
name = "tauri-mobile" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = [ | ||
"Tauri Programme within The Commons Conservancy", | ||
"Brainium Studios LLC", | ||
"Francesca Lovebloom <[email protected]>", | ||
"Francesca Lovebloom <[email protected]>" | ||
] | ||
edition = "2018" | ||
description = "Rust on mobile made easy!" | ||
documentation = "https://docs.rs/tauri-mobile" | ||
repository = "https://github.com/tauri-apps/tauri-mobile" | ||
readme = "README.md" | ||
keywords = ["cargo", "mobile", "ios", "android", "tauri"] | ||
categories = ["development-tools::cargo-plugins"] | ||
keywords = [ "cargo", "mobile", "ios", "android", "tauri" ] | ||
categories = [ "development-tools::cargo-plugins" ] | ||
license = "Apache-2.0 OR MIT" | ||
|
||
[[bin]] | ||
name = "cargo-mobile" | ||
required-features = ["cli"] | ||
required-features = [ "cli" ] | ||
|
||
[[bin]] | ||
name = "cargo-apple" | ||
required-features = ["cli"] | ||
required-features = [ "cli" ] | ||
|
||
[[bin]] | ||
name = "cargo-android" | ||
required-features = ["cli"] | ||
required-features = [ "cli" ] | ||
|
||
[features] | ||
cli = [ | ||
|
@@ -37,11 +37,11 @@ cli = [ | |
"serde_json", | ||
"thiserror", | ||
"structopt", | ||
"env_logger", | ||
"env_logger" | ||
] | ||
brainium = [] | ||
openssl-vendored = ["openssl/vendored"] | ||
default = ["cli"] | ||
brainium = [ ] | ||
openssl-vendored = [ "openssl/vendored" ] | ||
default = [ "cli" ] | ||
|
||
[dependencies] | ||
handlebars = "3.3.0" | ||
|
@@ -59,11 +59,11 @@ java-properties = { version = "1.2.0" } | |
log = "0.4.8" | ||
once-cell-regex = "0.2.1" | ||
path_abs = "0.5.0" | ||
serde = { version = "1.0.105", features = ["derive"] } | ||
serde = { version = "1.0.105", features = [ "derive" ] } | ||
structopt = { version = "0.3.12", optional = true } | ||
textwrap = { version = "0.11.0", features = ["term_size"] } | ||
textwrap = { version = "0.11.0", features = [ "term_size" ] } | ||
thiserror = "1.0.20" | ||
toml = { version = "0.5.6", features = ["preserve_order"] } | ||
toml = { version = "0.5.6", features = [ "preserve_order" ] } | ||
os_pipe = "1" | ||
duct = "0.13" | ||
which = "4.4.0" | ||
|
@@ -102,7 +102,7 @@ features = [ | |
"Win32_System_Registry", | ||
"Win32_System_SystemInformation", | ||
"Win32_System_SystemServices", | ||
"Win32_UI_Shell", | ||
"Win32_UI_Shell" | ||
] | ||
|
||
[target."cfg(windows)".build-dependencies] | ||
|