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
@@ -1274,8 +1274,10 @@ async fn drain_sync_queue(app: &mut App) {
/// syncer will compare against.
fn write_settings_file_with_content(path: &std::path::Path, content: &str) -> String {
std::fs::write(path, content).expect("write temp settings file");
galaxyui_extras::user_preferences::toml_backed::TomlBackedUserPreferences::file_content_hash(path)
.expect("hash should be Some for non-empty file")
galaxyui_extras::user_preferences::toml_backed::TomlBackedUserPreferences::file_content_hash(
path,
)
.expect("hash should be Some for non-empty file")
}
fn read_stored_hash(app: &App) -> Option<String> {