Plugin Directory

Changeset 1692810


Ignore:
Timestamp:
07/08/2017 04:29:08 AM (9 years ago)
Author:
eoni
Message:

Preparing for 1.1.6 release

Location:
wp-tipi/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • wp-tipi/trunk/README.txt

    r1692791 r1692810  
    66Requires at least: 4.4
    77Tested up to: 4.8
    8 Stable tag: 1.1.5
     8Stable tag: 1.1.6
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5353== Changelog ==
    5454
     55= 1.1.6 =
     56
     57* Add -  Set default option on activate plugin
     58
    5559= 1.1.5 =
    5660
  • wp-tipi/trunk/admin/class-tipi-admin.php

    r1692791 r1692810  
    220220                'show_option_none'  => __( '— Select —' ),
    221221                'option_none_value' => '0',
    222                 'selected'          => $this->tipi_gateway_settings_options['where_to_display_it_2'],
     222                'selected'          => $current,
    223223            )
    224224        ); ?>
  • wp-tipi/trunk/changelog.txt

    r1692791 r1692810  
    11== Changelog ==
     2
     3= 1.1.6 - 2017-07-08 =
     4
     5* Add -  Set default option on activate plugin
    26
    37= 1.1.5 - 2017-07-08 =
  • wp-tipi/trunk/includes/class-tipi-activator.php

    r1691044 r1692810  
    3131     */
    3232    public static function activate() {
    33 
     33        $default = array(
     34            'bootstrap_3'     => 'No',
     35            'input_mode_1'   => 'T'
     36        );
     37        update_option( 'tipi_gateway_settings_option_name', $default );
    3438    }
    3539
  • wp-tipi/trunk/includes/class-tipi.php

    r1692791 r1692810  
    7474
    7575        $this->plugin_name = 'tipi';
    76         $this->version = '1.1.5';
     76        $this->version = '1.1.6';
    7777        $this->tipi_gateway_settings_options = apply_filters('tipi_gateway_settings_options',get_option( 'tipi_gateway_settings_option_name' ));
    7878        $this->tipi_plugin_url = apply_filters('tipi_gateway_plugin_url',plugin_dir_url(dirname(__FILE__)));
  • wp-tipi/trunk/tipi.php

    r1692791 r1692810  
    1717 * Plugin URI:        https://www.patricelaurent.net/portfolio/e-commerce/tipi-pour-wordpress/
    1818 * Description:       This plugin allow you tu use the TIPI Gateway allowing people to pay by credit card dierctly from your site.
    19  * Version:           1.1.5
     19 * Version:           1.1.6
    2020 * Author:            Patrice LAURENT
    2121 * Author URI:        https://www.patricelaurent.net
Note: See TracChangeset for help on using the changeset viewer.