Jann Stute
Jann Stute
> (I'm not sure how well that would play with the SQLite database, though.) There shouldn't be any problems with that, as far as I can tell the text can...
The current text based date time picker is planned to be changed to one based on [QDateTimeEdit](https://doc.qt.io/qtforpython-6/PySide6/QtWidgets/QDateTimeEdit.html) which should take care of this issue
Definitely a good idea in my book! This also made me think: Maybe we could make tag suggestions based on the already applied tags. E.g. If an image already has...
Oh sorry I should have been clearer: I meant this as an idea for a differnt feature to help with more complete tagging. So with a partially tagged entry it...
Sorry for the delay on the review had to work on my thesis ^^
I am not sure about the current logic for whether it is outdated or not. Currently if any newer version with a suffix (e.g. `1.2.3-pr1`) is available then the notification...
I have replaced the regex parsing with the semver depency as suggested and have also cleaned up the comparison logic there to be more readable. Also, the update notification modal...
not quite sure why atm the check passes on the PR (incorrect) but not on the commit (correct), but I suspect that review dog is filtering the errors on the...
There are now PRs open for all remaining Pyright errors, once those are merged this PR should be mergable, save for any issues that show up in review.
> As it turns out, this is very easy to do. You just need to change `setWindowModality(Qt.WindowModality.ApplicationModal)` to `setWindowModality(Qt.WindowModality.NonModal)` All such modals have been implemented with the assumption in mind...