Plugin Directory

Changeset 3447742


Ignore:
Timestamp:
01/27/2026 10:21:39 AM (2 months ago)
Author:
valentingrenier
Message:

Version 2.0.2 - Patch release

  • Updated documentation with "For developers" section regarding default animation attributes for custom blocks
Location:
simple-block-animations/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • simple-block-animations/trunk/readme.txt

    r3447724 r3447742  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 2.0.0
     7Stable tag: 2.0.2
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6262It's designed for Gutenberg blocks. It won't work with Elementor, Divi, or other page builders.
    6363
     64= Can I set default animations for my custom blocks? =
     65
     66Yes! 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
    6468== Screenshots ==
    6569
     
    7074
    7175== Changelog ==
     76
     77= 2.0.2 =
     78- Updated documentation with "For developers" section regarding default animation attributes for custom blocks
     79
    7280
    7381= 2.0.0 =
  • simple-block-animations/trunk/simple-block-animations.php

    r3447724 r3447742  
    55 * Plugin URI: https://github.com/valentin-grenier/simple-animations-for-gutenberg
    66 * Description: Easily add animations to your Gutenberg blocks without coding.
    7  * Version: 2.0.0
     7 * Version: 2.0.2
    88 * Requires at least:
    99 * Requires PHP:
     
    2222}
    2323
    24 define( 'SIMPBLAN_VERSION', '2.0.0' );
     24define( 'SIMPBLAN_VERSION', '2.0.2' );
    2525define( 'SIMPBLAN_PATH', plugin_dir_path( __FILE__ ) );
    2626define( 'SIMPBLAN_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.