This commit is contained in:
Ignacio Serantes
2026-04-06 23:55:29 +02:00
parent 964974431c
commit 3e374a5871
5 changed files with 12 additions and 5 deletions

View File

@@ -14,7 +14,7 @@ Classes:
MainWindow: The main application window containing the thumbnail grid and docks. MainWindow: The main application window containing the thumbnail grid and docks.
""" """
__appname__ = "BagheeraView" __appname__ = "BagheeraView"
__version__ = "0.9.16" __version__ = "0.9.17"
__author__ = "Ignacio Serantes" __author__ = "Ignacio Serantes"
__email__ = "kde@aynoa.net" __email__ = "kde@aynoa.net"
__license__ = "LGPL" __license__ = "LGPL"

View File

@@ -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? ¿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 - v0.9.15 -
· Duplicates · Duplicates

View File

@@ -29,7 +29,7 @@ if FORCE_X11:
# --- CONFIGURATION --- # --- CONFIGURATION ---
PROG_NAME = "Bagheera Image Viewer" PROG_NAME = "Bagheera Image Viewer"
PROG_ID = "bagheeraview" PROG_ID = "bagheeraview"
PROG_VERSION = "0.9.16" PROG_VERSION = "0.9.17"
PROG_AUTHOR = "Ignacio Serantes" PROG_AUTHOR = "Ignacio Serantes"
# --- CACHE SETTINGS --- # --- CACHE SETTINGS ---

View File

@@ -216,8 +216,9 @@ class DuplicateManagerDialog(QDialog):
event.accept() event.accept()
return return
elif key == Qt.Key_O: elif key == Qt.Key_O:
self._keep_both() if not self.review_mode:
event.accept() self._keep_both()
event.accept()
return return
elif key == Qt.Key_P: elif key == Qt.Key_P:
self._skip() self._skip()

View File

@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name="bagheeraview", name="bagheeraview",
version="0.9.16", version="0.9.17",
author="Ignacio Serantes", author="Ignacio Serantes",
description="Bagheera Image Viewer - An image viewer for KDE with Baloo in mind", 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 " long_description="A fast image viewer built with PySide6, featuring search and "