Skip to content

Commit

Permalink
Updated dependencies (lofty 0.22, ...)
Browse files Browse the repository at this point in the history
  • Loading branch information
martpie committed Jan 6, 2025
1 parent 424947d commit 8670ad6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-log": "2.2.0",
"@tauri-apps/plugin-notification": "2.2.0",
"@tauri-apps/plugin-opener": "^2.2.2",
"@tauri-apps/plugin-opener": "^2.2.3",
"@tauri-apps/plugin-os": "2.2.0",
"classnames": "^2.5.1",
"font-awesome": "^4.7.0",
Expand All @@ -60,7 +60,7 @@
"@types/bun": "^1.1.14",
"@types/lodash": "^4.17.14",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.0.2",
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.2",
"@types/react-fontawesome": "^1.6.8",
"@types/semver": "^7.5.8",
Expand Down
12 changes: 6 additions & 6 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ tauri-plugin-dialog = "2.2.0"
tauri-plugin-fs = "2.2.0"
tauri-plugin-log = { version = "2.2.0", features = ["colored"] }
tauri-plugin-notification = "2.2.0"
tauri-plugin-opener = "2.2.2"
tauri-plugin-opener = "2.2.3"
tauri-plugin-os = "2.2.0"
tauri-plugin-shell = "2.2.0"
tauri-plugin-single-instance = "2.2.0"
Expand All @@ -36,7 +36,7 @@ futures = "0.3.31"
home-config = { version = "0.6.0", features = ["toml"] }
itertools = "0.14.0"
log = "0.4.22"
lofty = "0.21.1"
lofty = "0.22.0"
m3u = "1.0.0"
memoize = "0.4.2"
nosleep = "0.2.1"
Expand Down
4 changes: 2 additions & 2 deletions src-tauri/src/libs/track.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::path::PathBuf;

use lofty::file::{AudioFile, TaggedFileExt};
use lofty::tag::{Accessor, ItemKey};
use log::{error, warn};
use log::warn;
use ormlite::model::Model;
use serde::{Deserialize, Serialize};
use ts_rs::TS;
Expand Down Expand Up @@ -108,7 +108,7 @@ pub fn get_track_id_for_path(path: &PathBuf) -> Option<String> {
.to_string(),
),
Err(err) => {
error!(r#"ID could not be generated for path {:?}: {}"#, path, err);
warn!(r#"ID could not be generated for path {:?}: {}"#, path, err);
None
}
}
Expand Down

0 comments on commit 8670ad6

Please sign in to comment.