Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted
Downloads:
29,411
Downloads of v 2.0.0.3934:
315
Last Update:
08 Mar 2016
Package Maintainer(s):
Software Author(s):
- Mark McDowall
- Keivan Beigi
Tags:
pvr p2p filesharing torrent nntpsonarr
This is not the latest version of sonarr available.
Downloads:
29,411
Downloads of v 2.0.0.3934:
315
Maintainer(s):
Software Author(s):
- Mark McDowall
- Keivan Beigi
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
sonarr 2.0.0.3934
This is not the latest version of sonarr available.
All Checks are Passing
2 Passing Test
To install sonarr, run the following command from the command line or from PowerShell:
To upgrade sonarr, run the following command from the command line or from PowerShell:
To uninstall sonarr, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
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://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
choco download sonarr --internalize --version=2.0.0.3934 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade sonarr -y --source="'STEP 3 URL'" [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 sonarr -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure sonarr installed
win_chocolatey:
name: sonarr
state: present
version: 2.0.0.3934
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'sonarr' do
action :install
version '2.0.0.3934'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: sonarr,
Version: 2.0.0.3934,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller sonarr
{
Name = 'sonarr'
Ensure = 'Present'
Version = '2.0.0.3934'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'sonarr':
provider => 'chocolatey',
ensure => '2.0.0.3934',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install sonarr version="2.0.0.3934" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved by moderator ferventcoder on 10 Mar 2016.
Sonarr (formerly NzbDrone) is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sorts and renames them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.
Community
; default environment
DetectHiddenWindows, off
SetControlDelay, 20
; modified environment
#NoEnv
#NoTrayIcon
DetectHiddenText, off
; variables
procName = Nzbdrone.master.exe
winConsole = ahk_class ConsoleWindowClass ahk_exe NzbDrone.Console.exe
; window handling
Process, wait, %procName%, 15
nPID = %ErrorLevel%
if (nPID = 0) {
return
}
Loop {
WinWait, %winConsole%, , 1
WinMinimize, %winConsole%
Process, Exist, %procName%
nPID = %ErrorLevel%
if (nPID = 0) {
break
}
}
$packageName = 'sonarr'
$installerType = 'exe'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$url = 'https://download.sonarr.tv/v2/master/latest/NzbDrone.master.exe'
$checksum = ''
$checksumType = 'sha1'
$validExitCodes = @(0)
$scriptPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$ahkFile = Join-Path $scriptPath "chocolateyInstall.ahk"
$ahkExe = 'AutoHotKey'
Start-Process $ahkExe $ahkFile
Install-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$silentArgs" `
-Url "$url" `
-ValidExitCodes $validExitCodes `
-Checksum "$checksum" `
-ChecksumType "$checksumType"
; default environment
DetectHiddenWindows, off
SetControlDelay, 20
; modified environment
#NoEnv
#NoTrayIcon
DetectHiddenText, off
; variables
winConsole = ahk_class ConsoleWindowClass ahk_exe NzbDrone.Console.exe
; window handling
WinWait, %winConsole%, , 15
WinMinimize, %winConsole%
$packageName = 'sonarr'
$packageSearch = "Sonarr*"
$installerType = 'exe'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$validExitCodes = @(0)
$scriptPath = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
$ahkFile = Join-Path $scriptPath "chocolateyUninstall.ahk"
$ahkExe = 'AutoHotKey'
$ahkRun = "$Env:Temp\$(Get-Random).ahk"
Copy-Item $ahkFile "$ahkRun" -Force
Start-Process $ahkExe $ahkRun
Get-ItemProperty -Path @( 'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' ) `
-ErrorAction:SilentlyContinue `
| Where-Object { $_.DisplayName -like $packageSearch } `
| ForEach-Object { Uninstall-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$($silentArgs)" `
-File "$($_.UninstallString)" `
-ValidExitCodes $validExitCodes }
Remove-Item "$ahkRun" -Force -ErrorAction SilentlyContinue
Log in or click on link to see number of positives.
- NzbDrone.master.exe (29ab5fc4e083) - ## / 55
- sonarr.2.0.0.3934.nupkg (8b7c711d78c3) - ## / 57
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Sonarr 3.0.4.1132-phantom | 4 | Friday, February 26, 2021 | Approved |
Sonarr 3.0.4.1131-phantom | 69 | Sunday, February 21, 2021 | Approved |
Sonarr 3.0.4.1130-phantom | 21 | Wednesday, February 17, 2021 | Approved |
Sonarr 3.0.4.1129-phantom | 4 | Wednesday, February 17, 2021 | Approved |
Sonarr 3.0.4.1126-phantom | 29 | Wednesday, February 10, 2021 | Approved |
Sonarr 3.0.4.1124-phantom | 10 | Tuesday, February 9, 2021 | Approved |
Sonarr 3.0.4.1120-phantom | 15 | Tuesday, February 9, 2021 | Approved |
Sonarr 3.0.4.1119-phantom | 14 | Monday, February 8, 2021 | Approved |
Sonarr 3.0.4.1117-phantom | 19 | Monday, February 8, 2021 | Approved |
Sonarr 3.0.4.1116-phantom | 8 | Monday, February 8, 2021 | Approved |
Sonarr 3.0.4.1113-phantom | 10 | Monday, February 8, 2021 | Approved |
Sonarr 3.0.4.1107-phantom | 13 | Sunday, February 7, 2021 | Approved |
Sonarr 3.0.4.1106-phantom | 19 | Sunday, February 7, 2021 | Approved |
Sonarr 3.0.4.1105-phantom | 13 | Sunday, February 7, 2021 | Approved |
Sonarr 3.0.4.1100-phantom | 25 | Thursday, February 4, 2021 | Approved |
Sonarr 3.0.4.1098-phantom | 14 | Wednesday, February 3, 2021 | Approved |
Sonarr 3.0.4.1096-phantom | 17 | Monday, February 1, 2021 | Approved |
Sonarr 3.0.4.1095-phantom | 18 | Sunday, January 31, 2021 | Approved |
Sonarr 3.0.4.1093-phantom | 17 | Sunday, January 31, 2021 | Approved |
Sonarr 3.0.4.1091-phantom | 28 | Monday, January 25, 2021 | Approved |
Sonarr 3.0.4.1088-phantom | 15 | Sunday, January 24, 2021 | Approved |
Sonarr 3.0.4.1085-phantom | 21 | Sunday, January 24, 2021 | Approved |
Sonarr 3.0.4.1083-phantom | 27 | Thursday, January 21, 2021 | Approved |
Sonarr 3.0.4.1080-phantom | 16 | Thursday, January 21, 2021 | Approved |
Sonarr 3.0.4.1077-phantom | 24 | Sunday, January 17, 2021 | Approved |
Sonarr 3.0.4.1076-phantom | 20 | Sunday, January 17, 2021 | Approved |
Sonarr 3.0.4.1075-phantom | 10 | Sunday, January 17, 2021 | Approved |
Sonarr 3.0.4.1073-phantom | 20 | Saturday, January 16, 2021 | Approved |
Sonarr 3.0.4.1070-phantom | 15 | Friday, January 15, 2021 | Approved |
Sonarr 3.0.4.1069-phantom | 22 | Friday, January 15, 2021 | Approved |
Sonarr 3.0.4.1066-phantom | 16 | Thursday, January 14, 2021 | Approved |
Sonarr 3.0.4.1062-phantom | 19 | Wednesday, January 13, 2021 | Approved |
Sonarr 3.0.4.1061-phantom | 20 | Tuesday, January 12, 2021 | Approved |
Sonarr 3.0.4.1060-phantom | 20 | Sunday, January 10, 2021 | Approved |
Sonarr 3.0.4.1059-phantom | 22 | Thursday, January 7, 2021 | Approved |
Sonarr 3.0.4.1058-phantom | 21 | Tuesday, January 5, 2021 | Approved |
Sonarr 3.0.4.1055-phantom | 16 | Monday, January 4, 2021 | Approved |
Sonarr 3.0.4.1052-phantom | 15 | Monday, January 4, 2021 | Exempted |
Sonarr 3.0.4.1042-phantom | 23 | Thursday, December 31, 2020 | Approved |
Sonarr 3.0.4.1041-phantom | 11 | Wednesday, December 30, 2020 | Approved |
Sonarr 3.0.4.1039-phantom | 25 | Friday, December 25, 2020 | Approved |
Sonarr 3.0.4.1035-phantom | 16 | Thursday, December 24, 2020 | Approved |
Sonarr 3.0.4.1033-phantom | 28 | Saturday, December 19, 2020 | Approved |
Sonarr 3.0.4.1026-phantom | 25 | Sunday, December 13, 2020 | Approved |
Sonarr 3.0.4.1024-phantom | 31 | Sunday, December 6, 2020 | Approved |
Sonarr 3.0.4.1023-phantom | 26 | Tuesday, December 1, 2020 | Approved |
Sonarr 3.0.4.1021-phantom | 32 | Monday, November 23, 2020 | Approved |
Sonarr 3.0.4.1020-phantom | 16 | Sunday, November 22, 2020 | Approved |
Sonarr 3.0.4.1019-phantom | 17 | Sunday, November 22, 2020 | Approved |
Sonarr 3.0.4.1018-phantom | 11 | Saturday, November 21, 2020 | Approved |
Sonarr 3.0.4.1017-phantom | 9 | Saturday, November 21, 2020 | Approved |
Sonarr 3.0.4.1016-phantom | 11 | Friday, November 20, 2020 | Approved |
Sonarr 3.0.4.1011-phantom | 23 | Wednesday, November 18, 2020 | Approved |
Sonarr 3.0.4.1009-phantom | 17 | Tuesday, November 17, 2020 | Approved |
Sonarr 3.0.4.1006-phantom | 22 | Monday, November 16, 2020 | Approved |
Sonarr 3.0.4.1003-phantom | 18 | Monday, November 16, 2020 | Approved |
Sonarr 3.0.4.1002-phantom | 10 | Sunday, November 15, 2020 | Approved |
Sonarr 3.0.4.1000-phantom | 18 | Sunday, November 15, 2020 | Approved |
Sonarr 3.0.4.999-phantom | 26 | Saturday, November 14, 2020 | Approved |
Sonarr 3.0.4.995-phantom | 17 | Saturday, November 14, 2020 | Approved |
Sonarr 3.0.4.994-phantom | 36 | Monday, November 9, 2020 | Approved |
Sonarr 3.0.4.993-phantom | 26 | Monday, November 2, 2020 | Approved |
Sonarr 3.0.4.991-phantom | 37 | Monday, October 26, 2020 | Approved |
Sonarr 3.0.4.990-phantom | 21 | Monday, October 26, 2020 | Approved |
Sonarr 3.0.4.988-phantom | 20 | Sunday, October 25, 2020 | Approved |
Sonarr 3.0.4.986-phantom | 32 | Monday, October 19, 2020 | Approved |
Sonarr 3.0.4.985-phantom | 28 | Monday, October 19, 2020 | Approved |
Sonarr 3.0.4.983-phantom | 14 | Monday, October 19, 2020 | Approved |
Sonarr 3.0.4.982-phantom | 36 | Tuesday, October 13, 2020 | Approved |
Sonarr 3.0.4.981-phantom | 17 | Tuesday, October 13, 2020 | Approved |
Sonarr 3.0.4.975-phantom | 23 | Monday, October 12, 2020 | Approved |
Sonarr 3.0.3.970-phantom | 36 | Sunday, October 11, 2020 | Approved |
Sonarr 3.0.3.967-phantom | 27 | Saturday, October 10, 2020 | Approved |
Sonarr 3.0.3.965-phantom | 24 | Friday, October 9, 2020 | Approved |
Sonarr 3.0.3.964-phantom | 21 | Friday, October 9, 2020 | Approved |
Sonarr 3.0.3.956-phantom | 29 | Tuesday, October 6, 2020 | Approved |
Sonarr 3.0.3.955-phantom | 19 | Tuesday, October 6, 2020 | Approved |
Sonarr 3.0.3.938-phantom | 35 | Saturday, October 3, 2020 | Approved |
Sonarr 3.0.3.937-phantom | 25 | Thursday, October 1, 2020 | Approved |
Sonarr 3.0.3.935-phantom | 27 | Wednesday, September 30, 2020 | Approved |
Sonarr 3.0.3.928-phantom | 39 | Thursday, September 17, 2020 | Approved |
Sonarr 3.0.3.927-phantom | 23 | Wednesday, September 16, 2020 | Approved |
Sonarr 3.0.3.925-phantom | 17 | Wednesday, September 16, 2020 | Approved |
Sonarr 3.0.3.924-phantom | 28 | Friday, September 11, 2020 | Approved |
Sonarr 3.0.3.913-phantom | 38 | Friday, September 4, 2020 | Approved |
Sonarr 3.0.3.911-phantom | 47 | Monday, August 17, 2020 | Approved |
Sonarr 3.0.3.907-phantom | 35 | Tuesday, August 11, 2020 | Approved |
Sonarr 3.0.3.906-phantom | 43 | Wednesday, August 5, 2020 | Approved |
Sonarr 3.0.3.905-phantom | 32 | Monday, August 3, 2020 | Approved |
Sonarr 3.0.3.904-phantom | 42 | Monday, July 27, 2020 | Approved |
Sonarr 3.0.3.899-phantom | 51 | Friday, July 10, 2020 | Approved |
Sonarr 3.0.3.896-phantom | 52 | Friday, June 26, 2020 | Approved |
Sonarr 3.0.3.895-phantom | 61 | Monday, June 22, 2020 | Approved |
Sonarr 3.0.3.894-phantom | 30 | Monday, June 22, 2020 | Approved |
Sonarr 3.0.3.892-phantom | 43 | Wednesday, June 17, 2020 | Approved |
Sonarr 3.0.3.885-phantom | 54 | Sunday, June 14, 2020 | Approved |
Sonarr 3.0.3.880-phantom | 57 | Wednesday, June 10, 2020 | Approved |
Sonarr 3.0.3.874-phantom | 56 | Tuesday, June 9, 2020 | Approved |
Sonarr 3.0.3.873-phantom | 28 | Monday, June 8, 2020 | Approved |
Sonarr 3.0.3.871-phantom | 34 | Monday, June 8, 2020 | Approved |
Sonarr 3.0.3.868-phantom | 28 | Sunday, June 7, 2020 | Approved |
Sonarr 3.0.3.862-phantom | 46 | Sunday, June 7, 2020 | Approved |
Sonarr 3.0.3.849-phantom | 49 | Wednesday, June 3, 2020 | Approved |
Sonarr 3.0.3.845-phantom | 42 | Tuesday, June 2, 2020 | Approved |
Sonarr 3.0.3.842-phantom | 35 | Monday, June 1, 2020 | Approved |
Sonarr 3.0.3.834-phantom | 57 | Thursday, May 28, 2020 | Approved |
Sonarr 3.0.3.833-phantom | 66 | Monday, May 25, 2020 | Approved |
Sonarr 3.0.3.832-phantom | 51 | Monday, May 25, 2020 | Approved |
Sonarr 3.0.3.830-phantom | 59 | Saturday, May 23, 2020 | Approved |
Sonarr 3.0.3.825-phantom | 58 | Wednesday, May 20, 2020 | Approved |
Sonarr 3.0.3.824-phantom | 58 | Monday, May 18, 2020 | Approved |
Sonarr 3.0.3.822-phantom | 56 | Saturday, May 16, 2020 | Approved |
Sonarr 3.0.3.809-phantom | 72 | Thursday, May 14, 2020 | Approved |
Sonarr 3.0.3.807-phantom | 60 | Wednesday, May 13, 2020 | Approved |
Sonarr 3.0.3.803-phantom | 73 | Sunday, May 10, 2020 | Approved |
Sonarr 3.0.3.790-phantom | 74 | Wednesday, May 6, 2020 | Approved |
Sonarr 3.0.3.789-phantom | 55 | Wednesday, May 6, 2020 | Approved |
Sonarr 3.0.3.784-phantom | 74 | Sunday, May 3, 2020 | Approved |
Sonarr 3.0.3.782-phantom | 65 | Sunday, May 3, 2020 | Approved |
Sonarr 3.0.3.781-phantom | 52 | Saturday, May 2, 2020 | Approved |
Sonarr 3.0.3.780-phantom | 63 | Wednesday, April 29, 2020 | Approved |
Sonarr 3.0.3.779-phantom | 67 | Wednesday, April 29, 2020 | Approved |
Sonarr 3.0.3.778-phantom | 69 | Wednesday, April 29, 2020 | Approved |
Sonarr 3.0.3.777-phantom | 69 | Tuesday, April 28, 2020 | Approved |
Sonarr 3.0.3.776-phantom | 55 | Monday, April 27, 2020 | Approved |
Sonarr 3.0.3.774-phantom | 64 | Monday, April 27, 2020 | Approved |
Sonarr 3.0.3.771-phantom | 66 | Sunday, April 26, 2020 | Approved |
Sonarr 3.0.3.770-phantom | 72 | Tuesday, April 21, 2020 | Approved |
Sonarr 3.0.3.765-phantom | 76 | Monday, April 20, 2020 | Approved |
Sonarr 3.0.3.764-phantom | 69 | Sunday, April 19, 2020 | Approved |
Sonarr 3.0.3.761-phantom | 68 | Saturday, April 18, 2020 | Approved |
Sonarr 3.0.3.757-phantom | 76 | Wednesday, April 15, 2020 | Approved |
Sonarr 3.0.3.754-phantom | 65 | Monday, April 13, 2020 | Approved |
Sonarr 3.0.3.750-phantom | 104 | Tuesday, March 31, 2020 | Approved |
Sonarr 3.0.3.748-phantom | 69 | Monday, March 30, 2020 | Approved |
Sonarr 3.0.3.744-phantom | 62 | Sunday, March 29, 2020 | Approved |
Sonarr 3.0.3.741-phantom | 92 | Monday, March 23, 2020 | Approved |
Sonarr 3.0.3.740-phantom | 65 | Sunday, March 22, 2020 | Approved |
Sonarr 3.0.3.737-phantom | 86 | Friday, March 20, 2020 | Approved |
Sonarr 3.0.3.735-phantom | 71 | Friday, March 20, 2020 | Approved |
Sonarr 3.0.3.731-phantom | 70 | Tuesday, March 17, 2020 | Approved |
Sonarr 3.0.3.729-phantom | 78 | Sunday, March 15, 2020 | Approved |
Sonarr 3.0.3.728-phantom | 80 | Saturday, March 14, 2020 | Approved |
Sonarr 3.0.3.727-phantom | 71 | Friday, March 13, 2020 | Approved |
Sonarr 3.0.3.721-phantom | 80 | Wednesday, March 11, 2020 | Approved |
Sonarr 3.0.3.717-phantom | 78 | Monday, March 9, 2020 | Approved |
Sonarr 3.0.3.713-phantom | 88 | Wednesday, March 4, 2020 | Approved |
Sonarr 3.0.3.711-phantom | 68 | Tuesday, March 3, 2020 | Approved |
Sonarr 3.0.3.707-phantom | 77 | Monday, March 2, 2020 | Approved |
Sonarr 3.0.3.706-phantom | 73 | Monday, March 2, 2020 | Approved |
Sonarr 3.0.3.703-phantom | 86 | Saturday, February 29, 2020 | Approved |
Sonarr 3.0.3.701-phantom | 82 | Saturday, February 22, 2020 | Approved |
Sonarr 3.0.3.698-phantom | 89 | Wednesday, February 12, 2020 | Approved |
Sonarr 3.0.3.690-phantom | 112 | Sunday, February 2, 2020 | Approved |
Sonarr 3.0.3.688-phantom | 125 | Monday, January 13, 2020 | Approved |
Sonarr 3.0.3.687-phantom | 101 | Wednesday, January 8, 2020 | Approved |
Sonarr 3.0.3.685-phantom | 96 | Sunday, January 5, 2020 | Approved |
Sonarr 3.0.3.684-phantom | 67 | Sunday, January 5, 2020 | Approved |
Sonarr 3.0.3.679-phantom | 74 | Monday, December 30, 2019 | Approved |
Sonarr 3.0.3.677-phantom | 82 | Sunday, December 29, 2019 | Approved |
Sonarr 3.0.3.671-phantom | 69 | Wednesday, December 25, 2019 | Exempted |
Sonarr 3.0.3.669-phantom | 81 | Tuesday, December 24, 2019 | Exempted |
Sonarr 3.0.3.668-phantom | 90 | Thursday, December 19, 2019 | Approved |
Sonarr 3.0.3.664-phantom | 108 | Saturday, December 7, 2019 | Approved |
Sonarr 3.0.3.663-phantom | 80 | Saturday, December 7, 2019 | Approved |
Sonarr 3.0.3.661-phantom | 89 | Thursday, December 5, 2019 | Approved |
Sonarr 3.0.3.659-phantom | 90 | Wednesday, November 27, 2019 | Approved |
Sonarr 3.0.3.658-phantom | 82 | Monday, November 25, 2019 | Approved |
Sonarr 3.0.3.657-phantom | 89 | Wednesday, November 20, 2019 | Approved |
Sonarr 3.0.3.655-phantom | 98 | Friday, November 15, 2019 | Approved |
Sonarr 3.0.3.654-phantom | 120 | Friday, November 8, 2019 | Approved |
Sonarr 3.0.3.653-phantom | 91 | Monday, November 4, 2019 | Approved |
Sonarr 3.0.3.652-phantom | 104 | Monday, October 21, 2019 | Approved |
Sonarr 3.0.3.645-phantom | 78 | Saturday, October 19, 2019 | Approved |
Sonarr 3.0.3.644-phantom | 97 | Wednesday, September 18, 2019 | Approved |
Sonarr 3.0.3.638-phantom | 88 | Friday, September 13, 2019 | Approved |
Sonarr 3.0.3.626-phantom | 102 | Wednesday, September 11, 2019 | Approved |
Sonarr 3.0.3.625-phantom | 101 | Tuesday, September 10, 2019 | Approved |
Sonarr 3.0.3.624-phantom | 94 | Saturday, September 7, 2019 | Approved |
Sonarr 3.0.3.622-phantom | 119 | Thursday, September 5, 2019 | Approved |
Sonarr 3.0.3.620-phantom | 104 | Sunday, September 1, 2019 | Approved |
Sonarr 3.0.3.619-phantom | 88 | Sunday, September 1, 2019 | Approved |
Sonarr 3.0.3.618-phantom | 82 | Saturday, August 31, 2019 | Approved |
Sonarr 3.0.3.616-phantom | 111 | Tuesday, August 27, 2019 | Approved |
Sonarr 3.0.3.610-phantom | 100 | Saturday, August 24, 2019 | Approved |
Sonarr 3.0.2.607-phantom | 97 | Friday, August 23, 2019 | Approved |
Sonarr 3.0.2.601-phantom | 104 | Tuesday, August 20, 2019 | Approved |
Sonarr 3.0.2.587-phantom | 96 | Friday, August 16, 2019 | Approved |
Sonarr 3.0.2.584-phantom | 94 | Thursday, August 15, 2019 | Approved |
Sonarr 3.0.2.582-phantom | 103 | Thursday, August 15, 2019 | Approved |
Sonarr 3.0.2.577-phantom | 99 | Tuesday, August 13, 2019 | Approved |
Sonarr 3.0.2.575-phantom | 80 | Monday, August 12, 2019 | Approved |
Sonarr 3.0.2.572-phantom | 100 | Friday, August 9, 2019 | Approved |
Sonarr 3.0.2.570-phantom | 109 | Thursday, August 8, 2019 | Approved |
Sonarr 3.0.2.565-phantom | 111 | Wednesday, August 7, 2019 | Approved |
Sonarr 3.0.2.564-phantom | 78 | Wednesday, August 7, 2019 | Approved |
Sonarr 3.0.2.560-phantom | 85 | Sunday, August 4, 2019 | Approved |
Sonarr 3.0.2.559-phantom | 88 | Saturday, August 3, 2019 | Approved |
Sonarr 3.0.2.553-phantom | 99 | Wednesday, July 31, 2019 | Approved |
Sonarr 3.0.2.552-phantom | 109 | Tuesday, July 30, 2019 | Approved |
Sonarr 3.0.2.551-phantom | 94 | Monday, July 29, 2019 | Approved |
Sonarr 3.0.2.537-phantom | 111 | Thursday, July 18, 2019 | Approved |
Sonarr 3.0.2.536-phantom | 98 | Wednesday, July 17, 2019 | Approved |
Sonarr 3.0.2.535-phantom | 85 | Wednesday, July 17, 2019 | Approved |
Sonarr 3.0.2.531-phantom | 99 | Wednesday, July 17, 2019 | Approved |
Sonarr 3.0.2.529-phantom | 85 | Monday, July 15, 2019 | Approved |
Sonarr 3.0.1.527-phantom | 94 | Wednesday, July 3, 2019 | Approved |
Sonarr 3.0.1.526-phantom | 101 | Monday, July 1, 2019 | Approved |
Sonarr 3.0.1.522-phantom | 112 | Thursday, June 20, 2019 | Approved |
Sonarr 3.0.1.520-phantom | 92 | Sunday, June 16, 2019 | Approved |
Sonarr 3.0.1.517-phantom | 87 | Saturday, June 15, 2019 | Approved |
Sonarr 3.0.1.514-phantom | 117 | Saturday, June 15, 2019 | Approved |
Sonarr 3.0.1.513-phantom | 98 | Wednesday, June 12, 2019 | Approved |
Sonarr 3.0.1.511-phantom | 101 | Tuesday, June 11, 2019 | Approved |
Sonarr 3.0.1.509-phantom | 95 | Monday, June 10, 2019 | Approved |
Sonarr 3.0.1.508-phantom | 114 | Monday, June 10, 2019 | Approved |
Sonarr 3.0.1.506-phantom | 103 | Saturday, June 8, 2019 | Approved |
Sonarr 3.0.1.503-phantom | 132 | Thursday, May 30, 2019 | Approved |
Sonarr 3.0.1.500-phantom | 107 | Thursday, May 23, 2019 | Approved |
Sonarr 3.0.1.499-phantom | 105 | Sunday, May 19, 2019 | Approved |
Sonarr 3.0.1.497-phantom | 98 | Thursday, May 16, 2019 | Approved |
Sonarr 3.0.1.493-phantom | 105 | Monday, May 13, 2019 | Approved |
Sonarr 3.0.1.492-phantom | 93 | Sunday, May 12, 2019 | Approved |
Sonarr 3.0.1.490-phantom | 105 | Thursday, May 9, 2019 | Approved |
Sonarr 3.0.1.486-phantom | 94 | Thursday, May 9, 2019 | Approved |
Sonarr 3.0.1.482-phantom | 116 | Monday, May 6, 2019 | Approved |
Sonarr 3.0.1.478-phantom | 104 | Monday, May 6, 2019 | Approved |
Sonarr 3.0.1.474-phantom | 110 | Sunday, May 5, 2019 | Approved |
Sonarr 3.0.1.473-phantom | 82 | Saturday, May 4, 2019 | Approved |
Sonarr 3.0.1.472-phantom | 111 | Saturday, May 4, 2019 | Approved |
Sonarr 3.0.1.470-phantom | 92 | Saturday, May 4, 2019 | Approved |
Sonarr 3.0.1.467-phantom | 118 | Monday, April 29, 2019 | Approved |
Sonarr 3.0.1.464-phantom | 117 | Sunday, April 28, 2019 | Approved |
Sonarr 3.0.1.458-phantom | 117 | Friday, April 26, 2019 | Approved |
Sonarr 3.0.1.454-phantom | 99 | Thursday, April 25, 2019 | Approved |
Sonarr 3.0.1.453-phantom | 91 | Wednesday, April 24, 2019 | Approved |
Sonarr 3.0.1.449-phantom | 126 | Sunday, April 21, 2019 | Approved |
Sonarr 3.0.1.441-phantom | 102 | Saturday, April 13, 2019 | Approved |
Sonarr 3.0.1.439-phantom | 91 | Friday, April 12, 2019 | Approved |
Sonarr 3.0.1.438-phantom | 122 | Friday, April 12, 2019 | Approved |
Sonarr 3.0.1.435-phantom | 94 | Thursday, April 11, 2019 | Approved |
Sonarr 3.0.1.430-phantom | 92 | Tuesday, April 9, 2019 | Approved |
Sonarr 3.0.1.429-phantom | 102 | Tuesday, April 9, 2019 | Approved |
Sonarr 3.0.1.418-phantom | 96 | Wednesday, March 27, 2019 | Approved |
Sonarr 3.0.1.411-phantom | 110 | Sunday, March 17, 2019 | Approved |
Sonarr 3.0.1.409-phantom | 98 | Saturday, March 16, 2019 | Approved |
Sonarr 3.0.1.408-phantom | 96 | Friday, March 15, 2019 | Approved |
Sonarr 3.0.1.407-phantom | 119 | Thursday, March 14, 2019 | Approved |
Sonarr 3.0.1.406-phantom | 100 | Wednesday, March 13, 2019 | Approved |
Sonarr 3.0.1.403-phantom | 118 | Sunday, March 10, 2019 | Approved |
Sonarr 3.0.1.400-phantom | 99 | Saturday, March 9, 2019 | Approved |
Sonarr 3.0.1.392-phantom | 107 | Thursday, March 7, 2019 | Approved |
Sonarr 3.0.1.390-phantom | 101 | Wednesday, March 6, 2019 | Approved |
Sonarr 3.0.1.388-phantom | 103 | Tuesday, March 5, 2019 | Approved |
Sonarr 3.0.1.384-phantom | 108 | Monday, March 4, 2019 | Approved |
Sonarr 3.0.1.378-phantom | 102 | Sunday, February 24, 2019 | Approved |
Sonarr 3.0.1.376-phantom | 88 | Saturday, February 23, 2019 | Approved |
Sonarr 3.0.1.375-phantom | 77 | Saturday, February 23, 2019 | Approved |
Sonarr 3.0.1.374-phantom | 89 | Thursday, February 21, 2019 | Approved |
Sonarr 3.0.1.373-phantom | 106 | Wednesday, February 20, 2019 | Approved |
Sonarr 3.0.1.371-phantom | 117 | Friday, February 15, 2019 | Approved |
Sonarr 3.0.1.370-phantom | 94 | Wednesday, February 13, 2019 | Approved |
Sonarr 3.0.1.368-phantom | 121 | Friday, February 8, 2019 | Approved |
Sonarr 3.0.1.367-phantom | 71 | Thursday, February 7, 2019 | Approved |
Sonarr 3.0.1.364-phantom | 86 | Tuesday, February 5, 2019 | Approved |
Sonarr 3.0.1.363-phantom | 127 | Tuesday, January 22, 2019 | Exempted |
Sonarr 3.0.1.359-phantom | 127 | Sunday, January 20, 2019 | Exempted |
Sonarr 2.0.0.5344 | 1708 | Saturday, March 14, 2020 | Approved |
Sonarr 2.0.0.5343-beta | 52 | Friday, March 13, 2020 | Approved |
Sonarr 2.0.0.5338 | 1039 | Thursday, August 15, 2019 | Approved |
Sonarr 2.0.0.5337-beta | 82 | Wednesday, July 3, 2019 | Approved |
Sonarr 2.0.0.5322 | 491 | Tuesday, March 26, 2019 | Approved |
Sonarr 2.0.0.5321-beta | 97 | Sunday, March 24, 2019 | Approved |
Sonarr 2.0.0.5320-beta | 92 | Sunday, March 24, 2019 | Approved |
Sonarr 2.0.0.5318-beta | 89 | Monday, March 4, 2019 | Approved |
Sonarr 2.0.0.5303-beta | 96 | Thursday, February 7, 2019 | Approved |
Sonarr 2.0.0.5302-beta | 107 | Monday, February 4, 2019 | Approved |
Sonarr 2.0.0.5301 | 383 | Thursday, January 24, 2019 | Approved |
Sonarr 2.0.0.5298-beta | 132 | Sunday, January 20, 2019 | Approved |
Sonarr 2.0.0.5252 | 187 | Sunday, January 20, 2019 | Approved |
Sonarr 2.0.0.5250 | 492 | Monday, October 8, 2018 | Approved |
Sonarr 2.0.0.5228 | 482 | Sunday, June 24, 2018 | Approved |
Sonarr 2.0.0.5225 | 268 | Tuesday, June 19, 2018 | Approved |
Sonarr 2.0.0.5163 | 459 | Sunday, March 18, 2018 | Approved |
Sonarr 2.0.0.5153 | 317 | Thursday, March 1, 2018 | Approved |
Sonarr 2.0.0.5085 | 401 | Wednesday, December 13, 2017 | Approved |
Sonarr 2.0.0.5054 | 372 | Monday, November 27, 2017 | Approved |
sonarr 2.0.0.4689 | 688 | Thursday, April 6, 2017 | Approved |
sonarr 2.0.0.4645 | 351 | Wednesday, March 8, 2017 | Approved |
sonarr 2.0.0.4613 | 379 | Tuesday, February 21, 2017 | Approved |
sonarr 2.0.0.4472 | 338 | Sunday, January 22, 2017 | Approved |
sonarr 2.0.0.4389 | 441 | Tuesday, November 8, 2016 | Approved |
sonarr 2.0.0.4374 | 324 | Thursday, November 3, 2016 | Approved |
sonarr 2.0.0.4326 | 363 | Thursday, October 20, 2016 | Approved |
sonarr 2.0.0.4146 | 429 | Thursday, May 12, 2016 | Approved |
sonarr 2.0.0.3953 | 335 | Saturday, March 12, 2016 | Approved |
sonarr 2.0.0.3934 | 315 | Tuesday, March 8, 2016 | Approved |
sonarr 2.0.0.3732 | 281 | Sunday, February 21, 2016 | Approved |
© 2010 Mark McDowall, Keivan Beigi
Ground Rules:
- This discussion is only about sonarr and the sonarr 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 sonarr, 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.