Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
core:
- {name: 'WP latest', version: 'latest'}
- {name: 'WP trunk', version: 'WordPress/WordPress#master'}
- {name: 'WP minimum', version: 'WordPress/WordPress#6.6'}
- {name: 'WP minimum', version: 'WordPress/WordPress#6.8'}

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Podcasting is a method to distribute audio messages through a feed to which list
## Requirements

* PHP 7.4+
* [WordPress](http://wordpress.org) 6.6+
* [WordPress](http://wordpress.org) 6.8+
* RSS feeds must not be disabled

## Installation
Expand Down
9 changes: 2 additions & 7 deletions assets/js/create-podcast-show.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,9 @@ import {
import { MediaUpload, MediaUploadCheck } from '@wordpress/block-editor';
import { useState, useEffect } from "@wordpress/element";
import { useSelect, dispatch } from "@wordpress/data";
import { PluginDocumentSettingPanel, store as editorStore } from '@wordpress/editor';
import { store as coreDataStore } from '@wordpress/core-data';

// Once WordPress 6.6 becomes our minimum, change this back to `import { PluginDocumentSettingPanel } from '@wordpress/editor';`.
const PluginDocumentSettingPanel = wp.editor?.PluginDocumentSettingPanel ?? ( wp.editPost?.PluginDocumentSettingPanel ?? wp.editSite?.PluginDocumentSettingPanel );

// Due to unsupported versions of React, we're importing stores from the
// `wp` namespace instead of @wordpress NPM packages for the following.
const { store: editorStore } = wp.editor;
const { store: coreDataStore } = wp.coreData;
const DEFAULT_QUERY = {
per_page: -1,
orderby: 'name',
Expand Down
13 changes: 7 additions & 6 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
=== Simple Podcasting ===
Contributors: 10up, helen, adamsilverstein, jakemgold, jeffpaul, cadic
Tags: podcasting, podcast, apple podcasts, episode, season
Tested up to: 6.9
Stable tag: 1.9.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Contributors: 10up, helen, adamsilverstein, jakemgold, jeffpaul, cadic
Tags: podcasting, podcast, apple podcasts, episode, season
Requires at least: 6.8
Tested up to: 7.0
Stable tag: 1.9.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Set up multiple podcast feeds using built-in WordPress posts. Includes a podcast block and podcast transcript block for the WordPress block editor.

Expand Down
1 change: 0 additions & 1 deletion simple-podcasting.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
* Plugin URI: https://github.com/10up/simple-podcasting
* Description: Easily set up multiple podcast feeds using built-in WordPress posts. Includes a podcast block for the new WordPress editor.
* Version: 1.9.1
* Requires at least: 6.6
* Requires PHP: 7.4
* Author: 10up
* Author URI: http://10up.com/
Expand Down
Loading