Plugin Directory

Changeset 2336312


Ignore:
Timestamp:
07/06/2020 09:05:33 PM (6 years ago)
Author:
toddiceton
Message:

v4.0.2 supports custom paths, with version tag

Location:
wpaudio-mp3-player
Files:
1 deleted
2 edited
6 copied

Legend:

Unmodified
Added
Removed
  • wpaudio-mp3-player/tags/4.0.2/readme.txt

    r2335757 r2336312  
    44Requires at least: 3.0
    55Tested up to: 5.5
    6 Stable tag: 4.0.1
     6Stable tag: 4.0.2
    77License: GPLv2
    88
     
    110110
    111111== Changelog ==
     112
     113= 4.0.2 =
     114* Better support for instances with custom paths
    112115
    113116= 4.0.1 =
  • wpaudio-mp3-player/tags/4.0.2/wpaudio.php

    r2335753 r2336312  
    55 * Plugin URI: http://wpaudio.com
    66 * Description: Play mp3s and podcasts in your posts by converting links and tags into a simple, customizable audio player.
    7  * Version: 4.0.1
     7 * Version: 4.0.2
    88 * Author: Todd Iceton
    99 *
     
    2626
    2727## WPaudio version
    28 $wpa_version = '4.0.1';
    29 
    30 ## Pre-2.6 compatibility (from WP codex)
    31 if ( ! defined( 'WP_CONTENT_URL' ) )
    32   define( 'WP_CONTENT_URL', get_option( 'siteurl' ) . '/wp-content' );
    33 if ( ! defined( 'WP_CONTENT_DIR' ) )
    34   define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' );
    35 if ( ! defined( 'WP_PLUGIN_URL' ) )
    36   define( 'WP_PLUGIN_URL', WP_CONTENT_URL. '/plugins' );
    37 if ( ! defined( 'WP_PLUGIN_DIR' ) )
    38   define( 'WP_PLUGIN_DIR', WP_CONTENT_DIR . '/plugins' );
    39 if ( ! defined( 'WPAUDIO_URL' ) )
    40   define( 'WPAUDIO_URL', WP_PLUGIN_URL . '/wpaudio-mp3-player' );
     28$wpa_version = '4.0.2';
     29
     30if (!defined('WPAUDIO_DIR')) define('WPAUDIO_DIR', plugin_dir_path(__FILE__));
     31if (!defined('WPAUDIO_URL')) define('WPAUDIO_URL', plugins_url('', __FILE__));
    4132 
    4233## Get WPaudio's options from DB (or create them if not found)
  • wpaudio-mp3-player/trunk/readme.txt

    r2335757 r2336312  
    44Requires at least: 3.0
    55Tested up to: 5.5
    6 Stable tag: 4.0.1
     6Stable tag: 4.0.2
    77License: GPLv2
    88
     
    110110
    111111== Changelog ==
     112
     113= 4.0.2 =
     114* Better support for instances with custom paths
    112115
    113116= 4.0.1 =
  • wpaudio-mp3-player/trunk/wpaudio.php

    r2335753 r2336312  
    55 * Plugin URI: http://wpaudio.com
    66 * Description: Play mp3s and podcasts in your posts by converting links and tags into a simple, customizable audio player.
    7  * Version: 4.0.1
     7 * Version: 4.0.2
    88 * Author: Todd Iceton
    99 *
     
    2626
    2727## WPaudio version
    28 $wpa_version = '4.0.1';
    29 
    30 ## Pre-2.6 compatibility (from WP codex)
    31 if ( ! defined( 'WP_CONTENT_URL' ) )
    32   define( 'WP_CONTENT_URL', get_option( 'siteurl' ) . '/wp-content' );
    33 if ( ! defined( 'WP_CONTENT_DIR' ) )
    34   define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' );
    35 if ( ! defined( 'WP_PLUGIN_URL' ) )
    36   define( 'WP_PLUGIN_URL', WP_CONTENT_URL. '/plugins' );
    37 if ( ! defined( 'WP_PLUGIN_DIR' ) )
    38   define( 'WP_PLUGIN_DIR', WP_CONTENT_DIR . '/plugins' );
    39 if ( ! defined( 'WPAUDIO_URL' ) )
    40   define( 'WPAUDIO_URL', WP_PLUGIN_URL . '/wpaudio-mp3-player' );
     28$wpa_version = '4.0.2';
     29
     30if (!defined('WPAUDIO_DIR')) define('WPAUDIO_DIR', plugin_dir_path(__FILE__));
     31if (!defined('WPAUDIO_URL')) define('WPAUDIO_URL', plugins_url('', __FILE__));
    4132 
    4233## Get WPaudio's options from DB (or create them if not found)
Note: See TracChangeset for help on using the changeset viewer.