Changeset 2336312
- Timestamp:
- 07/06/2020 09:05:33 PM (6 years ago)
- Location:
- wpaudio-mp3-player
- Files:
-
- 1 deleted
- 2 edited
- 6 copied
-
tags/4.0.2 (copied) (copied from wpaudio-mp3-player/trunk)
-
tags/4.0.2/readme.txt (copied) (copied from wpaudio-mp3-player/trunk/readme.txt) (2 diffs)
-
tags/4.0.2/sm2 (deleted)
-
tags/4.0.2/wpaudio.js (copied) (copied from wpaudio-mp3-player/trunk/wpaudio.js)
-
tags/4.0.2/wpaudio.min.js (copied) (copied from wpaudio-mp3-player/trunk/wpaudio.min.js)
-
tags/4.0.2/wpaudio.min.js.map (copied) (copied from wpaudio-mp3-player/trunk/wpaudio.min.js.map)
-
tags/4.0.2/wpaudio.php (copied) (copied from wpaudio-mp3-player/trunk/wpaudio.php) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wpaudio.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpaudio-mp3-player/tags/4.0.2/readme.txt
r2335757 r2336312 4 4 Requires at least: 3.0 5 5 Tested up to: 5.5 6 Stable tag: 4.0. 16 Stable tag: 4.0.2 7 7 License: GPLv2 8 8 … … 110 110 111 111 == Changelog == 112 113 = 4.0.2 = 114 * Better support for instances with custom paths 112 115 113 116 = 4.0.1 = -
wpaudio-mp3-player/tags/4.0.2/wpaudio.php
r2335753 r2336312 5 5 * Plugin URI: http://wpaudio.com 6 6 * Description: Play mp3s and podcasts in your posts by converting links and tags into a simple, customizable audio player. 7 * Version: 4.0. 17 * Version: 4.0.2 8 8 * Author: Todd Iceton 9 9 * … … 26 26 27 27 ## 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 30 if (!defined('WPAUDIO_DIR')) define('WPAUDIO_DIR', plugin_dir_path(__FILE__)); 31 if (!defined('WPAUDIO_URL')) define('WPAUDIO_URL', plugins_url('', __FILE__)); 41 32 42 33 ## Get WPaudio's options from DB (or create them if not found) -
wpaudio-mp3-player/trunk/readme.txt
r2335757 r2336312 4 4 Requires at least: 3.0 5 5 Tested up to: 5.5 6 Stable tag: 4.0. 16 Stable tag: 4.0.2 7 7 License: GPLv2 8 8 … … 110 110 111 111 == Changelog == 112 113 = 4.0.2 = 114 * Better support for instances with custom paths 112 115 113 116 = 4.0.1 = -
wpaudio-mp3-player/trunk/wpaudio.php
r2335753 r2336312 5 5 * Plugin URI: http://wpaudio.com 6 6 * Description: Play mp3s and podcasts in your posts by converting links and tags into a simple, customizable audio player. 7 * Version: 4.0. 17 * Version: 4.0.2 8 8 * Author: Todd Iceton 9 9 * … … 26 26 27 27 ## 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 30 if (!defined('WPAUDIO_DIR')) define('WPAUDIO_DIR', plugin_dir_path(__FILE__)); 31 if (!defined('WPAUDIO_URL')) define('WPAUDIO_URL', plugins_url('', __FILE__)); 41 32 42 33 ## Get WPaudio's options from DB (or create them if not found)
Note: See TracChangeset
for help on using the changeset viewer.