Plugin Directory

Changeset 3241460


Ignore:
Timestamp:
02/16/2025 05:24:54 PM (12 months ago)
Author:
qoncer
Message:

Fixed version text

Location:
pattern-friend/tags
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pattern-friend/tags/1.2.2/pattern_friend.php

    r3139302 r3241460  
    55 * Requires at least: 6.5.3
    66 * Requires PHP:      7.3.5
    7  * Version:           1.2.2
     7 * Version:           1.2.5
    88 * Author:            William Fridh
    99 * License:           GPL-2.0-or-later
     
    171171        $asset_file = include( plugin_dir_path( __FILE__ ) . 'build/block-editor-extensions.asset.php');
    172172
     173        // Load the dynamic CSS version.
     174        $dynamic_css_version = get_option('pattern_friend_dynamic_css_version');
     175
    173176        // Enqueue the bundled block JS file.
    174177        wp_enqueue_style(
     
    176179            plugins_url( 'src/styles/dynamic.css', __FILE__ ),
    177180            [],
    178             $asset_file['version'],
     181            $dynamic_css_version,
    179182            'all'   
    180183        );
     
    285288        );
    286289        // Set default options.
     290        add_option('pattern_friend_dynamic_css_version', 1);
    287291        add_option('pattern_friend_mobile_max_threshold', $this->default_settings['deviceThresholds']['mobileMaxThreshold']);
    288292        add_option('pattern_friend_tablet_max_threshold', $this->default_settings['deviceThresholds']['tabletMaxThreshold']);
  • pattern-friend/tags/1.2.5/pattern_friend.php

    r3241426 r3241460  
    55 * Requires at least: 6.5.3
    66 * Requires PHP:      7.3.5
    7  * Version:           1.2.2
     7 * Version:           1.2.5
    88 * Author:            William Fridh
    99 * License:           GPL-2.0-or-later
Note: See TracChangeset for help on using the changeset viewer.