Skip to content

Commit

Permalink
Merge pull request #291 from TheCraigHewitt/release/1.19.8
Browse files Browse the repository at this point in the history
Release/1.19.8
  • Loading branch information
jonathanbossenger authored Apr 25, 2018
2 parents 2d3696a + b6b0bb5 commit 927f50b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
6 changes: 3 additions & 3 deletions includes/class-ssp-frontend.php
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ public function load_media_player($srcFile = '', $episode_id = 0, $player_size){
* Check if this player is being loaded via the AMP for WordPress plugin and if so, force the standard player
* https://wordpress.org/plugins/amp/
*/
if ( is_plugin_active( 'amp/amp.php' ) && function_exists( 'is_amp_endpoint' ) && is_amp_endpoint() ) {
if ( function_exists( 'is_amp_endpoint' ) && is_amp_endpoint() ) {
$player_size = 'mini';
}

Expand Down Expand Up @@ -551,7 +551,7 @@ public function load_media_player($srcFile = '', $episode_id = 0, $player_size){

<div class="ssp-back-thirty-container">
<div class="ssp-back-thirty-control" id="ssp-back-thirty">
<i class="icon icon-replay">&nbsp;</i>
<i class="ssp-icon icon-replay">&nbsp;</i>
</div>
</div>

Expand All @@ -563,7 +563,7 @@ public function load_media_player($srcFile = '', $episode_id = 0, $player_size){

<div class="ssp-download-container">
<div class="ssp-download-control">
<a class="ssp-episode-download" href="<?php echo $this->get_episode_download_link( $episode_id, 'download' ); ?>" target="_blank"><i class="icon icon-cloud-download">&nbsp;</i></a>
<a class="ssp-episode-download" href="<?php echo $this->get_episode_download_link( $episode_id, 'download' ); ?>" target="_blank"><i class="ssp-icon icon-cloud-download">&nbsp;</i></a>
</div>
</div>

Expand Down
7 changes: 6 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: podcast, audio, video, vodcast, rss, mp3, mp4, feed, itunes, podcasting, m
Requires at least: 4.4
Tested up to: 4.9.1
Requires PHP: 5.3.3
Stable tag: 1.19.7
Stable tag: 1.19.8
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

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

== Changelog ==

= 1.19.8 =
* 2018-03-29
* [FIX] Fixed a bug related to checking for the AMP for WordPress plugin
* [FIX] Fixed a bug related to icon rendering in the HTML player

= 1.19.7 =
* 2018-03-28
* [NEW] Updated player to work with AMP for WordPress plugin on AMP pages
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: 1.19.7
* Version: 1.19.8
* Plugin URI: https://www.castos.com/seriously-simple-podcasting
* 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 Down Expand Up @@ -38,7 +38,7 @@
return;
}

define( 'SSP_VERSION', '1.19.7' );
define( 'SSP_VERSION', '1.19.8' );
define( 'SSP_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'SSP_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );

Expand Down

0 comments on commit 927f50b

Please sign in to comment.