Compare commits

...

7 Commits
4.0.0 ... 4.0.1

Author SHA1 Message Date
Safihre
1263068140 Set version to 4.0.1 2023-05-01 21:46:30 +02:00
Safihre
916c191b18 Merge branch '4.0.x' 2023-05-01 21:46:02 +02:00
Safihre
d8c0220353 Update text files for 4.0.1 2023-05-01 21:45:27 +02:00
Safihre
4ab425d15c Update appdata for 4.0.1 release 2023-05-01 21:41:48 +02:00
François M
74e5633d1c Add releases tag (#2539)
* Add 3.7.2 release tag

* Add 4.0.0 placeholder
2023-05-01 21:41:37 +02:00
Safihre
89d36bbc61 Update sabctools to 7.0.2 2023-05-01 21:36:32 +02:00
Safihre
1877ac18a5 Show a better crash on Python <3.8 2023-05-01 21:36:23 +02:00
7 changed files with 18 additions and 8 deletions

View File

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

View File

@@ -1,6 +1,9 @@
Release Notes - SABnzbd 4.0.0
Release Notes - SABnzbd 4.0.1
=========================================================
## Bugfixes since 4.0.0
- Windows: Prevent fatal crash on 32bit Windows.
## Changes since 3.7.2
- In this major update we optimized a core part of the SSL handling.
This results in large performance increases when downloading from news

View File

@@ -17,7 +17,9 @@
import sys
if sys.hexversion < 0x03080000:
# Trick to show a better message on older Python
# releases that don't support walrus operator
if Python_38_is_required_to_run_SABnzbd := sys.hexversion < 0x03080000:
print("Sorry, requires Python 3.8 or above")
print("You can read more at: https://sabnzbd.org/wiki/installation/install-off-modules")
sys.exit(1)

View File

@@ -29,6 +29,11 @@
<url type="help">https://sabnzbd.org/wiki/</url>
<url type="faq">https://sabnzbd.org/wiki/faq</url>
<url type="contact">https://sabnzbd.org/live-chat.html</url>
<releases>
<release version="4.0.1" date="2023-05-01" type="stable"/>
<release version="4.0.0" date="2023-04-28" type="stable"/>
<release version="3.7.2" date="2023-02-05" type="stable"/>
</releases>
<launchable type="desktop-id">sabnzbd.desktop</launchable>
<provides>
<mediatype>application/x-nzb</mediatype>

View File

@@ -1,6 +1,6 @@
# Main requirements
# Note that not all sub-dependencies are listed, but only ones we know could cause trouble
sabctools==7.0.1
sabctools==7.0.2
cheetah3==3.2.6.post1
cffi==1.15.1
pycparser==2.21

View File

@@ -49,7 +49,7 @@ RENAMES_FILE = "__renames__"
ATTRIB_FILE = "SABnzbd_attrib"
REPAIR_REQUEST = "repair-all.sab"
SABCTOOLS_VERSION_REQUIRED = "7.0.1"
SABCTOOLS_VERSION_REQUIRED = "7.0.2"
DB_HISTORY_VERSION = 1
DB_HISTORY_NAME = "history%s.db" % DB_HISTORY_VERSION

View File

@@ -5,5 +5,5 @@
# You MUST use double quotes (so " and not ')
__version__ = "4.0.0"
__baseline__ = "c27c9564cf424e898e85fb1e393d6aeadef63deb"
__version__ = "4.0.1"
__baseline__ = "916c191b18195bb0a38e9d638909d9afbc21983d"