Plugin Directory

Changeset 3349192


Ignore:
Timestamp:
08/24/2025 10:16:11 AM (7 months ago)
Author:
wingdevs
Message:

Fixed: Minor issues

Location:
wing-popup
Files:
172 added
3 edited

Legend:

Unmodified
Added
Removed
  • wing-popup/trunk/README.txt

    r3174018 r3349192  
    55Requires PHP: 7.4
    66Requires at least: 6.5
    7 Tested up to: 6.6.2
    8 Stable tag: 1.0.0
     7Tested up to: 6.8
     8Stable tag: 1.0.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9191== Changelog ==
    9292
     93= 1.0.1 =
     94Fixed: Minor issues
     95
    9396= 1.0.0 =
    9497This is initial Release for Wing Popup
  • wing-popup/trunk/includes/class-wing-popup.php

    r3174018 r3349192  
    1818class WDPOP {
    1919
    20     /**
    21      * The loader that's responsible for maintaining and registering all hooks that power
    22      * the plugin.
    23      *
    24      * @since    1.0.0
    25      * @access   protected
    26      * @var      WDPOP_Loader    $loader    Maintains and registers all hooks for the plugin.
    27      */
    2820    protected $loader;
    29 
    30     /**
    31      * The unique identifier of this plugin.
    32      *
    33      * @since    1.0.0
    34      * @access   protected
    35      * @var      string    $plugin_name    The string used to uniquely identify this plugin.
    36      */
    3721    protected $plugin_name;
    38 
    39     /**
    40      * The current version of the plugin.
    41      *
    42      * @since    1.0.0
    43      * @access   protected
    44      * @var      string    $version    The current version of the plugin.
    45      */
    4622    protected $version;
    4723
    48     /**
    49      * Define the core functionality of the plugin.
    50      *
    51      * Set the plugin name and the plugin version that can be used throughout the plugin.
    52      * Load the dependencies, define the locale, and set the hooks for the admin area and
    53      * the public-facing side of the site.
    54      *
    55      * @since    1.0.0
    56      */
     24    // Define the core functionality of the plugin.
    5725    public function __construct() {
    5826        if ( defined( 'WDPOP_VER' ) ) {
  • wing-popup/trunk/wing-popup.php

    r3174018 r3349192  
    1010 * Plugin URI:        https://wingdevs.com/wing-popup
    1111 * Description:       Lightweight and powerful popup builder plugin for WordPress.
    12  * Version:           1.0.0
     12 * Version:           1.0.1
    1313 * Author:            WingDevs
    1414 * Author URI:        https://wingdevs.com/
     
    2727 * Currently plugin version.
    2828 */
    29 define( 'WDPOP_VER', '1.0.0' );
    30 define( 'WINGPOP_VER', '1.0.0' );
     29define( 'WDPOP_VER', '1.0.1' );
     30define( 'WINGPOP_VER', '1.0.1' );
    3131
    3232/**
     
    3737define( 'WDPOP_NAME', 'wing-popup');
    3838
    39 /**
    40  * The code that runs during plugin activation.
    41  */
     39// The code that runs during plugin activation.
    4240function wdpop_activate() {
    4341    require_once WDPOP_DIR . 'includes/class-wing-popup-activator.php';
     
    4543}
    4644
    47 /**
    48  * The code that runs during plugin deactivation.
    49  */
     45// The code that runs during plugin deactivation.
    5046function wdpop_deactivate() {
    5147    require_once WDPOP_DIR . 'includes/class-wing-popup-deactivator.php';
Note: See TracChangeset for help on using the changeset viewer.