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...
-
STEP1
Package Review
-
STEP2
Integration Method
-
STEP3
Internal Repo Url
-
STEP4
Environment Setup
-
STEP5
Install Script
Step 1: Review Your Packages
Step 2: Choose Your Integration Method
Step 3: Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
Step 3: Copy Your Script or Download Config
Option 1: Copy Script
Option 2: Download Config
Step 4: 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 packages and push them to a repository
Download Packages
-
Open Source
-
Download the packages:
Download Packages - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
-
For package and dependencies run:
- Automate package internalization
-
Run: (additional options)
Step 5: Copy Your Script
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:
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### We initialize a few things that are needed by this script - there are no other requirements.
$ErrorActionPreference = "Stop"
#### Set TLS 1.2 (3072) as that is the minimum required by various up-to-date repositories.
#### Use integers because the enumeration value for TLS 1.2 won't exist
#### in .NET 4.0, even though they are addressable if .NET 4.5+ is
#### installed (.NET 4.5 is an in-place upgrade).
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
#### We use this variable for future REST calls.
$RequestArguments = @{
UseBasicParsing = $true
}
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$NugetRepositoryUrl = "INTERNAL REPO URL"
### b. Internal Repository Credential ###
#### If required, add the repository access credential here
# $NugetRepositoryCredential = [PSCredential]::new(
# "username",
# ("password" | ConvertTo-SecureString -AsPlainText -Force)
# )
# $RequestArguments.Credential = $NugetRepositoryCredential
### c. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it
$ChocolateyDownloadUrl = "$($NugetRepositoryUrl.TrimEnd('/'))/package/chocolatey.1.1.0.nupkg"
### d. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService"
#### ii. If using a Client Salt, add it here
# $ChocolateyCentralManagementClientSalt = "clientsalt"
#### iii. If using a Service Salt, add it here
# $ChocolateyCentralManagementServiceSalt = "servicesalt"
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
#### Download the Nupkg, appending .zip to the filename to handle archive cmdlet limitations
if (-not (Get-Command choco.exe -ErrorAction SilentlyContinue)) {
$TempDirectory = Join-Path $env:Temp "chocolateyInstall"
if (-not (Test-Path $TempDirectory -PathType Container)) {
$null = New-Item -Path $TempDirectory -ItemType Directory
}
$DownloadedNupkg = Join-Path $TempDirectory "$(Split-Path $ChocolateyDownloadUrl -Leaf).zip"
Invoke-WebRequest -Uri $ChocolateyDownloadUrl -OutFile $DownloadedNupkg @RequestArguments
#### Extract the Nupkg, and run the chocolateyInstall script
if (Get-Command Microsoft.PowerShell.Archive\Expand-Archive -ErrorAction SilentlyContinue) {
Microsoft.PowerShell.Archive\Expand-Archive -Path $DownloadedNupkg -DestinationPath $TempDirectory -Force
} else {
# PowerShell versions <4.0 do not have this function available
try {
$shellApplication = New-Object -ComObject Shell.Application
$zipPackage = $shellApplication.NameSpace($DownloadedNupkg)
$destinationFolder = $shellApplication.NameSpace($TempDirectory)
$destinationFolder.CopyHere($zipPackage.Items(), 0x10)
} catch {
Write-Warning "Unable to unzip package using built-in compression."
throw $_
}
}
& $(Join-Path $TempDirectory "tools\chocolateyInstall.ps1")
}
if (-not (Get-Command choco.exe -ErrorAction SilentlyContinue)) {
refreshenv
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# choco feature enable -n useFipsCompliantChecksums
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
choco config set --name cacheLocation --value C:\ProgramData\chocolatey\cache
#### Increase timeout to at least 4 hours
choco config set --name commandExecutionTimeoutSeconds --value 14400
#### Turn off download progress when running choco through integrations
choco feature disable --name showDownloadProgress
### c. Sources ###
#### Remove the default community package repository source
choco source list --limitoutput | ConvertFrom-Csv -Header 'Name', 'Location' -Delimiter '|' | ForEach-Object {
if ($_.Location -eq 'https://community.chocolatey.org/api/v2/') {
choco source remove -n $_.Name
}
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
if ($NugetRepositoryCredential) {
choco source add --name ChocolateyInternal --source $NugetRepositoryUrl --user $NugetRepositoryCredential.UserName --password $NugetRepositoryCredential.GetNetworkCredential().Password --priority 1
} else {
choco source add --name ChocolateyInternal --source $NugetRepositoryUrl --priority 1
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
choco upgrade chocolatey --confirm
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
choco install chocolatey-license --source $NugetRepositoryUrl --confirm
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
if ("chocolatey-license" -in (choco list --localonly --limitoutput | ConvertFrom-Csv -Header "Name" -Delimiter "|").Name) {
choco source disable --name chocolatey.licensed
} else {
Write-Warning "Not disabling 'chocolatey.licensed' feed, as Chocolatey-License has not been installed."
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
if ("chocolatey-license" -in (choco list --localonly --limitoutput | ConvertFrom-Csv -Header "Name" -Delimiter "|").Name) {
choco install chocolatey.extension --source $NugetRepositoryUrl --confirm
} else {
Write-Warning "Not installing 'chocolatey.extension', as Chocolatey-License has not been installed."
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
choco feature disable --name showNonElevatedWarnings
choco feature enable --name useBackgroundService
choco feature enable --name useBackgroundServiceWithNonAdministratorsOnly
choco feature enable --name allowBackgroundServiceUninstallsFromUserInstallsOnly
choco config set --name allowedBackgroundServiceCommands --value "install,upgrade,uninstall"
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if ($ChocolateyCentralManagementUrl) {
choco install chocolatey-agent --source $NugetRepositoryUrl --confirm
choco config set --name CentralManagementServiceUrl --value $ChocolateyCentralManagementUrl
if ($ChocolateyCentralManagementClientSalt) {
choco config set --name centralManagementClientCommunicationSaltAdditivePassword --value $ChocolateyCentralManagementClientSalt
}
if ($ChocolateyCentralManagementServiceSalt) {
choco config set --name centralManagementServiceCommunicationSaltAdditivePassword --value $ChocolateyCentralManagementServiceSalt
}
choco feature enable --name useChocolateyCentralManagement
choco feature enable --name useChocolateyCentralManagementDeployments
}
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. chocolatey.chocolatey
##### You will require the chocolatey.chocolatey collection to be installed
##### on all machines using this playbook.
##### Please see https://github.com/chocolatey/chocolatey-ansible/#installing-the-collection-from-ansible-galaxy
- name: Install and Configure Chocolatey
hosts: all
## 2. TOP LEVEL VARIABLES ##
vars:
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
nuget_repository_url: INTERNAL REPO URL
### b. Internal Repository Credential ###
#### If required, add the repository access credential here and
#### uncomment lines with source_username and source_password below
# nuget_repository_username: username
# nuget_repository_password: password
### c. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# chocolatey_central_management_url: https://chocolatey-central-management:24020/ChocolateyManagementService
#### ii. If using a Client Salt, add it here
# chocolatey_central_management_client_salt: clientsalt
#### iii. If using a Service Salt, add it here
# chocolatey_central_management_service_salt: servicesalt
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
tasks:
- name: Install chocolatey
win_chocolatey:
name: chocolatey
source: {{ nuget_repository_url }}
# source_username: {{ nuget_repository_username }}
# source_password: {{ nuget_repository_password }}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# - name: Enable FIPS compliance
# win_chocolatey_feature:
# name: useFipsCompliantChecksums
# state: enabled
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
- name: Set the cache location
win_chocolatey_config:
name: cacheLocation
state: present
value: C:\ProgramData\chocolatey\cache
#### Increase timeout to at least 4 hours
- name: Set the command execution timeout
win_chocolatey_config:
name: commandExecutionTimeoutSeconds
state: present
value: 14400
#### Turn off download progress when running choco through integrations
- name: Disable showing download progress
win_chocolatey_feature:
name: showDownloadProgress
state: disabled
### c. Sources ###
#### Remove the default community package repository source
- name: Remove Chocolatey Community Repository
win_chocolatey_source:
name: chocolatey
state: absent
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
- name: Add Internal Repository
win_chocolatey_source:
name: ChocolateyInternal
state: present
source: {{ nuget_repository_url }}
# source_username: {{ nuget_repository_username }}
# source_password: {{ nuget_repository_password }}
priority: 1
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
- name: Upgrade Chocolatey
win_chocolatey:
name: chocolatey
state: latest
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
- name: Install Chocolatey License
win_chocolatey:
name: chocolatey-license
source: ChocolateyInternal
state: latest
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
- name: Disable Chocolatey Community Repository
win_chocolatey_source:
name: chocolatey.licensed
state: disabled
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
- name: Install Chocolatey Extension
win_chocolatey:
name: chocolatey.extension
source: ChocolateyInternal
state: latest
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
- name: Hide not-elevated warnings
win_chocolatey_feature:
name: showNonElevatedWarnings
state: disabled
- name: Use background mode for self-service
win_chocolatey_feature:
name: useBackgroundService
state: enabled
- name: Use background service for non-admins
win_chocolatey_feature:
name: useBackgroundServiceWithNonAdministratorsOnly
state: enabled
- name: Allow background uninstallation for user installs
win_chocolatey_feature:
name: allowBackgroundServiceUninstallsFromUserInstallsOnly
state: enabled
- name: Set allowed background service commands
win_chocolatey_config:
name: backgroundServiceAllowedCommands
state: present
value: install,upgrade,uninstall
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
- name: Install Chocolatey Agent
when: chocolatey_central_management_url is defined
win_chocolatey:
name: chocolatey-agent
source: ChocolateyInternal
state: latest
- name: Set the Central Management Service URL
when: chocolatey_central_management_url is defined
win_chocolatey_config:
name: CentralManagementServiceUrl
state: present
value: {{ chocolatey_central_management_url }}
- name: Set the Central Management Client Salt
when: chocolatey_central_management_client_salt is defined
win_chocolatey_config:
name: centralManagementClientCommunicationSaltAdditivePassword
state: present
value: {{ chocolatey_central_management_client_salt }}
- name: Set the Central Management Service Salt
when: chocolatey_central_management_service_salt is defined
win_chocolatey_config:
name: centralManagementServiceCommunicationSaltAdditivePassword
state: present
value: {{ chocolatey_central_management_service_salt }}
- name: Use Central Management
when: chocolatey_central_management_url is defined
win_chocolatey_feature:
name: useChocolateyCentralManagement
state: enabled
- name: Use Central Management Deployments
when: chocolatey_central_management_url is defined
win_chocolatey_feature:
name: useChocolateyCentralManagementDeployments
state: enabled
See docs at https://docs.chef.io/resource_chocolatey_package.html.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### The Chocolatey resources are available with any recent version of Chef.
#### We utilise the Chocolatey recipe to install the Chocolatey binaries.
include_recipe "chocolatey"
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
NugetRepositoryUrl = "INTERNAL REPO URL"
### b. Internal Repository Credential ###
#### If required, add the repository access credential here
# NugetRepositoryUsername = "username"
# NugetRepositoryPassword = "password"
### c. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
ChocolateyNupkgUrl = "INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg",
### d. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService"
#### ii. If using a Client Salt, add it here
# ChocolateyCentralManagementClientSalt = "clientsalt"
#### iii. If using a Service Salt, add it here
# ChocolateyCentralManagementServiceSalt = "servicesalt"
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
node['chocolatey']['install vars'] = {
'chocolateyDownloadUrl' => "#{ChocolateyNupkgUrl}",
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# chocolatey_feature 'useFipsCompliantChecksums' do
# action :enable
# end
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
chocolatey_config 'cacheLocation' do
value 'C:\ProgramData\chocolatey\cache'
end
#### Increase timeout to at least 4 hours
chocolatey_config 'commandExecutionTimeoutSeconds' do
value '14400'
end
#### Turn off download progress when running choco through integrations
chocolatey_feature 'showDownloadProgress' do
action :disable
end
### c. Sources ###
#### Remove the default community package repository source
chocolatey_source 'chocolatey' do
action :remove
end
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
chocolatey_source 'ChocolateyInternal' do
source "#{NugetRepositoryUrl}"
priority 1
action :add
end
execute 'ChocolateyInternal' do
command "choco source add --name ChocolateyInternal -s #{NugetRepositoryUrl} -u=#{NugetRepositoryUsername} -p=#{NugetRepositoryPassword} --priority=1"
only_if { NugetRepositoryUsername != nil || NugetRepositoryPassword != nil }
end
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
chocolatey_package 'chocolatey' do
action :upgrade
source "#{NugetRepositoryUrl}"
end
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
chocolatey_package 'chocolatey-license' do
action :install
source "#{NugetRepositoryUrl}"
end
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
chocolatey_source 'chocolatey.licensed' do
action :disable
end
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
chocolatey_package 'chocolatey.extention' do
action install
source "#{NugetRepositoryUrl}"
end
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
chocolatey_feature 'showNonElevatedWarnings' do
action :disable
end
chocolatey_feature 'useBackgroundService' do
action :enable
end
chocolatey_feature 'useBackgroundServiceWithNonAdministratorsOnly' do
action :enable
end
chocolatey_feature 'allowBackgroundServiceUninstallsFromUserInstallsOnly' do
action :enable
end
chocolatey_config 'backgroundServiceAllowedCommands' do
value 'install,upgrade,uninstall'
end
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
chocolatey_package 'chocolatey-agent' do
action install
source "#{NugetRepositoryUrl}"
# user "#{NugetRepositoryUsername}"
# password "#{NugetRepositoryPassword}"
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_config 'CentralManagementServiceUrl' do
value "#{ChocolateyCentralManagementUrl}"
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_config 'centralManagementClientCommunicationSaltAdditivePassword' do
value "#{ChocolateyCentralManagementClientSalt}"
only_if { ChocolateyCentralManagementClientSalt != nil }
end
chocolatey_config 'centralManagementServiceCommunicationSaltAdditivePassword' do
value "#{ChocolateyCentralManagementServiceSalt}"
only_if { ChocolateyCentralManagementServiceSalt != nil }
end
chocolatey_feature 'useChocolateyCentralManagement' do
action :enable
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_feature 'useChocolateyCentralManagementDeployments' do
action :enable
only_if { ChocolateyCentralManagementUrl != nil }
end
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
If Applicable - Chocolatey Configuration/Installation
#requires -Modules cChoco
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. Requires chocolatey\cChoco DSC module to be installed on the machine compiling the DSC manifest
#### NOTE: This will need to be installed before running the DSC portion of this script
if (-not (Get-Module cChoco -ListAvailable)) {
$null = Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
if (($PSGallery = Get-PSRepository -Name PSGallery).InstallationPolicy -ne "Trusted") {
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
}
Install-Module -Name cChoco
if ($PSGallery.InstallationPolicy -ne "Trusted") {
Set-PSRepository -Name PSGallery -InstallationPolicy $PSGallery.InstallationPolicy
}
}
#### ii. Requires a hosted copy of the install.ps1 script
##### This should be available to download without authentication.
##### The original script can be found here: https://community.chocolatey.org/install.ps1
Configuration ChocolateyConfig {
## 2. TOP LEVEL VARIABLES ##
param(
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$NugetRepositoryUrl = "INTERNAL REPO URL",
### b. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
$ChocolateyNupkgUrl = "INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg",
### c. Internal Repository Credential ###
#### If required, add the repository access credential here
# $NugetRepositoryCredential = [PSCredential]::new(
# "username",
# ("password" | ConvertTo-SecureString -AsPlainText -Force)
# ),
### d. Install.ps1 URL
#### The path to the hosted install script:
$ChocolateyInstallPs1Url = "https://community.chocolatey.org/install.ps1"
### e. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService",
#### ii. If using a Client Salt, add it here
# $ChocolateyCentralManagementClientSalt = "clientsalt",
#### iii. If using a Service Salt, add it here
# $ChocolateyCentralManagementServiceSalt = "servicesalt"
)
Import-DscResource -ModuleName PSDesiredStateConfiguration
Import-DscResource -ModuleName cChoco
Node 'localhost' {
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
Environment chocoDownloadUrl {
Name = "chocolateyDownloadUrl"
Value = $ChocolateyNupkgUrl
}
cChocoInstaller installChocolatey {
DependsOn = "[Environment]chocoDownloadUrl"
InstallDir = Join-Path $env:ProgramData "chocolatey"
ChocoInstallScriptUrl = $ChocolateyInstallPs1Url
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# cChocoFeature featureFipsCompliance {
# FeatureName = "useFipsCompliantChecksums"
# }
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
cChocoConfig cacheLocation {
DependsOn = "[cChocoInstaller]installChocolatey"
ConfigName = "cacheLocation"
Value = "C:\ProgramData\chocolatey\cache"
}
#### Increase timeout to at least 4 hours
cChocoConfig commandExecutionTimeoutSeconds {
DependsOn = "[cChocoInstaller]installChocolatey"
ConfigName = "commandExecutionTimeoutSeconds"
Value = 14400
}
#### Turn off download progress when running choco through integrations
cChocoFeature showDownloadProgress {
DependsOn = "[cChocoInstaller]installChocolatey"
FeatureName = "showDownloadProgress"
Ensure = "Absent"
}
### c. Sources ###
#### Remove the default community package repository source
cChocoSource removeCommunityRepository {
DependsOn = "[cChocoInstaller]installChocolatey"
Name = "chocolatey"
Ensure = "Absent"
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here.
#### NOTE: This EXAMPLE may require changes
cChocoSource addInternalSource {
DependsOn = "[cChocoInstaller]installChocolatey"
Name = "ChocolateyInternal"
Source = $NugetRepositoryUrl
Credentials = $NugetRepositoryCredential
Priority = 1
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
cChocoPackageInstaller updateChocolatey {
DependsOn = "[cChocoSource]addInternalSource", "[cChocoSource]removeCommunityRepository"
Name = "chocolatey"
AutoUpgrade = $true
}
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
cChocoPackageInstaller chocolateyLicense {
DependsOn = "[cChocoPackageInstaller]updateChocolatey"
Name = "chocolatey-license"
}
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
Script disableLicensedSource {
DependsOn = "[cChocoPackageInstaller]chocolateyLicense"
GetScript = {
$Source = choco source list --limitoutput | `
ConvertFrom-Csv -Delimiter '|' -Header Name, Source, Disabled | `
Where-Object Name -eq "chocolatey.licensed"
return @{
Result = if ($Source) {
[bool]::Parse($Source.Disabled)
} else {
Write-Warning "Source 'chocolatey.licensed' was not present."
$true # Source does not need disabling
}
}
}
SetScript = {
$null = choco source disable --name "chocolatey.licensed"
}
TestScript = {
$State = [ScriptBlock]::Create($GetScript).Invoke()
return $State.Result
}
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
cChocoPackageInstaller chocolateyLicensedExtension {
DependsOn = "[Script]disableLicensedSource"
Name = "chocolatey.extension"
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
cChocoFeature hideElevatedWarnings {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "showNonElevatedWarnings"
Ensure = "Absent"
}
cChocoFeature useBackgroundService {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "useBackgroundService"
Ensure = "Present"
}
cChocoFeature useBackgroundServiceWithNonAdmins {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "useBackgroundServiceWithNonAdministratorsOnly"
Ensure = "Present"
}
cChocoFeature useBackgroundServiceUninstallsForUserInstalls {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "allowBackgroundServiceUninstallsFromUserInstallsOnly"
Ensure = "Present"
}
cChocoConfig allowedBackgroundServiceCommands {
DependsOn = "[cChocoFeature]useBackgroundService"
ConfigName = "backgroundServiceAllowedCommands"
Value = "install,upgrade,uninstall"
}
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if ($ChocolateyCentralManagementUrl) {
cChocoPackageInstaller chocolateyAgent {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
Name = "chocolatey-agent"
}
cChocoConfig centralManagementServiceUrl {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "CentralManagementServiceUrl"
Value = $ChocolateyCentralManagementUrl
}
if ($ChocolateyCentralManagementClientSalt) {
cChocoConfig centralManagementClientSalt {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "centralManagementClientCommunicationSaltAdditivePassword"
Value = $ChocolateyCentralManagementClientSalt
}
}
if ($ChocolateyCentralManagementServiceSalt) {
cChocoConfig centralManagementServiceSalt {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "centralManagementServiceCommunicationSaltAdditivePassword"
Value = $ChocolateyCentralManagementServiceSalt
}
}
cChocoFeature useCentralManagement {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
FeatureName = "useChocolateyCentralManagement"
Ensure = "Present"
}
cChocoFeature useCentralManagementDeployments {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
FeatureName = "useChocolateyCentralManagementDeployments"
Ensure = "Present"
}
}
}
}
# If working this into an existing configuration with a good method for
$ConfigData = @{
AllNodes = @(
@{
NodeName = "localhost"
PSDscAllowPlainTextPassword = $true
}
)
}
try {
Push-Location $env:Temp
$Config = ChocolateyConfig -ConfigurationData $ConfigData
Start-DscConfiguration -Path $Config.PSParentPath -Wait -Verbose -Force
} finally {
Pop-Location
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. Requires puppetlabs/chocolatey module
#### See https://forge.puppet.com/puppetlabs/chocolatey
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$_repository_url = 'INTERNAL REPO URL'
### b. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
$_choco_download_url = 'INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg'
### c. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $_chocolatey_central_management_url = 'https://chocolatey-central-management:24020/ChocolateyManagementService'
#### ii. If using a Client Salt, add it here
# $_chocolatey_central_management_client_salt = "clientsalt"
#### iii. If using a Service Salt, add it here
# $_chocolatey_central_management_service_salt = 'servicesalt'
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
### Note: `chocolatey_download_url is completely different than normal
### source locations. This is directly to the bare download url for the
### chocolatey.nupkg, similar to what you see when you browse to
### https://community.chocolatey.org/api/v2/package/chocolatey
class {'chocolatey':
chocolatey_download_url => $_choco_download_url,
use_7zip => false,
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
#chocolateyfeature {'useFipsCompliantChecksums':
# ensure => enabled,
#}
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
chocolateyconfig {'cacheLocation':
value => 'C:\ProgramData\chocolatey\cache',
}
#### Increase timeout to at least 4 hours
chocolateyconfig {'commandExecutionTimeoutSeconds':
value => '14400',
}
#### Turn off download progress when running choco through integrations
chocolateyfeature {'showDownloadProgress':
ensure => disabled,
}
### c. Sources ###
#### Remove the default community package repository source
chocolateysource {'chocolatey':
ensure => absent,
location => 'https://community.chocolatey.org/api/v2/',
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE requires changes
chocolateysource {'internal_chocolatey':
ensure => present,
location => $_repository_url,
priority => 1,
username => 'optional',
password => 'optional,not ensured',
bypass_proxy => true,
admin_only => false,
allow_self_service => false,
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
package {'chocolatey':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
}
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/guides/organizations/organizational-deployment-guide#exercise-4-create-a-package-for-the-license
# TODO: Add resource for installing/ensuring the chocolatey-license package
package {'chocolatey-license':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
}
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
## Disabled sources still need all other attributes until
## https://tickets.puppetlabs.com/browse/MODULES-4449 is resolved.
## Password is necessary with user, but not ensurable, so it should not
## matter what it is set to here. If you ever do get into trouble here,
## the password is your license GUID.
chocolateysource {'chocolatey.licensed':
ensure => disabled,
priority => '10',
user => 'customer',
password => '1234',
require => Package['chocolatey-license'],
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
package {'chocolatey.extension':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
require => Package['chocolatey-license'],
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
chocolateyfeature {'showNonElevatedWarnings':
ensure => disabled,
}
chocolateyfeature {'useBackgroundService':
ensure => enabled,
}
chocolateyfeature {'useBackgroundServiceWithNonAdministratorsOnly':
ensure => enabled,
}
chocolateyfeature {'allowBackgroundServiceUninstallsFromUserInstallsOnly':
ensure => enabled,
}
chocolateyconfig {'backgroundServiceAllowedCommands':
value => 'install,upgrade,uninstall',
}
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if $_chocolatey_central_management_url {
package {'chocolatey-agent':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
require => Package['chocolatey-license'],
}
chocolateyconfig {'CentralManagementServiceUrl':
value => $_chocolatey_central_management_url,
}
if $_chocolatey_central_management_client_salt {
chocolateyconfig {'centralManagementClientCommunicationSaltAdditivePassword':
value => $_chocolatey_central_management_client_salt,
}
}
if $_chocolatey_central_management_service_salt {
chocolateyconfig {'centralManagementClientCommunicationSaltAdditivePassword':
value => $_chocolatey_central_management_client_salt,
}
}
chocolateyfeature {'useChocolateyCentralManagement':
ensure => enabled,
require => Package['chocolatey-agent'],
}
chocolateyfeature {'useChocolateyCentralManagementDeployments':
ensure => enabled,
require => Package['chocolatey-agent'],
}
}
Need Help? View our docs or file an issue.
There is already a version of this package in your Script Builder
Current Version | New Version |
---|---|
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
234,190
Downloads of v 0.11.377:
174
Last Update:
26 May 2019
Package Maintainer(s):
Software Author(s):
- https://github.com/Jackett/Jackett/graphs/contributors
Tags:
torrent-search-engine torrent-management torrent-downloader torznab newznab rss rss-proxy p2p filesharing torrent nntp proxy server sonarr radarr sickrage couchpotato mylar admin
Jackett
This is not the latest version of Jackett available.
- 1
- 2
- 3
0.11.377 | Updated: 26 May 2019
Downloads:
234,190
Downloads of v 0.11.377:
174
Maintainer(s):
Software Author(s):
- https://github.com/Jackett/Jackett/graphs/contributors
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.
- 1
- 2
- 3
Jackett
0.11.377
This is not the latest version of Jackett available.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Jackett, run the following command from the command line or from PowerShell:
To upgrade Jackett, run the following command from the command line or from PowerShell:
To uninstall Jackett, run the following command from the command line or from PowerShell:
Deployment Method:
📝 NOTE: 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 jackett --internalize --version=0.11.377 --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 jackett -y --source="'INTERNAL REPO URL'" --version="'0.11.377'" [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 jackett -y --source="'INTERNAL REPO URL'" --version="'0.11.377'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install jackett
win_chocolatey:
name: jackett
version: '0.11.377'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'jackett' do
action :install
source 'INTERNAL REPO URL'
version '0.11.377'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller jackett
{
Name = "jackett"
Version = "0.11.377"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'jackett':
ensure => '0.11.377',
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 26 May 2019.
Jackett works as a proxy server: it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. This allows for getting recent uploads (like RSS) and performing searches. Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps.
Features
Notes
Installs as a service, to get to Jackett open any web browser and go here or go to http://<your-ip>:9117/UI/Dashboard
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc., <http://fsf.org/>
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
{description}
Copyright (C) {year} {fullname}
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
{signature of Ty Coon}, 1 April 1989
Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The embedded software has been downloaded from the listed download
location on <https://github.com/Jackett/Jackett/releases/tag/v0.11.377>
and can be verified by doing the following:
1. Download the following:
url: <https://github.com/Jackett/Jackett/releases/download/v0.11.377/Jackett.Installer.Windows.exe>
2. You can obtain the checksum using one of the following methods:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum type: sha256
checksum: C25743809AFA970DB04E2C1D4D43318ACFC90D2F2C44B97D3D3E9D5214DF521F
Using AU:
Get-RemoteChecksum
The file 'license.txt' is obtained from:
<https://github.com/Jackett/Jackett/blob/master/LICENSE>
# Stop Jackett service before upgrade/uninstall if running
$service = "Jackett"
if (Get-Service "$service" -ErrorAction SilentlyContinue) {
$running = Get-Service $service
if ($running.Status -eq "Running") {
Stop-Service $service
}
}
$ErrorActionPreference = 'Stop'
$packageName = 'jackett'
$toolsDir = Split-Path $MyInvocation.MyCommand.Definition
$fileLocation = Get-Item "$toolsDir\*.exe"
$packageArgs = @{
packageName = $packageName
fileType = 'exe'
file = $fileLocation
silentArgs = "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /LOG=`"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).InnoInstall.log`""
validExitCodes = @(0)
}
Install-ChocolateyInstallPackage @packageArgs
# Remove the installers as there is no more need for it
Remove-Item $toolsDir\*.exe -ea 0 -Force
if (Get-Service "$packageName" -ErrorAction SilentlyContinue) {
$running = Get-Service $packageName
if ($running.Status -eq "Running") {
Write-Host 'Service is already running'
} elseif ($running.Status -eq "Stopped") {
Start-Service $packageName
}
}
$ErrorActionPreference = 'Stop'
$packageName = 'jackett'
$programUninstallEntryName = 'Jackett*'
$registry = Get-UninstallRegistryKey -SoftwareName $programUninstallEntryName
$file = $registry.UninstallString
$packageArgs = @{
packageName = $packageName
fileType = 'exe'
silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
validExitCodes = @(0)
file = $file
}
Uninstall-ChocolateyPackage @packageArgs
#remove Jackett folder that gets left behind
$fexist = Test-Path $env:ProgramData\Jackett
if ($fexist) {
Write-Host "Removing Jackett Folder that's left behind"
Remove-Item $env:ProgramData\Jackett -Recurse -Force
} else {
Write-Host Jackett Folder not found
}
md5: 712F68574F2EF39A75C79595F28D82FB | sha1: 3B2EF56DF1D8B7AF6BA1A5C1BED981302CCD2D20 | sha256: C25743809AFA970DB04E2C1D4D43318ACFC90D2F2C44B97D3D3E9D5214DF521F | sha512: 128CCA361F56F56438797281445544DCFFCFD61915706BC23C17A464B06CD942D2B1D641169E57C21FAD811CE76FEE06CDEEF7B75BEC0F73AA9B25951F9BA746
Log in or click on link to see number of positives.
- jackett.0.11.377.nupkg (b532d5846326) - ## / 62
- Jackett.Installer.Windows.exe (c25743809afa) - ## / 69
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 |
---|---|---|---|---|
Jackett 0.20.1281 | 57 | Tuesday, July 5, 2022 | Approved | |
Jackett 0.20.1274 | 72 | Monday, July 4, 2022 | Approved | |
Jackett 0.20.1270 | 55 | Sunday, July 3, 2022 | Approved | |
Jackett 0.20.1263 | 52 | Saturday, July 2, 2022 | Approved | |
Jackett 0.20.1261 | 63 | Friday, July 1, 2022 | Approved | |
Jackett 0.20.1254 | 59 | Thursday, June 30, 2022 | Approved | |
Jackett 0.20.1251 | 64 | Wednesday, June 29, 2022 | Approved | |
Jackett 0.20.1250 | 57 | Tuesday, June 28, 2022 | Approved | |
Jackett 0.20.1246 | 67 | Monday, June 27, 2022 | Approved | |
Jackett 0.20.1226 | 62 | Sunday, June 26, 2022 | Approved | |
Jackett 0.20.1220 | 63 | Saturday, June 25, 2022 | Approved | |
Jackett 0.20.1216 | 62 | Friday, June 24, 2022 | Approved | |
Jackett 0.20.1212 | 64 | Thursday, June 23, 2022 | Approved | |
Jackett 0.20.1211 | 37 | Wednesday, June 22, 2022 | Approved | |
Jackett 0.20.1210 | 74 | Tuesday, June 21, 2022 | Approved | |
Jackett 0.20.1208 | 31 | Monday, June 20, 2022 | Approved | |
Jackett 0.20.1202 | 97 | Saturday, June 18, 2022 | Approved | |
Jackett 0.20.1197 | 102 | Thursday, June 16, 2022 | Approved | |
Jackett 0.20.1196 | 38 | Wednesday, June 15, 2022 | Approved | |
Jackett 0.20.1185 | 86 | Tuesday, June 14, 2022 | Approved | |
Jackett 0.20.1175 | 64 | Monday, June 13, 2022 | Approved | |
Jackett 0.20.1171 | 87 | Saturday, June 11, 2022 | Approved | |
Jackett 0.20.1168 | 68 | Friday, June 10, 2022 | Approved | |
Jackett 0.20.1158 | 41 | Thursday, June 9, 2022 | Approved | |
Jackett 0.20.1154 | 66 | Wednesday, June 8, 2022 | Approved | |
Jackett 0.20.1151 | 54 | Tuesday, June 7, 2022 | Approved | |
Jackett 0.20.1150 | 62 | Monday, June 6, 2022 | Approved | |
Jackett 0.20.1148 | 56 | Sunday, June 5, 2022 | Approved | |
Jackett 0.20.1144 | 64 | Saturday, June 4, 2022 | Approved | |
Jackett 0.20.1131 | 81 | Friday, June 3, 2022 | Approved | |
Jackett 0.20.1129 | 66 | Thursday, June 2, 2022 | Approved | |
Jackett 0.20.1127 | 69 | Wednesday, June 1, 2022 | Approved | |
Jackett 0.20.1125 | 66 | Tuesday, May 31, 2022 | Approved | |
Jackett 0.20.1120 | 56 | Monday, May 30, 2022 | Approved | |
Jackett 0.20.1119 | 63 | Sunday, May 29, 2022 | Approved | |
Jackett 0.20.1117 | 56 | Saturday, May 28, 2022 | Approved | |
Jackett 0.20.1108 | 69 | Friday, May 27, 2022 | Approved | |
Jackett 0.20.1104 | 72 | Thursday, May 26, 2022 | Approved | |
Jackett 0.20.1102 | 70 | Wednesday, May 25, 2022 | Approved | |
Jackett 0.20.1101 | 84 | Monday, May 23, 2022 | Approved | |
Jackett 0.20.1096 | 59 | Sunday, May 22, 2022 | Approved | |
Jackett 0.20.1092 | 66 | Saturday, May 21, 2022 | Approved | |
Jackett 0.20.1088 | 63 | Friday, May 20, 2022 | Approved | |
Jackett 0.20.1078 | 59 | Thursday, May 19, 2022 | Approved | |
Jackett 0.20.1076 | 63 | Wednesday, May 18, 2022 | Approved | |
Jackett 0.20.1071 | 25 | Tuesday, May 17, 2022 | Approved | |
Jackett 0.20.1066 | 89 | Monday, May 16, 2022 | Approved | |
Jackett 0.20.1062 | 63 | Sunday, May 15, 2022 | Approved | |
Jackett 0.20.1058 | 61 | Saturday, May 14, 2022 | Approved | |
Jackett 0.20.1053 | 63 | Friday, May 13, 2022 | Approved | |
Jackett 0.20.1050 | 67 | Thursday, May 12, 2022 | Approved | |
Jackett 0.20.1047 | 64 | Wednesday, May 11, 2022 | Approved | |
Jackett 0.20.1043 | 67 | Tuesday, May 10, 2022 | Approved | |
Jackett 0.20.1038 | 71 | Monday, May 9, 2022 | Approved | |
Jackett 0.20.1027 | 61 | Sunday, May 8, 2022 | Approved | |
Jackett 0.20.1024 | 59 | Saturday, May 7, 2022 | Approved | |
Jackett 0.20.1018 | 56 | Friday, May 6, 2022 | Approved | |
Jackett 0.20.1010 | 59 | Thursday, May 5, 2022 | Approved | |
Jackett 0.20.1008 | 60 | Wednesday, May 4, 2022 | Approved | |
Jackett 0.20.1005 | 53 | Tuesday, May 3, 2022 | Approved | |
Jackett 0.20.1001 | 54 | Monday, May 2, 2022 | Approved | |
Jackett 0.20.993 | 55 | Sunday, May 1, 2022 | Approved | |
Jackett 0.20.989 | 64 | Saturday, April 30, 2022 | Approved | |
Jackett 0.20.986 | 58 | Friday, April 29, 2022 | Approved | |
Jackett 0.20.985 | 49 | Thursday, April 28, 2022 | Approved | |
Jackett 0.20.970 | 60 | Wednesday, April 27, 2022 | Approved | |
Jackett 0.20.961 | 76 | Tuesday, April 26, 2022 | Approved | |
Jackett 0.20.959 | 56 | Monday, April 25, 2022 | Approved | |
Jackett 0.20.935 | 76 | Sunday, April 24, 2022 | Approved | |
Jackett 0.20.933 | 92 | Friday, April 22, 2022 | Approved | |
Jackett 0.20.932 | 41 | Thursday, April 21, 2022 | Approved | |
Jackett 0.20.929 | 83 | Wednesday, April 20, 2022 | Approved | |
Jackett 0.20.915 | 78 | Tuesday, April 19, 2022 | Approved | |
Jackett 0.20.912 | 66 | Monday, April 18, 2022 | Approved | |
Jackett 0.20.892 | 64 | Sunday, April 17, 2022 | Approved | |
Jackett 0.20.876 | 64 | Saturday, April 16, 2022 | Approved | |
Jackett 0.20.868 | 59 | Friday, April 15, 2022 | Approved | |
Jackett 0.20.865 | 72 | Thursday, April 14, 2022 | Approved | |
Jackett 0.20.860 | 72 | Wednesday, April 13, 2022 | Approved | |
Jackett 0.20.850 | 63 | Tuesday, April 12, 2022 | Approved | |
Jackett 0.20.847 | 70 | Monday, April 11, 2022 | Approved | |
Jackett 0.20.834 | 64 | Sunday, April 10, 2022 | Approved | |
Jackett 0.20.818 | 64 | Saturday, April 9, 2022 | Approved | |
Jackett 0.20.811 | 68 | Friday, April 8, 2022 | Approved | |
Jackett 0.20.807 | 61 | Thursday, April 7, 2022 | Approved | |
Jackett 0.20.805 | 62 | Wednesday, April 6, 2022 | Approved | |
Jackett 0.20.794 | 44 | Tuesday, April 5, 2022 | Approved | |
Jackett 0.20.790 | 80 | Monday, April 4, 2022 | Approved | |
Jackett 0.20.788 | 36 | Sunday, April 3, 2022 | Approved | |
Jackett 0.20.783 | 36 | Saturday, April 2, 2022 | Approved | |
Jackett 0.20.781 | 95 | Friday, April 1, 2022 | Approved | |
Jackett 0.20.779 | 63 | Thursday, March 31, 2022 | Approved | |
Jackett 0.20.778 | 67 | Wednesday, March 30, 2022 | Approved | |
Jackett 0.20.775 | 68 | Tuesday, March 29, 2022 | Approved | |
Jackett 0.20.772 | 80 | Monday, March 28, 2022 | Approved | |
Jackett 0.20.770 | 75 | Sunday, March 27, 2022 | Approved | |
Jackett 0.20.763 | 78 | Saturday, March 26, 2022 | Approved | |
Jackett 0.20.761 | 82 | Friday, March 25, 2022 | Approved | |
Jackett 0.20.756 | 83 | Thursday, March 24, 2022 | Approved | |
Jackett 0.20.754 | 41 | Wednesday, March 23, 2022 | Approved | |
Jackett 0.20.744 | 79 | Tuesday, March 22, 2022 | Approved | |
Jackett 0.20.740 | 59 | Monday, March 21, 2022 | Approved | |
Jackett 0.20.736 | 69 | Sunday, March 20, 2022 | Approved | |
Jackett 0.20.728 | 73 | Saturday, March 19, 2022 | Approved | |
Jackett 0.20.726 | 59 | Friday, March 18, 2022 | Approved | |
Jackett 0.20.723 | 73 | Thursday, March 17, 2022 | Approved | |
Jackett 0.20.715 | 62 | Wednesday, March 16, 2022 | Approved | |
Jackett 0.20.709 | 63 | Tuesday, March 15, 2022 | Approved | |
Jackett 0.20.708 | 62 | Monday, March 14, 2022 | Approved | |
Jackett 0.20.703 | 69 | Sunday, March 13, 2022 | Approved | |
Jackett 0.20.696 | 68 | Saturday, March 12, 2022 | Approved | |
Jackett 0.20.689 | 61 | Friday, March 11, 2022 | Approved | |
Jackett 0.20.684 | 75 | Thursday, March 10, 2022 | Approved | |
Jackett 0.20.681 | 76 | Wednesday, March 9, 2022 | Approved | |
Jackett 0.20.674 | 81 | Tuesday, March 8, 2022 | Approved | |
Jackett 0.20.671 | 61 | Monday, March 7, 2022 | Approved | |
Jackett 0.20.667 | 77 | Sunday, March 6, 2022 | Approved | |
Jackett 0.20.663 | 79 | Saturday, March 5, 2022 | Approved | |
Jackett 0.20.662 | 104 | Thursday, March 3, 2022 | Approved | |
Jackett 0.20.660 | 71 | Wednesday, March 2, 2022 | Approved | |
Jackett 0.20.654 | 74 | Tuesday, March 1, 2022 | Approved | |
Jackett 0.20.643 | 61 | Monday, February 28, 2022 | Approved | |
Jackett 0.20.639 | 76 | Sunday, February 27, 2022 | Approved | |
Jackett 0.20.636 | 70 | Saturday, February 26, 2022 | Approved | |
Jackett 0.20.632 | 64 | Friday, February 25, 2022 | Approved | |
Jackett 0.20.631 | 85 | Thursday, February 24, 2022 | Approved | |
Jackett 0.20.629 | 71 | Wednesday, February 23, 2022 | Approved | |
Jackett 0.20.604 | 69 | Tuesday, February 22, 2022 | Approved | |
Jackett 0.20.598 | 70 | Monday, February 21, 2022 | Approved | |
Jackett 0.20.596 | 74 | Sunday, February 20, 2022 | Approved | |
Jackett 0.20.590 | 81 | Saturday, February 19, 2022 | Approved | |
Jackett 0.20.576 | 78 | Friday, February 18, 2022 | Approved | |
Jackett 0.20.574 | 52 | Thursday, February 17, 2022 | Approved | |
Jackett 0.20.573 | 93 | Wednesday, February 16, 2022 | Approved | |
Jackett 0.20.567 | 101 | Monday, February 14, 2022 | Approved | |
Jackett 0.20.562 | 69 | Sunday, February 13, 2022 | Approved | |
Jackett 0.20.555 | 51 | Saturday, February 12, 2022 | Approved | |
Jackett 0.20.546 | 37 | Friday, February 11, 2022 | Approved | |
Jackett 0.20.539 | 101 | Thursday, February 10, 2022 | Approved | |
Jackett 0.20.535 | 72 | Wednesday, February 9, 2022 | Approved | |
Jackett 0.20.529 | 68 | Tuesday, February 8, 2022 | Approved | |
Jackett 0.20.521 | 81 | Monday, February 7, 2022 | Approved | |
Jackett 0.20.514 | 78 | Sunday, February 6, 2022 | Approved | |
Jackett 0.20.510 | 75 | Saturday, February 5, 2022 | Approved | |
Jackett 0.20.504 | 59 | Friday, February 4, 2022 | Approved | |
Jackett 0.20.500 | 93 | Thursday, February 3, 2022 | Approved | |
Jackett 0.20.497 | 76 | Wednesday, February 2, 2022 | Approved | |
Jackett 0.20.494 | 79 | Tuesday, February 1, 2022 | Approved | |
Jackett 0.20.492 | 81 | Monday, January 31, 2022 | Approved | |
Jackett 0.20.485 | 78 | Sunday, January 30, 2022 | Approved | |
Jackett 0.20.477 | 76 | Saturday, January 29, 2022 | Approved | |
Jackett 0.20.470 | 79 | Friday, January 28, 2022 | Approved | |
Jackett 0.20.466 | 78 | Thursday, January 27, 2022 | Approved | |
Jackett 0.20.444 | 97 | Tuesday, January 25, 2022 | Approved | |
Jackett 0.20.440 | 67 | Monday, January 24, 2022 | Approved | |
Jackett 0.20.428 | 78 | Sunday, January 23, 2022 | Approved | |
Jackett 0.20.422 | 64 | Saturday, January 22, 2022 | Approved | |
Jackett 0.20.417 | 76 | Friday, January 21, 2022 | Approved | |
Jackett 0.20.413 | 65 | Thursday, January 20, 2022 | Approved | |
Jackett 0.20.399 | 72 | Wednesday, January 19, 2022 | Approved | |
Jackett 0.20.371 | 88 | Tuesday, January 18, 2022 | Approved | |
Jackett 0.20.363 | 74 | Monday, January 17, 2022 | Approved | |
Jackett 0.20.324 | 81 | Sunday, January 16, 2022 | Approved | |
Jackett 0.20.319 | 78 | Saturday, January 15, 2022 | Approved | |
Jackett 0.20.314 | 68 | Friday, January 14, 2022 | Approved | |
Jackett 0.20.299 | 73 | Thursday, January 13, 2022 | Approved | |
Jackett 0.20.294 | 75 | Wednesday, January 12, 2022 | Approved | |
Jackett 0.20.285 | 70 | Tuesday, January 11, 2022 | Approved | |
Jackett 0.20.280 | 68 | Monday, January 10, 2022 | Approved | |
Jackett 0.20.268 | 73 | Sunday, January 9, 2022 | Approved | |
Jackett 0.20.266 | 59 | Saturday, January 8, 2022 | Approved | |
Jackett 0.20.256 | 79 | Friday, January 7, 2022 | Approved | |
Jackett 0.20.250 | 66 | Thursday, January 6, 2022 | Approved | |
Jackett 0.20.244 | 83 | Wednesday, January 5, 2022 | Approved | |
Jackett 0.20.238 | 82 | Tuesday, January 4, 2022 | Approved | |
Jackett 0.20.236 | 80 | Monday, January 3, 2022 | Approved | |
Jackett 0.20.233 | 75 | Sunday, January 2, 2022 | Approved | |
Jackett 0.20.222 | 57 | Saturday, January 1, 2022 | Approved | |
Jackett 0.20.216 | 101 | Thursday, December 30, 2021 | Approved | |
Jackett 0.20.200 | 115 | Monday, December 27, 2021 | Approved | |
Jackett 0.20.198 | 84 | Sunday, December 26, 2021 | Approved | |
Jackett 0.20.197 | 90 | Friday, December 24, 2021 | Approved | |
Jackett 0.20.195 | 77 | Thursday, December 23, 2021 | Approved | |
Jackett 0.20.193 | 73 | Wednesday, December 22, 2021 | Approved | |
Jackett 0.20.188 | 79 | Tuesday, December 21, 2021 | Approved | |
Jackett 0.20.184 | 135 | Sunday, December 19, 2021 | Approved | |
Jackett 0.20.178 | 62 | Saturday, December 18, 2021 | Approved | |
Jackett 0.20.173 | 56 | Friday, December 17, 2021 | Approved | |
Jackett 0.20.172 | 128 | Wednesday, December 15, 2021 | Approved | |
Jackett 0.20.170 | 98 | Tuesday, December 14, 2021 | Approved | |
Jackett 0.20.162 | 74 | Monday, December 13, 2021 | Approved | |
Jackett 0.20.159 | 77 | Sunday, December 12, 2021 | Approved | |
Jackett 0.20.147 | 81 | Saturday, December 11, 2021 | Approved | |
Jackett 0.20.141 | 78 | Friday, December 10, 2021 | Approved | |
Jackett 0.20.136 | 78 | Thursday, December 9, 2021 | Approved | |
Jackett 0.20.123 | 81 | Wednesday, December 8, 2021 | Approved | |
Jackett 0.20.105 | 68 | Tuesday, December 7, 2021 | Approved | |
Jackett 0.20.95 | 50 | Monday, December 6, 2021 | Approved | |
Jackett 0.20.93 | 97 | Sunday, December 5, 2021 | Approved | |
Jackett 0.20.83 | 133 | Thursday, December 2, 2021 | Approved | |
Jackett 0.20.79 | 38 | Wednesday, December 1, 2021 | Approved | |
Jackett 0.20.78 | 45 | Tuesday, November 30, 2021 | Approved | |
Jackett 0.20.74 | 91 | Monday, November 29, 2021 | Approved | |
Jackett 0.20.71 | 50 | Sunday, November 28, 2021 | Approved | |
Jackett 0.20.68 | 164 | Saturday, November 27, 2021 | Approved | |
Jackett 0.20.65 | 80 | Friday, November 26, 2021 | Approved | |
Jackett 0.20.64 | 71 | Thursday, November 25, 2021 | Approved | |
Jackett 0.20.63 | 103 | Wednesday, November 24, 2021 | Approved | |
Jackett 0.20.53 | 117 | Monday, November 22, 2021 | Approved | |
Jackett 0.20.44 | 90 | Sunday, November 21, 2021 | Approved | |
Jackett 0.20.43 | 74 | Saturday, November 20, 2021 | Approved | |
Jackett 0.20.41 | 94 | Friday, November 19, 2021 | Approved | |
Jackett 0.20.36 | 44 | Thursday, November 18, 2021 | Approved | |
Jackett 0.20.10 | 103 | Wednesday, November 17, 2021 | Approved | |
Jackett 0.19.275 | 78 | Tuesday, November 16, 2021 | Approved | |
Jackett 0.19.266 | 66 | Monday, November 15, 2021 | Approved | |
Jackett 0.19.260 | 80 | Sunday, November 14, 2021 | Approved | |
Jackett 0.19.249 | 54 | Saturday, November 13, 2021 | Approved | |
Jackett 0.19.229 | 91 | Friday, November 12, 2021 | Approved | |
Jackett 0.19.228 | 87 | Thursday, November 11, 2021 | Approved | |
Jackett 0.19.225 | 61 | Wednesday, November 10, 2021 | Approved | |
Jackett 0.19.215 | 67 | Tuesday, November 9, 2021 | Approved | |
Jackett 0.19.210 | 92 | Monday, November 8, 2021 | Approved | |
Jackett 0.19.207 | 86 | Sunday, November 7, 2021 | Approved | |
Jackett 0.19.192 | 86 | Saturday, November 6, 2021 | Approved | |
Jackett 0.19.162 | 82 | Friday, November 5, 2021 | Approved | |
Jackett 0.19.147 | 83 | Thursday, November 4, 2021 | Approved | |
Jackett 0.19.138 | 71 | Wednesday, November 3, 2021 | Approved | |
Jackett 0.19.124 | 52 | Tuesday, November 2, 2021 | Approved | |
Jackett 0.19.116 | 36 | Monday, November 1, 2021 | Approved | |
Jackett 0.19.108 | 139 | Sunday, October 31, 2021 | Approved | |
Jackett 0.19.100 | 56 | Saturday, October 30, 2021 | Approved | |
Jackett 0.19.96 | 76 | Friday, October 29, 2021 | Approved | |
Jackett 0.19.84 | 40 | Thursday, October 28, 2021 | Approved | |
Jackett 0.19.71 | 112 | Wednesday, October 27, 2021 | Approved | |
Jackett 0.19.68 | 72 | Tuesday, October 26, 2021 | Approved | |
Jackett 0.19.66 | 42 | Tuesday, October 26, 2021 | Approved | |
Jackett 0.19.62 | 89 | Monday, October 25, 2021 | Approved | |
Jackett 0.19.50 | 75 | Sunday, October 24, 2021 | Approved | |
Jackett 0.19.34 | 79 | Saturday, October 23, 2021 | Approved | |
Jackett 0.19.16 | 90 | Friday, October 22, 2021 | Approved | |
Jackett 0.19.8 | 79 | Thursday, October 21, 2021 | Approved | |
Jackett 0.18.1041 | 78 | Wednesday, October 20, 2021 | Approved | |
Jackett 0.18.1025 | 85 | Tuesday, October 19, 2021 | Approved | |
Jackett 0.18.1022 | 85 | Monday, October 18, 2021 | Approved | |
Jackett 0.18.1008 | 77 | Sunday, October 17, 2021 | Approved | |
Jackett 0.18.1001 | 29 | Saturday, October 16, 2021 | Approved | |
Jackett 0.18.995 | 116 | Friday, October 15, 2021 | Approved | |
Jackett 0.18.992 | 77 | Thursday, October 14, 2021 | Approved | |
Jackett 0.18.984 | 76 | Wednesday, October 13, 2021 | Approved | |
Jackett 0.18.940 | 91 | Tuesday, October 12, 2021 | Approved | |
Jackett 0.18.929 | 73 | Monday, October 11, 2021 | Approved | |
Jackett 0.18.925 | 75 | Sunday, October 10, 2021 | Approved | |
Jackett 0.18.911 | 63 | Saturday, October 9, 2021 | Approved | |
Jackett 0.18.908 | 71 | Friday, October 8, 2021 | Approved | |
Jackett 0.18.906 | 77 | Thursday, October 7, 2021 | Approved | |
Jackett 0.18.901 | 82 | Wednesday, October 6, 2021 | Approved | |
Jackett 0.18.899 | 74 | Tuesday, October 5, 2021 | Approved | |
Jackett 0.18.896 | 89 | Monday, October 4, 2021 | Approved | |
Jackett 0.18.891 | 43 | Sunday, October 3, 2021 | Approved | |
Jackett 0.18.887 | 46 | Saturday, October 2, 2021 | Approved | |
Jackett 0.18.875 | 111 | Friday, October 1, 2021 | Approved | |
Jackett 0.18.851 | 83 | Thursday, September 30, 2021 | Approved | |
Jackett 0.18.845 | 70 | Wednesday, September 29, 2021 | Approved | |
Jackett 0.18.827 | 75 | Tuesday, September 28, 2021 | Approved | |
Jackett 0.18.815 | 79 | Monday, September 27, 2021 | Approved | |
Jackett 0.18.812 | 76 | Sunday, September 26, 2021 | Approved | |
Jackett 0.18.805 | 69 | Saturday, September 25, 2021 | Approved | |
Jackett 0.18.795 | 70 | Friday, September 24, 2021 | Approved | |
Jackett 0.18.791 | 70 | Thursday, September 23, 2021 | Approved | |
Jackett 0.18.789 | 84 | Wednesday, September 22, 2021 | Approved | |
Jackett 0.18.788 | 82 | Tuesday, September 21, 2021 | Approved | |
Jackett 0.18.786 | 87 | Monday, September 20, 2021 | Approved | |
Jackett 0.18.781 | 97 | Sunday, September 19, 2021 | Approved | |
Jackett 0.18.779 | 94 | Saturday, September 18, 2021 | Approved | |
Jackett 0.18.773 | 100 | Friday, September 17, 2021 | Approved | |
Jackett 0.18.767 | 54 | Thursday, September 16, 2021 | Approved | |
Jackett 0.18.761 | 160 | Wednesday, September 15, 2021 | Approved | |
Jackett 0.18.755 | 87 | Tuesday, September 14, 2021 | Approved | |
Jackett 0.18.746 | 99 | Monday, September 13, 2021 | Approved | |
Jackett 0.18.737 | 120 | Sunday, September 12, 2021 | Approved | |
Jackett 0.18.729 | 85 | Saturday, September 11, 2021 | Approved | |
Jackett 0.18.724 | 91 | Friday, September 10, 2021 | Approved | |
Jackett 0.18.713 | 100 | Thursday, September 9, 2021 | Approved | |
Jackett 0.18.709 | 80 | Wednesday, September 8, 2021 | Approved | |
Jackett 0.18.686 | 87 | Tuesday, September 7, 2021 | Approved | |
Jackett 0.18.666 | 59 | Monday, September 6, 2021 | Approved | |
Jackett 0.18.656 | 64 | Sunday, September 5, 2021 | Approved | |
Jackett 0.18.652 | 154 | Saturday, September 4, 2021 | Approved | |
Jackett 0.18.648 | 103 | Friday, September 3, 2021 | Approved | |
Jackett 0.18.643 | 85 | Thursday, September 2, 2021 | Approved | |
Jackett 0.18.641 | 100 | Wednesday, September 1, 2021 | Approved | |
Jackett 0.18.636 | 94 | Tuesday, August 31, 2021 | Approved | |
Jackett 0.18.632 | 102 | Monday, August 30, 2021 | Approved | |
Jackett 0.18.623 | 93 | Sunday, August 29, 2021 | Approved | |
Jackett 0.18.616 | 90 | Saturday, August 28, 2021 | Approved | |
Jackett 0.18.613 | 96 | Friday, August 27, 2021 | Approved | |
Jackett 0.18.609 | 102 | Thursday, August 26, 2021 | Approved | |
Jackett 0.18.606 | 75 | Wednesday, August 25, 2021 | Approved | |
Jackett 0.18.599 | 62 | Tuesday, August 24, 2021 | Approved | |
Jackett 0.18.590 | 114 | Monday, August 23, 2021 | Approved | |
Jackett 0.18.587 | 138 | Sunday, August 22, 2021 | Approved | |
Jackett 0.18.582 | 101 | Saturday, August 21, 2021 | Approved | |
Jackett 0.18.578 | 72 | Friday, August 20, 2021 | Approved | |
Jackett 0.18.563 | 88 | Thursday, August 19, 2021 | Approved | |
Jackett 0.18.551 | 81 | Wednesday, August 18, 2021 | Approved | |
Jackett 0.18.547 | 78 | Tuesday, August 17, 2021 | Approved | |
Jackett 0.18.545 | 129 | Saturday, August 14, 2021 | Approved | |
Jackett 0.18.541 | 87 | Friday, August 13, 2021 | Approved | |
Jackett 0.18.539 | 99 | Thursday, August 12, 2021 | Approved | |
Jackett 0.18.537 | 75 | Wednesday, August 11, 2021 | Approved | |
Jackett 0.18.533 | 91 | Tuesday, August 10, 2021 | Approved | |
Jackett 0.18.532 | 81 | Monday, August 9, 2021 | Approved | |
Jackett 0.18.531 | 92 | Sunday, August 8, 2021 | Approved | |
Jackett 0.18.527 | 100 | Saturday, August 7, 2021 | Approved | |
Jackett 0.18.525 | 116 | Friday, August 6, 2021 | Approved | |
Jackett 0.18.523 | 129 | Tuesday, August 3, 2021 | Approved | |
Jackett 0.18.518 | 62 | Monday, August 2, 2021 | Approved | |
Jackett 0.18.515 | 83 | Sunday, August 1, 2021 | Approved | |
Jackett 0.18.512 | 73 | Saturday, July 31, 2021 | Approved | |
Jackett 0.18.505 | 77 | Friday, July 30, 2021 | Approved | |
Jackett 0.18.502 | 52 | Thursday, July 29, 2021 | Approved | |
Jackett 0.18.496 | 52 | Wednesday, July 28, 2021 | Approved | |
Jackett 0.18.481 | 96 | Tuesday, July 27, 2021 | Approved | |
Jackett 0.18.475 | 121 | Sunday, July 25, 2021 | Approved | |
Jackett 0.18.465 | 69 | Saturday, July 24, 2021 | Approved | |
Jackett 0.18.463 | 41 | Friday, July 23, 2021 | Approved | |
Jackett 0.18.459 | 96 | Thursday, July 22, 2021 | Approved | |
Jackett 0.18.457 | 70 | Wednesday, July 21, 2021 | Approved | |
Jackett 0.18.455 | 109 | Monday, July 19, 2021 | Approved | |
Jackett 0.18.448 | 81 | Sunday, July 18, 2021 | Approved | |
Jackett 0.18.444 | 79 | Saturday, July 17, 2021 | Approved | |
Jackett 0.18.441 | 83 | Friday, July 16, 2021 | Approved | |
Jackett 0.18.432 | 76 | Thursday, July 15, 2021 | Approved | |
Jackett 0.18.425 | 85 | Wednesday, July 14, 2021 | Approved | |
Jackett 0.18.424 | 73 | Tuesday, July 13, 2021 | Approved | |
Jackett 0.18.413 | 96 | Sunday, July 11, 2021 | Approved | |
Jackett 0.18.410 | 68 | Saturday, July 10, 2021 | Approved | |
Jackett 0.18.407 | 103 | Thursday, July 8, 2021 | Approved | |
Jackett 0.18.403 | 83 | Wednesday, July 7, 2021 | Approved | |
Jackett 0.18.402 | 106 | Monday, July 5, 2021 | Approved | |
Jackett 0.18.394 | 85 | Sunday, July 4, 2021 | Approved | |
Jackett 0.18.390 | 103 | Friday, July 2, 2021 | Approved | |
Jackett 0.18.386 | 86 | Wednesday, June 30, 2021 | Approved | |
Jackett 0.18.385 | 91 | Tuesday, June 29, 2021 | Approved | |
Jackett 0.18.383 | 99 | Monday, June 28, 2021 | Approved | |
Jackett 0.18.379 | 150 | Thursday, June 24, 2021 | Approved | |
Jackett 0.18.376 | 79 | Wednesday, June 23, 2021 | Approved | |
Jackett 0.18.372 | 81 | Tuesday, June 22, 2021 | Approved | |
Jackett 0.18.367 | 67 | Monday, June 21, 2021 | Approved | |
Jackett 0.18.364 | 44 | Sunday, June 20, 2021 | Approved | |
Jackett 0.18.359 | 63 | Friday, June 18, 2021 | Approved | |
Jackett 0.18.354 | 70 | Friday, June 18, 2021 | Approved | |
Jackett 0.18.345 | 137 | Wednesday, June 16, 2021 | Approved | |
Jackett 0.18.329 | 75 | Tuesday, June 15, 2021 | Approved | |
Jackett 0.18.317 | 92 | Monday, June 14, 2021 | Approved | |
Jackett 0.18.303 | 72 | Sunday, June 13, 2021 | Approved | |
Jackett 0.18.290 | 59 | Saturday, June 12, 2021 | Approved | |
Jackett 0.18.283 | 126 | Thursday, June 10, 2021 | Approved | |
Jackett 0.18.273 | 95 | Wednesday, June 9, 2021 | Approved | |
Jackett 0.18.263 | 82 | Tuesday, June 8, 2021 | Approved | |
Jackett 0.18.259 | 89 | Monday, June 7, 2021 | Approved | |
Jackett 0.18.255 | 89 | Sunday, June 6, 2021 | Approved | |
Jackett 0.18.234 | 72 | Saturday, June 5, 2021 | Approved | |
Jackett 0.18.231 | 76 | Friday, June 4, 2021 | Approved | |
Jackett 0.18.225 | 102 | Wednesday, June 2, 2021 | Approved | |
Jackett 0.18.210 | 79 | Tuesday, June 1, 2021 | Approved | |
Jackett 0.18.205 | 72 | Monday, May 31, 2021 | Approved | |
Jackett 0.18.196 | 87 | Sunday, May 30, 2021 | Approved | |
Jackett 0.18.181 | 77 | Saturday, May 29, 2021 | Approved | |
Jackett 0.18.171 | 75 | Friday, May 28, 2021 | Approved | |
Jackett 0.18.169 | 78 | Thursday, May 27, 2021 | Approved | |
Jackett 0.18.155 | 72 | Wednesday, May 26, 2021 | Approved | |
Jackett 0.18.145 | 109 | Monday, May 24, 2021 | Approved | |
Jackett 0.18.106 | 83 | Sunday, May 23, 2021 | Approved | |
Jackett 0.18.100 | 79 | Saturday, May 22, 2021 | Approved | |
Jackett 0.18.98 | 69 | Friday, May 21, 2021 | Approved | |
Jackett 0.18.96 | 79 | Thursday, May 20, 2021 | Approved | |
Jackett 0.18.95 | 92 | Tuesday, May 18, 2021 | Approved | |
Jackett 0.18.88 | 87 | Monday, May 17, 2021 | Approved | |
Jackett 0.18.74 | 86 | Sunday, May 16, 2021 | Approved | |
Jackett 0.18.67 | 79 | Saturday, May 15, 2021 | Approved | |
Jackett 0.18.59 | 79 | Friday, May 14, 2021 | Approved | |
Jackett 0.18.31 | 101 | Wednesday, May 12, 2021 | Approved | |
Jackett 0.18.22 | 83 | Tuesday, May 11, 2021 | Approved | |
Jackett 0.18.15 | 83 | Monday, May 10, 2021 | Approved | |
Jackett 0.18.7 | 84 | Sunday, May 9, 2021 | Approved | |
Jackett 0.18.6 | 38 | Sunday, May 9, 2021 | Approved | |
Jackett 0.17.1036 | 69 | Saturday, May 8, 2021 | Approved | |
Jackett 0.17.1035 | 49 | Friday, May 7, 2021 | Approved | |
Jackett 0.17.1032 | 56 | Friday, May 7, 2021 | Approved | |
Jackett 0.17.1027 | 90 | Thursday, May 6, 2021 | Approved | |
Jackett 0.17.1016 | 71 | Wednesday, May 5, 2021 | Approved | |
Jackett 0.17.1013 | 43 | Wednesday, May 5, 2021 | Approved | |
Jackett 0.17.1011 | 45 | Wednesday, May 5, 2021 | Approved | |
Jackett 0.17.1008 | 60 | Tuesday, May 4, 2021 | Approved | |
Jackett 0.17.1006 | 76 | Tuesday, May 4, 2021 | Approved | |
Jackett 0.17.996 | 95 | Monday, May 3, 2021 | Approved | |
Jackett 0.17.972 | 78 | Sunday, May 2, 2021 | Approved | |
Jackett 0.17.966 | 86 | Saturday, May 1, 2021 | Approved | |
Jackett 0.17.963 | 76 | Friday, April 30, 2021 | Approved | |
Jackett 0.17.960 | 102 | Thursday, April 29, 2021 | Approved | |
Jackett 0.17.954 | 85 | Wednesday, April 28, 2021 | Approved | |
Jackett 0.17.952 | 121 | Monday, April 26, 2021 | Approved | |
Jackett 0.17.946 | 100 | Sunday, April 25, 2021 | Approved | |
Jackett 0.17.938 | 93 | Saturday, April 24, 2021 | Approved | |
Jackett 0.17.934 | 74 | Friday, April 23, 2021 | Approved | |
Jackett 0.17.933 | 92 | Thursday, April 22, 2021 | Approved | |
Jackett 0.17.931 | 81 | Wednesday, April 21, 2021 | Approved | |
Jackett 0.17.908 | 91 | Tuesday, April 20, 2021 | Approved | |
Jackett 0.17.907 | 92 | Monday, April 19, 2021 | Approved | |
Jackett 0.17.897 | 83 | Sunday, April 18, 2021 | Approved | |
Jackett 0.17.892 | 97 | Saturday, April 17, 2021 | Approved | |
Jackett 0.17.889 | 94 | Friday, April 16, 2021 | Approved | |
Jackett 0.17.886 | 83 | Thursday, April 15, 2021 | Approved | |
Jackett 0.17.883 | 83 | Wednesday, April 14, 2021 | Approved | |
Jackett 0.17.882 | 94 | Tuesday, April 13, 2021 | Approved | |
Jackett 0.17.876 | 84 | Monday, April 12, 2021 | Approved | |
Jackett 0.17.872 | 83 | Sunday, April 11, 2021 | Approved | |
Jackett 0.17.866 | 90 | Saturday, April 10, 2021 | Approved | |
Jackett 0.17.865 | 74 | Friday, April 9, 2021 | Approved | |
Jackett 0.17.856 | 106 | Wednesday, April 7, 2021 | Approved | |
Jackett 0.17.855 | 91 | Tuesday, April 6, 2021 | Approved | |
Jackett 0.17.848 | 86 | Monday, April 5, 2021 | Approved | |
Jackett 0.17.841 | 84 | Sunday, April 4, 2021 | Approved | |
Jackett 0.17.838 | 83 | Saturday, April 3, 2021 | Approved | |
Jackett 0.17.830 | 90 | Friday, April 2, 2021 | Approved | |
Jackett 0.17.828 | 82 | Thursday, April 1, 2021 | Approved | |
Jackett 0.17.826 | 45 | Wednesday, March 31, 2021 | Approved | |
Jackett 0.17.815 | 97 | Tuesday, March 30, 2021 | Approved | |
Jackett 0.17.810 | 107 | Monday, March 29, 2021 | Approved | |
Jackett 0.17.797 | 96 | Sunday, March 28, 2021 | Approved | |
Jackett 0.17.794 | 106 | Saturday, March 27, 2021 | Approved | |
Jackett 0.17.790 | 94 | Friday, March 26, 2021 | Approved | |
Jackett 0.17.788 | 101 | Thursday, March 25, 2021 | Approved | |
Jackett 0.17.780 | 113 | Tuesday, March 23, 2021 | Approved | |
Jackett 0.17.775 | 87 | Monday, March 22, 2021 | Approved | |
Jackett 0.17.764 | 102 | Sunday, March 21, 2021 | Approved | |
Jackett 0.17.743 | 96 | Saturday, March 20, 2021 | Approved | |
Jackett 0.17.738 | 87 | Friday, March 19, 2021 | Approved | |
Jackett 0.17.737 | 102 | Thursday, March 18, 2021 | Approved | |
Jackett 0.17.728 | 79 | Wednesday, March 17, 2021 | Approved | |
Jackett 0.17.724 | 69 | Wednesday, March 17, 2021 | Approved | |
Jackett 0.17.710 | 94 | Tuesday, March 16, 2021 | Approved | |
Jackett 0.17.699 | 86 | Monday, March 15, 2021 | Approved | |
Jackett 0.17.684 | 107 | Sunday, March 14, 2021 | Approved | |
Jackett 0.17.677 | 186 | Friday, March 12, 2021 | Approved | |
Jackett 0.17.671 | 147 | Thursday, March 11, 2021 | Approved | |
Jackett 0.17.668 | 123 | Wednesday, March 10, 2021 | Approved | |
Jackett 0.17.665 | 165 | Tuesday, March 9, 2021 | Approved | |
Jackett 0.17.656 | 127 | Monday, March 8, 2021 | Approved | |
Jackett 0.17.655 | 155 | Sunday, March 7, 2021 | Approved | |
Jackett 0.17.638 | 142 | Saturday, March 6, 2021 | Approved | |
Jackett 0.17.627 | 144 | Friday, March 5, 2021 | Approved | |
Jackett 0.17.617 | 156 | Thursday, March 4, 2021 | Approved | |
Jackett 0.17.611 | 205 | Wednesday, March 3, 2021 | Approved | |
Jackett 0.17.606 | 106 | Tuesday, March 2, 2021 | Approved | |
Jackett 0.17.605 | 84 | Monday, March 1, 2021 | Approved | |
Jackett 0.17.598 | 102 | Sunday, February 28, 2021 | Approved | |
Jackett 0.17.591 | 105 | Saturday, February 27, 2021 | Approved | |
Jackett 0.17.584 | 128 | Wednesday, February 24, 2021 | Approved | |
Jackett 0.17.580 | 91 | Tuesday, February 23, 2021 | Approved | |
Jackett 0.17.570 | 370 | Sunday, February 21, 2021 | Approved | |
Jackett 0.17.568 | 81 | Saturday, February 20, 2021 | Approved | |
Jackett 0.17.562 | 278 | Wednesday, February 17, 2021 | Approved | |
Jackett 0.17.546 | 162 | Tuesday, February 16, 2021 | Approved | |
Jackett 0.17.538 | 171 | Monday, February 15, 2021 | Approved | |
Jackett 0.17.532 | 143 | Sunday, February 14, 2021 | Approved | |
Jackett 0.17.513 | 144 | Saturday, February 13, 2021 | Approved | |
Jackett 0.17.496 | 235 | Thursday, February 11, 2021 | Approved | |
Jackett 0.17.484 | 155 | Wednesday, February 10, 2021 | Approved | |
Jackett 0.17.474 | 232 | Monday, February 8, 2021 | Approved | |
Jackett 0.17.464 | 151 | Sunday, February 7, 2021 | Approved | |
Jackett 0.17.456 | 234 | Friday, February 5, 2021 | Approved | |
Jackett 0.17.449 | 264 | Tuesday, February 2, 2021 | Approved | |
Jackett 0.17.437 | 139 | Monday, February 1, 2021 | Approved | |
Jackett 0.17.405 | 229 | Saturday, January 30, 2021 | Approved | |
Jackett 0.17.401 | 157 | Friday, January 29, 2021 | Approved | |
Jackett 0.17.383 | 218 | Wednesday, January 27, 2021 | Approved | |
Jackett 0.17.370 | 140 | Tuesday, January 26, 2021 | Approved | |
Jackett 0.17.354 | 141 | Monday, January 25, 2021 | Approved | |
Jackett 0.17.348 | 202 | Saturday, January 23, 2021 | Approved | |
Jackett 0.17.343 | 148 | Friday, January 22, 2021 | Approved | |
Jackett 0.17.337 | 144 | Thursday, January 21, 2021 | Approved | |
Jackett 0.17.333 | 112 | Wednesday, January 20, 2021 | Approved | |
Jackett 0.17.324 | 155 | Tuesday, January 19, 2021 | Approved | |
Jackett 0.17.311 | 208 | Monday, January 18, 2021 | Approved | |
Jackett 0.17.294 | 181 | Sunday, January 17, 2021 | Approved | |
Jackett 0.17.284 | 145 | Thursday, January 14, 2021 | Approved | |
Jackett 0.17.261 | 110 | Wednesday, January 13, 2021 | Approved | |
Jackett 0.17.242 | 94 | Tuesday, January 12, 2021 | Approved | |
Jackett 0.17.231 | 91 | Monday, January 11, 2021 | Approved | |
Jackett 0.17.213 | 112 | Saturday, January 9, 2021 | Approved | |
Jackett 0.17.207 | 126 | Thursday, January 7, 2021 | Approved | |
Jackett 0.17.197 | 169 | Sunday, January 3, 2021 | Approved | |
Jackett 0.17.181 | 105 | Saturday, January 2, 2021 | Approved | |
Jackett 0.17.168 | 112 | Friday, January 1, 2021 | Approved | |
Jackett 0.17.166 | 131 | Wednesday, December 30, 2020 | Approved | |
Jackett 0.17.159 | 210 | Wednesday, December 23, 2020 | Approved | |
Jackett 0.17.153 | 100 | Tuesday, December 22, 2020 | Approved | |
Jackett 0.17.145 | 106 | Monday, December 21, 2020 | Approved | |
Jackett 0.17.118 | 107 | Sunday, December 20, 2020 | Approved | |
Jackett 0.17.103 | 99 | Saturday, December 19, 2020 | Approved | |
Jackett 0.17.101 | 98 | Friday, December 18, 2020 | Approved | |
Jackett 0.17.100 | 97 | Thursday, December 17, 2020 | Approved | |
Jackett 0.17.87 | 106 | Wednesday, December 16, 2020 | Approved | |
Jackett 0.17.64 | 109 | Tuesday, December 15, 2020 | Approved | |
Jackett 0.17.50 | 117 | Monday, December 14, 2020 | Approved | |
Jackett 0.17.48 | 116 | Sunday, December 13, 2020 | Approved | |
Jackett 0.17.29 | 108 | Saturday, December 12, 2020 | Approved | |
Jackett 0.17.20 | 108 | Friday, December 11, 2020 | Approved | |
Jackett 0.17.15 | 122 | Thursday, December 10, 2020 | Approved | |
Jackett 0.17.11 | 116 | Wednesday, December 9, 2020 | Approved | |
Jackett 0.17.3 | 98 | Tuesday, December 8, 2020 | Approved | |
Jackett 0.16.2374 | 79 | Tuesday, December 8, 2020 | Approved | |
Jackett 0.16.2347 | 101 | Monday, December 7, 2020 | Approved | |
Jackett 0.16.2316 | 112 | Sunday, December 6, 2020 | Approved | |
Jackett 0.16.2299 | 89 | Saturday, December 5, 2020 | Approved | |
Jackett 0.16.2294 | 104 | Friday, December 4, 2020 | Approved | |
Jackett 0.16.2291 | 104 | Thursday, December 3, 2020 | Approved | |
Jackett 0.16.2284 | 102 | Wednesday, December 2, 2020 | Approved | |
Jackett 0.16.2274 | 96 | Tuesday, December 1, 2020 | Approved | |
Jackett 0.16.2269 | 125 | Sunday, November 29, 2020 | Approved | |
Jackett 0.16.2256 | 131 | Friday, November 27, 2020 | Approved | |
Jackett 0.16.2240 | 107 | Thursday, November 26, 2020 | Approved | |
Jackett 0.16.2236 | 109 | Wednesday, November 25, 2020 | Approved | |
Jackett 0.16.2233 | 95 | Tuesday, November 24, 2020 | Approved | |
Jackett 0.16.2229 | 109 | Monday, November 23, 2020 | Approved | |
Jackett 0.16.2220 | 108 | Sunday, November 22, 2020 | Approved | |
Jackett 0.16.2215 | 106 | Saturday, November 21, 2020 | Approved | |
Jackett 0.16.2207 | 92 | Friday, November 20, 2020 | Approved | |
Jackett 0.16.2199 | 104 | Thursday, November 19, 2020 | Approved | |
Jackett 0.16.2184 | 91 | Wednesday, November 18, 2020 | Approved | |
Jackett 0.16.2173 | 124 | Tuesday, November 17, 2020 | Approved | |
Jackett 0.16.2168 | 124 | Monday, November 16, 2020 | Approved | |
Jackett 0.16.2157 | 110 | Sunday, November 15, 2020 | Approved | |
Jackett 0.16.2152 | 118 | Saturday, November 14, 2020 | Approved | |
Jackett 0.16.2148 | 116 | Friday, November 13, 2020 | Approved | |
Jackett 0.16.2142 | 110 | Thursday, November 12, 2020 | Approved | |
Jackett 0.16.2139 | 118 | Wednesday, November 11, 2020 | Approved | |
Jackett 0.16.2131 | 119 | Tuesday, November 10, 2020 | Approved | |
Jackett 0.16.2124 | 110 | Monday, November 9, 2020 | Approved | |
Jackett 0.16.2118 | 99 | Monday, November 9, 2020 | Approved | |
Jackett 0.16.2106 | 114 | Sunday, November 8, 2020 | Approved | |
Jackett 0.16.2096 | 109 | Saturday, November 7, 2020 | Approved | |
Jackett 0.16.2080 | 114 | Friday, November 6, 2020 | Approved | |
Jackett 0.16.2076 | 106 | Thursday, November 5, 2020 | Approved | |
Jackett 0.16.2058 | 151 | Wednesday, November 4, 2020 | Approved | |
Jackett 0.16.2040 | 134 | Tuesday, November 3, 2020 | Approved | |
Jackett 0.16.2010 | 118 | Monday, November 2, 2020 | Approved | |
Jackett 0.16.1999 | 141 | Sunday, November 1, 2020 | Approved | |
Jackett 0.16.1989 | 78 | Sunday, November 1, 2020 | Approved | |
Jackett 0.16.1964 | 106 | Saturday, October 31, 2020 | Approved | |
Jackett 0.16.1937 | 124 | Friday, October 30, 2020 | Approved | |
Jackett 0.16.1933 | 119 | Thursday, October 29, 2020 | Approved | |
Jackett 0.16.1922 | 127 | Wednesday, October 28, 2020 | Approved | |
Jackett 0.16.1902 | 114 | Tuesday, October 27, 2020 | Approved | |
Jackett 0.16.1896 | 138 | Monday, October 26, 2020 | Approved | |
Jackett 0.16.1883 | 123 | Sunday, October 25, 2020 | Approved | |
Jackett 0.16.1873 | 97 | Saturday, October 24, 2020 | Approved | |
Jackett 0.16.1859 | 125 | Friday, October 23, 2020 | Approved | |
Jackett 0.16.1851 | 140 | Thursday, October 22, 2020 | Approved | |
Jackett 0.16.1844 | 134 | Wednesday, October 21, 2020 | Approved | |
Jackett 0.16.1842 | 148 | Tuesday, October 20, 2020 | Approved | |
Jackett 0.16.1819 | 160 | Monday, October 19, 2020 | Approved | |
Jackett 0.16.1783 | 132 | Sunday, October 18, 2020 | Approved | |
Jackett 0.16.1771 | 133 | Saturday, October 17, 2020 | Approved | |
Jackett 0.16.1757 | 127 | Friday, October 16, 2020 | Approved | |
Jackett 0.16.1740 | 149 | Thursday, October 15, 2020 | Approved | |
Jackett 0.16.1724 | 120 | Wednesday, October 14, 2020 | Approved | |
Jackett 0.16.1709 | 135 | Tuesday, October 13, 2020 | Approved | |
Jackett 0.16.1684 | 133 | Monday, October 12, 2020 | Approved | |
Jackett 0.16.1673 | 131 | Sunday, October 11, 2020 | Approved | |
Jackett 0.16.1670 | 139 | Saturday, October 10, 2020 | Approved | |
Jackett 0.16.1668 | 118 | Saturday, October 10, 2020 | Approved | |
Jackett 0.16.1664 | 137 | Friday, October 9, 2020 | Approved | |
Jackett 0.16.1635 | 146 | Thursday, October 8, 2020 | Approved | |
Jackett 0.16.1621 | 147 | Wednesday, October 7, 2020 | Approved | |
Jackett 0.16.1600 | 116 | Tuesday, October 6, 2020 | Approved | |
Jackett 0.16.1583 | 103 | Monday, October 5, 2020 | Approved | |
Jackett 0.16.1559 | 141 | Sunday, October 4, 2020 | Approved | |
Jackett 0.16.1549 | 118 | Saturday, October 3, 2020 | Approved | |
Jackett 0.16.1523 | 142 | Friday, October 2, 2020 | Approved | |
Jackett 0.16.1472 | 112 | Thursday, October 1, 2020 | Approved | |
Jackett 0.16.1451 | 127 | Wednesday, September 30, 2020 | Approved | |
Jackett 0.16.1431 | 144 | Tuesday, September 29, 2020 | Approved | |
Jackett 0.16.1412 | 146 | Monday, September 28, 2020 | Approved | |
Jackett 0.16.1389 | 136 | Sunday, September 27, 2020 | Approved | |
Jackett 0.16.1356 | 130 | Saturday, September 26, 2020 | Approved | |
Jackett 0.16.1350 | 134 | Friday, September 25, 2020 | Approved | |
Jackett 0.16.1340 | 116 | Thursday, September 24, 2020 | Approved | |
Jackett 0.16.1327 | 128 | Wednesday, September 23, 2020 | Approved | |
Jackett 0.16.1307 | 200 | Tuesday, September 22, 2020 | Approved | |
Jackett 0.16.1269 | 143 | Monday, September 21, 2020 | Approved | |
Jackett 0.16.1260 | 148 | Sunday, September 20, 2020 | Approved | |
Jackett 0.16.1252 | 159 | Saturday, September 19, 2020 | Approved | |
Jackett 0.16.1241 | 117 | Friday, September 18, 2020 | Approved | |
Jackett 0.16.1231 | 134 | Thursday, September 17, 2020 | Approved | |
Jackett 0.16.1222 | 126 | Wednesday, September 16, 2020 | Approved | |
Jackett 0.16.1218 | 121 | Tuesday, September 15, 2020 | Approved | |
Jackett 0.16.1204 | 128 | Monday, September 14, 2020 | Approved | |
Jackett 0.16.1163 | 144 | Sunday, September 13, 2020 | Approved | |
Jackett 0.16.1138 | 122 | Saturday, September 12, 2020 | Approved | |
Jackett 0.16.1128 | 145 | Friday, September 11, 2020 | Approved | |
Jackett 0.16.1121 | 111 | Thursday, September 10, 2020 | Approved | |
Jackett 0.16.1114 | 168 | Wednesday, September 9, 2020 | Approved | |
Jackett 0.16.1103 | 148 | Tuesday, September 8, 2020 | Approved | |
Jackett 0.16.1082 | 185 | Monday, September 7, 2020 | Approved | |
Jackett 0.16.1077 | 165 | Sunday, September 6, 2020 | Approved | |
Jackett 0.16.1072 | 185 | Saturday, September 5, 2020 | Approved | |
Jackett 0.16.1062 | 133 | Friday, September 4, 2020 | Approved | |
Jackett 0.16.1057 | 122 | Thursday, September 3, 2020 | Approved | |
Jackett 0.16.1054 | 151 | Wednesday, September 2, 2020 | Approved | |
Jackett 0.16.1050 | 132 | Tuesday, September 1, 2020 | Approved | |
Jackett 0.16.1049 | 133 | Monday, August 31, 2020 | Approved | |
Jackett 0.16.1045 | 192 | Friday, August 28, 2020 | Approved | |
Jackett 0.16.1039 | 136 | Thursday, August 27, 2020 | Approved | |
Jackett 0.16.1038 | 124 | Tuesday, August 25, 2020 | Approved | |
Jackett 0.16.1037 | 119 | Monday, August 24, 2020 | Approved | |
Jackett 0.16.1023 | 165 | Saturday, August 22, 2020 | Approved | |
Jackett 0.16.1021 | 136 | Friday, August 21, 2020 | Approved | |
Jackett 0.16.1020 | 166 | Thursday, August 20, 2020 | Approved | |
Jackett 0.16.1018 | 180 | Wednesday, August 19, 2020 | Approved | |
Jackett 0.16.1017 | 144 | Tuesday, August 18, 2020 | Approved | |
Jackett 0.16.1012 | 138 | Monday, August 17, 2020 | Approved | |
Jackett 0.16.1002 | 132 | Sunday, August 16, 2020 | Approved | |
Jackett 0.16.998 | 130 | Saturday, August 15, 2020 | Approved | |
Jackett 0.16.991 | 135 | Friday, August 14, 2020 | Approved | |
Jackett 0.16.987 | 151 | Thursday, August 13, 2020 | Approved | |
Jackett 0.16.985 | 147 | Wednesday, August 12, 2020 | Approved | |
Jackett 0.16.979 | 167 | Sunday, August 9, 2020 | Approved | |
Jackett 0.16.976 | 142 | Saturday, August 8, 2020 | Approved | |
Jackett 0.16.962 | 136 | Thursday, August 6, 2020 | Approved | |
Jackett 0.16.949 | 110 | Wednesday, August 5, 2020 | Approved | |
Jackett 0.16.946 | 114 | Tuesday, August 4, 2020 | Approved | |
Jackett 0.16.940 | 130 | Monday, August 3, 2020 | Approved | |
Jackett 0.16.938 | 188 | Sunday, August 2, 2020 | Approved | |
Jackett 0.16.933 | 150 | Friday, July 31, 2020 | Approved | |
Jackett 0.16.922 | 139 | Friday, July 31, 2020 | Approved | |
Jackett 0.16.909 | 156 | Monday, July 27, 2020 | Approved | |
Jackett 0.16.899 | 173 | Sunday, July 26, 2020 | Approved | |
Jackett 0.16.896 | 197 | Friday, July 24, 2020 | Approved | |
Jackett 0.16.895 | 136 | Thursday, July 23, 2020 | Approved | |
Jackett 0.16.891 | 136 | Wednesday, July 22, 2020 | Approved | |
Jackett 0.16.873 | 148 | Tuesday, July 21, 2020 | Approved | |
Jackett 0.16.865 | 154 | Monday, July 20, 2020 | Approved | |
Jackett 0.16.863 | 157 | Sunday, July 19, 2020 | Approved | |
Jackett 0.16.859 | 138 | Saturday, July 18, 2020 | Approved | |
Jackett 0.16.857 | 119 | Friday, July 17, 2020 | Approved | |
Jackett 0.16.849 | 161 | Thursday, July 16, 2020 | Approved | |
Jackett 0.16.848 | 139 | Wednesday, July 15, 2020 | Approved | |
Jackett 0.16.838 | 147 | Tuesday, July 14, 2020 | Approved | |
Jackett 0.16.836 | 126 | Monday, July 13, 2020 | Approved | |
Jackett 0.16.830 | 130 | Monday, July 13, 2020 | Approved | |
Jackett 0.16.821 | 187 | Sunday, July 12, 2020 | Approved | |
Jackett 0.16.817 | 190 | Friday, July 10, 2020 | Approved | |
Jackett 0.16.815 | 135 | Thursday, July 9, 2020 | Approved | |
Jackett 0.16.814 | 149 | Wednesday, July 8, 2020 | Approved | |
Jackett 0.16.800 | 144 | Tuesday, July 7, 2020 | Approved | |
Jackett 0.16.795 | 174 | Sunday, July 5, 2020 | Approved | |
Jackett 0.16.793 | 199 | Saturday, July 4, 2020 | Approved | |
Jackett 0.16.790 | 127 | Friday, July 3, 2020 | Approved | |
Jackett 0.16.788 | 179 | Wednesday, July 1, 2020 | Approved | |
Jackett 0.16.783 | 145 | Tuesday, June 30, 2020 | Approved | |
Jackett 0.16.779 | 179 | Monday, June 29, 2020 | Approved | |
Jackett 0.16.771 | 137 | Monday, June 29, 2020 | Approved | |
Jackett 0.16.770 | 211 | Friday, June 26, 2020 | Approved | |
Jackett 0.16.767 | 152 | Thursday, June 25, 2020 | Approved | |
Jackett 0.16.760 | 179 | Wednesday, June 24, 2020 | Approved | |
Jackett 0.16.759 | 210 | Monday, June 22, 2020 | Approved | |
Jackett 0.16.745 | 198 | Sunday, June 21, 2020 | Approved | |
Jackett 0.16.735 | 153 | Saturday, June 20, 2020 | Approved | |
Jackett 0.16.734 | 156 | Friday, June 19, 2020 | Approved | |
Jackett 0.16.728 | 208 | Wednesday, June 17, 2020 | Approved | |
Jackett 0.16.722 | 156 | Monday, June 15, 2020 | Approved | |
Jackett 0.16.704 | 176 | Saturday, June 13, 2020 | Approved | |
Jackett 0.16.700 | 177 | Friday, June 12, 2020 | Approved | |
Jackett 0.16.691 | 178 | Wednesday, June 10, 2020 | Approved | |
Jackett 0.16.656 | 182 | Tuesday, June 9, 2020 | Approved | |
Jackett 0.16.650 | 217 | Monday, June 8, 2020 | Approved | |
Jackett 0.16.643 | 148 | Sunday, June 7, 2020 | Approved | |
Jackett 0.16.640 | 172 | Sunday, June 7, 2020 | Approved | |
Jackett 0.16.616 | 194 | Saturday, June 6, 2020 | Approved | |
Jackett 0.16.613 | 170 | Friday, June 5, 2020 | Approved | |
Jackett 0.16.609 | 183 | Thursday, June 4, 2020 | Approved | |
Jackett 0.16.605 | 182 | Wednesday, June 3, 2020 | Approved | |
Jackett 0.16.598 | 179 | Tuesday, June 2, 2020 | Approved | |
Jackett 0.16.589 | 204 | Monday, June 1, 2020 | Approved | |
Jackett 0.16.585 | 195 | Sunday, May 31, 2020 | Approved | |
Jackett 0.16.554 | 194 | Thursday, May 28, 2020 | Approved | |
Jackett 0.16.551 | 208 | Wednesday, May 27, 2020 | Approved | |
Jackett 0.16.548 | 197 | Wednesday, May 27, 2020 | Approved | |
Jackett 0.16.535 | 188 | Monday, May 25, 2020 | Approved | |
Jackett 0.16.530 | 211 | Sunday, May 24, 2020 | Approved | |
Jackett 0.16.527 | 170 | Sunday, May 24, 2020 | Approved | |
Jackett 0.16.526 | 234 | Saturday, May 23, 2020 | Approved | |
Jackett 0.16.524 | 181 | Saturday, May 23, 2020 | Approved | |
Jackett 0.16.521 | 199 | Friday, May 22, 2020 | Approved | |
Jackett 0.16.515 | 190 | Thursday, May 21, 2020 | Approved | |
Jackett 0.16.511 | 155 | Wednesday, May 20, 2020 | Approved | |
Jackett 0.16.496 | 210 | Tuesday, May 19, 2020 | Approved | |
Jackett 0.16.488 | 176 | Sunday, May 17, 2020 | Approved | |
Jackett 0.16.487 | 159 | Sunday, May 17, 2020 | Approved | |
Jackett 0.16.485 | 177 | Saturday, May 16, 2020 | Approved | |
Jackett 0.16.463 | 192 | Saturday, May 16, 2020 | Approved | |
Jackett 0.16.449 | 166 | Friday, May 15, 2020 | Approved | |
Jackett 0.16.438 | 179 | Thursday, May 14, 2020 | Approved | |
Jackett 0.16.427 | 231 | Wednesday, May 13, 2020 | Approved | |
Jackett 0.16.373 | 192 | Tuesday, May 12, 2020 | Approved | |
Jackett 0.16.324 | 203 | Sunday, May 10, 2020 | Approved | |
Jackett 0.16.312 | 204 | Saturday, May 9, 2020 | Approved | |
Jackett 0.16.310 | 224 | Thursday, May 7, 2020 | Approved | |
Jackett 0.16.304 | 226 | Thursday, May 7, 2020 | Approved | |
Jackett 0.16.296 | 166 | Tuesday, May 5, 2020 | Approved | |
Jackett 0.16.284 | 208 | Monday, May 4, 2020 | Approved | |
Jackett 0.16.227 | 194 | Saturday, May 2, 2020 | Approved | |
Jackett 0.16.185 | 189 | Thursday, April 30, 2020 | Approved | |
Jackett 0.16.175 | 199 | Wednesday, April 29, 2020 | Approved | |
Jackett 0.16.164 | 184 | Wednesday, April 29, 2020 | Approved | |
Jackett 0.16.156 | 202 | Monday, April 27, 2020 | Approved | |
Jackett 0.16.127 | 236 | Saturday, April 25, 2020 | Approved | |
Jackett 0.16.105 | 210 | Thursday, April 23, 2020 | Approved | |
Jackett 0.16.103 | 211 | Wednesday, April 22, 2020 | Approved | |
Jackett 0.16.96 | 192 | Tuesday, April 21, 2020 | Approved | |
Jackett 0.16.71 | 193 | Monday, April 20, 2020 | Approved | |
Jackett 0.16.59 | 228 | Sunday, April 19, 2020 | Approved | |
Jackett 0.16.34 | 209 | Saturday, April 18, 2020 | Approved | |
Jackett 0.16.23 | 214 | Thursday, April 16, 2020 | Approved | |
Jackett 0.16.18 | 197 | Wednesday, April 15, 2020 | Approved | |
Jackett 0.16.7 | 159 | Wednesday, April 15, 2020 | Approved | |
Jackett 0.15.36 | 244 | Monday, April 13, 2020 | Approved | |
Jackett 0.15.5 | 225 | Sunday, April 12, 2020 | Approved | |
Jackett 0.14.541 | 204 | Saturday, April 11, 2020 | Approved | |
Jackett 0.14.501 | 200 | Friday, April 10, 2020 | Approved | |
Jackett 0.14.485 | 184 | Friday, April 10, 2020 | Approved | |
Jackett 0.14.476 | 211 | Wednesday, April 8, 2020 | Approved | |
Jackett 0.14.459 | 218 | Tuesday, April 7, 2020 | Approved | |
Jackett 0.14.454 | 191 | Tuesday, April 7, 2020 | Approved | |
Jackett 0.14.447 | 133 | Monday, April 6, 2020 | Approved | |
Jackett 0.14.433 | 161 | Monday, April 6, 2020 | Approved | |
Jackett 0.14.418 | 147 | Saturday, April 4, 2020 | Approved | |
Jackett 0.14.396 | 151 | Friday, April 3, 2020 | Approved | |
Jackett 0.14.384 | 202 | Thursday, April 2, 2020 | Approved | |
Jackett 0.14.376 | 136 | Wednesday, April 1, 2020 | Approved | |
Jackett 0.14.365 | 179 | Tuesday, March 31, 2020 | Approved | |
Jackett 0.14.358 | 187 | Monday, March 30, 2020 | Approved | |
Jackett 0.14.326 | 201 | Sunday, March 29, 2020 | Approved | |
Jackett 0.14.303 | 148 | Saturday, March 28, 2020 | Approved | |
Jackett 0.14.302 | 131 | Saturday, March 28, 2020 | Approved | |
Jackett 0.14.299 | 153 | Friday, March 27, 2020 | Approved | |
Jackett 0.14.297 | 150 | Friday, March 27, 2020 | Approved | |
Jackett 0.14.287 | 153 | Thursday, March 26, 2020 | Approved | |
Jackett 0.14.257 | 221 | Tuesday, March 24, 2020 | Approved | |
Jackett 0.14.164 | 186 | Saturday, March 21, 2020 | Approved | |
Jackett 0.14.136 | 205 | Friday, March 20, 2020 | Approved | |
Jackett 0.14.125 | 187 | Thursday, March 19, 2020 | Approved | |
Jackett 0.14.112 | 159 | Wednesday, March 18, 2020 | Approved | |
Jackett 0.14.99 | 182 | Tuesday, March 17, 2020 | Approved | |
Jackett 0.13.633 | 276 | Friday, March 13, 2020 | Approved | |
Jackett 0.13.625 | 225 | Thursday, March 12, 2020 | Approved | |
Jackett 0.13.611 | 180 | Wednesday, March 11, 2020 | Approved | |
Jackett 0.13.581 | 214 | Tuesday, March 10, 2020 | Approved | |
Jackett 0.13.560 | 185 | Monday, March 9, 2020 | Approved | |
Jackett 0.13.529 | 187 | Sunday, March 8, 2020 | Approved | |
Jackett 0.13.506 | 183 | Saturday, March 7, 2020 | Approved | |
Jackett 0.13.483 | 181 | Friday, March 6, 2020 | Approved | |
Jackett 0.13.467 | 204 | Thursday, March 5, 2020 | Approved | |
Jackett 0.13.446 | 168 | Wednesday, March 4, 2020 | Approved | |
Jackett 0.13.427 | 163 | Tuesday, March 3, 2020 | Approved | |
Jackett 0.13.405 | 171 | Monday, March 2, 2020 | Approved | |
Jackett 0.13.378 | 194 | Sunday, March 1, 2020 | Approved | |
Jackett 0.13.280 | 177 | Saturday, February 29, 2020 | Approved | |
Jackett 0.13.228 | 195 | Friday, February 28, 2020 | Approved | |
Jackett 0.13.222 | 149 | Thursday, February 27, 2020 | Approved | |
Jackett 0.13.211 | 185 | Wednesday, February 26, 2020 | Approved | |
Jackett 0.13.201 | 187 | Tuesday, February 25, 2020 | Approved | |
Jackett 0.13.163 | 202 | Saturday, February 22, 2020 | Approved | |
Jackett 0.13.144 | 225 | Thursday, February 20, 2020 | Approved | |
Jackett 0.13.135 | 205 | Tuesday, February 18, 2020 | Approved | |
Jackett 0.13.127 | 222 | Monday, February 17, 2020 | Approved | |
Jackett 0.13.122 | 235 | Saturday, February 15, 2020 | Approved | |
Jackett 0.12.1815 | 157 | Friday, February 14, 2020 | Approved | |
Jackett 0.12.1811 | 161 | Thursday, February 13, 2020 | Approved | |
Jackett 0.12.1804 | 145 | Wednesday, February 12, 2020 | Approved | |
Jackett 0.12.1795 | 151 | Tuesday, February 11, 2020 | Approved | |
Jackett 0.12.1779 | 155 | Monday, February 10, 2020 | Approved | |
Jackett 0.12.1765 | 162 | Sunday, February 9, 2020 | Approved | |
Jackett 0.12.1746 | 162 | Saturday, February 8, 2020 | Approved | |
Jackett 0.12.1732 | 176 | Friday, February 7, 2020 | Approved | |
Jackett 0.12.1701 | 165 | Thursday, February 6, 2020 | Approved | |
Jackett 0.12.1681 | 169 | Wednesday, February 5, 2020 | Approved | |
Jackett 0.12.1669 | 180 | Sunday, February 2, 2020 | Approved | |
Jackett 0.12.1638 | 221 | Sunday, January 26, 2020 | Approved | |
Jackett 0.12.1635 | 140 | Saturday, January 25, 2020 | Approved | |
Jackett 0.12.1632 | 190 | Thursday, January 23, 2020 | Approved | |
Jackett 0.12.1623 | 182 | Tuesday, January 21, 2020 | Approved | |
Jackett 0.12.1605 | 147 | Monday, January 20, 2020 | Approved | |
Jackett 0.12.1590 | 156 | Saturday, January 18, 2020 | Approved | |
Jackett 0.12.1582 | 182 | Friday, January 17, 2020 | Approved | |
Jackett 0.12.1574 | 142 | Wednesday, January 15, 2020 | Approved | |
Jackett 0.12.1572 | 156 | Tuesday, January 14, 2020 | Approved | |
Jackett 0.12.1561 | 168 | Sunday, January 12, 2020 | Approved | |
Jackett 0.12.1539 | 142 | Saturday, January 11, 2020 | Approved | |
Jackett 0.12.1525 | 179 | Friday, January 10, 2020 | Approved | |
Jackett 0.12.1503 | 172 | Thursday, January 9, 2020 | Approved | |
Jackett 0.12.1494 | 136 | Wednesday, January 8, 2020 | Approved | |
Jackett 0.12.1486 | 174 | Tuesday, January 7, 2020 | Approved | |
Jackett 0.12.1470 | 116 | Monday, January 6, 2020 | Approved | |
Jackett 0.12.1449 | 138 | Sunday, January 5, 2020 | Approved | |
Jackett 0.12.1415 | 142 | Saturday, January 4, 2020 | Approved | |
Jackett 0.12.1402 | 148 | Friday, January 3, 2020 | Approved | |
Jackett 0.12.1398 | 163 | Thursday, January 2, 2020 | Approved | |
Jackett 0.12.1391 | 135 | Wednesday, January 1, 2020 | Approved | |
Jackett 0.12.1384 | 148 | Monday, December 30, 2019 | Approved | |
Jackett 0.12.1378 | 147 | Sunday, December 29, 2019 | Approved | |
Jackett 0.12.1361 | 115 | Saturday, December 28, 2019 | Approved | |
Jackett 0.12.1342 | 234 | Sunday, December 22, 2019 | Approved | |
Jackett 0.12.1323 | 159 | Saturday, December 21, 2019 | Approved | |
Jackett 0.12.1301 | 142 | Friday, December 20, 2019 | Approved | |
Jackett 0.12.1245 | 203 | Tuesday, December 17, 2019 | Approved | |
Jackett 0.12.1227 | 171 | Monday, December 16, 2019 | Approved | |
Jackett 0.12.1213 | 159 | Sunday, December 15, 2019 | Approved | |
Jackett 0.12.1198 | 158 | Saturday, December 14, 2019 | Approved | |
Jackett 0.12.1175 | 148 | Friday, December 13, 2019 | Approved | |
Jackett 0.12.1146 | 156 | Wednesday, December 11, 2019 | Approved | |
Jackett 0.12.1136 | 165 | Wednesday, December 11, 2019 | Approved | |
Jackett 0.12.1133 | 111 | Tuesday, December 10, 2019 | Approved | |
Jackett 0.12.1132 | 174 | Tuesday, December 10, 2019 | Approved | |
Jackett 0.12.1115 | 169 | Monday, December 9, 2019 | Approved | |
Jackett 0.12.1099 | 179 | Sunday, December 8, 2019 | Approved | |
Jackett 0.12.1096 | 161 | Saturday, December 7, 2019 | Approved | |
Jackett 0.12.1091 | 161 | Friday, December 6, 2019 | Approved | |
Jackett 0.12.1084 | 158 | Thursday, December 5, 2019 | Approved | |
Jackett 0.12.1068 | 172 | Wednesday, December 4, 2019 | Approved | |
Jackett 0.12.1063 | 176 | Tuesday, December 3, 2019 | Approved | |
Jackett 0.12.1062 | 153 | Tuesday, December 3, 2019 | Approved | |
Jackett 0.12.1055 | 137 | Monday, December 2, 2019 | Approved | |
Jackett 0.12.1053 | 209 | Sunday, December 1, 2019 | Approved | |
Jackett 0.12.1047 | 156 | Saturday, November 30, 2019 | Approved | |
Jackett 0.12.1042 | 181 | Friday, November 29, 2019 | Approved | |
Jackett 0.12.1038 | 159 | Thursday, November 28, 2019 | Approved | |
Jackett 0.12.1035 | 163 | Wednesday, November 27, 2019 | Approved | |
Jackett 0.12.1032 | 185 | Tuesday, November 26, 2019 | Approved | |
Jackett 0.12.1028 | 177 | Monday, November 25, 2019 | Approved | |
Jackett 0.12.1026 | 184 | Saturday, November 23, 2019 | Approved | |
Jackett 0.12.1024 | 200 | Thursday, November 21, 2019 | Approved | |
Jackett 0.12.1014 | 161 | Wednesday, November 20, 2019 | Approved | |
Jackett 0.12.1008 | 180 | Tuesday, November 19, 2019 | Approved | |
Jackett 0.12.1007 | 191 | Monday, November 18, 2019 | Approved | |
Jackett 0.12.1000 | 181 | Sunday, November 17, 2019 | Approved | |
Jackett 0.12.999 | 197 | Saturday, November 16, 2019 | Approved | |
Jackett 0.12.994 | 190 | Friday, November 15, 2019 | Approved | |
Jackett 0.12.993 | 156 | Friday, November 15, 2019 | Approved | |
Jackett 0.12.992 | 153 | Thursday, November 14, 2019 | Approved | |
Jackett 0.12.991 | 156 | Thursday, November 14, 2019 | Approved | |
Jackett 0.12.990 | 165 | Wednesday, November 13, 2019 | Approved | |
Jackett 0.12.988 | 140 | Wednesday, November 13, 2019 | Approved | |
Jackett 0.12.987 | 118 | Wednesday, November 13, 2019 | Approved | |
Jackett 0.12.981 | 160 | Tuesday, November 12, 2019 | Approved | |
Jackett 0.12.979 | 177 | Tuesday, November 12, 2019 | Approved | |
Jackett 0.12.975 | 161 | Monday, November 11, 2019 | Approved | |
Jackett 0.12.950 | 163 | Monday, November 11, 2019 | Approved | |
Jackett 0.12.947 | 139 | Sunday, November 10, 2019 | Approved | |
Jackett 0.12.943 | 190 | Sunday, November 10, 2019 | Approved | |
Jackett 0.12.940 | 169 | Sunday, November 10, 2019 | Approved | |
Jackett 0.12.939 | 161 | Sunday, November 10, 2019 | Approved | |
Jackett 0.12.938 | 143 | Saturday, November 9, 2019 | Approved | |
Jackett 0.12.929 | 184 | Friday, November 8, 2019 | Approved | |
Jackett 0.12.928 | 145 | Thursday, November 7, 2019 | Approved | |
Jackett 0.12.926 | 145 | Thursday, November 7, 2019 | Approved | |
Jackett 0.12.924 | 181 | Wednesday, November 6, 2019 | Approved | |
Jackett 0.12.916 | 193 | Sunday, November 3, 2019 | Approved | |
Jackett 0.12.915 | 154 | Sunday, November 3, 2019 | Approved | |
Jackett 0.12.914 | 153 | Sunday, November 3, 2019 | Approved | |
Jackett 0.12.910 | 203 | Saturday, November 2, 2019 | Approved | |
Jackett 0.12.907 | 167 | Friday, November 1, 2019 | Approved | |
Jackett 0.12.903 | 141 | Thursday, October 31, 2019 | Approved | |
Jackett 0.12.901 | 131 | Thursday, October 31, 2019 | Approved | |
Jackett 0.12.898 | 156 | Wednesday, October 30, 2019 | Approved | |
Jackett 0.12.895 | 163 | Wednesday, October 30, 2019 | Approved | |
Jackett 0.12.884 | 159 | Tuesday, October 29, 2019 | Approved | |
Jackett 0.12.883 | 178 | Monday, October 28, 2019 | Approved | |
Jackett 0.12.881 | 190 | Saturday, October 26, 2019 | Approved | |
Jackett 0.12.869 | 163 | Saturday, October 26, 2019 | Approved | |
Jackett 0.12.866 | 160 | Friday, October 25, 2019 | Approved | |
Jackett 0.12.863 | 174 | Wednesday, October 23, 2019 | Approved | |
Jackett 0.12.847 | 174 | Monday, October 21, 2019 | Approved | |
Jackett 0.12.845 | 144 | Sunday, October 20, 2019 | Approved | |
Jackett 0.12.843 | 132 | Sunday, October 20, 2019 | Approved | |
Jackett 0.12.836 | 191 | Friday, October 18, 2019 | Approved | |
Jackett 0.12.834 | 166 | Thursday, October 17, 2019 | Approved | |
Jackett 0.12.833 | 150 | Thursday, October 17, 2019 | Approved | |
Jackett 0.12.831 | 142 | Thursday, October 17, 2019 | Approved | |
Jackett 0.12.827 | 139 | Tuesday, October 15, 2019 | Approved | |
Jackett 0.12.824 | 153 | Monday, October 14, 2019 | Approved | |
Jackett 0.11.817 | 174 | Monday, October 14, 2019 | Approved | |
Jackett 0.11.802 | 182 | Saturday, October 12, 2019 | Approved | |
Jackett 0.11.799 | 172 | Friday, October 11, 2019 | Approved | |
Jackett 0.11.797 | 153 | Thursday, October 10, 2019 | Approved | |
Jackett 0.11.793 | 125 | Thursday, October 10, 2019 | Approved | |
Jackett 0.11.789 | 182 | Wednesday, October 9, 2019 | Approved | |
Jackett 0.11.787 | 152 | Tuesday, October 8, 2019 | Approved | |
Jackett 0.11.786 | 132 | Monday, October 7, 2019 | Approved | |
Jackett 0.11.785 | 176 | Monday, October 7, 2019 | Approved | |
Jackett 0.11.784 | 137 | Monday, October 7, 2019 | Approved | |
Jackett 0.11.778 | 152 | Sunday, October 6, 2019 | Approved | |
Jackett 0.11.777 | 131 | Sunday, October 6, 2019 | Approved | |
Jackett 0.11.768 | 222 | Thursday, October 3, 2019 | Approved | |
Jackett 0.11.762 | 148 | Wednesday, October 2, 2019 | Approved | |
Jackett 0.11.761 | 161 | Tuesday, October 1, 2019 | Approved | |
Jackett 0.11.760 | 184 | Tuesday, October 1, 2019 | Approved | |
Jackett 0.11.751 | 170 | Sunday, September 29, 2019 | Approved | |
Jackett 0.11.733 | 171 | Sunday, September 29, 2019 | Approved | |
Jackett 0.11.723 | 186 | Wednesday, September 25, 2019 | Approved | |
Jackett 0.11.720 | 183 | Tuesday, September 24, 2019 | Approved | |
Jackett 0.11.714 | 166 | Monday, September 23, 2019 | Approved | |
Jackett 0.11.712 | 183 | Sunday, September 22, 2019 | Approved | |
Jackett 0.11.709 | 153 | Saturday, September 21, 2019 | Approved | |
Jackett 0.11.707 | 148 | Friday, September 20, 2019 | Approved | |
Jackett 0.11.706 | 151 | Friday, September 20, 2019 | Approved | |
Jackett 0.11.703 | 164 | Thursday, September 19, 2019 | Approved | |
Jackett 0.11.698 | 183 | Tuesday, September 17, 2019 | Approved | |
Jackett 0.11.694 | 152 | Monday, September 16, 2019 | Approved | |
Jackett 0.11.693 | 157 | Monday, September 16, 2019 | Approved | |
Jackett 0.11.691 | 134 | Sunday, September 15, 2019 | Approved | |
Jackett 0.11.689 | 178 | Saturday, September 14, 2019 | Approved | |
Jackett 0.11.687 | 190 | Wednesday, September 11, 2019 | Approved | |
Jackett 0.11.683 | 155 | Monday, September 9, 2019 | Approved | |
Jackett 0.11.678 | 170 | Monday, September 9, 2019 | Approved | |
Jackett 0.11.675 | 170 | Sunday, September 8, 2019 | Approved | |
Jackett 0.11.668 | 208 | Thursday, September 5, 2019 | Approved | |
Jackett 0.11.665 | 203 | Tuesday, September 3, 2019 | Approved | |
Jackett 0.11.661 | 175 | Monday, September 2, 2019 | Approved | |
Jackett 0.11.660 | 186 | Monday, September 2, 2019 | Approved | |
Jackett 0.11.659 | 179 | Saturday, August 31, 2019 | Approved | |
Jackett 0.11.655 | 210 | Thursday, August 29, 2019 | Approved | |
Jackett 0.11.652 | 218 | Wednesday, August 28, 2019 | Approved | |
Jackett 0.11.643 | 219 | Monday, August 26, 2019 | Approved | |
Jackett 0.11.640 | 195 | Saturday, August 24, 2019 | Approved | |
Jackett 0.11.637 | 197 | Friday, August 23, 2019 | Approved | |
Jackett 0.11.633 | 190 | Wednesday, August 21, 2019 | Approved | |
Jackett 0.11.627 | 198 | Monday, August 19, 2019 | Approved | |
Jackett 0.11.626 | 143 | Monday, August 19, 2019 | Approved | |
Jackett 0.11.618 | 177 | Monday, August 19, 2019 | Approved | |
Jackett 0.11.616 | 208 | Sunday, August 18, 2019 | Approved | |
Jackett 0.11.614 | 178 | Sunday, August 18, 2019 | Approved | |
Jackett 0.11.613 | 197 | Saturday, August 17, 2019 | Approved | |
Jackett 0.11.608 | 159 | Friday, August 16, 2019 | Approved | |
Jackett 0.11.598 | 185 | Wednesday, August 14, 2019 | Approved | |
Jackett 0.11.597 | 159 | Wednesday, August 14, 2019 | Approved | |
Jackett 0.11.595 | 162 | Tuesday, August 13, 2019 | Approved | |
Jackett 0.11.593 | 217 | Tuesday, August 13, 2019 | Approved | |
Jackett 0.11.589 | 188 | Monday, August 12, 2019 | Approved | |
Jackett 0.11.588 | 198 | Monday, August 12, 2019 | Approved | |
Jackett 0.11.581 | 163 | Saturday, August 10, 2019 | Approved | |
Jackett 0.11.580 | 190 | Saturday, August 10, 2019 | Approved | |
Jackett 0.11.575 | 174 | Friday, August 9, 2019 | Approved | |
Jackett 0.11.574 | 181 | Friday, August 9, 2019 | Approved | |
Jackett 0.11.572 | 199 | Tuesday, August 6, 2019 | Approved | |
Jackett 0.11.571 | 185 | Tuesday, August 6, 2019 | Approved | |
Jackett 0.11.566 | 184 | Monday, August 5, 2019 | Approved | |
Jackett 0.11.564 | 170 | Monday, August 5, 2019 | Approved | |
Jackett 0.11.563 | 157 | Sunday, August 4, 2019 | Approved | |
Jackett 0.11.560 | 135 | Saturday, August 3, 2019 | Approved | |
Jackett 0.11.559 | 129 | Saturday, August 3, 2019 | Approved | |
Jackett 0.11.555 | 179 | Friday, August 2, 2019 | Approved | |
Jackett 0.11.554 | 171 | Friday, August 2, 2019 | Approved | |
Jackett 0.11.551 | 142 | Wednesday, July 31, 2019 | Approved | |
Jackett 0.11.546 | 169 | Tuesday, July 30, 2019 | Approved | |
Jackett 0.11.542 | 177 | Tuesday, July 30, 2019 | Approved | |
Jackett 0.11.538 | 185 | Sunday, July 28, 2019 | Approved | |
Jackett 0.11.537 | 165 | Saturday, July 27, 2019 | Approved | |
Jackett 0.11.534 | 170 | Saturday, July 27, 2019 | Approved | |
Jackett 0.11.529 | 159 | Friday, July 26, 2019 | Approved | |
Jackett 0.11.528 | 143 | Friday, July 26, 2019 | Approved | |
Jackett 0.11.522 | 164 | Thursday, July 25, 2019 | Approved | |
Jackett 0.11.521 | 160 | Thursday, July 25, 2019 | Approved | |
Jackett 0.11.518 | 198 | Wednesday, July 24, 2019 | Approved | |
Jackett 0.11.515 | 161 | Wednesday, July 24, 2019 | Approved | |
Jackett 0.11.514 | 176 | Wednesday, July 24, 2019 | Approved | |
Jackett 0.11.513 | 166 | Tuesday, July 23, 2019 | Approved | |
Jackett 0.11.512 | 154 | Tuesday, July 23, 2019 | Approved | |
Jackett 0.11.510 | 217 | Monday, July 22, 2019 | Approved | |
Jackett 0.11.507 | 152 | Monday, July 22, 2019 | Approved | |
Jackett 0.11.504 | 148 | Sunday, July 21, 2019 | Approved | |
Jackett 0.11.503 | 166 | Sunday, July 21, 2019 | Approved | |
Jackett 0.11.502 | 152 | Saturday, July 20, 2019 | Approved | |
Jackett 0.11.501 | 200 | Saturday, July 20, 2019 | Approved | |
Jackett 0.11.497 | 186 | Friday, July 19, 2019 | Approved | |
Jackett 0.11.496 | 157 | Friday, July 19, 2019 | Approved | |
Jackett 0.11.495 | 159 | Friday, July 19, 2019 | Approved | |
Jackett 0.11.494 | 170 | Thursday, July 18, 2019 | Approved | |
Jackett 0.11.493 | 177 | Wednesday, July 17, 2019 | Approved | |
Jackett 0.11.487 | 220 | Saturday, July 13, 2019 | Approved | |
Jackett 0.11.486 | 207 | Thursday, July 11, 2019 | Approved | |
Jackett 0.11.476 | 167 | Tuesday, July 9, 2019 | Approved | |
Jackett 0.11.475 | 191 | Monday, July 8, 2019 | Approved | |
Jackett 0.11.473 | 176 | Sunday, July 7, 2019 | Approved | |
Jackett 0.11.467 | 199 | Saturday, July 6, 2019 | Approved | |
Jackett 0.11.463 | 216 | Monday, July 1, 2019 | Approved | |
Jackett 0.11.460 | 182 | Sunday, June 30, 2019 | Approved | |
Jackett 0.11.458 | 171 | Saturday, June 29, 2019 | Approved | |
Jackett 0.11.455 | 177 | Friday, June 28, 2019 | Approved | |
Jackett 0.11.453 | 223 | Thursday, June 27, 2019 | Approved | |
Jackett 0.11.450 | 187 | Thursday, June 27, 2019 | Approved | |
Jackett 0.11.445 | 201 | Monday, June 24, 2019 | Approved | |
Jackett 0.11.441 | 201 | Sunday, June 23, 2019 | Approved | |
Jackett 0.11.440 | 193 | Sunday, June 23, 2019 | Approved | |
Jackett 0.11.439 | 149 | Saturday, June 22, 2019 | Approved | |
Jackett 0.11.437 | 193 | Friday, June 21, 2019 | Approved | |
Jackett 0.11.434 | 207 | Thursday, June 20, 2019 | Approved | |
Jackett 0.11.433 | 173 | Thursday, June 20, 2019 | Approved | |
Jackett 0.11.432 | 185 | Wednesday, June 19, 2019 | Approved | |
Jackett 0.11.431 | 195 | Tuesday, June 18, 2019 | Approved | |
Jackett 0.11.428 | 185 | Tuesday, June 18, 2019 | Approved | |
Jackett 0.11.427 | 184 | Saturday, June 15, 2019 | Approved | |
Jackett 0.11.420 | 178 | Friday, June 14, 2019 | Approved | |
Jackett 0.11.413 | 173 | Wednesday, June 12, 2019 | Approved | |
Jackett 0.11.410 | 150 | Wednesday, June 12, 2019 | Approved | |
Jackett 0.11.409 | 153 | Wednesday, June 12, 2019 | Approved | |
Jackett 0.11.408 | 186 | Tuesday, June 11, 2019 | Approved | |
Jackett 0.11.406 | 165 | Tuesday, June 11, 2019 | Approved | |
Jackett 0.11.405 | 212 | Monday, June 10, 2019 | Approved | |
Jackett 0.11.403 | 204 | Sunday, June 9, 2019 | Approved | |
Jackett 0.11.399 | 180 | Sunday, June 9, 2019 | Approved | |
Jackett 0.11.392 | 210 | Saturday, June 8, 2019 | Approved | |
Jackett 0.11.391 | 181 | Saturday, June 8, 2019 | Approved | |
Jackett 0.11.388 | 172 | Thursday, June 6, 2019 | Approved | |
Jackett 0.11.387 | 237 | Sunday, June 2, 2019 | Approved | |
Jackett 0.11.386 | 183 | Saturday, June 1, 2019 | Approved | |
Jackett 0.11.385 | 179 | Saturday, June 1, 2019 | Approved | |
Jackett 0.11.384 | 225 | Thursday, May 30, 2019 | Approved | |
Jackett 0.11.383 | 200 | Wednesday, May 29, 2019 | Approved | |
Jackett 0.11.379 | 192 | Sunday, May 26, 2019 | Approved | |
Jackett 0.11.378 | 149 | Sunday, May 26, 2019 | Approved | |
Jackett 0.11.377 | 174 | Sunday, May 26, 2019 | Approved | |
Jackett 0.11.375 | 176 | Saturday, May 25, 2019 | Approved | |
Jackett 0.11.365 | 165 | Friday, May 24, 2019 | Approved | |
Jackett 0.11.364 | 196 | Friday, May 24, 2019 | Approved | |
Jackett 0.11.362 | 188 | Thursday, May 23, 2019 | Approved | |
Jackett 0.11.358 | 166 | Wednesday, May 22, 2019 | Approved | |
Jackett 0.11.356 | 185 | Monday, May 20, 2019 | Approved | |
Jackett 0.11.354 | 165 | Sunday, May 19, 2019 | Approved | |
Jackett 0.11.349 | 191 | Sunday, May 19, 2019 | Approved | |
Jackett 0.11.348 | 193 | Saturday, May 18, 2019 | Approved | |
Jackett 0.11.346 | 170 | Friday, May 17, 2019 | Approved | |
Jackett 0.11.341 | 173 | Friday, May 17, 2019 | Approved | |
Jackett 0.11.340 | 199 | Thursday, May 16, 2019 | Approved | |
Jackett 0.11.338 | 164 | Thursday, May 16, 2019 | Approved | |
Jackett 0.11.336 | 192 | Thursday, May 16, 2019 | Approved | |
Jackett 0.11.334 | 184 | Wednesday, May 15, 2019 | Approved | |
Jackett 0.11.332 | 198 | Wednesday, May 15, 2019 | Approved | |
Jackett 0.11.327 | 219 | Monday, May 13, 2019 | Approved | |
Jackett 0.11.325 | 218 | Sunday, May 12, 2019 | Approved | |
Jackett 0.11.320 | 196 | Saturday, May 11, 2019 | Approved | |
Jackett 0.11.317 | 174 | Saturday, May 11, 2019 | Approved | |
Jackett 0.11.316 | 173 | Friday, May 10, 2019 | Approved | |
Jackett 0.11.310 | 182 | Friday, May 10, 2019 | Approved | |
Jackett 0.11.308 | 174 | Thursday, May 9, 2019 | Approved | |
Jackett 0.11.307 | 152 | Thursday, May 9, 2019 | Approved | |
Jackett 0.11.296 | 197 | Tuesday, May 7, 2019 | Approved | |
Jackett 0.11.295 | 155 | Monday, May 6, 2019 | Approved | |
Jackett 0.11.294 | 192 | Monday, May 6, 2019 | Approved | |
Jackett 0.11.285 | 186 | Sunday, May 5, 2019 | Approved | |
Jackett 0.11.281 | 214 | Saturday, May 4, 2019 | Approved | |
Jackett 0.11.268 | 190 | Friday, May 3, 2019 | Approved | |
Jackett 0.11.264 | 195 | Thursday, May 2, 2019 | Approved | |
Jackett 0.11.263 | 162 | Wednesday, May 1, 2019 | Approved | |
Jackett 0.11.259 | 195 | Tuesday, April 30, 2019 | Approved | |
Jackett 0.11.257 | 182 | Monday, April 29, 2019 | Approved | |
Jackett 0.11.256 | 161 | Sunday, April 28, 2019 | Approved | |
Jackett 0.11.251 | 177 | Friday, April 26, 2019 | Approved | |
Jackett 0.11.247 | 200 | Thursday, April 25, 2019 | Approved | |
Jackett 0.11.245 | 178 | Tuesday, April 23, 2019 | Approved | |
Jackett 0.11.243 | 165 | Monday, April 22, 2019 | Approved | |
Jackett 0.11.240 | 156 | Sunday, April 21, 2019 | Approved | |
Jackett 0.11.232 | 186 | Saturday, April 20, 2019 | Approved | |
Jackett 0.11.231 | 235 | Friday, April 19, 2019 | Approved | |
Jackett 0.11.229 | 151 | Friday, April 19, 2019 | Approved | |
Jackett 0.11.228 | 210 | Wednesday, April 17, 2019 | Approved | |
Jackett 0.11.226 | 172 | Wednesday, April 17, 2019 | Approved | |
Jackett 0.11.225 | 172 | Tuesday, April 16, 2019 | Approved | |
Jackett 0.11.224 | 186 | Monday, April 15, 2019 | Approved | |
Jackett 0.11.223 | 202 | Sunday, April 14, 2019 | Approved | |
Jackett 0.11.221 | 152 | Saturday, April 13, 2019 | Approved | |
Jackett 0.11.219 | 166 | Friday, April 12, 2019 | Approved | |
Jackett 0.11.210 | 178 | Thursday, April 11, 2019 | Approved | |
Jackett 0.11.205 | 191 | Wednesday, April 10, 2019 | Approved | |
Jackett 0.11.201 | 170 | Tuesday, April 9, 2019 | Approved | |
Jackett 0.11.200 | 187 | Tuesday, April 9, 2019 | Approved | |
Jackett 0.11.195 | 164 | Monday, April 8, 2019 | Approved | |
Jackett 0.11.193 | 237 | Sunday, April 7, 2019 | Approved | |
Jackett 0.11.189 | 174 | Saturday, April 6, 2019 | Approved | |
Jackett 0.11.184 | 180 | Friday, April 5, 2019 | Approved | |
Jackett 0.11.183 | 189 | Thursday, April 4, 2019 | Approved | |
Jackett 0.11.180 | 209 | Wednesday, April 3, 2019 | Approved | |
Jackett 0.11.179 | 205 | Tuesday, April 2, 2019 | Approved | |
Jackett 0.11.177 | 167 | Tuesday, April 2, 2019 | Approved | |
Jackett 0.11.173 | 135 | Monday, April 1, 2019 | Approved | |
Jackett 0.11.170 | 178 | Monday, April 1, 2019 | Approved | |
Jackett 0.11.156 | 193 | Sunday, March 31, 2019 | Approved | |
Jackett 0.11.154 | 207 | Friday, March 29, 2019 | Approved | |
Jackett 0.11.152 | 181 | Friday, March 29, 2019 | Approved | |
Jackett 0.11.150 | 183 | Thursday, March 28, 2019 | Approved | |
Jackett 0.11.147 | 156 | Wednesday, March 27, 2019 | Approved | |
Jackett 0.11.145 | 168 | Wednesday, March 27, 2019 | Approved | |
Jackett 0.11.141 | 189 | Monday, March 25, 2019 | Approved | |
Jackett 0.11.136 | 191 | Monday, March 25, 2019 | Approved | |
Jackett 0.11.134 | 173 | Monday, March 25, 2019 | Approved | |
Jackett 0.11.132 | 181 | Monday, March 25, 2019 | Approved | |
Jackett 0.11.124 | 192 | Sunday, March 24, 2019 | Approved | |
Jackett 0.11.115 | 169 | Sunday, March 24, 2019 | Approved | |
Jackett 0.11.107 | 242 | Friday, March 22, 2019 | Approved | |
Jackett 0.11.106 | 170 | Friday, March 22, 2019 | Approved | |
Jackett 0.11.102 | 167 | Thursday, March 21, 2019 | Approved | |
Jackett 0.11.92 | 225 | Wednesday, March 20, 2019 | Approved | |
Jackett 0.11.85 | 177 | Wednesday, March 20, 2019 | Approved | |
Jackett 0.11.60 | 170 | Sunday, March 17, 2019 | Approved | |
Jackett 0.11.58 | 215 | Sunday, March 17, 2019 | Approved | |
Jackett 0.11.56 | 172 | Saturday, March 16, 2019 | Approved | |
Jackett 0.11.53 | 142 | Saturday, March 16, 2019 | Approved | |
Jackett 0.11.48 | 203 | Friday, March 15, 2019 | Approved | |
Jackett 0.11.45 | 164 | Thursday, March 14, 2019 | Approved | |
Jackett 0.11.43 | 183 | Thursday, March 14, 2019 | Approved | |
Jackett 0.11.36 | 166 | Wednesday, March 13, 2019 | Approved | |
Jackett 0.11.31 | 161 | Wednesday, March 13, 2019 | Approved | |
Jackett 0.11.29 | 165 | Wednesday, March 13, 2019 | Approved | |
Jackett 0.11.15 | 184 | Tuesday, March 12, 2019 | Approved | |
Jackett 0.11.13 | 173 | Tuesday, March 12, 2019 | Approved | |
Jackett 0.11.10 | 152 | Monday, March 11, 2019 | Approved | |
Jackett 0.11.8 | 185 | Monday, March 11, 2019 | Approved | |
Jackett 0.11.4 | 166 | Sunday, March 10, 2019 | Approved | |
Jackett 0.11.2 | 186 | Sunday, March 10, 2019 | Approved | |
Jackett 0.10.922 | 201 | Sunday, March 10, 2019 | Approved | |
Jackett 0.10.917 | 176 | Saturday, March 9, 2019 | Approved | |
Jackett 0.10.911 | 210 | Friday, March 8, 2019 | Approved | |
Jackett 0.10.907 | 176 | Thursday, March 7, 2019 | Approved | |
Jackett 0.10.906 | 184 | Wednesday, March 6, 2019 | Approved | |
Jackett 0.10.900 | 165 | Wednesday, March 6, 2019 | Approved | |
Jackett 0.10.887 | 137 | Tuesday, March 5, 2019 | Approved | |
Jackett 0.10.886 | 148 | Tuesday, March 5, 2019 | Approved | |
Jackett 0.10.883 | 157 | Monday, March 4, 2019 | Approved | |
Jackett 0.10.880 | 152 | Monday, March 4, 2019 | Approved | |
Jackett 0.10.878 | 146 | Sunday, March 3, 2019 | Approved | |
Jackett 0.10.869 | 163 | Sunday, March 3, 2019 | Approved | |
Jackett 0.10.862 | 210 | Saturday, March 2, 2019 | Approved | |
Jackett 0.10.861 | 176 | Saturday, March 2, 2019 | Approved | |
Jackett 0.10.860 | 167 | Friday, March 1, 2019 | Approved | |
Jackett 0.10.852 | 164 | Thursday, February 28, 2019 | Approved | |
Jackett 0.10.849 | 167 | Thursday, February 28, 2019 | Approved | |
Jackett 0.10.846 | 187 | Wednesday, February 27, 2019 | Approved | |
Jackett 0.10.842 | 185 | Tuesday, February 26, 2019 | Approved | |
Jackett 0.10.841 | 174 | Tuesday, February 26, 2019 | Approved | |
Jackett 0.10.839 | 150 | Monday, February 25, 2019 | Approved | |
Jackett 0.10.835 | 180 | Monday, February 25, 2019 | Approved | |
Jackett 0.10.830 | 143 | Saturday, February 23, 2019 | Approved | |
Jackett 0.10.828 | 156 | Saturday, February 23, 2019 | Approved | |
Jackett 0.10.826 | 144 | Friday, February 22, 2019 | Approved | |
Jackett 0.10.819 | 153 | Friday, February 22, 2019 | Approved | |
Jackett 0.10.814 | 175 | Friday, February 22, 2019 | Approved | |
Jackett 0.10.805 | 218 | Thursday, February 21, 2019 | Approved | |
Jackett 0.10.804 | 173 | Thursday, February 21, 2019 | Approved | |
Jackett 0.10.802 | 205 | Wednesday, February 20, 2019 | Approved | |
Jackett 0.10.801 | 178 | Wednesday, February 20, 2019 | Approved | |
Jackett 0.10.799 | 166 | Tuesday, February 19, 2019 | Approved | |
Jackett 0.10.796 | 160 | Tuesday, February 19, 2019 | Approved | |
Jackett 0.10.795 | 146 | Tuesday, February 19, 2019 | Approved | |
Jackett 0.10.790 | 168 | Monday, February 18, 2019 | Approved | |
Jackett 0.10.789 | 130 | Sunday, February 17, 2019 | Approved | |
Jackett 0.10.788 | 150 | Sunday, February 17, 2019 | Approved | |
Jackett 0.10.785 | 193 | Saturday, February 16, 2019 | Approved | |
Jackett 0.10.783 | 144 | Saturday, February 16, 2019 | Approved | |
Jackett 0.10.778 | 184 | Saturday, February 16, 2019 | Approved | |
Jackett 0.10.776 | 211 | Friday, February 15, 2019 | Approved | |
Jackett 0.10.775 | 182 | Thursday, February 14, 2019 | Approved | |
Jackett 0.10.774 | 147 | Thursday, February 14, 2019 | Approved | |
Jackett 0.10.762 | 131 | Wednesday, February 13, 2019 | Approved | |
Jackett 0.10.759 | 179 | Wednesday, February 13, 2019 | Approved | |
Jackett 0.10.756 | 198 | Wednesday, February 13, 2019 | Approved | |
Jackett 0.10.743 | 151 | Tuesday, February 12, 2019 | Approved | |
Jackett 0.10.741 | 173 | Tuesday, February 12, 2019 | Approved | |
Jackett 0.10.739 | 149 | Monday, February 11, 2019 | Approved | |
Jackett 0.10.734 | 118 | Monday, February 11, 2019 | Approved | |
Jackett 0.10.733 | 140 | Sunday, February 10, 2019 | Approved | |
Jackett 0.10.731 | 143 | Sunday, February 10, 2019 | Approved | |
Jackett 0.10.724 | 217 | Saturday, February 9, 2019 | Approved | |
Jackett 0.10.723 | 130 | Friday, February 8, 2019 | Approved | |
Jackett 0.10.722 | 117 | Friday, February 8, 2019 | Approved | |
Jackett 0.10.719 | 178 | Thursday, February 7, 2019 | Approved | |
Jackett 0.10.717 | 178 | Wednesday, February 6, 2019 | Approved | |
Jackett 0.10.716 | 150 | Wednesday, February 6, 2019 | Approved | |
Jackett 0.10.715 | 139 | Wednesday, February 6, 2019 | Approved | |
Jackett 0.10.714 | 126 | Tuesday, February 5, 2019 | Approved | |
Jackett 0.10.712 | 180 | Tuesday, February 5, 2019 | Approved | |
Jackett 0.10.711 | 192 | Tuesday, February 5, 2019 | Approved | |