jekyll-octopod 0.9.19 → 0.9.20

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: dc711ecc544f32418e079c6ff3c5e7ffabf159b0df4339d9ecbb2e6df8ca507e
4
- data.tar.gz: 4e3ccb2290db722e4b7940fc56996408558bfbeb92af1e52466aad8cd504e64d
3
+ metadata.gz: 0b2c361b1ae0a71722e4464acb6c403b0570da75166aa69f23e7fb6c8f796964
4
+ data.tar.gz: 0a03582224f6eab84702f00267b1d3a6436afa48f22a585529f90b5b07928a94
5
5
  SHA512:
6
- metadata.gz: 9e1575b3d420e805609c0ed4ea976f0786a78d2c9d6bd1abdcde733ed97047882bb2867427a7b42afa39e308c33989a7bfca85c94e05546a1a56b0753b12a451
7
- data.tar.gz: 914f4afc23f20ae9addb8af076992f40853794a0e65a5296008f240505c48a3dcb9e82da3316f31528bab82fd83d0200c9355ad93397c5fed7f873814dc4347b
6
+ metadata.gz: ee0018beefe18cab37898ad42d4bfc3fbdf71e5466ff22dc2ace0f3cae44d73e5bd4e3164e75beee4d909413b31c68276e5bf54fa1186096e34727344f7d6f06
7
+ data.tar.gz: e42a4d876bc8b312e47ece84d9721ead4f258f490f7e01fe6c9527830154870e48a62437f37651de378d399c3827918029bf7fa64cac0c01e8494a16c5bc100f
@@ -0,0 +1,47 @@
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
+ ## Rsync Deploy config #########################################################
17
+ ### Be sure your public key is listed in your server's ~/.ssh/authorized_keys
18
+ ### file.
19
+ ssh_host: user@host.org
20
+ ssh_port: 22
21
+ document_root: /path/to/your/htdocs/
22
+ rsync_delete: true
23
+ # You can configure this #######################################################
24
+ twitter_nick: my_twitter_handle
25
+ language: en
26
+ explicit: 'no' # 'yes'/'no'/clean
27
+ license: CC BY 4.0
28
+ license_url: https://creativecommons.org/licenses/by/4.0/
29
+ license_image_url: https://i.creativecommons.org/l/by/4.0/88x31.png
30
+ ## Flattr ######################################################################
31
+ flattr_uid: # Flattr will not be used unless this is set
32
+ flattr_button: compact # compact | default
33
+ flattr_mode: auto # auto | manual(default)
34
+ flattr_popout: 1 # 1 | 0 (show popout when hovering mouse over button)
35
+ flattr_language: en_GB # available languages - https://api.flattr.com/rest/v2/languages.txt
36
+ flattr_category: audio # available categories - https://api.flattr.com/rest/v2/categories.txt
37
+ ## Disqus comments #############################################################
38
+ disqus_shortname: # Disqus will not be used unless this is set
39
+ disqus_developer: 0 # 1 / 0
40
+ ## Feed links ###########################################################
41
+ itunes_url: https://itunes.apple.com/at/podcast/myname/id#myid#
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
+ gems: [jekyll-octopod]
47
+ theme: jekyll-bootflat
@@ -68,7 +68,7 @@
68
68
  <li>in Apple-<a href="{{ site.itunes_url }}"><i class="fab fa-apple"></i> Itunes</a></li>
69
69
  {% endif %}
70
70
  {% if site.google_play_url %}
71
- <li>in <a href="{{ site.itunes_url }}"><i class="fab fa-apple"></i>Google Play</a></li>
71
+ <li>in <a href="{{ site.google_play_url }}"><i class="fab fa-google-play"></i>Google Play</a></li>
72
72
  {% endif %}
73
73
  {% if site.bitlove_url %}
74
74
  <li>as Torrents at <a href="{{ site.bitlove_url }}"><img src="https://bitlove.org/static/favicon.png"/> Bitlove</a></li>
@@ -77,7 +77,7 @@
77
77
  <li>at the podcast search engine <a href="{{ site.fyyd_url }}">Fyyd</a></li>
78
78
  {% endif %}
79
79
  {% if site.gpodder_url %}
80
- <li>at <a href="{{ site.gpodder_url }}"><img src="https://gpodder.net/media/gpoddernet_64.png" height="16" /> Gpodder.net</a></li>
80
+ <li>at <a href="{{ site.gpodder_url }}"><img src="https://gpodder.net/static/gpoddernet_64.png" height="16" /> Gpodder.net</a></li>
81
81
  {% endif %}
82
82
  </ol>
83
83
 
@@ -3,7 +3,7 @@ module Jekyll
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 0
5
5
  MINOR = 9
6
- TINY = 19
6
+ TINY = 20
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.19
4
+ version: 0.9.20
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: 2020-04-08 00:00:00.000000000 Z
12
+ date: 2020-04-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: facets
@@ -45,14 +45,14 @@ dependencies:
45
45
  requirements:
46
46
  - - "~>"
47
47
  - !ruby/object:Gem::Version
48
- version: 0.3.2
48
+ version: 0.3.1
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
53
  - - "~>"
54
54
  - !ruby/object:Gem::Version
55
- version: 0.3.2
55
+ version: 0.3.1
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: rspec
58
58
  requirement: !ruby/object:Gem::Requirement
@@ -106,6 +106,7 @@ extra_rdoc_files: []
106
106
  files:
107
107
  - README.md
108
108
  - Rakefile
109
+ - assets/_config.yml
109
110
  - assets/_config.yml.sample
110
111
  - assets/_includes/disqus_count.html
111
112
  - assets/_includes/disqus_thread.html