mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-07 10:33:38 +00:00
Merge pull request #1018 from JackDandy/feature/ChangeParseBDAVC
Change parse 1080p Bluray AVC/VC1 to a quality instead of unknown.
This commit is contained in:
commit
e140374dd6
2 changed files with 3 additions and 0 deletions
|
@ -137,6 +137,7 @@
|
||||||
* Change use value of "Update shows during hour" in General Settings straight after it is saved instead of after restart
|
* Change use value of "Update shows during hour" in General Settings straight after it is saved instead of after restart
|
||||||
* Change add tips for what to use for Growl notifications on Windows
|
* Change add tips for what to use for Growl notifications on Windows
|
||||||
* Change if a newly added show is not found on indexer, remove already created empty folder
|
* Change if a newly added show is not found on indexer, remove already created empty folder
|
||||||
|
* Change parse 1080p Bluray AVC/VC1 to a quality instead of unknown
|
||||||
|
|
||||||
|
|
||||||
[develop changelog]
|
[develop changelog]
|
||||||
|
|
|
@ -270,6 +270,8 @@ class Quality:
|
||||||
# p2p
|
# p2p
|
||||||
elif checkName(['720HD'], all) and not checkName(['(1080|2160)[pi]'], all):
|
elif checkName(['720HD'], all) and not checkName(['(1080|2160)[pi]'], all):
|
||||||
return Quality.HDTV
|
return Quality.HDTV
|
||||||
|
elif checkName(['1080p', 'blu.?ray|hddvd|b[r|d]rip', 'avc|vc[-\s.]?1'], all):
|
||||||
|
return Quality.FULLHDBLURAY
|
||||||
else:
|
else:
|
||||||
return Quality.UNKNOWN
|
return Quality.UNKNOWN
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue