mirror of
https://github.com/sabnzbd/sabnzbd.git
synced 2025-12-24 08:08:37 -05:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7974421fa1 | ||
|
|
847a098d4e | ||
|
|
eb4de0ae0f |
4
PKG-INFO
4
PKG-INFO
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
|
||||
@@ -5,5 +5,5 @@
|
||||
|
||||
# You MUST use double quotes (so " and not ')
|
||||
|
||||
__version__ = "3.6.0RC2"
|
||||
__version__ = "3.6.0RC3"
|
||||
__baseline__ = "unknown"
|
||||
|
||||
Reference in New Issue
Block a user