diff --git a/PKG-INFO b/PKG-INFO index 8d03e1a..e491b04 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -2,7 +2,7 @@ Metadata-Version: 1.0 Name: SABnzbd Version: 2.2.0Alpha1 Summary: SABnzbd-2.2.0Alpha1 -Home-page: http://sabnzbd.org +Home-page: https://sabnzbd.org Author: The SABnzbd Team Author-email: team@sabnzbd.org License: GNU General Public License 2 (GPL2 or later) diff --git a/README.md b/README.md index 3c41523..154df90 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ SABnzbd is an Open Source Binary Newsreader written in Python. It's totally free, incredibly easy to use, and works practically everywhere. SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an `.nzb`. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction. -If you want to know more you can head over to our website: http://sabnzbd.org. +If you want to know more you can head over to our website: https://sabnzbd.org. ## Resolving Dependencies diff --git a/interfaces/Config/templates/config.tmpl b/interfaces/Config/templates/config.tmpl index 7c88999..ad1f2ac 100644 --- a/interfaces/Config/templates/config.tmpl +++ b/interfaces/Config/templates/config.tmpl @@ -109,7 +109,7 @@ $T('homePage') - http://sabnzbd.org/ + https://sabnzbd.org/ $T('menu-wiki') @@ -117,7 +117,7 @@ $T('menu-forums') - http://forums.sabnzbd.org/ + https://forums.sabnzbd.org/ $T('source') diff --git a/interfaces/Glitter/templates/include_overlays.tmpl b/interfaces/Glitter/templates/include_overlays.tmpl index 505d94a..a935915 100644 --- a/interfaces/Glitter/templates/include_overlays.tmpl +++ b/interfaces/Glitter/templates/include_overlays.tmpl @@ -60,13 +60,13 @@

If anything is not working as expected, or could be improved, let us know!

If you encounter an error, please include the log file (click on ) when contacting us.

General

- SABnzbd Forum
+ SABnzbd Forum
SABnzbd on Github
Translations of SABnzbd
Email bugs@sabnzbd.org

Interface (Glitter)

- Glitter at SABnzbd Forum
+ Glitter at SABnzbd Forum
Email safihre@sabnzbd.org @@ -621,7 +621,7 @@ $T('menu-forums'): - http://forums.sabnzbd.org/ + https://forums.sabnzbd.org/ GitHub: @@ -629,7 +629,7 @@ $T('menu-irc'): - http://www.sabnzbd.org/live-chat/ + https://sabnzbd.org/live-chat.html diff --git a/interfaces/Plush/README.txt b/interfaces/Plush/README.txt index 44bbc6c..12722d9 100644 --- a/interfaces/Plush/README.txt +++ b/interfaces/Plush/README.txt @@ -1,7 +1,7 @@ Plush for SABnzbd 0.6.x | Feb. 21 2010 assembled by pairofdimes - see LICENSE-CC.txt -http://forums.sabnzbd.org contributions welcome +https://forums.sabnzbd.org contributions welcome ====================== THANKS TO CONTRIBUTORS diff --git a/interfaces/Plush/templates/_inc_modals.tmpl b/interfaces/Plush/templates/_inc_modals.tmpl index 1bfe092..638a8b6 100644 --- a/interfaces/Plush/templates/_inc_modals.tmpl +++ b/interfaces/Plush/templates/_inc_modals.tmpl @@ -23,8 +23,8 @@
- - + +
$T('menu-wiki'):$helpuri$help_uri
$T('menu-forums'):http://forums.sabnzbd.org/
$T('menu-irc'):http://www.sabnzbd.org/live-chat/
$T('menu-forums'):https://forums.sabnzbd.org/
$T('menu-irc'):https://sabnzbd.org/live-chat.html

SABnzbd $T('version'): $version

diff --git a/interfaces/smpl/templates/main.tmpl b/interfaces/smpl/templates/main.tmpl index d142c83..f4af2f3 100644 --- a/interfaces/smpl/templates/main.tmpl +++ b/interfaces/smpl/templates/main.tmpl @@ -1134,7 +1134,7 @@ function loadingJSON(){
  • $T('link-shutdown')

  • $T('menu-wiki')
  • -
  • $T('menu-forums')
  • +
  • $T('menu-forums')
  • $T('menu-irc')
  • diff --git a/sabnzbd/interface.py b/sabnzbd/interface.py index 18c711a..a0a6ba2 100644 --- a/sabnzbd/interface.py +++ b/sabnzbd/interface.py @@ -2857,7 +2857,7 @@ def rss_history(url, limit=50, search=None): rss = RSS() rss.channel.title = "SABnzbd History" rss.channel.description = "Overview of completed downloads" - rss.channel.link = "http://sabnzbd.org/" + rss.channel.link = "https://sabnzbd.org/" rss.channel.language = "en" items, _fetched_items, _max_items = build_history(limit=limit, search=search) @@ -2904,7 +2904,7 @@ def rss_warnings(): rss = RSS() rss.channel.title = "SABnzbd Warnings" rss.channel.description = "Overview of warnings/errors" - rss.channel.link = "http://sabnzbd.org/" + rss.channel.link = "https://sabnzbd.org/" rss.channel.language = "en" for warn in sabnzbd.GUIHANDLER.content():