From 494fec57931aeec25724c7241a6e5e6ec75c0e9b Mon Sep 17 00:00:00 2001 From: Paul Cutler <paul@paulcutler.org> Date: Mon, 24 Feb 2025 14:37:39 +0000 Subject: [PATCH 1/6] docs: Fix note/aside in episodes.mdx to fix ffmpeg note --- .../docs/en/user-guide/podcast/episodes.mdx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/src/content/docs/en/user-guide/podcast/episodes.mdx b/docs/src/content/docs/en/user-guide/podcast/episodes.mdx index 52415f7b8..2dd3fece4 100644 --- a/docs/src/content/docs/en/user-guide/podcast/episodes.mdx +++ b/docs/src/content/docs/en/user-guide/podcast/episodes.mdx @@ -149,3 +149,18 @@ Press `Publish` to finish. Your RSS feed will be automatically updated with your episode information and listeners who subscribe will be notified of a new episode. Congratulations on publishing your first episode! + +## Editing an episode + +You can edit an episode before or after it is published. You can change any of +the fields, including uploading a new episode, updating the show notes, or +updating the transcripts or chapters. Select the episode you want to edit and +choose `Edit Episode`. You can change just one field or multiple fields at the +same time. After you have made the changes, press `Save Episode` in the upper +right corner to finalize the changes. + +You can also edit the publication for the episode. Choose the episode again, and +press `Edit Publication` in the upper right hand corner. Update the announcement +post or publication date. When complete, press `Edit publication`. You can also +choose to cancel the publication and it won't be published but will not be +deleted. -- GitLab From e60311853f156d0143a8be96560c3a5aee486b9e Mon Sep 17 00:00:00 2001 From: Paul Cutler <paul@paulcutler.org> Date: Mon, 24 Feb 2025 14:40:09 +0000 Subject: [PATCH 2/6] Fix broken note by using aside tag in Website overview --- .../src/content/docs/en/user-guide/website/index.mdx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/src/content/docs/en/user-guide/website/index.mdx b/docs/src/content/docs/en/user-guide/website/index.mdx index 37a3c60bb..d3f622a71 100644 --- a/docs/src/content/docs/en/user-guide/website/index.mdx +++ b/docs/src/content/docs/en/user-guide/website/index.mdx @@ -2,6 +2,8 @@ title: Podcast Home Page --- +import { Aside } from "@astrojs/starlight/components"; + The podcast home page is your landing page for your listeners to view episode announcements, messages, episodes, and links to where to find your podcast. If you have only one podcast, your users will be automatically redirected from your @@ -20,9 +22,13 @@ if you have any new notifications, and the user who is logged in. You can click on the user for quick access to your account, changing your password, or to log out. -:::note If you have multiple podcasts, you can click the user dropdown to switch -to choose which podcast to interact with. If your account has access to two or -more podcasts, pay attention to which podcast is broadcasting messages! ::: +<Aside> + +If you have multiple podcasts, you can click the user dropdown to switch to +choose which podcast to interact with. If your account has access to two or more +podcasts, pay attention to which podcast is broadcasting messages! + +</Aside> Listeners can click the `Follow` button to follow any messages, including episode announcements, from a Fediverse app, such as Mastodon. After clicking -- GitLab From 5697297a9506b00563a2f236d5c85e9ec0ee3cd5 Mon Sep 17 00:00:00 2001 From: Paul Cutler <paul@paulcutler.org> Date: Mon, 24 Feb 2025 14:40:33 +0000 Subject: [PATCH 3/6] Fix broken note by using Aside tag in episodes.mdx --- .../content/docs/en/user-guide/podcast/episodes.mdx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/src/content/docs/en/user-guide/podcast/episodes.mdx b/docs/src/content/docs/en/user-guide/podcast/episodes.mdx index 2dd3fece4..874260206 100644 --- a/docs/src/content/docs/en/user-guide/podcast/episodes.mdx +++ b/docs/src/content/docs/en/user-guide/podcast/episodes.mdx @@ -2,6 +2,8 @@ title: Episodes --- +import { Aside } from "@astrojs/starlight/components"; + From the left hand navigation, click **Episodes** and the menu will expand to **All Episodes** and **New Episode**. @@ -52,8 +54,12 @@ displaying the status of creating the clip. Refresh the page to see if it's `Running` or completed. You may need to be patient depending on the length of the clip. -:::note To create video clips and soundbites, your server must have `FFMPEG` -installed and a transcript. ::: +<Aside> + +To create video clips and soundbites, your server must have `FFMPEG` installed +and a transcript. + +</Aside> ## Create episode -- GitLab From df4be0b5d83fbf02917b69bde201c756dac680f5 Mon Sep 17 00:00:00 2001 From: Paul Cutler <paul@paulcutler.org> Date: Mon, 24 Feb 2025 14:41:30 +0000 Subject: [PATCH 4/6] docs: Add missing @ symbol to podcast handles in Website overview --- docs/src/content/docs/en/user-guide/website/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/content/docs/en/user-guide/website/index.mdx b/docs/src/content/docs/en/user-guide/website/index.mdx index d3f622a71..9b45f7493 100644 --- a/docs/src/content/docs/en/user-guide/website/index.mdx +++ b/docs/src/content/docs/en/user-guide/website/index.mdx @@ -8,11 +8,11 @@ The podcast home page is your landing page for your listeners to view episode announcements, messages, episodes, and links to where to find your podcast. If you have only one podcast, your users will be automatically redirected from your top level domain, such as `www.yourpodcast.com`, to the podcast page at -`www.yourpodcast.com/yourpodcasthandle`. +`www.yourpodcast.com/@yourpodcasthandle`. If you are hosting multiple podcasts, your top level page will display the artwork for each podcast. Clicking on the podcast artwork will take you to your -podcast page at `www.yourpodcast.com/yourpodcasthandle`. +podcast page at `www.yourpodcast.com/@yourpodcasthandle`. ## Home Page -- GitLab From 15b1d1f238f7f0b3bae45f8e2e484166e216b704 Mon Sep 17 00:00:00 2001 From: Paul Cutler <paul@paulcutler.org> Date: Mon, 24 Feb 2025 14:42:43 +0000 Subject: [PATCH 5/6] Fix typo with missing t in Instance users.mdx --- docs/src/content/docs/en/user-guide/instance/users.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/content/docs/en/user-guide/instance/users.mdx b/docs/src/content/docs/en/user-guide/instance/users.mdx index 0c058ce12..6592d64a5 100644 --- a/docs/src/content/docs/en/user-guide/instance/users.mdx +++ b/docs/src/content/docs/en/user-guide/instance/users.mdx @@ -4,7 +4,7 @@ title: Users Roles and permissions in Castopod are defined in two ways, **Instance** users and [**Podcast**. contributors](../podcast/contributors). For a detailed list of -permissions, view he [Auth](../../getting-started/auth) page. +permissions, view the [Auth](../../getting-started/auth) page. ## Adding a User to the instance -- GitLab From d387a8139dc9c62cb23216e935f829b71ff2a52c Mon Sep 17 00:00:00 2001 From: Paul Cutler <paul@paulcutler.org> Date: Mon, 24 Feb 2025 14:44:18 +0000 Subject: [PATCH 6/6] docs: Fix typo by removing extra n in instance podcast.mdx --- docs/src/content/docs/en/user-guide/instance/podcast.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/content/docs/en/user-guide/instance/podcast.mdx b/docs/src/content/docs/en/user-guide/instance/podcast.mdx index f177bb365..17000e66c 100644 --- a/docs/src/content/docs/en/user-guide/instance/podcast.mdx +++ b/docs/src/content/docs/en/user-guide/instance/podcast.mdx @@ -98,7 +98,7 @@ To learn more about Fediverse integration, visit the ### Podcast banner Upload a banner image to be displayed at the top of your podcast's home page. -The banner must have a 3:1 ration and be at least 1500px wide. +The banner must have a 3:1 ratio and be at least 1500px wide. ### Premium -- GitLab