Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though
This commit is contained in:
@@ -5,7 +5,7 @@ mod telemetry;
|
||||
#[cfg(windows)]
|
||||
mod windows;
|
||||
|
||||
use warpui::{Entity, ModelContext, SingletonEntity};
|
||||
use galaxyui::{Entity, ModelContext, SingletonEntity};
|
||||
|
||||
/// Singleton model that reports the currently running antivirus software.
|
||||
#[derive(Debug, Clone)]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
use serde_json::{json, Value};
|
||||
use strum_macros::EnumDiscriminants;
|
||||
use strum_macros::EnumIter;
|
||||
use warp_core::telemetry::{EnablementState, TelemetryEvent, TelemetryEventDesc};
|
||||
use galaxy_core::telemetry::{EnablementState, TelemetryEvent, TelemetryEventDesc};
|
||||
|
||||
#[derive(Debug, EnumDiscriminants)]
|
||||
#[strum_discriminants(derive(EnumIter))]
|
||||
@@ -38,7 +38,7 @@ impl TelemetryEvent for AntivirusInfoTelemetryEvent {
|
||||
}
|
||||
|
||||
fn event_descs() -> impl Iterator<Item = Box<dyn TelemetryEventDesc>> {
|
||||
warp_core::telemetry::enum_events::<Self>()
|
||||
galaxy_core::telemetry::enum_events::<Self>()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -66,4 +66,4 @@ impl TelemetryEventDesc for AntivirusInfoTelemetryEventDiscriminants {
|
||||
}
|
||||
}
|
||||
|
||||
warp_core::register_telemetry_event!(AntivirusInfoTelemetryEvent);
|
||||
galaxy_core::register_telemetry_event!(AntivirusInfoTelemetryEvent);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
use crate::antivirus::telemetry::AntivirusInfoTelemetryEvent;
|
||||
use crate::antivirus::{AntivirusInfo, AntivirusInfoEvent};
|
||||
use warp_core::send_telemetry_from_ctx;
|
||||
use warpui::ModelContext;
|
||||
use galaxy_core::send_telemetry_from_ctx;
|
||||
use galaxyui::ModelContext;
|
||||
use windows::Win32::System::Com::{
|
||||
CoCreateInstance, CoInitializeEx, CoUninitialize, CLSCTX_ALL, COINIT_APARTMENTTHREADED,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user