diff --git a/Cargo.lock b/Cargo.lock index 0e4de6a..d4a1d7c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -981,7 +981,7 @@ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" [[package]] name = "isideload" -version = "0.1.19" +version = "0.1.20" dependencies = [ "hex", "idevice", diff --git a/README.md b/README.md index cd9c39b..165fa26 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ To use isideload, add the following to your `Cargo.toml`: ```toml [dependencies] # Make sure to use the latest version -isideload = { version = "0.1.18", features = ["vendored-openssl"] }# Optionally, the vendored feature can be enabled to avoid needing OpenSSL installed on your system. +isideload = { version = "0.1.20", features = ["vendored-openssl"] }# Optionally, the vendored feature can be enabled to avoid needing OpenSSL installed on your system. idevice = { version = "0.1.46", features = ["usbmuxd", "ring"], default-features = false} # Reccomended to disable default features and enable ring to reduce the number of ssl stacks used ``` diff --git a/isideload/Cargo.toml b/isideload/Cargo.toml index 52ee311..17f23a9 100644 --- a/isideload/Cargo.toml +++ b/isideload/Cargo.toml @@ -3,7 +3,7 @@ name = "isideload" description = "Sideload iOS/iPadOS applications" license = "MPL-2.0" authors = ["Nicholas Sharp "] -version = "0.1.19" +version = "0.1.20" edition = "2024" repository = "https://github.com/nab138/isideload" documentation = "https://docs.rs/isideload" diff --git a/isideload/src/lib.rs b/isideload/src/lib.rs index 8de42e6..698bd75 100644 --- a/isideload/src/lib.rs +++ b/isideload/src/lib.rs @@ -103,4 +103,9 @@ impl<'a> SideloadConfiguration<'a> { self.revoke_cert = revoke_cert; self } + + pub fn set_force_sidestore_app_group(mut self, force: bool) -> Self { + self.force_sidestore_app_group = force; + self + } }