download_tv 2.8.2 → 2.8.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +1 -1
- data/lib/download_tv/configuration.rb +1 -1
- data/lib/download_tv/grabbers/tpb.rb +1 -1
- data/lib/download_tv/torrent.rb +1 -1
- data/lib/download_tv/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c202232c01422b793ebb302b44517ae6e81e8d95fa9f30dbd5a87014b88386f
|
4
|
+
data.tar.gz: fdff3db7c0590cfce73cef42cb8775734bb980867901a087c8af362a764ffa9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f725cb5dff565e302ce166be63c142e5aeb3693e7379e135f3d7cb21de1f8fdae1a7df53f6a96abdf44ef94fcc16f4412c9a2d3d64da6c060ee5de6844eae5b6
|
7
|
+
data.tar.gz: 07576b4a5194b8929a1107ef233154f72237c72d72d2e9c8ba787613a0f8047cdc9dade2a83501b1434b99181149f161cf946d33211caefe0ef7b269314e10fc
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -69,7 +69,7 @@ The `-f` flag can be used to read the list of episodes to download from a file.
|
|
69
69
|
|
70
70
|
### Available link grabbers
|
71
71
|
|
72
|
-
With `-g` and `--show-grabbers`, the user can see what grabbers are available and choose one of these as their preferred option. By default, the application searches for torrents using
|
72
|
+
With `-g` and `--show-grabbers`, the user can see what grabbers are available and choose one of these as their preferred option. By default, the application searches for torrents using Torrentz. When a grabber doesn't have a torrent for said episode, is offline, or causes any error to appear, it skips to the next grabber until exhausting the list.
|
73
73
|
|
74
74
|
I usually publish a patch update to the gem when I detect one of them isn't working, disabling it or fixing it altogether. If a specific grabber is giving you problems, check whether you're running the latest version of the gem before opening an issue here.
|
75
75
|
|
@@ -140,7 +140,7 @@ module DownloadTV
|
|
140
140
|
# Maintains the previous values, in case it's an update from an existing file.
|
141
141
|
def set_default_values
|
142
142
|
self[:auto] ||= true
|
143
|
-
self[:grabber] ||= '
|
143
|
+
self[:grabber] ||= 'Torrentz'
|
144
144
|
self[:date] ||= Date.today - 1
|
145
145
|
self[:filters] ||= default_filters
|
146
146
|
self[:pending] ||= []
|
@@ -4,7 +4,7 @@ module DownloadTV
|
|
4
4
|
##
|
5
5
|
# ThePirateBay grabber
|
6
6
|
class ThePirateBay < LinkGrabber
|
7
|
-
def initialize(tpb_proxy = 'https://
|
7
|
+
def initialize(tpb_proxy = 'https://tpb30.ukpass.co/')
|
8
8
|
proxy = tpb_proxy.gsub(%r{/+$}, '')
|
9
9
|
|
10
10
|
super("#{proxy}/search/%s/0/7/0")
|
data/lib/download_tv/torrent.rb
CHANGED
data/lib/download_tv/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: download_tv
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.8.
|
4
|
+
version: 2.8.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- guille
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-02-
|
11
|
+
date: 2024-02-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|