diff --git a/README.md b/README.md index 747328b..91b5744 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ A desktop app integrated with Google's deep learning model [Magika](https://gith - **Powered by a deep learning model from Google's Magika team** - **Run offline locally:** Once you've installed fformat, you may run it without an internet connection. -- **Interactive data table**: After magika detects potential file content types for all of your files, you may view more info about the results. +- **Interactive data table**: After Magika detects potential file content types for all of your files, you may view more info about the results. - **Organized metadata:** Learn about your file's path, potential file content types, and score representing a probability that the file content types is as expected. - **Drag & drop files:** Choose between dropping one or more files simply dragging and dropping them into fformat. - **Light & dark themes:** Toggle your theme by clicking on the sun and moon icon. diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 82d271f..ad1cf3b 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -14,6 +14,12 @@ rust-version = "1.70" name = "app_lib" crate-type = ["staticlib", "cdylib", "rlib"] +[target.'cfg(linux)'.build-dependencies] +tauri-build = { version = "2.0.0-beta.0", features = [] } + +[target.'cfg(linux)'.dependencies] +tauri = { version = "2.0.0-beta.1", features = [] } + [build-dependencies] tauri-build = { version = "2.0.0-beta.2", features = [] } diff --git a/src/components/MagikaProcess.tsx b/src/components/MagikaProcess.tsx index 6887b4f..f51d3a6 100644 --- a/src/components/MagikaProcess.tsx +++ b/src/components/MagikaProcess.tsx @@ -90,7 +90,7 @@ const MagikaProcess = () => { fformat

- Examine file formats + Identify potential file content types

diff --git a/src/components/SideBar/Info.tsx b/src/components/SideBar/Info.tsx index 680c87d..f3873ab 100644 --- a/src/components/SideBar/Info.tsx +++ b/src/components/SideBar/Info.tsx @@ -26,13 +26,17 @@ const Settings = () => { fformat

- Examine file formats on your local device. + Identify potential file content types on your local + device.

    -
  • Not all content types are supported.
  • - Built with magika, Tauri, shadcn/ui, Next.js, Rust, + Not all content types are supported, and inferences + may be inaccurate. +
  • +
  • + Built with Magika, Tauri, shadcn/ui, Next.js, Rust, & TypeScript.