Plugin Directory

Changeset 3133796


Ignore:
Timestamp:
08/11/2024 05:13:25 PM (19 months ago)
Author:
cyclonecode
Message:

Add release 2.1.5

Location:
custom-php-settings/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • custom-php-settings/trunk/bootstrap.php

    r3129735 r3133796  
    55 * Plugin URI: https://wordpress.org/plugins/custom-php-settings/
    66 * Description: Customize PHP settings.
    7  * Version: 2.1.4
    8  * Requires at least: 3.1.0
     7 * Version: 2.1.5
     8 * Requires at least: 4.1.0
    99 * Requires PHP: 5.6
    1010 * Author: Cyclonecode
  • custom-php-settings/trunk/changelog.txt

    r3129735 r3133796  
     1= 2.1.4
     2
     3- Update: Check so mod_env is loaded.
     4
    15= 2.1.3
    26
  • custom-php-settings/trunk/freemius/start.php

    r3117751 r3133796  
    1616     * @var string
    1717     */
    18     $this_sdk_version = '2.7.3';
     18    $this_sdk_version = '2.7.4';
    1919
    2020    #region SDK Selection Logic --------------------------------------------------------------------
  • custom-php-settings/trunk/freemius/templates/account.php

    r3078372 r3133796  
    511511                                            <tr class="fs-field-<?php echo esc_attr( $p['id'] ) ?><?php if ( $odd ) : ?> alternate<?php endif ?>">
    512512                                                <td>
    513                                                     <nobr><?php echo esc_attr( $p['title'] ) ?><?php echo ( ! empty( $p['title'] ) ) ? ':' : '' ?></nobr>
     513                                                    <nobr><?php echo esc_html( $p['title'] ) ?><?php echo ( ! empty( $p['title'] ) ) ? ':' : '' ?></nobr>
    514514                                                </td>
    515515                                                <td<?php if ( 'plan' === $p['id'] || 'bundle_plan' === $p['id'] ) { echo ' colspan="2"'; }?>>
  • custom-php-settings/trunk/readme.txt

    r3129735 r3133796  
    33Donate link: https://www.buymeacoffee.com/cyclonecode
    44Tags: php, htaccess, settings, apache, apache2
    5 Requires at least: 3.1.0
     5Requires at least: 4.1.0
    66Tested up to: 6.6.1
    77Requires PHP: 5.6
    8 Stable tag: 2.1.4
     8Stable tag: 2.1.5
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6767In the premium version, when running PHP as an apache module and using an **.htaccess** file for configuration, you are able
    6868to add custom environment variables. These will be accessible by using the super global **$_SERVER** array.
     69In order for this to work you will need to have the mod_env module enabled in your apache setup.
    6970
    7071= Resources =
     
    125126== Changelog ==
    126127
    127 = 2.1.4
     128= 2.1.5
    128129
    129 - Update: Check so mod_env is loaded.
     130- Update: Freemius SDK to 2.7.4.
  • custom-php-settings/trunk/src/Backend/Backend.php

    r3129735 r3133796  
    77use function CustomPhpSettings\cps_fs;
    88class Backend {
    9     const VERSION = '2.1.4';
     9    const VERSION = '2.1.5';
    1010
    1111    const SETTINGS_NAME = 'custom_php_settings';
  • custom-php-settings/trunk/vendor/composer/installed.php

    r3129735 r3133796  
    22    'root' => array(
    33        'name' => 'cyclonecode/custom-php-settings',
    4         'pretty_version' => 'dev-master',
    5         'version' => 'dev-master',
    6         'reference' => '2a941d27b253c0d26cf724550af6d36004850fc5',
     4        'pretty_version' => '1.0.0+no-version-set',
     5        'version' => '1.0.0.0',
     6        'reference' => null,
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'cyclonecode/custom-php-settings' => array(
    14             'pretty_version' => 'dev-master',
    15             'version' => 'dev-master',
    16             'reference' => '2a941d27b253c0d26cf724550af6d36004850fc5',
     14            'pretty_version' => '1.0.0+no-version-set',
     15            'version' => '1.0.0.0',
     16            'reference' => null,
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.