Compare commits

...

3 Commits

Author SHA1 Message Date
Safihre
7974421fa1 Update text files for 3.6.0RC3 2022-05-29 14:34:48 +02:00
Safihre
847a098d4e Update sabyenc3 to 5.4.2 2022-05-29 14:28:55 +02:00
Safihre
eb4de0ae0f Remove helpful warning about new quick-check for release 2022-05-28 20:19:59 +02:00
6 changed files with 14 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
Metadata-Version: 1.0
Name: SABnzbd
Version: 3.6.0RC2
Summary: SABnzbd-3.6.0RC2
Version: 3.6.0RC3
Summary: SABnzbd-3.6.0RC3
Home-page: https://sabnzbd.org
Author: The SABnzbd Team
Author-email: team@sabnzbd.org

View File

@@ -1,6 +1,12 @@
Release Notes - SABnzbd 3.6.0 Release Candidate 1
Release Notes - SABnzbd 3.6.0 Release Candidate 3
=========================================================
## Bugfixes since 3.6.0 Release Candidate 2
- Queue pagination was not shown.
- `.nzb` files were not removed when rejected by pre-queue script.
- Updated `sabyenc3` to include latest fixes.
- Linux: Always perform disk write check.
## Changes since 3.5.3
- Significantly increased performance by using the yEnc-decoding
library of @animetosho. Usenet articles are now decoded using

View File

@@ -1,6 +1,6 @@
# Main requirements
# Note that not all sub-dependencies are listed, but only ones we know could cause trouble
sabyenc3==5.4.1
sabyenc3==5.4.2
cheetah3==3.2.6 # pyup: ignore
cffi==1.15
pycparser==2.21

View File

@@ -50,7 +50,7 @@ RENAMES_FILE = "__renames__"
ATTRIB_FILE = "SABnzbd_attrib"
REPAIR_REQUEST = "repair-all.sab"
SABYENC_VERSION_REQUIRED = "5.4.1"
SABYENC_VERSION_REQUIRED = "5.4.2"
DB_HISTORY_VERSION = 1
DB_HISTORY_NAME = "history%s.db" % DB_HISTORY_VERSION

View File

@@ -1981,13 +1981,8 @@ def quick_check_set(setname: str, nzo: NzbObject) -> bool:
old = quick_check_set_old(setname, nzo)
if new != old:
helpful_warning(
"We are testing a new verification method and on the current job it produced unexpected results. It would "
"help us if you could share this NZB (%s) and the Info/Debug-logging at: bugs@sabnzbd.org or at "
"https://github.com/sabnzbd/sabnzbd/discussions/2160 "
"Disable this warning in Config - Specials - helpful_warnings",
nzo.final_name,
)
# Disabled for 3.6 release
pass
return old

View File

@@ -5,5 +5,5 @@
# You MUST use double quotes (so " and not ')
__version__ = "3.6.0RC2"
__version__ = "3.6.0RC3"
__baseline__ = "unknown"