download_tv 2.8.0 → 2.8.2

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: f8276a91948a8fc6701546da7229c00f1789a3fe1e992766189bf7ffe8bcbe0a
4
- data.tar.gz: 3fa1290e6b9a9280562776a43ec9f202840edfc882a5884a3abc492aed2143c4
3
+ metadata.gz: dc98fbb05c628ba5b0190151709402f5fd51e4347d01877303a0b4095f860a84
4
+ data.tar.gz: 279634198b716bf905e49e30f5914ed28a9992be541a4fc27c5c3836779b5704
5
5
  SHA512:
6
- metadata.gz: e45a182bed172f934e9dc0eb84feb65ee69b14df387fad4409b6ddc4f0e9bcf5e832c47e8217897298e193104dcf005b70c7e234564be3142b381a10bea8ae6b
7
- data.tar.gz: 1c95a6c3cbdb3f9201f43b7d536f412e09879bea63c2352e59412dfd0f453b5ca59b37eceb30ba8429f97cef90d80922ad011e881819d0a059e03b39a87960f2
6
+ metadata.gz: ac807e4d8f2f9dccecc80b50aec2216cdb0d3e7d78a590ee7fd3358c1b863a2ce0ada79bc991cd6f93e271f13a7607f35ce76a4f41e70ee0c074c8147aafa9ce
7
+ data.tar.gz: 64b2de934b6794a130b5f4685587ef91170ba30fde9a5b0ad0db290497804fbeac71a01e5e4ed99a45cf324158a266e56830f43bdc3ff0c7c79e38ae1d8e0ae3
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,17 @@
1
1
  # download_tv CHANGELOG
2
2
 
3
+ ## Next (unreleased)
4
+
5
+ ## 2.8.2 (2024-02-16)
6
+
7
+ * Improvements
8
+ * Remove high quality options from default `exclude` filters
9
+
10
+ ## 2.8.1 (2023-10-16)
11
+
12
+ * Grabbers
13
+ * Eztv: fix torrent not found detection.
14
+
3
15
  ## 2.8.0 (2023-06-16)
4
16
 
5
17
  * Grabbers
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'
@@ -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
 
@@ -13,8 +13,7 @@ module DownloadTV
13
13
  raw_seeders = raw_data.search('td.forum_thread_post_end').map { |e| e.children[0].text.to_i }
14
14
  raw_links = raw_data.search('a.magnet').sort_by.with_index { |_, index| raw_seeders[index] }.reverse
15
15
 
16
- # EZTV shows 50 latest releases if it can't find the torrent
17
- raise NoTorrentsError if raw_links.size == 50
16
+ raise NoTorrentsError if raw_links.size == 0
18
17
 
19
18
  raw_links.collect do |i|
20
19
  [i.attribute('title').text.chomp(' Magnet Link'),
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DownloadTV
4
- VERSION = '2.8.0'
4
+ VERSION = '2.8.2'
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.0
4
+ version: 2.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - guille
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-16 00:00:00.000000000 Z
11
+ date: 2024-02-16 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