Plugin Directory

Changeset 3189029


Ignore:
Timestamp:
11/14/2024 07:54:46 PM (17 months ago)
Author:
sonaar
Message:

Version 5.9.1

Location:
mp3-music-player-by-sonaar
Files:
735 added
5 edited

Legend:

Unmodified
Added
Removed
  • mp3-music-player-by-sonaar/trunk/README.txt

    r3188034 r3189029  
    66Tested up to: 6.7
    77Requires PHP: 5.6
    8 Stable tag: 5.9
     8Stable tag: 5.9.1
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    343343
    344344== Changelog ==
     345= 5.9.1 =
     346- Hotfix: Carousel Slider not working since last update
     347- Hotfix: Artist Names not displaying in the tracklist since last update
     348
    345349= 5.9 =
    346350- New: Introducing Advanced Triggers. Engage listeners with playback actions and download buttons, including previews, watermarks, ads, popups, redirects, scrolling, and role-based interactive enhancements. [Learn More](https://sonaar.io/tips-and-tricks/advanced-triggers-in-mp3-audio-player-pro/)
  • mp3-music-player-by-sonaar/trunk/admin/class-sonaar-music-admin.php

    r3188034 r3189029  
    469469                plugin_dir_url( __FILE__ ) . 'library/cmb2-conditional-logic/cmb2-conditional-logic.min.js',
    470470                '',
    471                 '1.0.0',
     471                $this->version,
    472472                true
    473473            );  // Used for plugin settings page and CPT 'sr_advanced_triggers'
  • mp3-music-player-by-sonaar/trunk/includes/class-sonaar-music-widget.php

    r3188034 r3189029  
    14951495                $widgetPart_slider .= '</div>';  // swiper-box-navigation
    14961496            }
    1497             $widgetPart_slider .= '<div class="srp_swiper swiper' . esc_attr($swiperClass) . '" ' . esc_attr($dataSwiperSource) . '  data-params="' .  esc_attr( $sliderParams ) . '" >';
     1497            $widgetPart_slider .= '<div class="srp_swiper swiper' . esc_attr($swiperClass) . '" ' . $dataSwiperSource . '  data-params="' .  esc_attr( $sliderParams ) . '" >';
    14981498            $widgetPart_slider .= '<div class="swiper-wrapper">';
    14991499            $slideList = $playlist['tracks'];
     
    16221622
    16231623        $tracklistClass .= ( $hasTracklistSoundwave )? ' srp_tracklist_waveform_enabled' : '';
     1624        $tracklistClass .= ( isset( $this->shortcodeParams['artist_hide'] ) &&  $this->shortcodeParams['artist_hide'] === 'true' && Sonaar_Music::get_option('show_artist_name', 'srmp3_settings_general') )? ' srp_tracklist_hide_artist' : ''; 
    16241625        $tracklist_datas = (isset($this->shortcodeParams['tracklist_soundwave_bar_width'])) ? ' data-wave-bar-width="' . esc_attr($this->shortcodeParams['tracklist_soundwave_bar_width']) . '"' : '';
    16251626        $tracklist_datas .= (isset($this->shortcodeParams['tracklist_soundwave_bar_gap'])) ? ' data-wave-bar-gap="' . esc_attr($this->shortcodeParams['tracklist_soundwave_bar_gap']) . '"' : '';
  • mp3-music-player-by-sonaar/trunk/includes/widgets/sr-music-player.php

    r3188034 r3189029  
    79557955                        'label_off'                 => esc_html__( 'Show', 'sonaar-music' ),
    79567956                        'return_value'              => 'true',
    7957                         'selectors' => [
    7958                             '{{WRAPPER}} .iron-audioplayer .srp_trackartist' => 'display:none;',
    7959                         ],
    79607957                        'separator'                 => 'before',
    79617958                        'default'                   => 'false',
     
    1183011827                $shortcode .= 'track_desc_postcontent="true" ';
    1183111828            }
    11832            
     11829            if (isset($settings['artist_hide']) && $settings['artist_hide'] === 'true'){
     11830                $shortcode .= 'artist_hide="true" ';
     11831            }
    1183311832            if (isset($settings['artist_wrap']) && $settings['artist_wrap'] === 'true'){
    1183411833                $shortcode .= 'artist_wrap="true" ';
  • mp3-music-player-by-sonaar/trunk/sonaar-music.php

    r3188034 r3189029  
    1717 * Plugin URI:        https://sonaar.io/mp3-audio-player-pro/?utm_source=Sonaar+Music+Free+Plugin&utm_medium=plugin
    1818 * Description:       The most popular and complete Music & Podcast Player for WordPress.
    19  * Version:           5.9
     19 * Version:           5.9.1
    2020 * Author:            Sonaar Music
    2121 * Author URI:        https://sonaar.io/?utm_source=Sonaar%20Music%20Free%20Plugin&utm_medium=plugin
     
    3131}
    3232
    33 define('SRMP3_VERSION', '5.9'); // important to avoid cache issues on update
    34 define('SRMP3_PRO_MIN_VERSION', '5.9'); // Minimum pro version required
     33define('SRMP3_VERSION', '5.9.1'); // important to avoid cache issues on update
     34define('SRMP3_PRO_MIN_VERSION', '5.9.1'); // Minimum pro version required
    3535if ( !defined( 'SRMP3_DIR_PATH' ) ) {
    3636    define( 'SRMP3_DIR_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.