From 3e374a5871ad4099734c85e96ff76cb814cc4ab2 Mon Sep 17 00:00:00 2001 From: Ignacio Serantes Date: Mon, 6 Apr 2026 23:55:29 +0200 Subject: [PATCH] v0.9.17 --- bagheeraview.py | 2 +- changelog.txt | 6 ++++++ constants.py | 2 +- duplicatedialog.py | 5 +++-- setup.py | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/bagheeraview.py b/bagheeraview.py index fcbe027..40fda1f 100755 --- a/bagheeraview.py +++ b/bagheeraview.py @@ -14,7 +14,7 @@ Classes: MainWindow: The main application window containing the thumbnail grid and docks. """ __appname__ = "BagheeraView" -__version__ = "0.9.16" +__version__ = "0.9.17" __author__ = "Ignacio Serantes" __email__ = "kde@aynoa.net" __license__ = "LGPL" diff --git a/changelog.txt b/changelog.txt index 627411b..09f153b 100644 --- a/changelog.txt +++ b/changelog.txt @@ -67,6 +67,12 @@ Ahora que la carga es rápida, ¿cómo puedo implementar una precarga inteligent ¿Cómo puedo hacer que la selección de archivos sea persistente incluso después de recargar o filtrar la vista? +v0.9.17 - +· Fixes + +v0.9.16 - +· Fixes + v0.9.15 - · Duplicates diff --git a/constants.py b/constants.py index cd04a01..69d8ac9 100644 --- a/constants.py +++ b/constants.py @@ -29,7 +29,7 @@ if FORCE_X11: # --- CONFIGURATION --- PROG_NAME = "Bagheera Image Viewer" PROG_ID = "bagheeraview" -PROG_VERSION = "0.9.16" +PROG_VERSION = "0.9.17" PROG_AUTHOR = "Ignacio Serantes" # --- CACHE SETTINGS --- diff --git a/duplicatedialog.py b/duplicatedialog.py index e747c4d..fddefc7 100644 --- a/duplicatedialog.py +++ b/duplicatedialog.py @@ -216,8 +216,9 @@ class DuplicateManagerDialog(QDialog): event.accept() return elif key == Qt.Key_O: - self._keep_both() - event.accept() + if not self.review_mode: + self._keep_both() + event.accept() return elif key == Qt.Key_P: self._skip() diff --git a/setup.py b/setup.py index 72bb8f2..fdee182 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name="bagheeraview", - version="0.9.16", + version="0.9.17", author="Ignacio Serantes", description="Bagheera Image Viewer - An image viewer for KDE with Baloo in mind", long_description="A fast image viewer built with PySide6, featuring search and "