Plugin Directory

Changeset 3284687


Ignore:
Timestamp:
04/30/2025 08:00:30 AM (9 months ago)
Author:
web83info
Message:

Tested up to WordPress 6.8.

Location:
show-current-width
Files:
18 added
3 edited

Legend:

Unmodified
Added
Removed
  • show-current-width/trunk/class/class-showcurrentwidth-core.php

    r3192819 r3284687  
    2323     * Plugin constant.
    2424     */
    25     const PLUGIN_VERSION           = '1.2.8';
     25    const PLUGIN_VERSION           = '1.2.9';
    2626    const PLUGIN_PREFIX            = 'show-current-width';
    2727    const PLUGIN_PREFIX_DEPRECATED = 'w83-show-current-width';
     
    2929
    3030    const OPTION_DEFAULT_BREAKPOINTS_DEFINITION     =
    31         '0,576,xs,X-Small' . PHP_EOL .
     31        '0,576,xs,Extra small' . PHP_EOL .
    3232        '576,768,sm,Small' . PHP_EOL .
    3333        '768,992,md,Medium' . PHP_EOL .
    3434        '992,1200,lg,Large' . PHP_EOL .
    3535        '1200,1400,xl,Extra large' . PHP_EOL .
    36         '1400,9999,xll,Extra extra large';
     36        '1400,9999,xxl,Extra extra large';
    3737    const OPTION_DEFAULT_BREAKPOINTS_SHOW           = 1;
    3838    const OPTION_DEFAULT_BREAKPOINTS_LIMITWIDTH     = 0;
     
    9696        }
    9797
    98         // Load textdomain.
    99         add_action( 'admin_menu', array( $this, 'load_textdomain' ) );
    100 
    10198        // Load CSS and JS.
    10299        add_action( 'wp_enqueue_scripts', array( $this, 'load_css_js' ) );
     
    107104        // Display width.
    108105        add_action( 'admin_bar_menu', array( $this, 'display_width' ), 999 );
    109     }
    110 
    111     /**
    112      * Load textdomain.
    113      *
    114      * @return void
    115      */
    116     public function load_textdomain() {
    117         load_plugin_textdomain( self::PLUGIN_PREFIX );
    118106    }
    119107
  • show-current-width/trunk/readme.txt

    r3192819 r3284687  
    66Tested up to: 6.7
    77Requires PHP: 7.4
    8 Stable tag: 1.2.8
     8Stable tag: 1.2.9
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2020
    2121== Changelog ==
     22
     23= 1.2.9 - 2025-04-30 =
     24* Fix: Delete textdomain.
     25* Fix: Fix default breakpoint.
     26* Tested up to WordPress 6.8.
    2227
    2328= 1.2.8 - 2025-11-20 =
  • show-current-width/trunk/w83-show-current-width.php

    r3192819 r3284687  
    1212 * Plugin URI:
    1313 * Description:         This plugin shows a current screen width on WP adminbar.
    14  * Version:             1.2.8
     14 * Version:             1.2.9
    1515 * Requires at least:   6.0
    1616 * Tested up to:        6.7
Note: See TracChangeset for help on using the changeset viewer.