Plugin Directory

Changeset 3278069


Ignore:
Timestamp:
04/21/2025 10:52:52 AM (12 months ago)
Author:
expresstech
Message:

4.5.1 to trunk

Location:
responsive-menu/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • responsive-menu/trunk/readme.txt

    r3187809 r3278069  
    33Tags: responsive, mega menu, navigation, mobile, hamburger
    44Requires at least: 3.6
    5 Tested up to: 6.7
    6 Stable tag: 4.5.0
     5Tested up to: 6.8
     6Stable tag: 4.5.1
    77Requires PHP: 5.6
    88License: GPLv2 or later
     
    116116
    117117== Changelog ==
     118= 4.5.1 (21st April 2025) =
     119* Bug: Fixed PHP error with SCSS library
     120
    118121= 4.5.0 (6th November 2024) =
    119122* Feature: Enable users to customize the colors of hamburger icons
  • responsive-menu/trunk/responsive-menu.php

    r3183311 r3278069  
    55Plugin URI: https://expresstech.io
    66Description: Highly Customisable Responsive Menu Plugin for WordPress
    7 Version: 4.5.0
     7Version: 4.5.1
    88Author: ExpressTech
    99Text Domain: responsive-menu
     
    1717 */
    1818if ( ! defined( 'RMP_PLUGIN_VERSION' ) ) {
    19     define( 'RMP_PLUGIN_VERSION', '4.5.0' );
     19    define( 'RMP_PLUGIN_VERSION', '4.5.1' );
    2020}
    2121
  • responsive-menu/trunk/v4.0.0/inc/classes/class-style-manager.php

    r3072128 r3278069  
    14981498            $scss = new Compiler();
    14991499            $scss->setImportPaths( RMP_PLUGIN_PATH_V4 . '/assets/scss/' );
    1500             $scss->setVariables( $parse_options );
     1500            $scss->addVariables( $parse_options );
    15011501            $css = $scss->compile( '@import "main.scss";' );
    15021502
     
    15341534            $scss = new Compiler();
    15351535            $scss->setImportPaths( RMP_PLUGIN_PATH_V4 . '/assets/scss/' );
    1536             $scss->setVariables( $options );
     1536            $scss->addVariables( $options );
    15371537            $css = $scss->compile( '@import "common.scss";' );
    15381538
Note: See TracChangeset for help on using the changeset viewer.