download_tv 2.8.1 → 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/.gitignore +1 -0
- data/CHANGELOG.md +14 -0
- data/README.md +1 -1
- data/download_tv.gemspec +0 -1
- data/lib/download_tv/configuration.rb +2 -2
- 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 +3 -4
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/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# download_tv CHANGELOG
|
2
2
|
|
3
|
+
## Next (unreleased)
|
4
|
+
|
5
|
+
## 2.8.3 (2024-02-20)
|
6
|
+
|
7
|
+
* Grabbers
|
8
|
+
* TorrentGalaxy: disable grabber.
|
9
|
+
* Torrentz: made the new default.
|
10
|
+
* ThePirateBay: re-enable grabber with new proxy URL.
|
11
|
+
|
12
|
+
## 2.8.2 (2024-02-16)
|
13
|
+
|
14
|
+
* Improvements
|
15
|
+
* Remove high quality options from default `exclude` filters
|
16
|
+
|
3
17
|
## 2.8.1 (2023-10-16)
|
4
18
|
|
5
19
|
* Grabbers
|
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
|
|
data/download_tv.gemspec
CHANGED
@@ -8,7 +8,6 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.name = 'download_tv'
|
9
9
|
s.version = DownloadTV::VERSION
|
10
10
|
s.authors = ['guille']
|
11
|
-
s.email = ['guillerg96@gmail.com']
|
12
11
|
|
13
12
|
s.summary = 'DownloadTV is a tool that allows the user to find magnet links for tv show episodes. It accepts shows as arguments, from a file or it can integrate with your MyEpisodes account.'
|
14
13
|
s.homepage = 'https://github.com/guille/download_tv'
|
@@ -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] ||= []
|
@@ -150,7 +150,7 @@ module DownloadTV
|
|
150
150
|
def default_filters
|
151
151
|
{
|
152
152
|
'includes' => %w[PROPER REPACK],
|
153
|
-
'excludes' =>
|
153
|
+
'excludes' => []
|
154
154
|
}
|
155
155
|
end
|
156
156
|
|
@@ -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:
|
11
|
+
date: 2024-02-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -110,7 +110,6 @@ dependencies:
|
|
110
110
|
version: '0'
|
111
111
|
description:
|
112
112
|
email:
|
113
|
-
- guillerg96@gmail.com
|
114
113
|
executables:
|
115
114
|
- tv
|
116
115
|
extensions: []
|
@@ -167,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
167
166
|
- !ruby/object:Gem::Version
|
168
167
|
version: '0'
|
169
168
|
requirements: []
|
170
|
-
rubygems_version: 3.3
|
169
|
+
rubygems_version: 3.5.3
|
171
170
|
signing_key:
|
172
171
|
specification_version: 4
|
173
172
|
summary: DownloadTV is a tool that allows the user to find magnet links for tv show
|