refactor(viewer): rename app to "mm" and improve navigation features
Some checks failed
build / checks-matrix (push) Successful in 19m24s
build / codecov (push) Failing after 19m34s
docs / docs (push) Has been cancelled
build / checks-build (push) Has been cancelled

This commit is contained in:
uttarayan21
2025-10-08 00:11:38 +05:30
parent 4608309c7e
commit e205c60187
4 changed files with 86 additions and 46 deletions

View File

@@ -23,6 +23,7 @@ pub fn main() -> Result<()> {
fn walker(input: impl AsRef<Path>) -> Vec<PathBuf> {
let mut tb = ignore::types::TypesBuilder::new();
tb.add("image", "*.jpg").expect("Failed to add image type");
tb.add("image", "*.png").expect("Failed to add image type");
ignore::WalkBuilder::new(input)
.types(
tb.select("image")