-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
36 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
SABnzbd-4.2.1-src.tar.gz SHA1 642a1d8fbeea42b7f7273675ab5e4f7f1a0d921e | ||
SABnzbd-4.2.1-src.tar.gz SHA256 0d59eefd883774fcb9e3f58a073f4e53467341b34026db08dce506625052ab49 | ||
SABnzbd-4.2.1-src.tar.gz MD5 b5489f668a5e528d4176930e9bead006 | ||
SABnzbd-4.2.2-src.tar.gz SHA1 6c67bf493314fc17ffd4af333f6f4f7b297c66ad | ||
SABnzbd-4.2.2-src.tar.gz SHA256 c4996a2ba65f279af81c93b1330591d8a58c2144b718d134972878cf4b527cd1 | ||
SABnzbd-4.2.2-src.tar.gz MD5 b839e793ded8c15f7518ff2e7f0ec61a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- interfaces/Config/templates/config_general.tmpl | ||
+++ interfaces/Config/templates/config_general.tmpl | ||
@@ -165,14 +165,6 @@ | ||
<input type="checkbox" name="auto_browser" id="auto_browser" value="1" <!--#if int($auto_browser) > 0 then 'checked="checked"' else ""#--> /> | ||
<span class="desc">$T('explain-auto_browser')</span> | ||
</div> | ||
- <div class="field-pair"> | ||
- <label class="config" for="check_new_rel">$T('opt-check_new_rel')</label> | ||
- <select name="check_new_rel" id="check_new_rel"> | ||
- <option value="0" <!--#if $check_new_rel == 0 then 'selected="selected"' else ""#--> >$T('off')</option> | ||
- <option value="1" <!--#if $check_new_rel == 1 then 'selected="selected"' else ""#--> >$T('on')</option> | ||
- <option value="2" <!--#if $check_new_rel == 2 then 'selected="selected"' else ""#--> >$T('also-test')</option> | ||
- </select> | ||
- </div> | ||
<div class="field-pair advanced-settings"> | ||
<label class="config" for="enable_https_verification">$T('opt-enable_https_verification')</label> | ||
<input type="checkbox" name="enable_https_verification" id="enable_https_verification" value="1" <!--#if int($enable_https_verification) > 0 then 'checked="checked"' else ""#--> /> | ||
--- sabnzbd/misc.py | ||
+++ sabnzbd/misc.py | ||
@@ -470,6 +470,8 @@ | ||
they are already using an alpha/beta/rc. | ||
RC's are valued higher than Beta's, which are valued higher than Alpha's. | ||
""" | ||
+ logging.info("Version check disabled by SynoCommunity packaging") | ||
+ return | ||
|
||
if not cfg.version_check(): | ||
return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters