-
Notifications
You must be signed in to change notification settings - Fork 0
Release version 1.1 🐺 #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…rectories on unix based systems
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…ter-with-spinner-and-checkbox 61 implement max file size parameter with spinner and checkbox
… unit tests for validator :)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…ectories and trying to fetch their scans
- New "Active" emoji (🔌 plug-in symbol) - Introduced `ErrorUtils` class to handle and format error messages consistently - "Note" emoji: traffic light → page & pen 📝 - "Baseline Established" emoji: previous unclear emoji → anchor ⚓ - "Include Subdirs" emoji: snowboarder 🏂 → open folder 📂 - Enhanced error dialog details shown when starting a full scan without any active monitored directories
…e in login screen :)
…for-create-user-password-form Implement password complexity validation when creating user and added…
Make comment link ctrl + click able :)
Various small tweaks
Also change utils -> util
- Updated file icons - Adjusted full-scan flow so “Scan with differences” now navigates to the **Recent Diff** tab after user confirmation - Improved live feed accountability and clarity - Added visible diff count to the warning/confirmation dialog after directory scans - Performed minor UI/UX refinements and general cleanup
- Introduced a new RingBuffer class as a circular data structure for efficient data handling. - Integrated the RingBuffer into the `startPollingScanLiveFeed` method in HomeController to reduce memory overhead and improve system performance.
…-and-welcome-message-clarity Improve update note formatting and welcome message clarity
pwgit-create
approved these changes
Nov 18, 2025
Contributor
pwgit-create
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The master branch is seeing positive things!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new configuration option for limiting the maximum file size for hash extraction, updates several dependencies, and improves code quality and logging. The most important changes are summarized below.
New Feature: Maximum Hash Extraction File Size
scanner.max_hash_extraction_file_sizetoapp.configthat allows users to specify the maximum file size (in bytes) for which hash extraction will be performed. The default is-1(unlimited). This is now loaded and accessible viaAppConfigandConfigLoader, with corresponding getter and setter methods. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11]Dependency and Build Updates
pom.xmlto their latest patch versions, includingjackson-databind,logback-classic,junit-jupiter-api,flatlaf,exec-maven-plugin, andmaven-compiler-plugin. [1] [2] [3] [4]1.0to1.1inpom.xml.Code Quality and Logging Improvements
BaseControllerclass to include a logger and added debug logging to lifecycle methods (reloadData,onShow,onCreate). [1] [2] [3] [4] [5]ConfigLoaderand made minor import and formatting cleanups in several files. [1] [2] [3] [4] [5] [6]Metadata and Configuration
metadata.tempandapp.configto reflect the latest modification dates. [1] [2]