jekyll-octopod 0.9.7 → 0.9.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a723ff7d8b40701ee4e4616d858cd11e941a360c2092d861e6f462c454f818b4
4
- data.tar.gz: 6e890eaa257e7720bc0f91e8d7c687c1ca41906b69569b4c77ae99fba9eeebc8
3
+ metadata.gz: e2be988e79c79be9fe679fb3344c879f35e4fdb08c42b9b83b5222c42c2b29f9
4
+ data.tar.gz: b4e8a26f33d3a74eb4156284ce1b7cb06249f51b57c778693146d49534eb8672
5
5
  SHA512:
6
- metadata.gz: c4df4a344cb4819508568f51f58ca66338787736de35251e9b841d650f0983c66dc461424b88e588ef50baf4972917af00a747a4bea8879333cb470d1f33ee44
7
- data.tar.gz: 79000cba28dce2f6ed8f61d2a1ecc4dff9b895894c00cc570c81529b2a0b84a2e393a6ca1b20621572c3d664813c36ae7558cc28e837ae318f656c58a6bf876d
6
+ metadata.gz: 0a2fdbc3cca7e67a91e5608c049758970435b6b2ea1b882b10fb56b998f70fa10e79d38c6898df7926f2e15b4e26085d985a23a19736cf624bdc718bc2339c14
7
+ data.tar.gz: 57c45cc9693f1b40dea702a645099aeffbda6b2efe248743b356b3d3cffd46ce15ec6a42ae2c616004221d8d01de24a9bce50839d8c85166ace59b415f48c1bb
data/README.md CHANGED
@@ -2,7 +2,8 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/jekyll-octopod.svg)](https://badge.fury.io/rb/jekyll-octopod)
4
4
 
5
- <img align="right" src="assets/img/logo.jpg" alt="logo">
6
- A podcast publishing extension for the static site generator [Jekyll](https://jekyllrb.com/)
5
+ <img align="right" src="assets/img/logo.jpg" alt="logo"/>
6
+
7
+ A podcast publishing extension for the static site generator [Jekyll](https://jekyllrb.com/).
7
8
 
8
9
  jekyll-octopod has now it's own [Project Site](https://jekyll-octopod.github.io/)!
@@ -1,48 +1,72 @@
1
- # You have to configure this ###################################################
2
1
  title: Octopod
3
- # You should configure this ####################################################
4
2
  url: http://localhost:4000
3
+
4
+ ### download_url: is needed, if and only if audio files are hosted in a different location, it is the path of the directory where the audio files are stored
5
5
  download_url: "http://your.fancy.hosting/episodes"
6
6
  subtitle: Static Site Podcast Publishing for Geeks
7
7
  description: My super duper cool podcast.
8
8
  author: Uncle Octopod
9
- author_url: "http://your.fancy.hosting/" # This is the URL of a site owned by the author (s. https://jsonfeed.org/version/1)
9
+
10
+ ### author_url: This is the URL of a site owned by the author (see https://jsonfeed.org/version/1)
11
+ author_url: "http://your.fancy.hosting/"
12
+
10
13
  email: octopod@example.com
11
14
  keywords: [octopod, podcast, magic]
12
15
  itunes_categories: [Technology]
13
- # additional_feeds:
14
- # itunes: http://itunes.apple.com/de/podcast/podcast_name/id42424242
15
- # torrent_m4a: http://bitlove.org/example_user/example_podcast_m4a/feed
16
- # torrent_mp3: http://bitlove.org/example_user/example_podcast_mp3/feed
17
16
  episodes_per_feed_page: 100
18
- # Date can be localized via date_de.rb plugin
19
- date_format: "ordinal"
20
- ## Rsync Deploy config #########################################################
21
- ### Be sure your public key is listed in your server's ~/.ssh/authorized_keys
22
- ### file.
17
+
18
+ player_theme: default # default | "default-dark" | legacy | minimal | republica
19
+
20
+ ### Date can be localized via date_de.rb plugin, you don't need to change this
21
+ date_format: ordinal
22
+
23
+ ### Rsync Deploy config: Be sure your public key is listed in your server's ~/.ssh/authorized_keys file
23
24
  ssh_host: user@host.org
24
25
  ssh_port: 22
25
26
  document_root: /path/to/your/htdocs/
26
27
  rsync_delete: true
27
- # You can configure this #######################################################
28
- twitter_nick: my_twitter_handle
28
+
29
+ ### Twiter config, optional
30
+ twitter_nick: my_twitter_handle # Twitter will not be used unless this is set
31
+
29
32
  language: en
30
- explicit: 'no' # 'yes'/'no'/clean
33
+ explicit: "no" # "yes" | "no" | clean
34
+
35
+ ### License Config, you really should configure this
31
36
  license: CC BY 4.0
32
- ## Flattr ######################################################################
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
+
40
+ ### Feed links, optional
41
+ itunes_url: https://itunes.apple.com/at/podcast/myname/id232323
42
+ # bitlove_url: https://bitlove.org/myaccount
43
+ # fyyd_url: https://fyyd.de/podcast/myaccount/myid
44
+ # gpodder_url: https://gpodder.net/podcast/mypodcast
45
+
46
+ ### Additional Feeds, optional
47
+ # itunes: http://itunes.apple.com/de/podcast/podcast_name/id42424242
48
+ # torrent_m4a: http://bitlove.org/example_user/example_podcast_m4a/feed
49
+ # torrent_mp3: http://bitlove.org/example_user/example_podcast_mp3/feed
50
+
51
+ ### Flattr config, optional
33
52
  flattr_uid: # Flattr will not be used unless this is set
34
53
  flattr_button: compact # compact | default
35
- flattr_mode: auto # auto | manual(default)
54
+ flattr_mode: auto # auto | manual
36
55
  flattr_popout: 1 # 1 | 0 (show popout when hovering mouse over button)
37
- flattr_language: en_GB # available languages - https://api.flattr.com/rest/v2/languages.txt
38
- flattr_category: audio # available categories - https://api.flattr.com/rest/v2/categories.txt
39
- ## Disqus comments #############################################################
56
+ flattr_language: en_GB # available languages see https://api.flattr.com/rest/v2/languages.txt
57
+ flattr_category: audio # available categories see https://api.flattr.com/rest/v2/categories.txt
58
+
59
+ ### Disqus comments
40
60
  disqus_shortname: # Disqus will not be used unless this is set
41
- disqus_developer: 0 # 1 / 0
42
- ## Itunes link ###########################################################
43
- itunes_url: "https://itunes.apple.com/at/podcast/myname/id#myid#"
44
- ## Isso comments #########################################################
45
- use_isso: no # set to 'yes' to include isso comments form
61
+ disqus_developer: 0 # 1 | 0
62
+
63
+ ### Isso comments
64
+ use_isso: "no" # "no" | "yes"
46
65
 
47
66
  gems: [jekyll-octopod]
48
67
  theme: jekyll-bootflat
68
+
69
+ ### Jekyll Admin: uncomment the last two lines of this paragraph to enable Jekyll Admin.
70
+ ### (but you will loose auto regeneration after code changes with a text editor then)
71
+ # plugins:
72
+ # - jekyll-admin
@@ -155,10 +155,6 @@ if ARGV.size > 0 && (ARGV[0] == 'episode' || ARGV[0] == 'deploy' || ARGV[0] == '
155
155
  post_header['explicit'] = options['explicit'] = episode_explicit
156
156
  end
157
157
 
158
- opts.on("--episode-cover [PATH]", "Path to the image that represents the episode.") do |episode_cover|
159
- post_header['episode_cover'] = options['episode_cover'] = episode_cover
160
- end
161
-
162
158
  opts.on("-l", "--layout [LAYOUT]", "Layout to use (default: 'post')") do |episode_layout|
163
159
  post_header['layout'] = options['layout'] = episode_layout
164
160
  end
@@ -18,7 +18,7 @@ module Jekyll
18
18
  Playlist: {} },
19
19
  title: options['title'],
20
20
  episode: { media: audio,
21
- coverUrl: config['url'] + (page["episode_cover"] || '/img/logo-360x360.png'),
21
+ coverUrl: config['url'] + "/img/" + (page["image"] || "logo-360x360.png"),
22
22
  title: page["title"],
23
23
  subtitle: page["subtitle"],
24
24
  url: config['url'] + page["url"],
@@ -3,7 +3,7 @@ module Jekyll
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 0
5
5
  MINOR = 9
6
- TINY = 7
6
+ TINY = 8
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.9.7
4
+ version: 0.9.8
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: 2018-08-10 00:00:00.000000000 Z
12
+ date: 2018-08-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: facets