Changeset 3278069
- Timestamp:
- 04/21/2025 10:52:52 AM (12 months ago)
- Location:
- responsive-menu/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
responsive-menu.php (modified) (2 diffs)
-
v4.0.0/inc/classes/class-style-manager.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
responsive-menu/trunk/readme.txt
r3187809 r3278069 3 3 Tags: responsive, mega menu, navigation, mobile, hamburger 4 4 Requires at least: 3.6 5 Tested up to: 6. 76 Stable tag: 4.5. 05 Tested up to: 6.8 6 Stable tag: 4.5.1 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later … … 116 116 117 117 == Changelog == 118 = 4.5.1 (21st April 2025) = 119 * Bug: Fixed PHP error with SCSS library 120 118 121 = 4.5.0 (6th November 2024) = 119 122 * Feature: Enable users to customize the colors of hamburger icons -
responsive-menu/trunk/responsive-menu.php
r3183311 r3278069 5 5 Plugin URI: https://expresstech.io 6 6 Description: Highly Customisable Responsive Menu Plugin for WordPress 7 Version: 4.5. 07 Version: 4.5.1 8 8 Author: ExpressTech 9 9 Text Domain: responsive-menu … … 17 17 */ 18 18 if ( ! defined( 'RMP_PLUGIN_VERSION' ) ) { 19 define( 'RMP_PLUGIN_VERSION', '4.5. 0' );19 define( 'RMP_PLUGIN_VERSION', '4.5.1' ); 20 20 } 21 21 -
responsive-menu/trunk/v4.0.0/inc/classes/class-style-manager.php
r3072128 r3278069 1498 1498 $scss = new Compiler(); 1499 1499 $scss->setImportPaths( RMP_PLUGIN_PATH_V4 . '/assets/scss/' ); 1500 $scss-> setVariables( $parse_options );1500 $scss->addVariables( $parse_options ); 1501 1501 $css = $scss->compile( '@import "main.scss";' ); 1502 1502 … … 1534 1534 $scss = new Compiler(); 1535 1535 $scss->setImportPaths( RMP_PLUGIN_PATH_V4 . '/assets/scss/' ); 1536 $scss-> setVariables( $options );1536 $scss->addVariables( $options ); 1537 1537 $css = $scss->compile( '@import "common.scss";' ); 1538 1538
Note: See TracChangeset
for help on using the changeset viewer.