Compare commits

...

8 Commits

  1. 2
      ABOUT.txt
  2. 2
      INSTALL.txt
  3. 4
      PKG-INFO
  4. 29
      README.mkd
  5. 3
      SABnzbd.py
  6. 4
      sabnzbd/version.py

2
ABOUT.txt

@ -1,5 +1,5 @@
******************************************* *******************************************
*** This is SABnzbd 2.3.8 *** *** This is SABnzbd 2.3.9 ***
******************************************* *******************************************
SABnzbd is an open-source cross-platform binary newsreader. SABnzbd is an open-source cross-platform binary newsreader.
It simplifies the process of downloading from Usenet dramatically, It simplifies the process of downloading from Usenet dramatically,

2
INSTALL.txt

@ -1,4 +1,4 @@
SABnzbd 2.3.8 SABnzbd 2.3.9
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
0) LICENSE 0) LICENSE

4
PKG-INFO

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

29
README.mkd

@ -1,16 +1,21 @@
Release Notes - SABnzbd 2.3.8 Release Notes - SABnzbd 2.3.9
========================================================= =========================================================
## Improvements and bug fixes since 2.3.7 ## Improvements and bug fixes since 2.3.8
- Changes to newsserver configuration could be delayed - Duplicate job detection would not compare job names
- Filenames would not be sanitized when using "Make Windows compatible" - Propagation delay could show even if it was not configured
- Sorting could fail on root-folders - Ignore Samples deleted all files of jobs containing the words Sample/Proof
- 7z-files were not listed as supported NZB archives - Warning "Unable to stop the unrar process" was shown too often
- SSL cipher settings were ignored during server test - Direct Unpack could hang forever on Unicode downloads
- Windows: update 7zip to 19.00 - Test Download could fail if clicked on the icon instead of the button
- Windows: update MultiPar to v1.3.0.4 - Series Duplicate detection did not always work with Direct Unpack enabled
- Windows and macOS: update Python to 2.7.16 - Adding a job with non-existing category was not set to Default (*) category
- Windows and macOS: update UnRar to 5.70 - Only delete completed jobs from history when using History Retention option
- Renamed Server Load-balancing to Server IP address selection
- Linux: remove sabnzbd.error.log file at start-up if it grew too large
- Windows: double-click delay increased to avoid accidental pausing
- Windows: update MultiPar to v1.3.0.5
- Windows and macOS: update UnRar to 5.71
## Upgrading from 2.2.x and older ## Upgrading from 2.2.x and older
- Finish queue - Finish queue
@ -24,7 +29,7 @@ Release Notes - SABnzbd 2.3.8
URL's that did not finish fetching before the upgrade will be lost. URL's that did not finish fetching before the upgrade will be lost.
- The organization of the download queue is different from 0.7.x releases. - The organization of the download queue is different from 0.7.x releases.
This version will not see the 0.7.x queue, but you can restore the jobs This version will not see the 0.7.x queue, but you can restore the jobs
by going to Status page and using Queue Repair. by going to the Status and Interface Settings window and using Queue Repair.
## Known problems and solutions ## Known problems and solutions
- Read the file "ISSUES.txt" - Read the file "ISSUES.txt"

3
SABnzbd.py

@ -1240,9 +1240,6 @@ def main():
logging.info('Read INI file %s', inifile) logging.info('Read INI file %s', inifile)
# TODO: Temporary warning about Python 3
logging.warning('The develop-branch (which you are using) will soon switch to the Python 3 version of SABnzbd. To continue using the develop-branch you will need to make some setup-changes. The Python 3 version is likely to contain bugs, please report them! You can read more at: https://sabnzbd.org/python3')
if autobrowser is not None: if autobrowser is not None:
sabnzbd.cfg.autobrowser.set(autobrowser) sabnzbd.cfg.autobrowser.set(autobrowser)

4
sabnzbd/version.py

@ -4,5 +4,5 @@
# You MUST use double quotes (so " and not ') # You MUST use double quotes (so " and not ')
__version__ = "2.3.8" __version__ = "2.3.9"
__baseline__ = "83ccc0a765e8b3e1350d89fe4a02b95e17fd059e" __baseline__ = "unknown"

Loading…
Cancel
Save