download_tv 2.9.3 → 2.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 16290be3711a600665ce0651a6056268ebefe5380516757a6403a37953d5638a
4
- data.tar.gz: 80e903cf6413073ed7f4bdd5a8277bf3486571cadb28dcabd86c38abc9539302
3
+ metadata.gz: a13f9bf7aae9a08591b947af1071eed6ad50687b37cb85f4d4ebbc46307bb8cb
4
+ data.tar.gz: 11654c9fd13e6e59d3c9bfa55484ef7f0967e4f7141b36fbdc0b8375c1e0e30a
5
5
  SHA512:
6
- metadata.gz: bac0d3ffd606f23d21cf0e0875201b01eea882e0f5041e919da29e20e453d3ff8c471370412de66f554fde8a076c49c59c7422dc9ddc6054311b54899a82604a
7
- data.tar.gz: 58930a63aceaef5da023d04442ddf54c6332718a4abe69a8a487e5b104d95bc7f5874e0a11fa04922cc0267cd670a79482551116d0ce3d409b8146e3bba2e141
6
+ metadata.gz: 7f816ce659da37db0fe32b0b937007ef6dc2320a3d3863a49529940f4696838f6c5d4b745ea03afa44b62e65c5eba0962c074e0ca6fd46b0948f4df1b9187408
7
+ data.tar.gz: d94fbc3d1713bd808a69be6ccdbf4cea3e482c2b9cd73295a957e8ef199a2532083262c17aaa188dedd72b618509d3555cb73e568a490283c81aeb560d479cf3
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Next (unreleased)
4
4
 
5
+ ## 2.9.4 (2025-08-14)
6
+
7
+ * Grabbers
8
+ * ThePirateBay: disabled (previous proxy was getting shady)
9
+ * ThePirateBayAPI: re-added and enabled
10
+
5
11
  ## 2.9.3 (2025-04-20)
6
12
 
7
13
  * Grabbers
data/README.md CHANGED
@@ -70,7 +70,7 @@ The `-f` flag can be used to read the list of episodes to download from a file.
70
70
 
71
71
  ### Available link grabbers
72
72
 
73
- 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 ThePirateBay. 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
+ With `--show-grabbers`, the user can see what grabbers are available. They will be used in the order they are listed in. The user may override the default with the `-g` option. 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.
74
74
 
75
75
  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.
76
76
 
@@ -4,7 +4,7 @@ module DownloadTV
4
4
  ##
5
5
  # ThePirateBay grabber
6
6
  class ThePirateBay < LinkGrabber
7
- def initialize(tpb_proxy = 'https://tpirbay.site/')
7
+ def initialize(tpb_proxy = 'https://tpb.re/')
8
8
  proxy = tpb_proxy.gsub(%r{/+$}, '')
9
9
 
10
10
  super("#{proxy}/search/%s/0/7/0")
@@ -16,7 +16,7 @@ module DownloadTV
16
16
  ]
17
17
 
18
18
  def initialize
19
- super("https://tpb36.ukpass.co/apibay/q.php?q=%s&cat=")
19
+ super("https://apibay.org/q.php?q=%s&cat=")
20
20
  end
21
21
 
22
22
  def get_links(show)
@@ -6,7 +6,7 @@ module DownloadTV
6
6
  class Torrent
7
7
  class << self
8
8
  def grabbers
9
- %w[ThePirateBay Eztv]
9
+ %w[ThePirateBayAPI 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.9.3'
4
+ VERSION = '2.9.4'
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: download_tv
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.3
4
+ version: 2.9.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - guille
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-20 00:00:00.000000000 Z
10
+ date: 2025-08-14 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: bundler