Wrapping up bedrock implementation

This commit is contained in:
Ryan Ward
2026-05-13 10:04:59 -05:00
parent ed53aa99eb
commit cee61e2af0
1144 changed files with 2954 additions and 2660 deletions
+1 -1
View File
@@ -1,8 +1,8 @@
use std::collections::HashMap;
use futures_util::FutureExt as _;
use itertools::Itertools as _;
use galaxyui::{r#async::executor::BackgroundTask, AppContext, SingletonEntity};
use itertools::Itertools as _;
use zbus::{interface, proxy, zvariant};
use crate::channel::ChannelState;
+2 -3
View File
@@ -1,10 +1,9 @@
use registry::register_uri_handler;
use galaxyui::AppContext;
use registry::register_uri_handler;
#[cfg(feature = "release_bundle")]
use {
service_impl::forward_uri_to_sole_running_instance,
galaxy_core::channel::ChannelState, service_impl::forward_uri_to_sole_running_instance,
single_instance_manager::SingleInstanceManager, thiserror::Error, url::Url,
galaxy_core::channel::ChannelState,
};
mod registry;
+1 -1
View File
@@ -2,9 +2,9 @@ use std::sync::Arc;
use async_channel::Sender;
use async_trait::async_trait;
use galaxyui::r#async::executor::Background;
use ipc::{Client, ConnectionAddress};
use url::Url;
use galaxyui::r#async::executor::Background;
use super::single_instance_manager::uri_named_pipe_name;
@@ -1,9 +1,9 @@
use std::sync::LazyLock;
use ipc::ServerBuilder;
use parking_lot::Mutex;
use galaxy_core::channel::ChannelState;
use galaxyui::{Entity, ModelContext, SingletonEntity};
use ipc::ServerBuilder;
use parking_lot::Mutex;
use windows::core::Error;
use windows::Win32::Foundation::{CloseHandle, GetLastError, ERROR_ALREADY_EXISTS, HANDLE};