fix: fixed misspelling

This commit is contained in:
Mr Finchum 2025-04-01 18:37:11 +02:00
parent 419dc1eada
commit d4e8a25b1e
2 changed files with 6 additions and 3 deletions

View file

@ -1,13 +1,16 @@
# Changelog # Changelog
## 1.3.x ## 1.3.x
### 1.3.3: Patch Increased Preview Performance x2 ### 1.3.4: Fix - Spelling (25.04.01)
- Fixed misspelling in preview window.
### 1.3.3: Patch Increased Preview Performance x2 (25.04.01)
- Reduced preview stutter: Previously, the image was updated twice when changing brightness or contrast. Now, it updates only once, improving performance by 100%. - Reduced preview stutter: Previously, the image was updated twice when changing brightness or contrast. Now, it updates only once, improving performance by 100%.
- There is still room for improvement. Analysis shows that image processing takes the most time, while displaying in Qt is relatively fast. Reducing the image size impacts performance, so resizing to 50% is a good idea. - There is still room for improvement. Analysis shows that image processing takes the most time, while displaying in Qt is relatively fast. Reducing the image size impacts performance, so resizing to 50% is a good idea.
- There is an issue where `QRunner` does not always finish in the correct order when brightness or contrast values are changed rapidly. ATM I do not know how to fix this easly. - There is an issue where `QRunner` does not always finish in the correct order when brightness or contrast values are changed rapidly. ATM I do not know how to fix this easly.
- The "Preview" watermark now displays the brightness and contrast levels of the shown image. - The "Preview" watermark now displays the brightness and contrast levels of the shown image.
### 1.3.2 Fix - Fixed problem with app folders (25.03.30) ### 1.3.2: Fix - Fixed problem with app folders (25.03.30)
- Fixed a problem that the app folder path was not generated correctly. - Fixed a problem that the app folder path was not generated correctly.
### 1.3.1: Fix - Fixed insert exif not working (25.03.27) ### 1.3.1: Fix - Fixed insert exif not working (25.03.27)

View file

@ -152,7 +152,7 @@ class ImageProcessorWorker(QRunnable):
try: try:
img = self.optima_manager.process_image_object( img = self.optima_manager.process_image_object(
image_input_file = self.path, image_input_file = self.path,
watermark = f"PREVIEW B:{self.brightness} S:{self.contrast}", watermark = f"PREVIEW B:{self.brightness} C:{self.contrast}",
font_size = 1, font_size = 1,
resize = self.resize, resize = self.resize,
grayscale = self.grayscale, grayscale = self.grayscale,