Plugin Directory

Changeset 3140269


Ignore:
Timestamp:
08/23/2024 09:37:47 AM (7 months ago)
Author:
lushkant
Message:

Update to version 0.5.0 from GitHub

Location:
really-simple-featured-audio
Files:
390 added
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • really-simple-featured-audio/tags/0.5.0/readme.txt

    r3136484 r3140269  
    44Requires PHP: 8.0
    55Tested up to: 6.6.1
    6 Stable tag: 0.4.0
    7 Tags: audio, featured audio, woocommerce, product audio, audio embed
     6Stable tag: 0.5.0
     7Tags: audio, featured audio, woocommerce, product audio, featured
    88License: GPLv2
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6666== Changelog ==
    6767
     68= 0.5.0 =
     69- Add Freemius SDK
     70- Other minor changes
     71
    6872= 0.4.0 =
    6973- Wp.org release
  • really-simple-featured-audio/tags/0.5.0/really-simple-featured-audio.php

    r3136484 r3140269  
    44 * Plugin URI:  https://jetixwp.com/plugins/really-simple-featured-audio
    55 * Description: Adds support for Featured Audio to WordPress posts, pages & WooCommerce products.
    6  * Version:     0.4.0
     6 * Version:     0.5.0
    77 * Author:      JetixWP Plugins
    88 * Author URI:  https://jetixwp.com
     
    1717defined( 'ABSPATH' ) || exit;
    1818
    19 define( 'RSFA_VERSION', '0.4.0' );
     19define( 'RSFA_VERSION', '0.5.0' );
    2020define( 'RSFA_PLUGIN_FILE', __FILE__ );
    2121define( 'RSFA_PLUGIN_URL', plugin_dir_url( RSFA_PLUGIN_FILE ) );
     
    2323define( 'RSFA_PLUGIN_BASE', plugin_basename( RSFA_PLUGIN_FILE ) );
    2424define( 'RSFA_PLUGIN_PRO_URL', 'https://jetixwp.com/plugins/really-simple-featured-audio' );
     25
     26if ( ! function_exists( 'rsfa_fs' ) ) {
     27    /**
     28     * Create a helper function for easy SDK access.
     29     */
     30    function rsfa_fs() {
     31        global $rsfa_fs;
     32
     33        if ( ! isset( $rsfa_fs ) ) {
     34            // Include Freemius SDK.
     35            require_once __DIR__ . '/freemius/start.php';
     36
     37            $rsfa_fs = fs_dynamic_init(
     38                array(
     39                    'id'             => '15832',
     40                    'slug'           => 'really-simple-featured-audio',
     41                    'type'           => 'plugin',
     42                    'public_key'     => 'pk_966ab730c951fb6730786c41ce9ad',
     43                    'is_premium'     => false,
     44                    'has_addons'     => false,
     45                    'has_paid_plans' => false,
     46                    'menu'           => array(
     47                        'slug'       => 'rsfa-settings',
     48                        'first-path' => 'options-general.php?page=rsfa-settings',
     49                        'support'    => false,
     50                        'parent'     => array(
     51                            'slug' => 'options-general.php',
     52                        ),
     53                    ),
     54                )
     55            );
     56        }
     57
     58        return $rsfa_fs;
     59    }
     60
     61    // Init Freemius.
     62    rsfa_fs();
     63    // Signal that SDK was initiated.
     64    do_action( 'rsfa_fs_loaded' );
     65}
    2566
    2667/**
  • really-simple-featured-audio/trunk/readme.txt

    r3136484 r3140269  
    44Requires PHP: 8.0
    55Tested up to: 6.6.1
    6 Stable tag: 0.4.0
    7 Tags: audio, featured audio, woocommerce, product audio, audio embed
     6Stable tag: 0.5.0
     7Tags: audio, featured audio, woocommerce, product audio, featured
    88License: GPLv2
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6666== Changelog ==
    6767
     68= 0.5.0 =
     69- Add Freemius SDK
     70- Other minor changes
     71
    6872= 0.4.0 =
    6973- Wp.org release
  • really-simple-featured-audio/trunk/really-simple-featured-audio.php

    r3136484 r3140269  
    44 * Plugin URI:  https://jetixwp.com/plugins/really-simple-featured-audio
    55 * Description: Adds support for Featured Audio to WordPress posts, pages & WooCommerce products.
    6  * Version:     0.4.0
     6 * Version:     0.5.0
    77 * Author:      JetixWP Plugins
    88 * Author URI:  https://jetixwp.com
     
    1717defined( 'ABSPATH' ) || exit;
    1818
    19 define( 'RSFA_VERSION', '0.4.0' );
     19define( 'RSFA_VERSION', '0.5.0' );
    2020define( 'RSFA_PLUGIN_FILE', __FILE__ );
    2121define( 'RSFA_PLUGIN_URL', plugin_dir_url( RSFA_PLUGIN_FILE ) );
     
    2323define( 'RSFA_PLUGIN_BASE', plugin_basename( RSFA_PLUGIN_FILE ) );
    2424define( 'RSFA_PLUGIN_PRO_URL', 'https://jetixwp.com/plugins/really-simple-featured-audio' );
     25
     26if ( ! function_exists( 'rsfa_fs' ) ) {
     27    /**
     28     * Create a helper function for easy SDK access.
     29     */
     30    function rsfa_fs() {
     31        global $rsfa_fs;
     32
     33        if ( ! isset( $rsfa_fs ) ) {
     34            // Include Freemius SDK.
     35            require_once __DIR__ . '/freemius/start.php';
     36
     37            $rsfa_fs = fs_dynamic_init(
     38                array(
     39                    'id'             => '15832',
     40                    'slug'           => 'really-simple-featured-audio',
     41                    'type'           => 'plugin',
     42                    'public_key'     => 'pk_966ab730c951fb6730786c41ce9ad',
     43                    'is_premium'     => false,
     44                    'has_addons'     => false,
     45                    'has_paid_plans' => false,
     46                    'menu'           => array(
     47                        'slug'       => 'rsfa-settings',
     48                        'first-path' => 'options-general.php?page=rsfa-settings',
     49                        'support'    => false,
     50                        'parent'     => array(
     51                            'slug' => 'options-general.php',
     52                        ),
     53                    ),
     54                )
     55            );
     56        }
     57
     58        return $rsfa_fs;
     59    }
     60
     61    // Init Freemius.
     62    rsfa_fs();
     63    // Signal that SDK was initiated.
     64    do_action( 'rsfa_fs_loaded' );
     65}
    2566
    2667/**
Note: See TracChangeset for help on using the changeset viewer.