mirror of
https://github.com/sabnzbd/sabnzbd.git
synced 2026-01-18 04:21:04 -05:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fd4e059c13 | ||
|
|
a53575e154 | ||
|
|
4a73484603 | ||
|
|
03b380f90b | ||
|
|
a2bd3b2dfe | ||
|
|
56fe140ebf |
4
PKG-INFO
4
PKG-INFO
@@ -1,7 +1,7 @@
|
||||
Metadata-Version: 1.0
|
||||
Name: SABnzbd
|
||||
Version: 3.5.1
|
||||
Summary: SABnzbd-3.5.1
|
||||
Version: 3.5.2
|
||||
Summary: SABnzbd-3.5.2
|
||||
Home-page: https://sabnzbd.org
|
||||
Author: The SABnzbd Team
|
||||
Author-email: team@sabnzbd.org
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
Release Notes - SABnzbd 3.5.1
|
||||
Release Notes - SABnzbd 3.5.2
|
||||
=========================================================
|
||||
|
||||
## Bugfix since 3.5.1
|
||||
- Reverted change to file assembly that resulted in disk errors.
|
||||
|
||||
## Changes and bugfixes since 3.5.0
|
||||
- Prevent permissions errors on systems that do not support them.
|
||||
- Small changes in file assembly and Direct Unpack processing.
|
||||
|
||||
@@ -302,8 +302,8 @@
|
||||
<option value="M" <!--#if $filter[3]=="M" then 'selected="selected"' else ""#-->> $T('rss-must')</option>
|
||||
<option value="R" <!--#if $filter[3]=="R" then 'selected="selected"' else ""#-->> $T('rss-reject')</option>
|
||||
<option value="C" <!--#if $filter[3]=="C" then 'selected="selected"' else ""#-->> $T('rss-mustcat')</option>
|
||||
<option value=">" <!--#if $filter[3]==">" then 'selected="selected"' else ""#-->> $T('rss-atleast')</option>
|
||||
<option value="<" <!--#if $filter[3]=="<" then 'selected="selected"' else ""#-->> $T('rss-atmost')</option>
|
||||
<option value=">" <!--#if $filter[3]==">" then 'selected="selected"' else ""#-->> $T('rss-atleast')</option>
|
||||
<option value="<" <!--#if $filter[3]=="<" then 'selected="selected"' else ""#-->> $T('rss-atmost')</option>
|
||||
<option value="F" <!--#if $filter[3]=="F" then 'selected="selected"' else ""#-->> $T('rss-from')</option>
|
||||
<option value="S" <!--#if $filter[3]=="S" then 'selected="selected"' else ""#-->> $T('rss-from-show') ($T('rss-accept'))</option>
|
||||
</select>
|
||||
|
||||
@@ -318,6 +318,12 @@ def initialize(pause_downloader=False, clean_up=False, repair=0):
|
||||
cfg.cache_limit.set(misc.get_cache_limit())
|
||||
sabnzbd.ArticleCache.new_limit(cfg.cache_limit.get_int())
|
||||
|
||||
# Notify about the removed support of Prowl/Pushover/Pushbullet
|
||||
if cfg.prowl_enable() or cfg.pushbullet_enable() or cfg.pushover_enable():
|
||||
misc.helpful_warning(
|
||||
"Support for Prowl/Pushover/Pushbullet will be removed in SABnzbd 3.6.0. Please switch to the Notification Script 'nzb-notify' to continue using these services."
|
||||
)
|
||||
|
||||
logging.info("All processes started")
|
||||
sabnzbd.RESTART_REQ = False
|
||||
sabnzbd.__INITIALIZED__ = True
|
||||
|
||||
@@ -215,8 +215,7 @@ class Assembler(Thread):
|
||||
if not nzf.md5:
|
||||
nzf.md5 = hashlib.md5()
|
||||
|
||||
# We write large article-sized chunks, so we can safely skip the buffering of Python
|
||||
with open(nzf.filepath, "ab", buffering=0) as fout:
|
||||
with open(nzf.filepath, "ab") as fout:
|
||||
for article in nzf.decodetable:
|
||||
# Break if deleted during writing
|
||||
if nzf.nzo.status is Status.DELETED:
|
||||
|
||||
@@ -5,5 +5,5 @@
|
||||
|
||||
# You MUST use double quotes (so " and not ')
|
||||
|
||||
__version__ = "3.5.1"
|
||||
__baseline__ = "4b74aab335001a56c62440a8aa47cba510ecb3fa"
|
||||
__version__ = "3.5.2"
|
||||
__baseline__ = "4a73484603f7dc84d2d32f18536a58052c76bc04"
|
||||
|
||||
Reference in New Issue
Block a user