Changeset 3447742
- Timestamp:
- 01/27/2026 10:21:39 AM (2 months ago)
- Location:
- simple-block-animations/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
simple-block-animations.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-block-animations/trunk/readme.txt
r3447724 r3447742 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 2.0. 07 Stable tag: 2.0.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 62 62 It's designed for Gutenberg blocks. It won't work with Elementor, Divi, or other page builders. 63 63 64 = Can I set default animations for my custom blocks? = 65 66 Yes! Developers can add animation attributes to their block.json file. Add `isAnimated`, `animationType`, `animationDuration`, and `animationDelay` attributes with your desired defaults. The plugin will respect these values, automatically enabling animations when the block is inserted. Available animation types: fade-in, fade-in-up, fade-in-down, fade-in-left, fade-in-right. 67 64 68 == Screenshots == 65 69 … … 70 74 71 75 == Changelog == 76 77 = 2.0.2 = 78 - Updated documentation with "For developers" section regarding default animation attributes for custom blocks 79 72 80 73 81 = 2.0.0 = -
simple-block-animations/trunk/simple-block-animations.php
r3447724 r3447742 5 5 * Plugin URI: https://github.com/valentin-grenier/simple-animations-for-gutenberg 6 6 * Description: Easily add animations to your Gutenberg blocks without coding. 7 * Version: 2.0. 07 * Version: 2.0.2 8 8 * Requires at least: 9 9 * Requires PHP: … … 22 22 } 23 23 24 define( 'SIMPBLAN_VERSION', '2.0. 0' );24 define( 'SIMPBLAN_VERSION', '2.0.2' ); 25 25 define( 'SIMPBLAN_PATH', plugin_dir_path( __FILE__ ) ); 26 26 define( 'SIMPBLAN_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.