Changeset 3284687
- Timestamp:
- 04/30/2025 08:00:30 AM (9 months ago)
- Location:
- show-current-width
- Files:
-
- 18 added
- 3 edited
-
tags/1.2.9 (added)
-
tags/1.2.9/LICENSE.txt (added)
-
tags/1.2.9/assets (added)
-
tags/1.2.9/assets/show-current-width.css (added)
-
tags/1.2.9/assets/show-current-width.css.map (added)
-
tags/1.2.9/assets/show-current-width.js (added)
-
tags/1.2.9/assets/show-current-width.min.css (added)
-
tags/1.2.9/assets/show-current-width.min.css.map (added)
-
tags/1.2.9/assets/show-current-width.min.js (added)
-
tags/1.2.9/assets/show-current-width.scss (added)
-
tags/1.2.9/class (added)
-
tags/1.2.9/class/class-showcurrentwidth-admin.php (added)
-
tags/1.2.9/class/class-showcurrentwidth-core.php (added)
-
tags/1.2.9/class/trait-singleton.php (added)
-
tags/1.2.9/readme.txt (added)
-
tags/1.2.9/show-current-width.php (added)
-
tags/1.2.9/uninstall.php (added)
-
tags/1.2.9/w83-show-current-width.php (added)
-
trunk/class/class-showcurrentwidth-core.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/w83-show-current-width.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
show-current-width/trunk/class/class-showcurrentwidth-core.php
r3192819 r3284687 23 23 * Plugin constant. 24 24 */ 25 const PLUGIN_VERSION = '1.2. 8';25 const PLUGIN_VERSION = '1.2.9'; 26 26 const PLUGIN_PREFIX = 'show-current-width'; 27 27 const PLUGIN_PREFIX_DEPRECATED = 'w83-show-current-width'; … … 29 29 30 30 const OPTION_DEFAULT_BREAKPOINTS_DEFINITION = 31 '0,576,xs, X-Small' . PHP_EOL .31 '0,576,xs,Extra small' . PHP_EOL . 32 32 '576,768,sm,Small' . PHP_EOL . 33 33 '768,992,md,Medium' . PHP_EOL . 34 34 '992,1200,lg,Large' . PHP_EOL . 35 35 '1200,1400,xl,Extra large' . PHP_EOL . 36 '1400,9999,x ll,Extra extra large';36 '1400,9999,xxl,Extra extra large'; 37 37 const OPTION_DEFAULT_BREAKPOINTS_SHOW = 1; 38 38 const OPTION_DEFAULT_BREAKPOINTS_LIMITWIDTH = 0; … … 96 96 } 97 97 98 // Load textdomain.99 add_action( 'admin_menu', array( $this, 'load_textdomain' ) );100 101 98 // Load CSS and JS. 102 99 add_action( 'wp_enqueue_scripts', array( $this, 'load_css_js' ) ); … … 107 104 // Display width. 108 105 add_action( 'admin_bar_menu', array( $this, 'display_width' ), 999 ); 109 }110 111 /**112 * Load textdomain.113 *114 * @return void115 */116 public function load_textdomain() {117 load_plugin_textdomain( self::PLUGIN_PREFIX );118 106 } 119 107 -
show-current-width/trunk/readme.txt
r3192819 r3284687 6 6 Tested up to: 6.7 7 7 Requires PHP: 7.4 8 Stable tag: 1.2. 88 Stable tag: 1.2.9 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 20 20 21 21 == 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. 22 27 23 28 = 1.2.8 - 2025-11-20 = -
show-current-width/trunk/w83-show-current-width.php
r3192819 r3284687 12 12 * Plugin URI: 13 13 * Description: This plugin shows a current screen width on WP adminbar. 14 * Version: 1.2. 814 * Version: 1.2.9 15 15 * Requires at least: 6.0 16 16 * Tested up to: 6.7
Note: See TracChangeset
for help on using the changeset viewer.