diff --git a/pack_assets.sh b/pack_assets.sh index a56c37e..23dea6a 100755 --- a/pack_assets.sh +++ b/pack_assets.sh @@ -1,3 +1,4 @@ #!/bin/bash rm -fr data.tar.zst | true -tar -I 'zstd --ultra -22' -cf data.tar.zst assets/*.* \ No newline at end of file +cd assets +tar -I 'zstd --ultra -22' -cf ../data.tar.zst *.* \ No newline at end of file diff --git a/src/egui_app.rs b/src/egui_app.rs index 16cd281..7f44d67 100644 --- a/src/egui_app.rs +++ b/src/egui_app.rs @@ -425,7 +425,7 @@ impl epi::App for MathApp { fn setup(&mut self, _ctx: &Context, _frame: &Frame, _storage: Option<&dyn Storage>) { #[cfg(target_arch = "wasm32")] stop_loading(); - log_helper("Initialized."); + log_helper("egui app initialized."); } // Called each time the UI needs repainting, which may be many times per second.