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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc98fbb05c628ba5b0190151709402f5fd51e4347d01877303a0b4095f860a84
4
- data.tar.gz: 279634198b716bf905e49e30f5914ed28a9992be541a4fc27c5c3836779b5704
3
+ metadata.gz: 6c202232c01422b793ebb302b44517ae6e81e8d95fa9f30dbd5a87014b88386f
4
+ data.tar.gz: fdff3db7c0590cfce73cef42cb8775734bb980867901a087c8af362a764ffa9f
5
5
  SHA512:
6
- metadata.gz: ac807e4d8f2f9dccecc80b50aec2216cdb0d3e7d78a590ee7fd3358c1b863a2ce0ada79bc991cd6f93e271f13a7607f35ce76a4f41e70ee0c074c8147aafa9ce
7
- data.tar.gz: 64b2de934b6794a130b5f4685587ef91170ba30fde9a5b0ad0db290497804fbeac71a01e5e4ed99a45cf324158a266e56830f43bdc3ff0c7c79e38ae1d8e0ae3
6
+ metadata.gz: f725cb5dff565e302ce166be63c142e5aeb3693e7379e135f3d7cb21de1f8fdae1a7df53f6a96abdf44ef94fcc16f4412c9a2d3d64da6c060ee5de6844eae5b6
7
+ data.tar.gz: 07576b4a5194b8929a1107ef233154f72237c72d72d2e9c8ba787613a0f8047cdc9dade2a83501b1434b99181149f161cf946d33211caefe0ef7b269314e10fc
data/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  ## Next (unreleased)
4
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
+
5
12
  ## 2.8.2 (2024-02-16)
6
13
 
7
14
  * Improvements
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
 
@@ -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] ||= []
@@ -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.2'
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.2
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-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