Updated README

This commit is contained in:
Sayantan Santra 2023-02-07 18:22:47 -06:00
parent 0745539b88
commit 4ee97eb9a5
2 changed files with 2 additions and 1 deletions

View file

@ -4,7 +4,7 @@
### A simple tool to rename movies, written in Rust. ### A simple tool to rename movies, written in Rust.
It turns `Apur Sansar.mkv` into `Apur Sansar (1959) - Satyajit Ray.mkv` using metadata pulled from [TMDb](https://www.themoviedb.org/). It turns `Apur.Sansar.HEVC.2160p.AC3.mkv` into `Apur Sansar (1959) - Satyajit Ray.mkv` using metadata pulled from [TMDb](https://www.themoviedb.org/).
This is made mostly due to [mnamer](https://github.com/jkwill87/mnamer) not having support for director's name, and also because I wanted to try writing something useful in Rust. This is made mostly due to [mnamer](https://github.com/jkwill87/mnamer) not having support for director's name, and also because I wanted to try writing something useful in Rust.

View file

@ -199,6 +199,7 @@ pub fn process_args(mut args: Vec<String>) -> (Vec<String>, HashMap<&'static str
} }
(entries, settings) (entries, settings)
} }
// RenderConfig for the menu items // RenderConfig for the menu items
fn get_render_config() -> RenderConfig { fn get_render_config() -> RenderConfig {
let mut render_config = RenderConfig::default(); let mut render_config = RenderConfig::default();