You've already forked AstralRinth
forked from didirus/AstralRinth
Add new mojang args (#9)
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "daedalus"
|
name = "daedalus"
|
||||||
version = "0.1.22"
|
version = "0.1.23"
|
||||||
authors = ["Jai A <jaiagr+gpg@pm.me>"]
|
authors = ["Jai A <jaiagr+gpg@pm.me>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|||||||
@@ -233,8 +233,19 @@ pub struct FeatureRule {
|
|||||||
/// Whether the user is in demo mode
|
/// Whether the user is in demo mode
|
||||||
pub is_demo_user: Option<bool>,
|
pub is_demo_user: Option<bool>,
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
/// Whether the user is using the demo resolution
|
/// Whether the user is using a custom resolution
|
||||||
pub has_demo_resolution: Option<bool>,
|
pub has_custom_resolution: Option<bool>,
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
/// Whether the launcher has quick plays support
|
||||||
|
pub has_quick_plays_support: Option<bool>,
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
/// Whether the instance is being launched to a single-player world
|
||||||
|
pub is_quick_play_singleplayer: Option<bool>,
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
/// Whether the instance is being launched to a multi-player world
|
||||||
|
pub is_quick_play_multiplayer: Option<bool>,
|
||||||
|
/// Whether the instance is being launched to a realms world
|
||||||
|
pub is_quick_play_realms: Option<bool>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg_attr(feature = "bincode", derive(Encode, Decode))]
|
#[cfg_attr(feature = "bincode", derive(Encode, Decode))]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "daedalus_client"
|
name = "daedalus_client"
|
||||||
version = "0.1.22"
|
version = "0.1.23"
|
||||||
authors = ["Jai A <jaiagr+gpg@pm.me>"]
|
authors = ["Jai A <jaiagr+gpg@pm.me>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user