download_tv 2.8.5 → 2.9.0

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: f949ddf2dd0814373780e8b72b0186573f7b255b4704b1df13a4130cd86d0d08
4
- data.tar.gz: 85c530552c796b1ae499a705368290d14108f82931dee5cd867184552adaf8f5
3
+ metadata.gz: 7ac0cea3ddd27f103e007c188a563c03d1f815692bb2310ffe6afa30047765b5
4
+ data.tar.gz: ab4e79a7197b9cec989be91fd4229c45652d8c9cdaf938f4f09781f8a42ee458
5
5
  SHA512:
6
- metadata.gz: f7cd21e015d34429eda44aed2ba7ebb1565bac83064ef512e634479b65890e46a9ac6e562378e5fe0fe926f00dcd7d07ed1b87e0a0962862db133591af35d9d5
7
- data.tar.gz: fc2f51385747ce6305214bdd5819edaa24d2e288c631d3648d30397d5e4250b9d70a664702a5be10c7f483e552cbed4e2a04e1cf69bb6acfb70f5f8bd97f2969
6
+ metadata.gz: ff1b66cb9a68975ba031638bcd66ab5ca01ad9555cdea8d1a42b2bb397dd5040564ddcc335e97a3976a28e87fa63b035b23b0344dcd5e1abbaeaa647b295bf7d
7
+ data.tar.gz: 3408d00841377fd73b8cc564c121ac1b9983362b72277b0563a942774de97081c247ffb138acb1bc83160407c575fddce02e10e388d24ff5bd3d4ccb1c430538
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## Next (unreleased)
4
4
 
5
+ ## 2.9.0 (2024-09-22)
6
+
7
+ * Improvements
8
+ * Add -e option to edit configuration manually.
9
+
5
10
  ## 2.8.5 (2024-09-22)
6
11
 
7
12
  * Grabbers
data/README.md CHANGED
@@ -33,6 +33,7 @@ Specific options:
33
33
  -p, --pending Show list of pending downloads
34
34
  --clear-pending Clear list of pending downloads
35
35
  -q, --queue SHOW Add show episode to pending downloads list
36
+ -e, --edit Open configuration with $EDITOR
36
37
  -v, --version Print version
37
38
  -h, --help Show this message
38
39
  ```
data/bin/tv CHANGED
@@ -82,6 +82,12 @@ opt_parser = OptionParser.new do |opts|
82
82
  options[:arg] = s
83
83
  end
84
84
 
85
+ opts.on('-e', '--edit', 'Open configuration with $EDITOR') do
86
+ path = DownloadTV::Configuration.new.config_path
87
+ Process.detach(Process.spawn("$EDITOR #{path}"))
88
+ exit
89
+ end
90
+
85
91
  opts.on('-v', '--version', 'Print version') do
86
92
  puts DownloadTV::VERSION
87
93
  exit
@@ -44,6 +44,10 @@ module DownloadTV
44
44
  serialize
45
45
  end
46
46
 
47
+ def config_path
48
+ (content[:path] || default_config_path)
49
+ end
50
+
47
51
  private
48
52
 
49
53
  def content
@@ -127,10 +131,6 @@ module DownloadTV
127
131
  self[:filters][:excludes] = read_and_split_list :upcase
128
132
  end
129
133
 
130
- def config_path
131
- (content[:path] || default_config_path)
132
- end
133
-
134
134
  def default_config_path
135
135
  File.join(ENV['HOME'], '.config', 'download_tv', 'config')
136
136
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DownloadTV
4
- VERSION = '2.8.5'
4
+ VERSION = '2.9.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: download_tv
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.5
4
+ version: 2.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - guille