Skip to content

Commit a44777d

Browse files
committed
chore: increment version number
1 parent 9c03e22 commit a44777d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "msfs-navigation-data-interface"
3-
version = "1.0.0-alpha.1"
3+
version = "1.0.1"
44
edition = "2021"
55

66
[lib]

src/wasm/src/download/zip_handler.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ impl<R: io::Read + io::Seek> ZipFileHandler<R> {
4848

4949
// If we haven't cleaned the destination folder yet, do so now
5050
if !self.cleaned_destination {
51+
println!("[NAVIGRAPH] Cleaning Destination");
5152
util::delete_folder_recursively(&self.path_buf, Some(batch_size))?;
5253
if !util::path_exists(&self.path_buf) {
5354
fs::create_dir_all(&self.path_buf)?;
@@ -56,6 +57,8 @@ impl<R: io::Read + io::Seek> ZipFileHandler<R> {
5657
}
5758
self.deleted += batch_size;
5859
return Ok(BatchReturn::MoreFilesToDelete);
60+
} else {
61+
println!("[NAVIGRAPH] Done Cleaning");
5962
}
6063

6164
let zip_archive = self

0 commit comments

Comments
 (0)