Plugin Directory

Changeset 2666979


Ignore:
Timestamp:
01/27/2022 11:47:17 AM (4 years ago)
Author:
liffery
Message:

Documentaion update - readme - version bump

Location:
liffery/trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • liffery/trunk/README.txt

    r2666906 r2666979  
    55Requires at least: 5.0.0
    66Tested up to: 5.8.3
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1414
    1515The official Liffery WordPress/ Woocommerce plugin is designed to do 2 things for you:
     16
    16171. Easily verify your WordPress/ Woocommerce website URL with your new Liffery for Business account.
    17 1. Effortlessly install the Liffery Sidebar for you.
     182. Effortlessly install the Liffery Sidebar for you.
    1819
    1920Watch out for updates as new features are brought to the Liffery WordPress/ Woocommerce plugin.
     
    2425
    25261. Log into your WordPress admin and navigate to the WordPress Plugin management page: <your domain>/wp-admin/plugins.php
    26 1. Click the "Add New" button in the top left of the plugin page
    27 1. Search for and install the "Liffery" plugin
    28 1. Activate the plugin from the WordPress Plugin management page: <your domain>/wp-admin/plugins.php page
    29 1. Enter your Liffery verification code where prompted in the Liffery plugin settings page: <your domain>/wp-admin/options-general.php?page=liffery page
    30 1. If everything was a success, your Liffery for Business domain will now be verified and the sidebar installed to your site/ shop
     272. Click the "Add New" button in the top left of the plugin page
     283. Search for and install the "Liffery" plugin
     294. Activate the plugin from the WordPress Plugin management page: <your domain>/wp-admin/plugins.php page
     305. Enter your Liffery verification code where prompted in the Liffery plugin settings page: <your domain>/wp-admin/options-general.php?page=liffery page
     316. If everything was a success, your Liffery for Business domain will now be verified and the sidebar installed to your site/ shop
    3132
    3233== Frequently Asked Questions ==
  • liffery/trunk/admin/class-liffery-sidebar-admin.php

    r2666906 r2666979  
    66 *
    77 * @link       https://www.liffery.com
    8  * @since      1.0.1
     8 * @since      1.0.2
    99 *
    1010 * @package    Liffery_sidebar
     
    2828     * The ID of this plugin.
    2929     *
    30      * @since    1.0.1
     30     * @since    1.0.2
    3131     * @access   private
    3232     * @var      string $plugin_name The ID of this plugin.
     
    3737     * The version of this plugin.
    3838     *
    39      * @since    1.0.1
     39     * @since    1.0.2
    4040     * @access   private
    4141     * @var      string $version The current version of this plugin.
     
    4848     * @param string $plugin_name The name of this plugin.
    4949     * @param string $version The version of this plugin.
    50      * @since    1.0.1
     50     * @since    1.0.2
    5151     */
    5252    public function __construct($plugin_name, $version)
     
    7171     * Register the stylesheets for the admin area.
    7272     *
    73      * @since    1.0.1
     73     * @since    1.0.2
    7474     */
    7575    public function enqueue_styles()
     
    9595     * Register the JavaScript for the admin area.
    9696     *
    97      * @since    1.0.1
     97     * @since    1.0.2
    9898     */
    9999    public function enqueue_scripts()
  • liffery/trunk/includes/class-liffery-sidebar-activator.php

    r2666906 r2666979  
    55 *
    66 * @link       https://www.liffery.com
    7  * @since      1.0.1
     7 * @since      1.0.2
    88 *
    99 * @package    Liffery_sidebar
     
    1616 * This class defines all code necessary to run during the plugin's activation.
    1717 *
    18  * @since      1.0.1
     18 * @since      1.0.2
    1919 * @package    Liffery_sidebar
    2020 * @subpackage Liffery_sidebar/includes
     
    2929     * Long Description.
    3030     *
    31      * @since    1.0.1
     31     * @since    1.0.2
    3232     */
    3333    public static function activate()
  • liffery/trunk/includes/class-liffery-sidebar-deactivator.php

    r2666906 r2666979  
    55 *
    66 * @link       https://www.liffery.com
    7  * @since      1.0.1
     7 * @since      1.0.2
    88 *
    99 * @package    Liffery_sidebar
     
    1616 * This class defines all code necessary to run during the plugin's deactivation.
    1717 *
    18  * @since      1.0.1
     18 * @since      1.0.2
    1919 * @package    Liffery_sidebar
    2020 * @subpackage Liffery_sidebar/includes
     
    2929     * Long Description.
    3030     *
    31      * @since    1.0.1
     31     * @since    1.0.2
    3232     */
    3333    public static function deactivate()
  • liffery/trunk/includes/class-liffery-sidebar-i18n.php

    r2666906 r2666979  
    88 *
    99 * @link       https://www.liffery.com
    10  * @since      1.0.1
     10 * @since      1.0.2
    1111 *
    1212 * @package    Liffery_sidebar
     
    2020 * so that it is ready for translation.
    2121 *
    22  * @since      1.0.1
     22 * @since      1.0.2
    2323 * @package    Liffery_sidebar
    2424 * @subpackage Liffery_sidebar/includes
     
    3030     * Load the plugin text domain for translation.
    3131     *
    32      * @since    1.0.1
     32     * @since    1.0.2
    3333     */
    3434    public function load_plugin_textdomain()
  • liffery/trunk/includes/class-liffery-sidebar-loader.php

    r2666906 r2666979  
    55 *
    66 * @link       https://www.liffery.com
    7  * @since      1.0.1
     7 * @since      1.0.2
    88 *
    99 * @package    Liffery_sidebar
     
    2727     * The array of actions registered with WordPress.
    2828     *
    29      * @since    1.0.1
     29     * @since    1.0.2
    3030     * @access   protected
    3131     * @var      array    $actions    The actions registered with WordPress to fire when the plugin loads.
     
    3636     * The array of filters registered with WordPress.
    3737     *
    38      * @since    1.0.1
     38     * @since    1.0.2
    3939     * @access   protected
    4040     * @var      array    $filters    The filters registered with WordPress to fire when the plugin loads.
     
    4545     * Initialize the collections used to maintain the actions and filters.
    4646     *
    47      * @since    1.0.1
     47     * @since    1.0.2
    4848     */
    4949    public function __construct() {
     
    5757     * Add a new action to the collection to be registered with WordPress.
    5858     *
    59      * @since    1.0.1
     59     * @since    1.0.2
    6060     * @param    string               $hook             The name of the WordPress action that is being registered.
    6161     * @param    object               $component        A reference to the instance of the object on which the action is defined.
     
    7171     * Add a new filter to the collection to be registered with WordPress.
    7272     *
    73      * @since    1.0.1
     73     * @since    1.0.2
    7474     * @param    string               $hook             The name of the WordPress filter that is being registered.
    7575     * @param    object               $component        A reference to the instance of the object on which the filter is defined.
     
    8686     * collection.
    8787     *
    88      * @since    1.0.1
     88     * @since    1.0.2
    8989     * @access   private
    9090     * @param    array                $hooks            The collection of hooks that is being registered (that is, actions or filters).
     
    113113     * Register the filters and actions with WordPress.
    114114     *
    115      * @since    1.0.1
     115     * @since    1.0.2
    116116     */
    117117    public function run() {
  • liffery/trunk/includes/class-liffery-sidebar.php

    r2666906 r2666979  
    88 *
    99 * @link       https://www.liffery.com
    10  * @since      1.0.1
     10 * @since      1.0.2
    1111 *
    1212 * @package    Liffery_sidebar
     
    2323 * version of the plugin.
    2424 *
    25  * @since      1.0.1
     25 * @since      1.0.2
    2626 * @package    Liffery_sidebar
    2727 * @subpackage Liffery_sidebar/includes
     
    3434     * the plugin.
    3535     *
    36      * @since    1.0.1
     36     * @since    1.0.2
    3737     * @access   protected
    3838     * @var      Liffery_sidebar_Loader    $loader    Maintains and registers all hooks for the plugin.
     
    4343     * The unique identifier of this plugin.
    4444     *
    45      * @since    1.0.1
     45     * @since    1.0.2
    4646     * @access   protected
    4747     * @var      string    $plugin_name    The string used to uniquely identify this plugin.
     
    5252     * The current version of the plugin.
    5353     *
    54      * @since    1.0.1
     54     * @since    1.0.2
    5555     * @access   protected
    5656     * @var      string    $version    The current version of the plugin.
     
    6565     * the public-facing side of the site.
    6666     *
    67      * @since    1.0.1
     67     * @since    1.0.2
    6868     */
    6969    public function __construct() {
     
    7171            $this->version = LIFFERY_sidebar_VERSION;
    7272        } else {
    73             $this->version = '1.0.1';
     73            $this->version = '1.0.2';
    7474        }
    7575        $this->plugin_name = 'liffery-sidebar';
     
    9494     * with WordPress.
    9595     *
    96      * @since    1.0.1
     96     * @since    1.0.2
    9797     * @access   private
    9898     */
     
    132132     * with WordPress.
    133133     *
    134      * @since    1.0.1
     134     * @since    1.0.2
    135135     * @access   private
    136136     */
     
    147147     * of the plugin.
    148148     *
    149      * @since    1.0.1
     149     * @since    1.0.2
    150150     * @access   private
    151151     */
     
    163163     * of the plugin.
    164164     *
    165      * @since    1.0.1
     165     * @since    1.0.2
    166166     * @access   private
    167167     */
     
    177177     * Run the loader to execute all of the hooks with WordPress.
    178178     *
    179      * @since    1.0.1
     179     * @since    1.0.2
    180180     */
    181181    public function run() {
     
    187187     * WordPress and to define internationalization functionality.
    188188     *
    189      * @since     1.0.1
     189     * @since     1.0.2
    190190     * @return    string    The name of the plugin.
    191191     */
     
    197197     * The reference to the class that orchestrates the hooks with the plugin.
    198198     *
    199      * @since     1.0.1
     199     * @since     1.0.2
    200200     * @return    Liffery_sidebar_Loader    Orchestrates the hooks of the plugin.
    201201     */
     
    207207     * Retrieve the version number of the plugin.
    208208     *
    209      * @since     1.0.1
     209     * @since     1.0.2
    210210     * @return    string    The version number of the plugin.
    211211     */
  • liffery/trunk/liffery.php

    r2666906 r2666979  
    1010 *
    1111 * @link              https://www.liffery.com
    12  * @since             1.0.1
     12 * @since             1.0.2
    1313 * @package           Liffery
    1414 *
     
    1717 * Plugin URI:        https://github.com/liffery-com/plugin-liffery-wordpress
    1818 * Description:       The official Liffery Wordpress/ Woocommerce Plugin - Make sure you verify the installation on the settings page
    19  * Version:           1.0.1
     19 * Version:           1.0.2
    2020 * Author:            Liffery Ltd
    2121 * Author URI:        https://www.liffery.com/
     
    3232/**
    3333 * Currently plugin version.
    34  * Start at version 1.0.1 and use SemVer - https://semver.org
     34 * Start at version 1.0.2 and use SemVer - https://semver.org
    3535 * Rename this for your plugin and update it as you release new versions.
    3636 */
    37 define('LIFFERY_sidebar_VERSION', '1.0.1');
     37define('LIFFERY_sidebar_VERSION', '1.0.2');
    3838
    3939/**
     
    7373 * not affect the page life cycle.
    7474 *
    75  * @since    1.0.1
     75 * @since    1.0.2
    7676 */
    7777function run_liffery_sidebar()
  • liffery/trunk/public/class-liffery-sidebar-public.php

    r2666906 r2666979  
    55 *
    66 * @link       https://www.liffery.com
    7  * @since      1.0.1
     7 * @since      1.0.2
    88 *
    99 * @package    Liffery_sidebar
     
    2727     * The ID of this plugin.
    2828     *
    29      * @since    1.0.1
     29     * @since    1.0.2
    3030     * @access   private
    3131     * @var      string $plugin_name The ID of this plugin.
     
    3636     * The version of this plugin.
    3737     *
    38      * @since    1.0.1
     38     * @since    1.0.2
    3939     * @access   private
    4040     * @var      string $version The current version of this plugin.
     
    4747     * @param string $plugin_name The name of the plugin.
    4848     * @param string $version The version of this plugin.
    49      * @since    1.0.1
     49     * @since    1.0.2
    5050     */
    5151    public function __construct($plugin_name, $version)
     
    6060     * Register the stylesheets for the public-facing side of the site.
    6161     *
    62      * @since    1.0.1
     62     * @since    1.0.2
    6363     */
    6464    public function enqueue_styles()
     
    7070     * Register the JavaScript for the public-facing side of the site.
    7171     *
    72      * @since    1.0.1
     72     * @since    1.0.2
    7373     */
    7474    public function enqueue_scripts()
  • liffery/trunk/uninstall.php

    r2666906 r2666979  
    1515 *
    1616 * @link       https://www.liffery.com
    17  * @since      1.0.1
     17 * @since      1.0.2
    1818 *
    1919 * @package    Plugin_Name
Note: See TracChangeset for help on using the changeset viewer.