jekyll-octopod 0.9.14 → 0.9.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/assets/_posts/2016-03-22-episode0.md +9 -0
- data/bin/octopod +11 -2
- data/lib/jekyll/podigee_player_tag.rb +1 -1
- data/lib/octopod/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e9e047fb9bbf352778c1bae39fbe6fae46268e93679345ce6e04e6696d306dc
|
4
|
+
data.tar.gz: b76204927ffccefd8ddbc46e2c95a06f0c29eef5cddd6a8814e444298d198d36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a7ed141db75f3cc81e13c323fab3fe73389c36cef255d2b4b71d069b3e2b7ecb7137f18d29a1552abc93bb4ae903e222e2f236d9e6ee6e1be7e162d80626a19b
|
7
|
+
data.tar.gz: 38a45348a51f791339a60354a486bd5058422b18a1d68a61e3dd2701af2b61e2f0a82895c065a87a01fa6db8c46719120ef90d634933e2790b58f5793b4f43cd
|
@@ -10,12 +10,21 @@ audio:
|
|
10
10
|
mp3: episode0.mp3
|
11
11
|
ogg: episode0.ogg
|
12
12
|
m4a: episode0.m4a
|
13
|
+
filesize:
|
14
|
+
mp3: 1234567
|
15
|
+
ogg: 2345678
|
16
|
+
m4a: 3456789
|
13
17
|
chapters:
|
14
18
|
- '00:00:00.000 Intro.'
|
15
19
|
- '00:00:01.000 ... Shoubidoubidoo ...'
|
16
20
|
- '00:00:02.000 Outro.'
|
17
21
|
---
|
18
22
|
|
23
|
+
<!---
|
24
|
+
The filesize block above can be deleted, if your audio files are hosted within the episodes directory.
|
25
|
+
It is only necessary for hosting remotely.
|
26
|
+
-->
|
27
|
+
|
19
28
|
{% podigee_player page %}
|
20
29
|
|
21
30
|
## Show Notes and Links
|
data/bin/octopod
CHANGED
@@ -129,6 +129,10 @@ if ARGV.size > 0 && (ARGV[0] == 'episode' || ARGV[0] == 'deploy' || ARGV[0] == '
|
|
129
129
|
'm4a' => 'name.m4a',
|
130
130
|
'mp3' => 'name.mp3',
|
131
131
|
'ogg' => 'name.ogg'},
|
132
|
+
'filesize' => {
|
133
|
+
'm4a' => 1234567,
|
134
|
+
'mp3' => 2345678,
|
135
|
+
'ogg' => 3456789},
|
132
136
|
'chapters' => [
|
133
137
|
'00:00:00.000 Intro.',
|
134
138
|
'00:00:30.000 Outro.'
|
@@ -196,8 +200,13 @@ if ARGV.size > 0 && (ARGV[0] == 'episode' || ARGV[0] == 'deploy' || ARGV[0] == '
|
|
196
200
|
open(filename, 'w') do |post|
|
197
201
|
post.puts post_header.to_yaml
|
198
202
|
post.puts '---'
|
199
|
-
post.puts
|
200
|
-
post.puts
|
203
|
+
post.puts
|
204
|
+
post.puts '<!---'
|
205
|
+
post.puts 'The filesize block above can be deleted, if your audio files are hosted within the episodes directory.'
|
206
|
+
post.puts 'It is only necessary for hosting remotely.'
|
207
|
+
post.puts '-->'
|
208
|
+
post.puts
|
209
|
+
post.puts "{% podigee_player page %}\n\n"
|
201
210
|
post.puts "## Shownotes and Links\n\n* Note"
|
202
211
|
end
|
203
212
|
|
@@ -11,7 +11,7 @@ module Jekyll
|
|
11
11
|
download_url = config["download_url"] || config["url"] + "/episodes"
|
12
12
|
page["audio"].each { |key, value| audio[key] = download_url + "/" + value}
|
13
13
|
|
14
|
-
{ options: { theme:
|
14
|
+
{ options: { theme: config["player_theme"] && PLAYER_THEMES.include?(config["player_theme"]) ? config["player_theme"] : "default",
|
15
15
|
startPanel: "ChapterMarks" },
|
16
16
|
extensions: { ChapterMarks: {},
|
17
17
|
EpisodeInfo: {},
|
data/lib/octopod/version.rb
CHANGED
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.
|
4
|
+
version: 0.9.15
|
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-03-
|
12
|
+
date: 2020-03-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: facets
|