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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f000d58c1562cb8fb66128cff79d3825f31d15272f975ab5fb3b53b7ba3ecb98
4
- data.tar.gz: e871a3c9d6c0bd5690c866c6bcff48edebb4215e3d1da6a6786aa8145e1e22a1
3
+ metadata.gz: e9584204769606315e098c8fe2f9fccc4862173e046cbf625928c394bf35e862
4
+ data.tar.gz: 577ff86f71436831f0bc4d356aee7f345855eb6a001e1589bd837bebe5653440
5
5
  SHA512:
6
- metadata.gz: 12752cfa4b490438cb6d95520ced188505d06cf04edc063eae552d4204191f41536ba9d4a938c328c1add0507d374c265419075dd5f22885f27464f4744b2c09
7
- data.tar.gz: 638905074d8fecc1ac0cc484ee6734306d5e243c94137744cbe118397267ca9513d4f4b8bcda94592a623af792687a04e26a839a6c99f8c3232027d0e95ac39e
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: page["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"),
@@ -3,7 +3,7 @@ module Jekyll
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 0
5
5
  MINOR = 15
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.15.0
4
+ version: 0.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arne Eilermann