🔒 EXCLUSIVE: Changeset/ - Collection

Changeset 1270958


Ignore:
Timestamp:
10/22/2015 08:32:53 AM (10 years ago)
Author:
obstschale
Message:

Version 0.2.4

Location:
dicentis-podcast/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • dicentis-podcast/trunk/CHANGELOG.md

    r1215875 r1270958  
    11# 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
    27## 0.2.3
    38_Release Date: 2015-08-08_
  • dicentis-podcast/trunk/dicentis-define.php

    r1026910 r1270958  
    11<?php
    22
    3 if (!defined('DIPO_DB_Version')) {
    4     define('DIPO_DB_Version', 2);
     3if ( !defined( 'DIPO_DB_Version' ) ) {
     4    define( 'DIPO_DB_Version', 2 );
    55}
    66
    7 if (!defined('DIPO_PLUGIN_NAME'))
    8     define('DIPO_PLUGIN_NAME',
    9         trim(dirname(plugin_basename(__FILE__)), '/'));
     7if ( !defined( 'DIPO_PLUGIN_NAME' ) )
     8    define( 'DIPO_PLUGIN_NAME',
     9    trim( dirname( plugin_basename( __FILE__ ) ), '/' ) );
    1010
    1111
    1212// Directories
    13 if (!defined('DIPO_PLUGIN_DIR'))
    14     define('DIPO_PLUGIN_DIR', WP_PLUGIN_DIR . '/' .
    15         DIPO_PLUGIN_NAME);
     13if ( !defined( 'DIPO_PLUGIN_DIR' ) )
     14    define( 'DIPO_PLUGIN_DIR', WP_PLUGIN_DIR . '/' .
     15        DIPO_PLUGIN_NAME );
    1616
    17 if (!defined('DIPO_ASSETS_DIR'))
     17if ( !defined( 'DIPO_ASSETS_DIR' ) )
    1818    define( 'DIPO_ASSETS_DIR', DIPO_PLUGIN_DIR . '/assets' );
    1919
    20 if (!defined('DIPO_INC_DIR'))
     20if ( !defined( 'DIPO_INC_DIR' ) )
    2121    define( 'DIPO_INC_DIR', DIPO_PLUGIN_DIR . '/includes' );
    2222
    23 if (!defined('DIPO_LIB_DIR'))
     23if ( !defined( 'DIPO_LIB_DIR' ) )
    2424    define( 'DIPO_LIB_DIR', DIPO_INC_DIR . '/libraries' );
    2525
    2626// URLs
    27 if (!defined('DIPO_PLUGIN_URL'))
    28     define('DIPO_PLUGIN_URL', WP_PLUGIN_URL . '/' .
    29         DIPO_PLUGIN_NAME);
     27if ( !defined( 'DIPO_PLUGIN_URL' ) )
     28    define( 'DIPO_PLUGIN_URL', plugins_url( '/' . DIPO_PLUGIN_NAME ) );
    3029
    31 if (!defined('DIPO_ASSETS_URL'))
     30if ( !defined( 'DIPO_ASSETS_URL' ) )
    3231    define( 'DIPO_ASSETS_URL', DIPO_PLUGIN_URL . '/assets' );
    3332
  • dicentis-podcast/trunk/dicentis-podcast.php

    r1215875 r1270958  
    55 * @license   GPL-3.0
    66 * @link      http://dicentis.io
    7  * @copyright 2014 Hans-Helge Buerger
     7 * @copyright 2015 Hans-Helge Buerger
    88 *
    99 * Plugin Name: Dicentis Podcast
    1010 * Plugin URI: http://dicentis.io
    1111 * Description: Manage multiple podcasts with ease in one plugin
    12  * Version: 0.2.3
     12 * Version: 0.2.4
    1313 * Author: Hans-Helge Buerger
    1414 * Author URI: http://hanshelgebuerger.de
     
    1717 * GitHub Plugin URI: https://github.com/dicentis/dicentis
    1818 *
    19  * Copyright 2014 Hans-Helge Buerger (http://hanshelgebuerger.de)
     19 * Copyright 2015 Hans-Helge Buerger (http://hanshelgebuerger.de)
    2020 * License: GPL (http://www.gnu.org/licenses/old-licenses/gpl-3.0.txt)
    2121 */
  • dicentis-podcast/trunk/readme.txt

    r1215875 r1270958  
    55Requires at least: 3.6
    66Tested up to: 4.3
    7 Stable tag: 0.2.3
     7Stable tag: 0.2.4
    88License: GPLv3.0
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040== Changelog ==
     41
     42= 0.2.4 =
     43
     44* [HOTFIX] Allow loading custom styles and scripts via HTTPS. props @noelboss
    4145
    4246= 0.2.3 =
Note: See TracChangeset for help on using the changeset viewer.