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.
- checksums.yaml +4 -4
- data/bin/octopod +15 -11
- data/lib/octopod/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bab9d22951437197ea9b85735a898f4c6fe4582ee18eb942f63864cbe842c5b9
|
|
4
|
+
data.tar.gz: 9dee8614f7de17e484323d2ca79d84be23e798dc953a98abe9c2dfae592be4fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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/
|
|
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
|
|
424
|
-
#
|
|
425
|
-
#
|
|
426
|
-
#
|
|
427
|
-
#
|
|
428
|
-
#
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
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
|
|
data/lib/octopod/version.rb
CHANGED