jekyll-octopod 0.6.6 → 0.6.7

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
  SHA1:
3
- metadata.gz: d3f0dfdbebdd3f67b688a35b8f4102375fab32b7
4
- data.tar.gz: 84a2252eba78672eb1a65a01d37802138013d736
3
+ metadata.gz: ace02392dc118d1db123075d93008ac8612750a5
4
+ data.tar.gz: de790cd2d2894d6fdf35a4e3141c7c0d4b3aa3c0
5
5
  SHA512:
6
- metadata.gz: 5bfd102e70c4252f7058a9df700721ea979a0ffaecddd970ebbd90024f352a864dd06778ecc6cc93915eefeeecc2ce82d179807f744173a816c74905ad1b74e4
7
- data.tar.gz: 4219bab0d5650ca7f84b299754ff9d96da7fdb99b646a10793558add56599e8e1fee058de35ecf56b2ad74acea14316ee6436df83c46c4e19b6ec9999e372d82
6
+ metadata.gz: b949f7cc807fd21d1f40c022e79e4b536f894a2cd7c9a92c59eb8d877fbc4b99ab414cca3d1d8691dc63828d3e4c7f3b57aff11f8cb90c3d6ae03d5e9187048b
7
+ data.tar.gz: 3a85aec90aa268e933428fe418aca935913fca57ed7327f1a56beb02466780d19c8cc3b1da48ebcd14fd79aae76092866771198199517a105571b493ecb7f324
@@ -0,0 +1,53 @@
1
+ # You have to configure this ###################################################
2
+ title: Octopod
3
+ # You should configure this ####################################################
4
+ url: http://localhost:4000
5
+ subtitle: Static Site Podcast Publishing for Geeks
6
+ description: My super duper cool podcast.
7
+ author: Uncle Octopod
8
+ email: octopod@example.com
9
+ keywords: [octopod, podcast, magic]
10
+ itunes_categories: [Technology]
11
+ # additional_feeds:
12
+ # itunes: http://itunes.apple.com/de/podcast/podcast_name/id42424242
13
+ # torrent_m4a: http://bitlove.org/example_user/example_podcast_m4a/feed
14
+ # torrent_mp3: http://bitlove.org/example_user/example_podcast_mp3/feed
15
+ episodes_per_feed_page: 100
16
+ ## podlove-web-palyer ##########################################################
17
+ poster: /img/logo-360x360.png
18
+ alwaysShowHours: true
19
+ startVolume: 0.8
20
+ width: auto
21
+ summaryVisible: false
22
+ timecontrolsVisible: false
23
+ chaptersVisible: true
24
+ sharebuttonsVisible: false
25
+ ## Rsync Deploy config #########################################################
26
+ ### Be sure your public key is listed in your server's ~/.ssh/authorized_keys
27
+ ### file.
28
+ ssh_host: user@host.org
29
+ ssh_port: 22
30
+ document_root: /path/to/your/htdocs/
31
+ rsync_delete: true
32
+ # You can configure this #######################################################
33
+ twitter_nick: my_twitter_handle
34
+ language: en
35
+ explicit: 'no' # 'yes'/'no'/clean
36
+ license: CC BY 4.0
37
+ license_url: https://creativecommons.org/licenses/by/4.0/
38
+ license_image_url: https://i.creativecommons.org/l/by/4.0/88x31.png
39
+ ## Flattr ######################################################################
40
+ flattr_uid: # Flattr will not be used unless this is set
41
+ flattr_button: compact # compact | default
42
+ flattr_mode: auto # auto | manual(default)
43
+ flattr_popout: 1 # 1 | 0 (show popout when hovering mouse over button)
44
+ flattr_language: en_GB # available languages - https://api.flattr.com/rest/v2/languages.txt
45
+ flattr_category: audio # available categories - https://api.flattr.com/rest/v2/categories.txt
46
+ ## Disqus comments #############################################################
47
+ disqus_shortname: # Disqus will not be used unless this is set
48
+ disqus_developer: 0 # 1 / 0
49
+ ## Feed links ###########################################################
50
+ itunes_url: https://itunes.apple.com/at/podcast/myname/id#myid#
51
+ bitlove_url: https://bitlove.org/myaccount
52
+ fyyd_url: https://fyyd.de/podcast/myaccount/myid
53
+ gpodder_url: https://gpodder.net/podcast/mypodcast
@@ -226,7 +226,7 @@ module Jekyll
226
226
  downloadUrl: sitehash["url"] + "/episodes/" + page['audio']['mp3'] },
227
227
  ],
228
228
  summary: options['summary'],
229
- duration: string_of_duration(options['duration']),
229
+ duration: options['duration'],
230
230
  permalink: sitehash['url'] + page['url'],
231
231
  activeTab: "chapters"
232
232
  }.to_json
@@ -13,6 +13,8 @@ module Jekyll
13
13
  self.data['subtitle'] = post.data['subtitle']
14
14
  self.data['datum'] = post.data['datum']
15
15
  self.data['author'] = post.data['author']
16
+ self.data['duration'] = post.data['duration']
17
+ self.data['summary'] = post.data['summary']
16
18
  self.data['explicit'] = post.data['explicit']
17
19
  self.data['audio'] = post.data['audio']
18
20
  self.data['chapters'] = post.data['chapters']
@@ -3,7 +3,7 @@ module Jekyll
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 0
5
5
  MINOR = 6
6
- TINY = 6
6
+ TINY = 7
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.6.6
4
+ version: 0.6.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arne Eilermann
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-06-09 00:00:00.000000000 Z
12
+ date: 2016-08-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jekyll
@@ -50,6 +50,7 @@ extra_rdoc_files: []
50
50
  files:
51
51
  - README.md
52
52
  - Rakefile
53
+ - assets/_config.yml
53
54
  - assets/_config.yml.sample
54
55
  - assets/_includes/disqus_count.html
55
56
  - assets/_includes/disqus_thread.html
@@ -204,9 +205,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
204
205
  version: '0'
205
206
  requirements: []
206
207
  rubyforge_project: jekyll-
207
- rubygems_version: 2.4.8
208
+ rubygems_version: 2.5.1
208
209
  signing_key:
209
210
  specification_version: 4
210
211
  summary: Podcasting Publishing Extension for Jekyll
211
212
  test_files: []
212
- has_rdoc: