Plugin Directory

Changeset 2152916


Ignore:
Timestamp:
09/08/2019 05:15:45 AM (7 years ago)
Author:
labs64
Message:

Preparing for 0.9.9 release

Location:
pluginpass-pro-plugintheme-licensing/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • pluginpass-pro-plugintheme-licensing/trunk/README.txt

    r2152158 r2152916  
    88Tested up to: 5.2.2
    99Requires PHP: 5.6
    10 Stable tag: 0.9.8
     10Stable tag: 0.9.9
    1111License: GPLv2 or later
    1212License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    129129== Changelog ==
    130130
     131= 0.9.9 =
     132* TODO
     133
    131134= 0.9.8 =
    132135* Fix: New Host/Licensee validation fails with HTTP400 - Licensee does not exist #19
     
    136139* Update: User consent before validation #13
    137140
    138 = 0.9.8 =
     141= 0.9.9 =
    139142* Fix: Adjust User-Agent to reflect plugin name and version #14
    140143* Update: plugin documentation
  • pluginpass-pro-plugintheme-licensing/trunk/constants.php

    r2152158 r2152916  
    88define( __NAMESPACE__ . '\NS', __NAMESPACE__ . '\\' );
    99
    10 define( NS . 'PLUGIN_VERSION', '0.9.8' );
     10define( NS . 'PLUGIN_VERSION', '0.9.9' );
    1111
    1212define( NS . 'PLUGIN_NAME', 'pluginpass' );
     
    1616define( NS . 'PLUGIN_NAME_URL', plugin_dir_url( __FILE__ ) );
    1717
    18 define( NS . 'PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
     18define( NS . 'PLUGIN_BASENAME', plugin_basename( __DIR__ ) );
    1919
    2020define( NS . 'PLUGIN_TEXT_DOMAIN', 'pluginpass' );
  • pluginpass-pro-plugintheme-licensing/trunk/docker-compose.yml

    r2146523 r2152916  
    2626       WORDPRESS_DB_PASSWORD: pluginpass
    2727       WORDPRESS_DEBUG: 1
     28       WORDPRESS_DEBUG_LOG: 1
    2829     volumes:
    29        - ".:/var/www/html/wp-content/plugins/pluginpass"
     30       - ".:/var/www/html/wp-content/plugins/pluginpass-pro-plugintheme-licensing"
    3031       - "./data/pluginpass-demo:/var/www/html/wp-content/plugins/pluginpass-demo"
    3132   phpmyadmin:
  • pluginpass-pro-plugintheme-licensing/trunk/examples/class-pluginpass-demo-settings.php

    r2152158 r2152916  
    259259                } else {
    260260                    $shop_url = $guard->get_shop_url();
    261                     $this->show_notice( "Module $product_module_number is not invalid. Renew or acquire license <a target='_blank' href='$shop_url'>click</a>.", 'warning' );
     261                    $this->show_notice( "Module $product_module_number is not invalid. Renew or acquire license <a target='_blank' href='$shop_url'>here</a>.", 'warning' );
    262262                }
    263263
  • pluginpass-pro-plugintheme-licensing/trunk/inc/admin/class-pluginpass-admin.php

    r2146523 r2152916  
    112112    }
    113113
     114    /*
     115    *  Documentation : https://codex.wordpress.org/Plugin_API/Filter_Reference/plugin_action_links_(plugin_file_name)
     116    */
     117    public function add_plugin_action_links( $links ) {
     118        $links[] = '<a href="https://github.com/Labs64/PluginPass/wiki" target="_blank">Docs</a>';
     119       $settings_link = array(
     120          '<a href="' . admin_url( 'options-general.php?page=' . $this->plugin_name ) . '">' . __( 'Settings', $this->plugin_name ) . '</a>',
     121       );
     122       return array_merge(  $settings_link, $links );
     123    }
     124
    114125    /**
    115126     * Screen options for the List Table
  • pluginpass-pro-plugintheme-licensing/trunk/inc/core/class-init.php

    r2137166 r2152916  
    115115        $this->loader->add_action( 'admin_menu', $plugin_admin, 'add_plugin_admin_menu' );
    116116
     117        // Add an action link pointing to the options page.
     118        $plugin_basename = $this->plugin_basename . '/' . $this->plugin_name . '.php';
     119        $this->loader->add_filter( 'plugin_action_links_' . $plugin_basename, $plugin_admin, 'add_plugin_action_links' );
     120
    117121        //when a form is submitted to admin-post.php
    118122        $this->loader->add_action( 'admin_post_pluginpass_form_response', $plugin_admin, 'the_form_response' );
  • pluginpass-pro-plugintheme-licensing/trunk/pluginpass.php

    r2152158 r2152916  
    1616 * Plugin URI:        https://github.com/Labs64/PluginPass
    1717 * Description:       WordPress Plugin/Theme Licensing powered by Labs64 NetLicensing
    18  * Version:           0.9.8
     18 * Version:           0.9.9
    1919 * Author:            Labs64
    2020 * Author URI:        https://netlicensing.io
Note: See TracChangeset for help on using the changeset viewer.