6.2 KiB
6.2 KiB
Changelog
0.3.x
0.3.4: Features Finalized
- Core Features Completed:
- All functions are now available, though minor bugs may exist.
- GUI State:
- Interface is in a polished state but still needs refinement.
Implemented Features:
- Image Processing:
- Resizing
- Renaming with order adjustment
- Grayscale conversion
- Brightness adjustment
- Contrast adjustment
- EXIF Management:
- Copy EXIF data
- Add custom EXIF information
- Add GPS data
- Add date to EXIF
- Watermarking:
- Watermark functionality is now finalized and no longer experimental.
0.3.3: Exif implemented
- New EXIF settings tab in the GUI.
- Popup window for editing EXIF data.
- Added options for:
- Adding date to EXIF.
- Adding GPS coordinates to EXIF.
0.3.2: New ui
- Major overhaul of the gui
- Adding preview to readme
- All options on the first tab work
- Watermark still experimentel, font selecting will be added
- Second tab is for exif control, copy option works already
0.3.1: license change
- Changed license from CC BY-NC 4.0 to AGPL-3.0.
0.3.0: Qt GUI Transition (PySide6)
- Shifted from a TUI approach to a GUI-based layout.
- Adopted PySide6 for the GUI and Qt Designer for designing layouts.
- Introduced a proof-of-concept UI, and adding own exif does not work
- Watermark is still in testing / alpha
- Original TUI version was forked and is still aviable, currently this branch includes the TUI version until the next minor version change.
0.2.x
0.2.1: Merge from TUI fork
- Ensure watermark is white with black borders.
0.2.0
- Cleaner folder structure
- Moving files with classes to different folder to keep project cleaner.
0.1.x
0.1.1
- Add Original to add Timestamp to Images
- Introduced an option to add the original timestamp to images. Some programs use timestamps rather than file names to determine order, also enables a timeline-like organization for images.
- Improved Font Handling
- Instead of terminating the process when a font is not found, the program now skips the operation gracefully.
- Input Validation
- Added checks for input types, including strings, floats, and integers, to enhance robustness.
- Save Function Optimization
- Optimized the save function for cleaner code, partially utilizing ChatGPT-generated suggestions.
- Code Formatting
- Improved code structure and formatting for better readability and maintainability.
0.1.0: Core Features Added
- Images are modified through all selected options without saving, reducing quality degradation and saving local storage.
- All core features are available:
- Simple TUI including options for selecting:
- Resize
- Change EXIF (with options from exif_options.yaml), copy original or leave empty
- Convert to grayscale
- Change contrast
- Change brightness
- Rename images (numbers are added automatically at the end)
- Invert image order (so that the first image gets the last number and the last image gets the first; this is useful when the original numbering is reversed, which often happens when scanning 35mm film).
- Add watermark (Experimental, requires the correct font to be installed)
- Settings via YAML:
- At the start of the program, the user is asked to save default values, such as JPG quality, resize options, and more. This way, the settings don't have to be entered at every start. Upon starting, the user is prompted to confirm whether they want to keep the current settings from the settings file.
- Options for changing EXIF data are saved in exif_options.yaml. Here, you can enter all the models, lenses, etc., you would like to select within the program.
0.0.x
0.0.3: Enhanced Functionality - now useable
- New Image Modification Functions:
- Added support for Grayscale conversion.
- Introduced Brightness adjustment.
- Enhanced with Contrast adjustment.
- New User Selection/Settings Features:
- Default values for settings can now be saved, such as:
- JPEG quality.
- PNG compression.
- Additional optimization preferences.
- Input folder, output folder, and file type are requested for every session.
- Progress Bar for Image Processing:
- Implemented a progress bar to visually track the processing of images.
0.0.2: Enhanced Functionality
- First Functional Features:
- Introduced the first operational functions, enabling the program to process images based on user input.
- User Interaction:
- Added functionality to prompt users for their desired operations (e.g., resizing and/or changing EXIF data) and gather necessary inputs.
- Image Processing Pipeline:
- The program now traverses a folder, opens images, applies modifications, and saves the processed files to the specified output location.
- EXIF Handling:
- If EXIF changes are not desired, the program offers an option to copy the original EXIF data while adjusting key fields (e.g., image dimensions).
- No Safety Checks Yet:
- Input validation (e.g., verifying folder existence, ensuring numeric input for percentages) is not yet implemented.
- Foundation for Future Features:
- The groundwork allows for seamless addition of new image processing functions, leveraging the main class and TUI structure.
Version 0.0.1: Initial Setup
- Foundation Work:
- Established the groundwork for the project, focusing on testing and selecting the most effective tools. Transitioned from PyExifTool and Wand to Pillow and Piexif to minimize dependencies and streamline usability.
- Proof of Concept:
- Conducted extensive testing and developed proof-of-concept functions to evaluate how various libraries integrate and perform.
- TUI Development:
- Opted to use simple_term_menu instead of textual for the terminal-based user interface (TUI), leveraging prior experience to accelerate functional development over interface design.
- AI Exploration:
- Tested local generative AI tools such as OpenCoder and Qwen2-Coder, exploring their potential for future project integration.
- Project Status:
- The majority of work so far focuses on proof-of-concept implementation and experimentation.