Merge branch 'fix/spelling' into 'main'

fix: fixed misspelling

See merge request CodeByMrFinchum/OptimaLab35!54
This commit is contained in:
Mr Finchum 2025-04-01 16:37:45 +00:00
commit 67b2e46f43
2 changed files with 6 additions and 3 deletions

View file

@ -1,13 +1,16 @@
# Changelog
## 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%.
- 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.
- 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.
### 1.3.1: Fix - Fixed insert exif not working (25.03.27)

View file

@ -152,7 +152,7 @@ class ImageProcessorWorker(QRunnable):
try:
img = self.optima_manager.process_image_object(
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,
resize = self.resize,
grayscale = self.grayscale,