Changeset 1270958
- Timestamp:
- 10/22/2015 08:32:53 AM (10 years ago)
- Location:
- dicentis-podcast/trunk
- Files:
-
- 4 edited
-
CHANGELOG.md (modified) (1 diff)
-
dicentis-define.php (modified) (1 diff)
-
dicentis-podcast.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dicentis-podcast/trunk/CHANGELOG.md
r1215875 r1270958 1 1 # Changelog 2 ## 0.2.4 3 _Release Date: 2015-10-22_ 4 5 * [HOTFIX] Allow loading custom styles and scripts via HTTPS. props @noelboss 6 2 7 ## 0.2.3 3 8 _Release Date: 2015-08-08_ -
dicentis-podcast/trunk/dicentis-define.php
r1026910 r1270958 1 1 <?php 2 2 3 if ( !defined('DIPO_DB_Version')) {4 define( 'DIPO_DB_Version', 2);3 if ( !defined( 'DIPO_DB_Version' ) ) { 4 define( 'DIPO_DB_Version', 2 ); 5 5 } 6 6 7 if ( !defined('DIPO_PLUGIN_NAME'))8 define( 'DIPO_PLUGIN_NAME',9 trim(dirname(plugin_basename(__FILE__)), '/'));7 if ( !defined( 'DIPO_PLUGIN_NAME' ) ) 8 define( 'DIPO_PLUGIN_NAME', 9 trim( dirname( plugin_basename( __FILE__ ) ), '/' ) ); 10 10 11 11 12 12 // Directories 13 if ( !defined('DIPO_PLUGIN_DIR'))14 define( 'DIPO_PLUGIN_DIR', WP_PLUGIN_DIR . '/' .15 DIPO_PLUGIN_NAME );13 if ( !defined( 'DIPO_PLUGIN_DIR' ) ) 14 define( 'DIPO_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . 15 DIPO_PLUGIN_NAME ); 16 16 17 if ( !defined('DIPO_ASSETS_DIR'))17 if ( !defined( 'DIPO_ASSETS_DIR' ) ) 18 18 define( 'DIPO_ASSETS_DIR', DIPO_PLUGIN_DIR . '/assets' ); 19 19 20 if ( !defined('DIPO_INC_DIR'))20 if ( !defined( 'DIPO_INC_DIR' ) ) 21 21 define( 'DIPO_INC_DIR', DIPO_PLUGIN_DIR . '/includes' ); 22 22 23 if ( !defined('DIPO_LIB_DIR'))23 if ( !defined( 'DIPO_LIB_DIR' ) ) 24 24 define( 'DIPO_LIB_DIR', DIPO_INC_DIR . '/libraries' ); 25 25 26 26 // URLs 27 if (!defined('DIPO_PLUGIN_URL')) 28 define('DIPO_PLUGIN_URL', WP_PLUGIN_URL . '/' . 29 DIPO_PLUGIN_NAME); 27 if ( !defined( 'DIPO_PLUGIN_URL' ) ) 28 define( 'DIPO_PLUGIN_URL', plugins_url( '/' . DIPO_PLUGIN_NAME ) ); 30 29 31 if ( !defined('DIPO_ASSETS_URL'))30 if ( !defined( 'DIPO_ASSETS_URL' ) ) 32 31 define( 'DIPO_ASSETS_URL', DIPO_PLUGIN_URL . '/assets' ); 33 32 -
dicentis-podcast/trunk/dicentis-podcast.php
r1215875 r1270958 5 5 * @license GPL-3.0 6 6 * @link http://dicentis.io 7 * @copyright 201 4Hans-Helge Buerger7 * @copyright 2015 Hans-Helge Buerger 8 8 * 9 9 * Plugin Name: Dicentis Podcast 10 10 * Plugin URI: http://dicentis.io 11 11 * Description: Manage multiple podcasts with ease in one plugin 12 * Version: 0.2. 312 * Version: 0.2.4 13 13 * Author: Hans-Helge Buerger 14 14 * Author URI: http://hanshelgebuerger.de … … 17 17 * GitHub Plugin URI: https://github.com/dicentis/dicentis 18 18 * 19 * Copyright 201 4Hans-Helge Buerger (http://hanshelgebuerger.de)19 * Copyright 2015 Hans-Helge Buerger (http://hanshelgebuerger.de) 20 20 * License: GPL (http://www.gnu.org/licenses/old-licenses/gpl-3.0.txt) 21 21 */ -
dicentis-podcast/trunk/readme.txt
r1215875 r1270958 5 5 Requires at least: 3.6 6 6 Tested up to: 4.3 7 Stable tag: 0.2. 37 Stable tag: 0.2.4 8 8 License: GPLv3.0 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 39 39 40 40 == Changelog == 41 42 = 0.2.4 = 43 44 * [HOTFIX] Allow loading custom styles and scripts via HTTPS. props @noelboss 41 45 42 46 = 0.2.3 =
Note: See TracChangeset
for help on using the changeset viewer.