From 39ec9a5372abb2ef23269e9cf8b176e40bdf609d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Djk=C3=A1=C5=A5o?= Date: Fri, 19 Apr 2024 22:08:32 +0200 Subject: [PATCH] remove println at finish --- .gitignore | 1 + Cargo.toml | 4 ++-- src/main.rs | 2 -- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index d19e35b..053db3b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /target +*.log *.webp *.webm *.ogg diff --git a/Cargo.toml b/Cargo.toml index 6a65b90..d0a0cf0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "n-mb" authors = ["Djkáťo "] -version = "1.1.0" +version = "1.1.1" edition = "2021" description = "Simple ffmpeg wrapper to parse files to the most efficient formats within a set size" license = "MIT OR Apache-2.0" @@ -10,7 +10,7 @@ repository = "https://github.com/djkato/n-mb" readme = "README.md" keywords = ["media", "ffmpeg", "cli"] categories = ["command-line-utilities"] -exclude = ["*.mp4", "*.mp3", "*.jpg", "*.ogg", "*.webp", "*.webm"] +exclude = ["*.mp4", "*.mp3", "*.jpg", "*.ogg", "*.webp", "*.webm", "*.log"] [dependencies] anyhow = "1.0.75" diff --git a/src/main.rs b/src/main.rs index a8f3232..960e552 100644 --- a/src/main.rs +++ b/src/main.rs @@ -205,9 +205,7 @@ async fn main() -> anyhow::Result<()> { } }, _ => { - println!("Finished"); command.status = EncodingStatus::Finished; - println!("test"); } }, "continue" => command.status = EncodingStatus::InProgress,