Changeset 3217283
- Timestamp:
- 01/05/2025 08:23:48 PM (14 months ago)
- Location:
- sticky-block
- Files:
-
- 17 added
- 3 edited
-
tags/1.11.1 (added)
-
tags/1.11.1/dist (added)
-
tags/1.11.1/dist/blocks.build.js (added)
-
tags/1.11.1/dist/blocks.editor.build.css (added)
-
tags/1.11.1/dist/blocks.style.build.css (added)
-
tags/1.11.1/dist/sticky-block.min.js (added)
-
tags/1.11.1/index.php (added)
-
tags/1.11.1/plugin.php (added)
-
tags/1.11.1/readme.txt (added)
-
tags/1.11.1/src (added)
-
tags/1.11.1/src/block (added)
-
tags/1.11.1/src/block/block.js (added)
-
tags/1.11.1/src/block/editor.scss (added)
-
tags/1.11.1/src/block/style.scss (added)
-
tags/1.11.1/src/blocks.js (added)
-
tags/1.11.1/src/init.php (added)
-
tags/1.11.1/src/sticky-block.js (added)
-
trunk/plugin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/src/init.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sticky-block/trunk/plugin.php
r2882720 r3217283 5 5 Author: Senff 6 6 Author URI: http://www.senff.com 7 Version: 1.11 7 Version: 1.11.1 8 8 License: GPL3+ 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
sticky-block/trunk/readme.txt
r3147231 r3217283 5 5 Plugin URI: https://wordpress.org/plugins/sticky-block/ 6 6 Requires at least: 5.0 7 Tested up to: 6. 6.18 Stable tag: 1.11 7 Tested up to: 6.7 8 Stable tag: 1.11.1 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 82 82 == Changelog == 83 83 84 = 1.11.1 = 85 * Adjusted some code to better adhere to plugin standards. 86 84 87 = 1.11 = 85 88 * Minor bug fix (thanks to @brogr for reporting) … … 91 94 = 1.0 = 92 95 * 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 10 10 plugins_url( 'dist/blocks.build.js', dirname( __FILE__ ) ), 11 11 array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor' ), 12 null,13 true12 '1.11.1', 13 array( 'in_footer' => true ) 14 14 ); 15 15 … … 18 18 plugins_url( 'dist/blocks.style.build.css', dirname( __FILE__ ) ), 19 19 array( 'wp-editor' ), 20 null20 '1.11.1' 21 21 ); 22 22 … … 25 25 plugins_url( 'dist/blocks.editor.build.css', dirname( __FILE__ ) ), 26 26 array( 'wp-edit-blocks' ), 27 null27 '1.11.1' 28 28 ); 29 29
Note: See TracChangeset
for help on using the changeset viewer.