diff --git a/dist/renamer-0.8.10-py3-none-any.whl b/dist/renamer-0.8.10-py3-none-any.whl new file mode 100644 index 0000000..aca91ae Binary files /dev/null and b/dist/renamer-0.8.10-py3-none-any.whl differ diff --git a/pyproject.toml b/pyproject.toml index 4a93792..dd26383 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "renamer" -version = "0.8.9" +version = "0.8.10" description = "Terminal-based media file renamer and metadata viewer" readme = "README.md" requires-python = ">=3.11" diff --git a/renamer/app.py b/renamer/app.py index cb52c90..34564ff 100644 --- a/renamer/app.py +++ b/renamer/app.py @@ -185,7 +185,6 @@ class RenamerApp(App): main_container.remove_class("catalog-mode") def scan_files(self): - logging.info("scan_files called") if not self.scan_dir or not self.scan_dir.exists() or not self.scan_dir.is_dir(): details = self.query_one("#details_technical", Static) details.update("Error: Directory does not exist or is not a directory") @@ -238,7 +237,6 @@ class RenamerApp(App): elif item.is_file() and item.suffix.lower() in { f".{ext}" for ext in MEDIA_TYPES }: - logging.info(f"Adding file to tree: {item.name!r} (full path: {item})") # Add file type icon before filename icon = self._get_file_icon(item) label = f"{icon} {escape(item.name)}" diff --git a/uv.lock b/uv.lock index eb297de..e2fa171 100644 --- a/uv.lock +++ b/uv.lock @@ -462,7 +462,7 @@ wheels = [ [[package]] name = "renamer" -version = "0.8.9" +version = "0.8.10" source = { editable = "." } dependencies = [ { name = "langcodes" },