You've already forked AstralRinth
forked from didirus/AstralRinth
Fix syncing, repairing, add edit method (#111)
* Fix syncing, repairing, add edit method * comp err * temp push up * fixes * fix more * add frontend
This commit is contained in:
@@ -148,20 +148,24 @@ impl Drop for LoadingBar {
|
||||
pub enum LoadingBarType {
|
||||
StateInit,
|
||||
PackFileDownload {
|
||||
pack_name: Option<String>,
|
||||
profile_path: PathBuf,
|
||||
pack_name: String,
|
||||
icon: Option<String>,
|
||||
pack_version: String,
|
||||
},
|
||||
PackDownload {
|
||||
profile_path: PathBuf,
|
||||
pack_name: String,
|
||||
icon: Option<PathBuf>,
|
||||
pack_id: Option<String>,
|
||||
pack_version: Option<String>,
|
||||
},
|
||||
MinecraftDownload {
|
||||
profile_uuid: Uuid,
|
||||
profile_path: PathBuf,
|
||||
profile_name: String,
|
||||
},
|
||||
ProfileUpdate {
|
||||
profile_uuid: Uuid,
|
||||
profile_path: PathBuf,
|
||||
profile_name: String,
|
||||
},
|
||||
}
|
||||
@@ -187,6 +191,7 @@ pub struct ProcessPayload {
|
||||
pub message: String,
|
||||
}
|
||||
#[derive(Serialize, Clone, Debug)]
|
||||
#[serde(rename_all = "snake_case")]
|
||||
pub enum ProcessPayloadType {
|
||||
Launched,
|
||||
Updated, // eg: if the MinecraftChild changes to its post-command process instead of the Minecraft process
|
||||
|
||||
Reference in New Issue
Block a user