jekyll-octopod 0.20.0 → 0.20.1

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/octopod +15 -11
  3. data/lib/octopod/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af7f39feb92cfb4b4615bc3d7c4122cb463814e37bf8991c3c553784cfa06268
4
- data.tar.gz: b0d6ebb6e48e8c476526dfb21934efc0ac773e528c48ce23464ee1afeade4e25
3
+ metadata.gz: bab9d22951437197ea9b85735a898f4c6fe4582ee18eb942f63864cbe842c5b9
4
+ data.tar.gz: 9dee8614f7de17e484323d2ca79d84be23e798dc953a98abe9c2dfae592be4fb
5
5
  SHA512:
6
- metadata.gz: 2ae85cc983a4661b5a6cf201cae6bd7c9708ee8c3a15d15134db3947b77ac3af65c0ca584523242f791706852bc3534a087f8eefc9b636543b9dede351a5baaf
7
- data.tar.gz: 771baf577a1ed85e15db658bfa7c87e01890a5bffaf67708b2d4e5bbda029257cb9faa17421d7ef88627226b75328d329f844ade168b33c87839c3d6ad894dc6
6
+ metadata.gz: 90483ebdbb7ba04b2dd8c0a5a196f75356224fb482488de2b030ae02ab975f513012ca718bbb52ee6c9404286b019c80a2fc3c509bc5ff7f37f042624be5d77b
7
+ data.tar.gz: 0fcaa3555178d41f5a30acf9c8fe1254bb59efc19213190e79a59c0b3a6921a61cfee5f29cc82a06287845dd448e0f276bd8aa2714a758e01c0de5a2c33ebb54
data/bin/octopod CHANGED
@@ -407,7 +407,7 @@ if ARGV.size > 0 && (ARGV[0] == 'episode' || ARGV[0] == 'deploy' || ARGV[0] == '
407
407
  now_theme_served = theme_shipped_generic_files + %w[
408
408
  podlove-player subscribe-button favicon.ico apple-touch-icon-precomposed.png
409
409
  _includes/sidebar.html _includes/post_header.html _includes/post.html _includes/post_line.html
410
- _includes/disqus_thread.html _includes/disqus_count.html _includes/isso_thread.html
410
+ _includes/isso_thread.html
411
411
  ]
412
412
  found_theme_served = now_theme_served.select { |path| File.exist?(File.join(PWD, path)) }
413
413
 
@@ -420,16 +420,20 @@ if ARGV.size > 0 && (ARGV[0] == 'episode' || ARGV[0] == 'deploy' || ARGV[0] == '
420
420
  puts "===== ... done ===== ", ""
421
421
  end
422
422
 
423
- # As of jekyll-octopod 0.19.0, JSON Feed support is gone outright - not moved to the theme
424
- # gem, just removed (no real podcast client ever consumed it, and a since-fixed bug in this
425
- # gem's own :after_init hook meant it silently never even built). Any 'feed.*.json' marker
426
- # file left over from an older site is now genuinely dead: nothing generates its content, and
427
- # jekyll-octopod-bulma's sidebar no longer links to it. Removed the same way theme-served
428
- # files are removed above.
429
- found_json_feeds = Dir.glob(File.join(PWD, 'feed.*.json'))
430
- unless found_json_feeds.empty?
431
- puts "", "===== Removing feed.*.json marker files (JSON Feed support was removed) ====="
432
- found_json_feeds.each { |path| remove_theme_served_path(path) }
423
+ # As of jekyll-octopod 0.19.0/0.20.0, JSON Feed and Disqus support are gone outright - not
424
+ # moved to the theme gem the way the paths above were, just removed. JSON Feed: no real
425
+ # podcast client ever consumed it, and a since-fixed bug in this gem's own :after_init hook
426
+ # meant it silently never even built. Disqus: unused across every site in this gem's own
427
+ # family (none had disqus_shortname set) and superseded by Isso for self-hosted comments. Any
428
+ # leftover 'feed.*.json' marker file or local copy of the old disqus includes is now genuinely
429
+ # dead - nothing generates or serves it any more. Removed the same way theme-served files are
430
+ # removed above.
431
+ removed_feature_paths = Dir.glob(File.join(PWD, 'feed.*.json')) +
432
+ %w[_includes/disqus_thread.html _includes/disqus_count.html]
433
+ .map { |path| File.join(PWD, path) }.select { |path| File.exist?(path) }
434
+ unless removed_feature_paths.empty?
435
+ puts "", "===== Removing files for features that were removed entirely (JSON Feed, Disqus) ====="
436
+ removed_feature_paths.each { |path| remove_theme_served_path(path) }
433
437
  puts "===== ... done ===== ", ""
434
438
  end
435
439
 
@@ -3,7 +3,7 @@ module Jekyll
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 0
5
5
  MINOR = 20
6
- TINY = 0
6
+ TINY = 1
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY].join('.')
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-octopod
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.20.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arne Eilermann