diff --git a/.changes/fix-js-icon-tauri-info.md b/.changes/fix-js-icon-tauri-info.md new file mode 100644 index 000000000..e0da44656 --- /dev/null +++ b/.changes/fix-js-icon-tauri-info.md @@ -0,0 +1,6 @@ +--- +"tauri-cli": patch:bug +"@tauri-apps/cli": patch:bug +--- + +Replaced the non-standard nerd font character with ` ⱼₛ` in `tarui info` diff --git a/crates/tauri-cli/src/info/packages_nodejs.rs b/crates/tauri-cli/src/info/packages_nodejs.rs index 2efe69b2d..eb4eeebe7 100644 --- a/crates/tauri-cli/src/info/packages_nodejs.rs +++ b/crates/tauri-cli/src/info/packages_nodejs.rs @@ -169,12 +169,12 @@ pub fn nodejs_section_item( .unwrap_or_default(); if version.is_empty() { - format!("{} {}: not installed!", package, "".green()) + format!("{} {}: not installed!", package, " ⱼₛ".black().on_yellow()) } else { format!( "{} {}: {}{}", package, - "".dimmed(), + " ⱼₛ".black().on_yellow(), version, if !(version.is_empty() || latest_ver.is_empty()) { let version = semver::Version::parse(version.as_str()).unwrap();