Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds transcript block and meta #221

Merged
merged 45 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
56fc27f
Merge branch 'develop' into trunk
dkotter Jul 27, 2022
925080c
Merge branch 'develop' into trunk
cadic Oct 19, 2022
4d053f0
Merge branch 'develop' into trunk
Sidsector9 Jan 23, 2023
2512270
Adds transcript block and meta
nateconley Feb 10, 2023
849d725
Merge branch 'trunk' into feature/transcript
nateconley Apr 4, 2023
14794a0
Adds endpoint links
nateconley Apr 28, 2023
a15b1ff
Merge branch 'develop' into feature/transcript
nateconley Apr 28, 2023
b3e44f8
Adds line to documentation
nateconley Apr 28, 2023
34cea3e
Formatting
nateconley Apr 28, 2023
b734d9b
More detailed param comments
nateconley Apr 28, 2023
400591d
Formatting
nateconley Apr 28, 2023
1464d87
Adds unit test
nateconley Apr 28, 2023
7f57bdb
Fix pre-commit
nateconley Apr 28, 2023
1fc2529
Merge branch 'develop' into trunk
jeffpaul Jun 29, 2023
1964380
Merge remote-tracking branch 'origin/trunk' into feature/transcript
kirtangajjar Jul 14, 2023
5fc43ef
Update templates/transcript.php
kirtangajjar Jul 14, 2023
2be9987
Update includes/transcripts.php
kirtangajjar Jul 14, 2023
e57a1eb
Update includes/transcripts.php
kirtangajjar Jul 14, 2023
281674d
Add removed condition check
kirtangajjar Jul 14, 2023
5b5d91c
Update includes/transcripts.php
kirtangajjar Jul 14, 2023
d4f5973
Update includes/transcripts.php
kirtangajjar Jul 14, 2023
d890b64
Update includes/blocks/podcast-transcript/markup.php
kirtangajjar Jul 14, 2023
2bff321
Update includes/blocks/podcast-transcript/markup.php
kirtangajjar Jul 14, 2023
8aaf228
Update includes/transcripts.php
kirtangajjar Jul 14, 2023
517e8e0
Correct script and style dependencies
kirtangajjar Jul 14, 2023
c915845
Merge branch 'develop' into feature/transcript
faisal-alvi Aug 29, 2023
9264fa4
added sanitize_callback on podcast_transcript post meta and removed w…
sksaju Sep 14, 2023
51279b8
fixed phpcs issue on feature/transcript
sksaju Sep 14, 2023
a64d95a
Merge branch 'develop' into feature/transcript
github-actions[bot] Sep 18, 2023
0552e6f
Merge branch 'develop' into feature/transcript
github-actions[bot] Oct 9, 2023
ed4bdd8
Merge branch 'develop' into feature/transcript
github-actions[bot] Oct 17, 2023
0433758
Merge branch 'develop' into feature/transcript
github-actions[bot] Oct 17, 2023
be60808
Merge branch 'develop' into feature/transcript
github-actions[bot] Nov 3, 2023
7017fd0
Adds upgrade rewrite flush
nateconley Nov 19, 2023
a14feab
Use inner blocks for transcripts
nateconley Nov 19, 2023
24b8707
Formatting changes
nateconley Nov 19, 2023
1100cc4
Webpack formatting fix
nateconley Nov 19, 2023
790799c
Formatting changes
nateconley Nov 19, 2023
fba3bcf
Merge branch 'develop' into feature/transcript
github-actions[bot] Nov 21, 2023
474b11c
added missing dependency mochawesome-json-to-md
sksaju Nov 27, 2023
7377f6a
fix test_get_transcript_from_post unit test case
sksaju Nov 27, 2023
1a31000
Inner blocks are one line only
nateconley Nov 30, 2023
253885b
Moves transcript blocks to separate function
nateconley Nov 30, 2023
757f0b9
Formatting
nateconley Nov 30, 2023
0e92898
Downgrade mochawesome-json-to-md.
peterwilsoncc Dec 3, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ Repeat for each podcast you would like to create.
* Create a new post and assign it to one or more Podcasts using the panel labeled Podcasts.
* Upload or embed an audio file into this post using any of the usual WordPress methods. If using the new block-based WordPress editor (sometimes referred to as Gutenberg), insert a Podcast block. Only one Podcast block can be inserted per post.
* For more advanced settings, use the Podcasting meta box to mark explicit content or closed captioning available, season number, episode number, episode type and to optionally specify one media item in the post if you have more than one in your post. In the block-based editor, these are the block settings that appear in the sidebar when the podcast block is selected.
* Transcript: Add an optional transcript consisting of time codes, citations, and paragrah text that can be embedded in the post, linked to an external plain HTML file, or linked in a special `<podcast:transcript>` XML element.

## Submit your podcast feed to Apple Podcasts

Expand Down
4 changes: 4 additions & 0 deletions assets/css/podcasting-transcript.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.wp-block-podcasting-podcast-transcript cite,
.wp-block-podcasting-podcast-transcript time {
display: block;
}