Plugin Directory

Changeset 3217283


Ignore:
Timestamp:
01/05/2025 08:23:48 PM (14 months ago)
Author:
senff
Message:

Update to version 1.11.1

Location:
sticky-block
Files:
17 added
3 edited

Legend:

Unmodified
Added
Removed
  • sticky-block/trunk/plugin.php

    r2882720 r3217283  
    55Author: Senff
    66Author URI: http://www.senff.com
    7 Version: 1.11
     7Version: 1.11.1
    88License: GPL3+
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • sticky-block/trunk/readme.txt

    r3147231 r3217283  
    55Plugin URI: https://wordpress.org/plugins/sticky-block/
    66Requires at least: 5.0
    7 Tested up to: 6.6.1
    8 Stable tag: 1.11
     7Tested up to: 6.7
     8Stable tag: 1.11.1
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    8282== Changelog ==
    8383
     84= 1.11.1 =
     85* Adjusted some code to better adhere to plugin standards.
     86
    8487= 1.11 =
    8588* Minor bug fix (thanks to @brogr for reporting)
     
    9194= 1.0 =
    9295* Initial release of the plugin
     96
     97
     98== Upgrade notice ==
     99
     100= 1.11.1 =
     101* Code updates
     102
  • sticky-block/trunk/src/init.php

    r2235336 r3217283  
    1010        plugins_url( 'dist/blocks.build.js', dirname( __FILE__ ) ),
    1111        array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor' ),
    12         null,
    13         true
     12        '1.11.1',
     13        array( 'in_footer' => true )
    1414    );
    1515
     
    1818        plugins_url( 'dist/blocks.style.build.css', dirname( __FILE__ ) ),
    1919        array( 'wp-editor' ),
    20         null
     20        '1.11.1'
    2121    );
    2222
     
    2525        plugins_url( 'dist/blocks.editor.build.css', dirname( __FILE__ ) ),
    2626        array( 'wp-edit-blocks' ),
    27         null
     27        '1.11.1'
    2828    );
    2929
Note: See TracChangeset for help on using the changeset viewer.