jekyll-octopod 0.15.0 → 0.15.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/lib/jekyll/podlove_player_tag.rb +9 -1
- 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: e9584204769606315e098c8fe2f9fccc4862173e046cbf625928c394bf35e862
|
|
4
|
+
data.tar.gz: 577ff86f71436831f0bc4d356aee7f345855eb6a001e1589bd837bebe5653440
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87eee23c1648e498fdbaccfedd22a0ab2bca5aa1727d6c27e51899d8a3578bf0904f6a1d55f3efbed1e45ab6d66c78c1302ba2b4ffc7711954a00b79d464d34e
|
|
7
|
+
data.tar.gz: 37bc083eb831aa81373b4632ec0c187d3bde77432d1c3208180da5286d0f1e8e56b7d834b89d352eabe23be0c70480020a1cb1cac48552c637ac5a189e2fdb5f
|
|
@@ -22,8 +22,16 @@ module Jekyll
|
|
|
22
22
|
title: format }
|
|
23
23
|
end
|
|
24
24
|
|
|
25
|
+
# Podlove Web Player v5's default theme has no UI element that displays episode.subtitle
|
|
26
|
+
# anywhere (verified: absent from the compact header, the chapters panel, and at every
|
|
27
|
+
# viewport width tested) even though it's correctly present in the player's own Redux
|
|
28
|
+
# state - a gap in their stock theme, not a data problem on our end. Folding subtitle into
|
|
29
|
+
# the title that *is* displayed is the pragmatic workaround; the plain subtitle field is
|
|
30
|
+
# still sent too, in case a future custom theme (or theirs, if they ever fix it) uses it.
|
|
31
|
+
title = page["subtitle"] ? "#{page["title"]} - #{page["subtitle"]}" : page["title"]
|
|
32
|
+
|
|
25
33
|
{ version: 5,
|
|
26
|
-
title:
|
|
34
|
+
title: title,
|
|
27
35
|
subtitle: page["subtitle"],
|
|
28
36
|
summary: page["summary"],
|
|
29
37
|
poster: config['url'] + "/img/" + (page["image"] || "logo-360x360.png"),
|
data/lib/octopod/version.rb
CHANGED