Browse Source

Merge branch 'hotfix/0.23.22'

tags/release_0.23.22^0 release_0.23.22
JackDandy 4 years ago
parent
commit
5d78df6bca
  1. 8
      CHANGES.md
  2. 2
      gui/slick/interfaces/default/config.tmpl
  3. 2
      readme.md
  4. 2
      sickbeard/providers/nebulance.py

8
CHANGES.md

@ -1,4 +1,10 @@
### 0.23.21 (2020-05-17 10:20:00 UTC)
### 0.23.22 (2020-05-27 00:10:00 UTC)
* Change officially move chat support to irc.libera.chat
* Change tweak NBL API tip
### 0.23.21 (2020-05-17 10:20:00 UTC)
* Fix provider Nebulance
* Fix provider MoreThan

2
gui/slick/interfaces/default/config.tmpl

@ -40,7 +40,7 @@
<tr><td class="infoTableHeader">Python Version:</td><td class="infoTableCell">$sys.version[:120]</td></tr>
<tr class="infoTableSeperator"><td class="infoTableHeader"><i class="icon16-sg"></i> Homepage</td><td class="infoTableCell"><a href="<%= anon_url('https://github.com/SickGear/SickGear/wiki') %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;">https://github.com/SickGear/SickGear/wiki</a></td></tr>
<tr><td class="infoTableHeader"><i class="icon16-github"></i> Source</td><td class="infoTableCell"><a href="<%= anon_url('https://github.com/SickGear/SickGear/') %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;">https://github.com/SickGear/SickGear/</a></td></tr>
<tr><td class="infoTableHeader"><i class="icon16-mirc"></i> Internet Relay Chat</td><td class="infoTableCell"><a href="irc://irc.freenode.net/#SickGear" rel="noreferrer"><i>#SickGear</i> on <i>irc.freenode.net</i></a></td></tr>
<tr><td class="infoTableHeader"><i class="icon16-mirc"></i> Internet Relay Chat</td><td class="infoTableCell">web: <a href="<%= anon_url('https://libera.chat/') %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;">Libera.chat</a> irc: <a href="irc://irc.libera.chat/#sickgear" rel="noreferrer"><i>#SickGear</i> on <i>irc.libera.chat</i></a></td></tr>
<tr class="infoTableSeperator"><td class="infoTableHeader">Powered by</td><td class="infoTableCell">Python, HTML5, jQuery, SQLite, Regex, CSS, Javascript, Tornado webserver</td></tr>
<tr><td class="infoTableHeader">&nbsp;</td><td class="infoTableHeader">Huge thanks to Jetbrains for PyCharm IDE, trust them with your development project</td></tr>
<tr><td class="infoTableHeader">Credits to</td><td class="infoTableHeader">Also; TheTVDB, Trakt.tv, TVMaze, Fanart.tv, IMDb, TheXem, srrDB, Predb, and GitHub</td></tr>

2
readme.md

@ -150,7 +150,7 @@ Finally, a massive thanks to all those that remain in the shadows, the quiet one
## Community
* <a href="https://gitter.im/SickGear/"><img src="https://badges.gitter.im/sickgear.svg"></a> web based (most likely one on one with a dev)
* <a name="freenode"><img src="https://img.shields.io/badge/style-join%20chat-blue.svg?style=flat.svg&label=freenode"></a>&nbsp;(`irc.freenode.net` channel `#SickGear`)
* <a name="libera"><img src="https://img.shields.io/badge/style-join%20chat-blue.svg?style=flat.svg&label=irc.libera.chat"></a>&nbsp;(`irc.libera.chat` channel `#sickgear`) Update:2021.05.19 followed freenode staff to new home at libera
Although support is available, you should understand the basics of your OS. If you can't understand locating a db file, not running as root, or setting file permissions, then SickGear might not be for you.

2
sickbeard/providers/nebulance.py

@ -225,7 +225,7 @@ class NebulanceProvider(generic.TorrentProvider):
return ('%s_api_key' % self.get_id()) == key and 'API key' or \
('%s_api_key_tip' % self.get_id()) == key and \
'\'API key\' is at %s %s with "Download" enabled<br>' \
'%s has no result or is not set' \
'%s has no result' \
% (self.name, profile_page,
('and is used if Username/Password', 'Username/Password is used if API')[self.api_priority]) \
or ''

Loading…
Cancel
Save