mirror of
https://github.com/Yuyi-Oak/BlueArchiveToolkit.git
synced 2026-07-22 04:15:14 +08:00
feat: add official resource sync pipeline
Add the production-facing official update service and bat-official-sync watch CLI for unattended resource synchronization. Support launcher-resource discovery without installing the launcher, remote marker snapshots, local manifest audit and repair, official seed hash validation, bootstrap caching, richer Addressables coverage, SQLite resource persistence, and FFI JSON helpers.
This commit is contained in:
@@ -32,7 +32,14 @@ async fn main() -> anyhow::Result<()> {
|
||||
println!(" 资源数量: {}", manifest.resources.len());
|
||||
println!(" 资源列表:");
|
||||
for (i, resource) in manifest.resources.iter().enumerate() {
|
||||
println!(" {}. {} ({})", i + 1, resource.path, resource.resource_type);
|
||||
println!(
|
||||
" {}. {} ({}, address={:?}, deps={})",
|
||||
i + 1,
|
||||
resource.path,
|
||||
resource.resource_type,
|
||||
resource.address,
|
||||
resource.dependencies.len()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user