Downloads:
54,809
Downloads of v 4.4.0-RC1:
5
Last Update:
02 Dec 2024
Package Maintainer(s):
Software Author(s):
- The SABnzbd-team
Tags:
sabnzbd admin download binary usenet newsreaderSABnzbd
This is a prerelease version of SABnzbd.
- 1
- 2
- 3
4.4.0-RC1 | Updated: 02 Dec 2024
Downloads:
54,809
Downloads of v 4.4.0-RC1:
5
Maintainer(s):
Software Author(s):
- The SABnzbd-team
SABnzbd 4.4.0-RC1
This is a prerelease version of SABnzbd.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by The SABnzbd-team. The inclusion of The SABnzbd-team trademark(s), if any, upon this webpage is solely to identify The SABnzbd-team goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Are Exempted or Have Failed
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install SABnzbd, run the following command from the command line or from PowerShell:
To upgrade SABnzbd, run the following command from the command line or from PowerShell:
To uninstall SABnzbd, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download sabnzbd --internalize --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade sabnzbd -y --source="'INTERNAL REPO URL'" --prerelease [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade sabnzbd -y --source="'INTERNAL REPO URL'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install sabnzbd
win_chocolatey:
name: sabnzbd
version: '4.4.0-RC1'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'sabnzbd' do
action :install
source 'INTERNAL REPO URL'
version '4.4.0-RC1'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller sabnzbd
{
Name = "sabnzbd"
Version = "4.4.0-RC1"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'sabnzbd':
ensure => '4.4.0-RC1',
install_options => ['--prerelease'],
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 02 Dec 2024.
SABnzbd is a program to download binary files from Usenet servers. Many people upload all sorts of interesting material to Usenet and you need a special program to get this material with the least effort.
It runs anywhere
SABnzbd runs on Windows, macOS, Unix and NAS devices. You can access and manage SABnzbd from any device with a webbrowser, including iOS and Android phones and tablets.
Small and large screens
With the responsive Glitter interface, you can access SABnzbd and manage your downloads from any device: desktop, tablet or phone. Others have made Android (nzb360) and iOS (SABmini or nzbUnity) apps to manage SABnzbd.
Integrates with other tools
Apps like Sonarr, Sickrage, Radarr, CouchPotato, Headphones and more can integrate with SABnzbd and automate your download process.
SABnzbd can also read and process RSS feeds, activate custom scripts and notify you.
In 16 languages
SABnzbd now ships with 16 localizations: English, Dansk, Deutsch, Español (castellano), Français, Nederlands, Norsk bokmål, Polski, Português Brasileiro, Româna, Suomi, Svenska, русский язык, српски, עִבְרִית, 简体中文.
SABnzbd is an open-source cross-platform binary newsreader written in Python. It simplifies the process of downloading from Usenet dramatically, thanks to its web-based user interface and advanced built-in post-processing options that automatically verify, repair, extract and clean up posts downloaded from Usenet.
$ErrorActionPreference = 'Stop'
$toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition
# *** Automatically filled ***
$packageName = 'sabnzbd'
$softwareName = 'SABnzbd*'
# *** Automatically filled ***
. "$toolsDir\Get-InstallPath.ps1"
$installPath = Get-InstallPath $packageName $softwareName
if ($installPath) {
Write-Host "Uninstalling service from $installPath..."
'SABnzbd-console.exe', 'SABnzbd-service.exe', 'SABnzbd-helper.exe' `
| ForEach-Object { Join-Path $installPath $_ } `
| Where-Object { Test-Path $_ } `
| ForEach-Object {
Start-ChocolateyProcessAsAdmin -WorkingDirectory $installPath -ExeToRun $_ -Statements 'stop' | Out-Null
Start-ChocolateyProcessAsAdmin -WorkingDirectory $installPath -ExeToRun $_ -Statements 'remove' | Out-Null
}
}
$ErrorActionPreference = 'Stop'
# *** Automatically filled ***
$packageName = 'sabnzbd'
$softwareName = 'SABnzbd*'
$fileType = 'exe'
$silentArgs = '/S'
$validExitCodes = @(0)
# *** Automatically filled ***
[array] $key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
function Get-File ([string] $path) {
# Remove quotes and trailing arguments if any
if (!$path) { return }
if (Test-Path $path) { return $path }
function Split-CommandLine ([string] $path) { $path }
$path = Invoke-Expression "Split-CommandLine $path"
if (Test-Path $path) { return $path }
}
$key | ForEach-Object {
$file = Get-File $_.UninstallString
if ($file) {
Uninstall-ChocolateyPackage -PackageName $packageName `
-FileType $fileType `
-SilentArgs $silentArgs `
-ValidExitCodes $validExitCodes `
-File $file | Out-Null
} else {
Write-Warning "Unknown uninstaller: $($_.UninstallString)"
}
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} else {
Write-Warning "$($key.Count) matches found for $packageName!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please contact package maintainer the following keys were matched:"
$key | ForEach-Object { Write-Warning "- $($_.DisplayName)" }
}
function Get-InstallPath {
[CmdletBinding()]
param(
[string] $PackageName,
[string] $SoftwareName
)
[array] $key = Get-UninstallRegistryKey -SoftwareName $SoftwareName
if ($key.Count -eq 1) {
function Get-File ([string] $path) {
# Remove quotes and trailing arguments if any
if (!$path) { return }
if (Test-Path $path) { return $path }
function Split-CommandLine ([string] $path) { $path }
$path = Invoke-Expression "Split-CommandLine $path"
if (Test-Path $path) { return $path }
}
$key | ForEach-Object {
$file = Get-File $_.UninstallString
$path = if ($file) { Split-Path $file }
if ($path) {
return $path
} else {
Write-Warning "$PackageName install not found: $($_.UninstallString)"
}
}
} elseif ($key.Count -eq 0) {
Write-Warning "$PackageName install not found."
} else {
Write-Warning "$($key.Count) matches found for $PackageName!"
Write-Warning "Please contact package maintainer the following keys were matched:"
$key | ForEach-Object { Write-Warning "- $($_.DisplayName)" }
}
}
Log in or click on link to see number of positives.
- SABnzbd.4.4.0-RC1.nupkg (38ed40a70202) - ## / 65
- SABnzbd-4.4.0RC1-win-setup.exe (802eb944d395) - ## / 70
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
SABnzbd 4.4.0-RC1 | 5 | Monday, December 2, 2024 | Approved | |
SABnzbd 4.4.0-Beta2 | 11 | Tuesday, November 19, 2024 | Approved | |
SABnzbd 4.4.0-Beta1 | 20 | Friday, November 1, 2024 | Approved | |
SABnzbd 4.4.0-Alpha2 | 26 | Tuesday, October 8, 2024 | Approved | |
SABnzbd 4.4.0-Alpha1 | 23 | Friday, September 20, 2024 | Approved | |
SABnzbd 4.3.3 | 1346 | Wednesday, August 21, 2024 | Approved | |
SABnzbd 4.3.3-RC2 | 28 | Saturday, August 17, 2024 | Approved | |
SABnzbd 4.3.3-RC1 | 27 | Tuesday, August 13, 2024 | Approved | |
SABnzbd 4.3.3-Beta2 | 24 | Tuesday, July 16, 2024 | Approved | |
SABnzbd 4.3.3-Beta1 | 36 | Wednesday, July 10, 2024 | Approved | |
SABnzbd 4.3.2 | 1277 | Wednesday, May 29, 2024 | Approved | |
SABnzbd 4.3.2-RC2 | 36 | Thursday, May 23, 2024 | Approved | |
SABnzbd 4.3.2-RC1 | 32 | Friday, May 17, 2024 | Approved | |
SABnzbd 4.3.1 | 621 | Saturday, May 4, 2024 | Approved | |
SABnzbd 4.3.0 | 162 | Thursday, May 2, 2024 | Approved | |
SABnzbd 4.3.0-RC2 | 39 | Wednesday, April 24, 2024 | Approved | |
SABnzbd 4.3.0-RC1 | 39 | Tuesday, April 16, 2024 | Approved | |
SABnzbd 4.3.0-Beta1 | 35 | Friday, March 29, 2024 | Exempted | |
SABnzbd 4.3.0-Alpha1 | 34 | Monday, March 18, 2024 | Approved | |
SABnzbd 4.2.3 | 1175 | Monday, March 11, 2024 | Approved | |
SABnzbd 4.2.3-RC3 | 50 | Monday, March 4, 2024 | Approved | |
SABnzbd 4.2.3-RC2 | 42 | Tuesday, February 27, 2024 | Approved | |
SABnzbd 4.2.3-RC1 | 55 | Tuesday, February 20, 2024 | Approved | |
SABnzbd 4.2.2 | 1090 | Thursday, February 1, 2024 | Approved | |
SABnzbd 4.2.2-RC2 | 40 | Wednesday, January 24, 2024 | Approved | |
SABnzbd 4.2.2-RC1 | 37 | Wednesday, January 17, 2024 | Approved | |
SABnzbd 4.2.2-Beta1 | 34 | Wednesday, January 10, 2024 | Approved | |
SABnzbd 4.2.1 | 1507 | Friday, January 5, 2024 | Approved | |
SABnzbd 4.2.0 | 163 | Wednesday, January 3, 2024 | Approved | |
SABnzbd 4.2.0-RC4 | 37 | Friday, December 29, 2023 | Approved | |
SABnzbd 4.2.0-RC3 | 32 | Wednesday, December 20, 2023 | Approved | |
SABnzbd 4.2.0-RC2 | 37 | Friday, December 15, 2023 | Approved | |
SABnzbd 4.2.0-RC1 | 40 | Friday, December 8, 2023 | Approved | |
SABnzbd 4.2.0-Beta1 | 42 | Wednesday, November 29, 2023 | Approved | |
SABnzbd 4.2.0-Alpha3 | 49 | Wednesday, November 22, 2023 | Approved | |
SABnzbd 4.2.0-Alpha2-20231028 | 62 | Saturday, October 28, 2023 | Approved | |
SABnzbd 4.2.0-Alpha2 | 44 | Friday, October 27, 2023 | Approved | |
SABnzbd 4.2.0-Alpha1-20231016 | 46 | Monday, October 16, 2023 | Approved | |
SABnzbd 4.2.0-Alpha1 | 46 | Sunday, October 15, 2023 | Approved | |
SABnzbd 4.1.0 | 1165 | Tuesday, September 26, 2023 | Approved | |
SABnzbd 4.1.0-RC2 | 42 | Wednesday, September 13, 2023 | Approved | |
SABnzbd 4.1.0-RC1 | 61 | Tuesday, September 12, 2023 | Approved | |
SABnzbd 4.1.0-Beta1 | 51 | Monday, August 28, 2023 | Approved | |
SABnzbd 4.1.0-Alpha1 | 59 | Monday, August 14, 2023 | Approved | |
SABnzbd 4.0.3 | 1204 | Monday, July 10, 2023 | Approved | |
SABnzbd 4.0.3-RC1 | 46 | Friday, June 23, 2023 | Approved | |
SABnzbd 4.0.3-Beta1 | 45 | Saturday, June 17, 2023 | Approved | |
SABnzbd 4.0.2 | 659 | Thursday, June 8, 2023 | Approved | |
SABnzbd 4.0.2-RC2 | 54 | Thursday, June 1, 2023 | Approved | |
SABnzbd 4.0.2-RC1 | 54 | Wednesday, May 24, 2023 | Exempted | |
SABnzbd 4.0.1 | 460 | Tuesday, May 2, 2023 | Approved | |
SABnzbd 4.0.0 | 63 | Friday, April 28, 2023 | Approved | |
SABnzbd 4.0.0-RC1 | 55 | Wednesday, April 19, 2023 | Exempted | |
SABnzbd 4.0.0-Beta2 | 48 | Monday, April 10, 2023 | Exempted | |
SABnzbd 4.0.0-Beta1 | 58 | Friday, March 17, 2023 | Exempted | |
SABnzbd 4.0.0-Alpha3 | 55 | Tuesday, March 7, 2023 | Exempted | |
SABnzbd 4.0.0-Alpha2 | 54 | Thursday, February 23, 2023 | Exempted | |
SABnzbd 4.0.0-Alpha1 | 56 | Sunday, February 19, 2023 | Exempted | |
SABnzbd 3.7.2 | 1687 | Monday, February 6, 2023 | Approved | |
SABnzbd 3.7.2-RC1 | 56 | Tuesday, January 24, 2023 | Exempted | |
SABnzbd 3.7.2-Beta1 | 70 | Sunday, January 15, 2023 | Exempted | |
SABnzbd 3.7.1.20221203-RC1 | 55 | Saturday, December 3, 2022 | Approved | |
SABnzbd 3.7.1-RC1 | 62 | Friday, December 2, 2022 | Approved | |
SABnzbd 3.7.0.20221203 | 1429 | Saturday, December 3, 2022 | Approved | |
SABnzbd 3.7.0 | 510 | Friday, November 4, 2022 | Approved | |
SABnzbd 3.7.0-RC1 | 63 | Thursday, October 27, 2022 | Approved | |
SABnzbd 3.7.0-Beta1 | 64 | Tuesday, October 11, 2022 | Approved | |
SABnzbd 3.7.0-Alpha1 | 60 | Thursday, September 22, 2022 | Approved | |
SABnzbd 3.6.1 | 703 | Thursday, August 18, 2022 | Approved | |
SABnzbd 3.6.1-RC2 | 59 | Saturday, August 13, 2022 | Approved | |
SABnzbd 3.6.1-RC1 | 74 | Thursday, August 4, 2022 | Approved | |
SABnzbd 3.6.0 | 789 | Tuesday, June 7, 2022 | Approved | |
SABnzbd 3.6.0-RC3 | 65 | Sunday, May 29, 2022 | Approved | |
SABnzbd 3.6.0-RC2 | 73 | Thursday, May 19, 2022 | Approved | |
SABnzbd 3.6.0-RC1 | 71 | Thursday, May 12, 2022 | Approved | |
SABnzbd 3.6.0-Beta6 | 81 | Wednesday, May 4, 2022 | Approved | |
SABnzbd 3.6.0-Beta5 | 73 | Wednesday, April 27, 2022 | Approved | |
SABnzbd 3.6.0-Beta4 | 74 | Thursday, April 14, 2022 | Approved | |
SABnzbd 3.6.0-Beta3 | 67 | Saturday, April 9, 2022 | Approved | |
SABnzbd 3.6.0-Beta2 | 74 | Friday, April 1, 2022 | Approved | |
SABnzbd 3.6.0-Beta1 | 107 | Saturday, March 19, 2022 | Approved | |
SABnzbd 3.5.3 | 762 | Thursday, March 17, 2022 | Approved | |
SABnzbd 3.5.3-RC1 | 85 | Sunday, March 13, 2022 | Approved | |
SABnzbd 3.5.2 | 341 | Wednesday, March 9, 2022 | Approved | |
SABnzbd 3.5.1 | 463 | Monday, February 21, 2022 | Approved | |
SABnzbd 3.5.1-RC2 | 89 | Monday, February 14, 2022 | Approved | |
SABnzbd 3.5.1-RC1 | 88 | Friday, February 4, 2022 | Approved | |
SABnzbd 3.5.0 | 548 | Friday, January 28, 2022 | Approved | |
SABnzbd 3.5.0-RC4 | 75 | Tuesday, January 18, 2022 | Exempted | |
SABnzbd 3.5.0-RC3 | 73 | Monday, January 17, 2022 | Approved | |
SABnzbd 3.5.0-RC2 | 95 | Thursday, January 13, 2022 | Approved | |
SABnzbd 3.5.0-RC1 | 81 | Sunday, January 9, 2022 | Approved | |
SABnzbd 3.5.0-Beta3 | 99 | Thursday, December 23, 2021 | Approved | |
SABnzbd 3.5.0-Beta2 | 109 | Tuesday, November 30, 2021 | Exempted | |
SABnzbd 3.5.0-Beta1 | 126 | Saturday, November 20, 2021 | Exempted | |
SABnzbd 3.4.2 | 1007 | Friday, October 15, 2021 | Approved | |
SABnzbd 3.4.2-RC3 | 104 | Friday, October 8, 2021 | Approved | |
SABnzbd 3.4.2-RC2 | 131 | Wednesday, October 6, 2021 | Approved | |
SABnzbd 3.4.2-RC1 | 97 | Thursday, September 30, 2021 | Approved | |
SABnzbd 3.4.1 | 507 | Thursday, September 23, 2021 | Approved | |
SABnzbd 3.4.0 | 314 | Saturday, September 18, 2021 | Approved | |
SABnzbd 3.4.0-RC1 | 86 | Thursday, September 2, 2021 | Approved | |
SABnzbd 3.4.0-Beta2 | 96 | Friday, August 13, 2021 | Approved | |
SABnzbd 3.4.0-Beta1 | 121 | Monday, July 12, 2021 | Approved | |
SABnzbd 3.3.1 | 777 | Friday, June 18, 2021 | Approved | |
SABnzbd 3.3.1-RC1 | 133 | Friday, June 11, 2021 | Approved | |
SABnzbd 3.3.0 | 536 | Tuesday, June 1, 2021 | Approved | |
SABnzbd 3.3.0-RC2 | 108 | Thursday, May 20, 2021 | Approved | |
SABnzbd 3.3.0-RC1 | 112 | Thursday, May 13, 2021 | Approved | |
SABnzbd 3.3.0-Beta4 | 102 | Thursday, May 6, 2021 | Approved | |
SABnzbd 3.3.0-Beta3 | 143 | Thursday, April 29, 2021 | Approved | |
SABnzbd 3.3.0-Beta2 | 103 | Saturday, April 24, 2021 | Approved | |
SABnzbd 3.3.0-Beta1 | 93 | Friday, April 23, 2021 | Approved | |
SABnzbd 3.2.1 | 819 | Wednesday, March 31, 2021 | Approved | |
SABnzbd 3.2.1-RC2 | 121 | Wednesday, March 24, 2021 | Approved | |
SABnzbd 3.2.1-RC1 | 127 | Thursday, March 18, 2021 | Approved | |
SABnzbd 3.2.0 | 757 | Friday, February 26, 2021 | Approved | |
SABnzbd 3.2.0-RC2 | 127 | Tuesday, February 9, 2021 | Approved | |
SABnzbd 3.2.0-RC1 | 137 | Monday, February 1, 2021 | Approved | |
SABnzbd 3.2.0-Beta2 | 134 | Wednesday, January 27, 2021 | Approved | |
SABnzbd 3.2.0-Beta1 | 129 | Monday, January 4, 2021 | Exempted | |
SABnzbd 3.1.1 | 948 | Thursday, November 12, 2020 | Approved | |
SABnzbd 3.1.1-RC1 | 140 | Tuesday, November 3, 2020 | Approved | |
SABnzbd 3.1.0 | 598 | Friday, October 16, 2020 | Approved | |
SABnzbd 3.1.0-RC3 | 153 | Friday, October 2, 2020 | Approved | |
SABnzbd 3.1.0-RC2 | 145 | Sunday, September 27, 2020 | Approved | |
SABnzbd 3.1.0-RC1 | 178 | Saturday, September 19, 2020 | Approved | |
SABnzbd 3.1.0-Beta2 | 177 | Saturday, September 12, 2020 | Approved | |
SABnzbd 3.1.0-Beta1 | 179 | Wednesday, September 2, 2020 | Approved | |
SABnzbd 3.0.2 | 721 | Monday, August 31, 2020 | Approved | |
SABnzbd 3.0.2-RC2 | 184 | Wednesday, August 26, 2020 | Approved | |
SABnzbd 3.0.2-RC1 | 172 | Friday, August 21, 2020 | Approved | |
SABnzbd 3.0.1 | 428 | Tuesday, August 18, 2020 | Approved | |
SABnzbd 3.0.1-RC1 | 152 | Friday, August 7, 2020 | Approved | |
SABnzbd 3.0.0 | 395 | Saturday, August 1, 2020 | Approved | |
SABnzbd 3.0.0-RC2 | 172 | Wednesday, July 15, 2020 | Approved | |
SABnzbd 3.0.0-RC1 | 182 | Friday, June 26, 2020 | Approved | |
SABnzbd 3.0.0-Beta4 | 172 | Wednesday, June 17, 2020 | Approved | |
SABnzbd 3.0.0-Beta3 | 169 | Sunday, June 14, 2020 | Approved | |
SABnzbd 3.0.0-Beta2 | 174 | Monday, June 1, 2020 | Approved | |
SABnzbd 3.0.0-Beta1 | 187 | Wednesday, May 27, 2020 | Approved | |
SABnzbd 3.0.0-Alpha2 | 185 | Friday, May 8, 2020 | Approved | |
SABnzbd 3.0.0-Alpha1 | 202 | Wednesday, April 29, 2020 | Approved | |
SABnzbd 2.3.9 | 2176 | Friday, May 24, 2019 | Approved | |
SABnzbd 2.3.9-RC2 | 246 | Saturday, May 18, 2019 | Approved | |
SABnzbd 2.3.9-RC1 | 272 | Tuesday, May 7, 2019 | Approved | |
SABnzbd 2.3.8 | 651 | Monday, March 18, 2019 | Approved | |
SABnzbd 2.3.8-RC1 | 254 | Wednesday, March 13, 2019 | Approved | |
SABnzbd 2.3.8-Beta1 | 289 | Monday, February 11, 2019 | Approved | |
SABnzbd 2.3.7 | 692 | Saturday, January 12, 2019 | Approved | |
SABnzbd 2.3.7-RC1 | 284 | Friday, January 4, 2019 | Approved | |
SABnzbd 2.3.7-Beta1 | 293 | Monday, December 24, 2018 | Approved | |
SABnzbd 2.3.6 | 507 | Friday, December 21, 2018 | Approved | |
SABnzbd 2.3.6-RC1 | 267 | Tuesday, December 18, 2018 | Approved | |
SABnzbd 2.3.6-Beta1 | 276 | Friday, October 26, 2018 | Approved | |
SABnzbd 2.3.5 | 707 | Friday, September 7, 2018 | Approved | |
SABnzbd 2.3.5-RC2 | 295 | Friday, August 24, 2018 | Approved | |
SABnzbd 2.3.5-RC1 | 319 | Thursday, August 9, 2018 | Approved | |
SABnzbd 2.3.4 | 666 | Friday, May 25, 2018 | Approved | |
SABnzbd 2.3.4-RC1 | 344 | Sunday, May 20, 2018 | Approved | |
SABnzbd 2.3.3 | 419 | Thursday, May 10, 2018 | Approved | |
SABnzbd 2.3.3-RC2 | 407 | Friday, April 13, 2018 | Exempted | |
SABnzbd 2.3.3-RC1 | 413 | Tuesday, March 27, 2018 | Exempted | |
SABnzbd 2.3.3-Beta1 | 392 | Saturday, March 17, 2018 | Approved | |
SABnzbd 2.3.2 | 714 | Friday, December 22, 2017 | Approved | |
SABnzbd 2.3.2-RC2 | 405 | Sunday, December 10, 2017 | Exempted | |
SABnzbd 2.3.2-RC1 | 415 | Sunday, November 26, 2017 | Exempted | |
SABnzbd 2.3.1 | 618 | Friday, October 27, 2017 | Approved | |
SABnzbd 2.3.1-RC2 | 460 | Friday, October 20, 2017 | Exempted | |
SABnzbd 2.3.1-RC1 | 492 | Saturday, October 14, 2017 | Exempted | |
SABnzbd 2.3.1-Beta1 | 480 | Friday, October 6, 2017 | Exempted | |
SABnzbd 2.3.0 | 553 | Thursday, September 28, 2017 | Approved | |
SABnzbd 2.2.1 | 580 | Wednesday, September 6, 2017 | Approved | |
SABnzbd+ 0.7.20 | 1214 | Tuesday, May 26, 2015 | Approved | |
SABnzbd+ 0.7.5 | 1875 | Sunday, November 4, 2012 | Approved | |
SABnzbd+ 0.7.4.1 | 574 | Monday, October 22, 2012 | Approved | |
SABnzbd+ 0.7.4 | 570 | Friday, October 12, 2012 | Approved | |
SABnzbd+ 0.7.3 | 600 | Wednesday, October 10, 2012 | Approved |
Copyright © The SABnzbd-team
Release Notes - SABnzbd 4.4.0 Release Candidate 1
This is the first release candidate of SABnzbd 4.4.0.
New features since 4.3.0
- Subtitle files will be deobfuscated if required.
- Show server
Personal notes
on the main servers display. - Windows: Use par2cmdline-turbo by default (thanks to @dnzbk).
- macOS: Dropped support for macOS 10.12 and below.
- macOS and Windows: Use Python 3.13 for release.
- Windows: The next release will no longer support Windows 32bit or Windows 7.
Bug fixes since 4.3.0
- Toggling of Servers could result in jobs being stuck at 99%.
- Corrupt NZB's could also result in jobs being stuck at 99%.
- Config restart would always determine redirect URL instead of using current.
- Correctly handle
disk full
errors from Unrar. - Create new history database in case of
no such table
error. - Interface could load in tabbed mode even though it was not enabled.
Upgrade notices
- You can directly upgrade from version 3.0.0 and newer.
- Upgrading from older versions will require performing a
Queue repair
. - Downgrading from version 4.2.0 or newer to 3.7.2 or older will require
performing aQueue repair
due to changes in the internal data format.
Known problems and solutions
- Read
ISSUES.txt
or https://sabnzbd.org/wiki/introduction/known-issues
About
SABnzbd is an open-source cross-platform binary newsreader.
It simplifies the process of downloading from Usenet dramatically, thanks to its web-based
user interface and advanced built-in post-processing options that automatically verify, repair,
extract and clean up posts downloaded from Usenet.
(c) Copyright 2007-2024 by The SABnzbd-Team (sabnzbd.org)
This package has no dependencies.
Ground Rules:
- This discussion is only about SABnzbd and the SABnzbd package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or SABnzbd, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.