Plugin Directory

Changeset 2714716


Ignore:
Timestamp:
04/26/2022 08:31:46 AM (4 years ago)
Author:
liffery
Message:

Version update

Location:
liffery/trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • liffery/trunk/README.txt

    r2674274 r2714716  
    55Requires at least: 5.0.0
    66Tested up to: 5.9
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • liffery/trunk/admin/class-liffery-sidebar-admin.php

    r2674274 r2714716  
    66 *
    77 * @link       https://www.liffery.com
    8  * @since      1.0.4
     8 * @since      1.0.5
    99 *
    1010 * @package    Liffery_sidebar
     
    2828     * The ID of this plugin.
    2929     *
    30      * @since    1.0.4
     30     * @since    1.0.5
    3131     * @access   private
    3232     * @var      string $plugin_name The ID of this plugin.
     
    3737     * The version of this plugin.
    3838     *
    39      * @since    1.0.4
     39     * @since    1.0.5
    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.4
     50     * @since    1.0.5
    5151     */
    5252    public function __construct($plugin_name, $version)
     
    7171     * Register the stylesheets for the admin area.
    7272     *
    73      * @since    1.0.4
     73     * @since    1.0.5
    7474     */
    7575    public function enqueue_styles()
     
    9595     * Register the JavaScript for the admin area.
    9696     *
    97      * @since    1.0.4
     97     * @since    1.0.5
    9898     */
    9999    public function enqueue_scripts()
  • liffery/trunk/includes/class-liffery-sidebar-activator.php

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

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

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

    r2674274 r2714716  
    55 *
    66 * @link       https://www.liffery.com
    7  * @since      1.0.4
     7 * @since      1.0.5
    88 *
    99 * @package    Liffery_sidebar
     
    2727     * The array of actions registered with WordPress.
    2828     *
    29      * @since    1.0.4
     29     * @since    1.0.5
    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.4
     38     * @since    1.0.5
    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.4
     47     * @since    1.0.5
    4848     */
    4949    public function __construct() {
     
    5757     * Add a new action to the collection to be registered with WordPress.
    5858     *
    59      * @since    1.0.4
     59     * @since    1.0.5
    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.4
     73     * @since    1.0.5
    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.4
     88     * @since    1.0.5
    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.4
     115     * @since    1.0.5
    116116     */
    117117    public function run() {
  • liffery/trunk/includes/class-liffery-sidebar.php

    r2674274 r2714716  
    88 *
    99 * @link       https://www.liffery.com
    10  * @since      1.0.4
     10 * @since      1.0.5
    1111 *
    1212 * @package    Liffery_sidebar
     
    2323 * version of the plugin.
    2424 *
    25  * @since      1.0.4
     25 * @since      1.0.5
    2626 * @package    Liffery_sidebar
    2727 * @subpackage Liffery_sidebar/includes
     
    3434     * the plugin.
    3535     *
    36      * @since    1.0.4
     36     * @since    1.0.5
    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.4
     45     * @since    1.0.5
    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.4
     54     * @since    1.0.5
    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.4
     67     * @since    1.0.5
    6868     */
    6969    public function __construct() {
     
    7171            $this->version = LIFFERY_sidebar_VERSION;
    7272        } else {
    73             $this->version = '1.0.4';
     73            $this->version = '1.0.5';
    7474        }
    7575        $this->plugin_name = 'liffery-sidebar';
     
    9494     * with WordPress.
    9595     *
    96      * @since    1.0.4
     96     * @since    1.0.5
    9797     * @access   private
    9898     */
     
    132132     * with WordPress.
    133133     *
    134      * @since    1.0.4
     134     * @since    1.0.5
    135135     * @access   private
    136136     */
     
    147147     * of the plugin.
    148148     *
    149      * @since    1.0.4
     149     * @since    1.0.5
    150150     * @access   private
    151151     */
     
    163163     * of the plugin.
    164164     *
    165      * @since    1.0.4
     165     * @since    1.0.5
    166166     * @access   private
    167167     */
     
    177177     * Run the loader to execute all of the hooks with WordPress.
    178178     *
    179      * @since    1.0.4
     179     * @since    1.0.5
    180180     */
    181181    public function run() {
     
    187187     * WordPress and to define internationalization functionality.
    188188     *
    189      * @since     1.0.4
     189     * @since     1.0.5
    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.4
     199     * @since     1.0.5
    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.4
     209     * @since     1.0.5
    210210     * @return    string    The version number of the plugin.
    211211     */
  • liffery/trunk/liffery.php

    r2674274 r2714716  
    1010 *
    1111 * @link              https://www.liffery.com
    12  * @since             1.0.4
     12 * @since             1.0.5
    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.4
     19 * Version:           1.0.5
    2020 * Author:            Liffery Ltd
    2121 * Author URI:        https://www.liffery.com/
     
    3232/**
    3333 * Currently plugin version.
    34  * Start at version 1.0.4 and use SemVer - https://semver.org
     34 * Start at version 1.0.5 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.4');
     37define('LIFFERY_sidebar_VERSION', '1.0.5');
    3838
    3939/**
     
    7373 * not affect the page life cycle.
    7474 *
    75  * @since    1.0.4
     75 * @since    1.0.5
    7676 */
    7777function run_liffery_sidebar()
  • liffery/trunk/public/class-liffery-sidebar-public.php

    r2674274 r2714716  
    55 *
    66 * @link       https://www.liffery.com
    7  * @since      1.0.4
     7 * @since      1.0.5
    88 *
    99 * @package    Liffery_sidebar
     
    2727     * The ID of this plugin.
    2828     *
    29      * @since    1.0.4
     29     * @since    1.0.5
    3030     * @access   private
    3131     * @var      string $plugin_name The ID of this plugin.
     
    3636     * The version of this plugin.
    3737     *
    38      * @since    1.0.4
     38     * @since    1.0.5
    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.4
     49     * @since    1.0.5
    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.4
     62     * @since    1.0.5
    6363     */
    6464    public function enqueue_styles()
     
    7070     * Register the JavaScript for the public-facing side of the site.
    7171     *
    72      * @since    1.0.4
     72     * @since    1.0.5
    7373     */
    7474    public function enqueue_scripts()
  • liffery/trunk/uninstall.php

    r2674274 r2714716  
    1515 *
    1616 * @link       https://www.liffery.com
    17  * @since      1.0.4
     17 * @since      1.0.5
    1818 *
    1919 * @package    Plugin_Name
Note: See TracChangeset for help on using the changeset viewer.