Add metadata source attribution in footer

This commit is contained in:
JackDandy 2023-10-12 11:48:10 +01:00
parent 13c4cd8033
commit 674b17a796
3 changed files with 10 additions and 4 deletions

View file

@ -1,4 +1,9 @@
### 3.30.3 (2023-10-10 07:30:00 UTC) ### 3.30.4 (2023-10-12 11:50:00 UTC)
* Add metadata source attribution in footer
### 3.30.3 (2023-10-10 07:30:00 UTC)
* Change bad anon redirect service for an open source service * Change bad anon redirect service for an open source service

View file

@ -3,7 +3,7 @@
#import sickgear #import sickgear
#from sickgear import db #from sickgear import db
#from sickgear.common import Quality, SKIPPED, WANTED #from sickgear.common import Quality, SKIPPED, WANTED
#from sickgear.helpers import df #from sickgear.helpers import anon_url, df
#from sickgear.webserve import MainHandler #from sickgear.webserve import MainHandler
<% def sg_var(varname, default=False): return getattr(sickgear, varname, default) %>#slurp# <% def sg_var(varname, default=False): return getattr(sickgear, varname, default) %>#slurp#
<% def sg_str(varname, default=''): return getattr(sickgear, varname, default) %>#slurp# <% def sg_str(varname, default=''): return getattr(sickgear, varname, default) %>#slurp#
@ -97,11 +97,12 @@ if min_output:
<td style="text-align:left">$drive[0]</td> <td style="text-align:left">$drive[0]</td>
</tr> </tr>
#end for #end for
</tobdy> </tbody>
</table> </table>
</div> </div>
#end if #end if
#end if #end if
<p style="margin-top:6px">Metadata from <a href=<%= anon_url('https://thetvdb.com') %> rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;">TheTVDB</a>, <a href=<%= anon_url('https://tvmaze.com') %> rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;">TVmaze</a>, and <a href=<%= anon_url('https://tmdb.org') %> rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;">TMDB</a>
</div> </div>
<script> <script>
var footerTimeUrl = '$localRoot/get-footer-time'; var footerTimeUrl = '$localRoot/get-footer-time';

View file

@ -1012,7 +1012,7 @@ class GenericMetadata(object):
): ):
# type: (...) -> Optional[bytes, List[AnyStr]] # type: (...) -> Optional[bytes, List[AnyStr]]
""" """
Gets an image URL from theTVDB.com, fanart.tv and TMDB.com, downloads it and returns the data. Gets an image URL from theTVDB.com, fanart.tv and TMDB.org, downloads it and returns the data.
If type is fanart, multiple image src urls are returned instead of a single data image. If type is fanart, multiple image src urls are returned instead of a single data image.
image_type: type of image to retrieve (currently supported: fanart, poster, banner, poster_thumb, banner_thumb) image_type: type of image to retrieve (currently supported: fanart, poster, banner, poster_thumb, banner_thumb)