summaryrefslogtreecommitdiffstats
path: root/movieinfopage.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Set minimum height of movieinfopageArno2024-06-261-0/+1
| | | | | Without this the new movie wizard ist too small, so use a completely arbitrary value of 512.
* Extract more metadata from originalArno2024-06-261-12/+27
| | | | | | If the metadata tag creation_time exists in the original, use it to determine the release year. To avoid calling ffprobe twice, do it on movieinfopage and pass the value along by a registered field.
* Fix titleArno2023-06-241-0/+1
| | | | When we have to use the filename for title, replace dots with spaces.
* Enhance movie title detectionArno2023-03-041-1/+7
| | | | If there is no title in the container, use the filename instead.
* Make it run with Qt6Arno2022-04-151-7/+5
| | | | | | | | | This is a huge commit. Changes: * Obviously, make it compile * Make it run (only scarcely tested) * get rid of most of clang's warnings Let's see what surprises are in store...
* Fix guessOld()Arno2021-05-281-1/+2
| | | | | The filename was never compared to the current index, so everything was appended to the first match. Fix it by adding the needed comparison.
* Fix old files detectionArno2020-07-291-2/+2
| | | | | There was a long standing issue with filenames containing special characters for regular expressions. Finally fix this!
* Improve MovieInfoPageArno2018-11-241-6/+10
| | | | | | Replace QPushButtons with a QToolbar and appropriate unicode symbols. While at at, return from Helper::fuzzyCheck when the search string is empty. Prevents false positives.
* Move fuzzyCheck to Helper namespaceArno2018-11-031-11/+1
|
* Implement fuzzy check for subtitlesArno2018-11-031-3/+39
| | | | | | | | Query the database for a version of the new subtitle converted to lower and some special characters replaced. For now those chars are '[ .,''!-]' This should give us a good approximation if we already have a subtitle like that.
* Use new connect syntax in MovieInfoPageArno2018-11-031-12/+12
| | | | While at it, make some QPushButtons local instead of member variables.
* Put MovieInfoPage into separate fileArno2018-11-031-0/+307
Lots of code shuffle and headers cleanup, but no functional changes.