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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 13ad5f3b8009d3571a7605d9ef2c9778b15cb66c8797929e7d1d796398f57e03
4
- data.tar.gz: bdffc3722d4433a135ecdc8bfe6e9a0b936a72f96e9aa550f28f653771acfdde
3
+ metadata.gz: 6c202232c01422b793ebb302b44517ae6e81e8d95fa9f30dbd5a87014b88386f
4
+ data.tar.gz: fdff3db7c0590cfce73cef42cb8775734bb980867901a087c8af362a764ffa9f
5
5
  SHA512:
6
- metadata.gz: 40a783075196df666de95646d2026839e2dbbbfe335b96d6478b061b1108e56f4ddb480660922dffe577a8ed4356e0e9d4cee23026cfa7fb76b2b24a027f414b
7
- data.tar.gz: 6dc4dbaf94c68a351fe64f89996a352f8061a78b1850c5a6080742284322b9684db05741a800811e9d9a32460a90178a86ddd935540ee7317df00eab8c9ba5d3
6
+ metadata.gz: f725cb5dff565e302ce166be63c142e5aeb3693e7379e135f3d7cb21de1f8fdae1a7df53f6a96abdf44ef94fcc16f4412c9a2d3d64da6c060ee5de6844eae5b6
7
+ data.tar.gz: 07576b4a5194b8929a1107ef233154f72237c72d72d2e9c8ba787613a0f8047cdc9dade2a83501b1434b99181149f161cf946d33211caefe0ef7b269314e10fc
data/.gitignore CHANGED
@@ -2,3 +2,4 @@
2
2
  /pkg/
3
3
  .rubocop.yml
4
4
  .byebug_history
5
+ *.sublime-*
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 TorrentGalaxy. 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.
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] ||= 'TorrentGalaxy'
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' => %w[2160P 1080P 720P]
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://pirateproxy.sh/')
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")
@@ -6,7 +6,7 @@ module DownloadTV
6
6
  class Torrent
7
7
  class << self
8
8
  def grabbers
9
- %w[TorrentGalaxy Torrentz Eztv]
9
+ %w[Torrentz ThePirateBay Eztv]
10
10
  end
11
11
 
12
12
  def healthcheck
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DownloadTV
4
- VERSION = '2.8.1'
4
+ VERSION = '2.8.3'
5
5
  end
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.1
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: 2023-10-16 00:00:00.000000000 Z
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.7
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