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

Release/3.6.1 #813

Merged
merged 2 commits into from
Nov 5, 2024
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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "seriously-simple-podcasting",
"version": "3.6.0",
"version": "3.6.1",
"main": "build/index.js",
"author": "CastosHQ",
"devDependencies": {
Expand Down
9 changes: 5 additions & 4 deletions php/classes/controllers/class-assets-controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,14 @@ public function enqueue_admin_scripts( $hook ) {


protected function need_admin_scripts( $hook ) {
$screen = get_current_screen();
$ssp = ssp_post_types();

return ( in_array( 'post', $ssp ) && 'post.php' === $hook ) ||
( in_array( 'post', $ssp ) && 'post-new.php' === $hook ) ||
( in_array( 'post', $ssp ) && 'edit.php' === $hook ) ||
return ( in_array( $screen->post_type, $ssp ) && 'post.php' === $hook ) ||
( in_array( $screen->post_type, $ssp ) && 'post-new.php' === $hook ) ||
( in_array( $screen->post_type, $ssp ) && 'edit.php' === $hook ) ||
strpos( $hook, 'ssp-onboarding' ) ||
$this->is_ssp_admin_page() ||
( 'term.php' === $hook && (ssp_series_taxonomy() === filter_input( INPUT_GET, 'taxonomy' ) ) );
( 'term.php' === $hook && ( ssp_series_taxonomy() === filter_input( INPUT_GET, 'taxonomy' ) ) );
}
}
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: podcast, audio, itunes, podcasting, playlist
Requires at least: 5.3
Tested up to: 6.6
Requires PHP: 7.4
Stable tag: 3.6.0
Stable tag: 3.6.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -165,6 +165,10 @@ You can find complete user and developer documentation (along with the FAQs) on

== Changelog ==

= 3.6.1 =
2024-11-05
[FIX] Fixed episode meta field styles

= 3.6.0 =
2024-11-04
[UPDATE] Display episode meta boxes in the sidebar
Expand Down
4 changes: 2 additions & 2 deletions seriously-simple-podcasting.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* Plugin Name: Seriously Simple Podcasting
* Version: 3.6.0
* Version: 3.6.1
* Plugin URI: https://castos.com/seriously-simple-podcasting/?utm_medium=sspodcasting&utm_source=wordpress&utm_campaign=wpplugin_08_2019
* Description: Podcasting the way it's meant to be. No mess, no fuss - just you and your content taking over the world.
* Author: Castos
Expand All @@ -22,7 +22,7 @@
exit;
}

define( 'SSP_VERSION', '3.6.0' );
define( 'SSP_VERSION', '3.6.1' );
define( 'SSP_PLUGIN_FILE', __FILE__ );
define( 'SSP_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'SSP_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
Expand Down
Loading