Plugin Directory

Changeset 3073806

Timestamp:
04/19/2024 12:19:28 PM (4 months ago)
Author:
itpathsolutions
Message:

1.1.7

*Release Date 19-4-2024*

  • Fix - CSS browser caching issue to load the latest SCSS changes on soft refresh
  • Check compatible with WordPress 6.5
Location:
scss-wp-editor
Files:
89 added
3 edited

Legend:

Unmodified
Added
Removed
  • scss-wp-editor/trunk/README.txt

    r3063317 r3073806  
    55Tested up to: 6.5
    66Requires PHP: 7.4
    7 Stable tag: 1.1.6
     7Stable tag: 1.1.
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9090== Changelog ==
    9191
     92
     93
     94
     95
     96
     97
    9298= 1.1.6 =
    9399*Release Date 6-9-2023*
  • scss-wp-editor/trunk/public/class-scss-wp-editor-public.php

    r2731611 r3073806  
    7777        $uploadScssFile = $upload['basedir'] . '/scss-wp/compiled-scss.css';
    7878       
    79         wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/scss-wp-editor-public.css', array(), $this->version, 'all' );
    80 
    8179        if ( file_exists( $uploadScssFile ) ) {
    82             wp_enqueue_style( $this->plugin_name . '-compiled', $uploadFile, array(), $this->version, 'all' );
     80            wp_enqueue_style( $this->plugin_name . '-compiled', $uploadFile, array(), , 'all' );
    8381        }
    8482
  • scss-wp-editor/trunk/scss-wp-editor.php

    r2896422 r3073806  
    1717 * Plugin URI:        https://wordpress.org/plugins/scss-wp-editor/
    1818 * Description:       Easily Add, Compile and Optimize your SCSS to CSS within WordPress Admin.
    19  * Version:           1.1.6
     19 * Version:           1.1.
    2020 * Author:            IT Path Solutions
    2121 * Author URI:        https://www.itpathsolutions.com/
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'SCSS_WP_EDITOR_VERSION', '1.1.6' );
     38define( 'SCSS_WP_EDITOR_VERSION', '1.1.' );
    3939
    4040/**
Note: See TracChangeset for help on using the changeset viewer.