Plugin Directory

Changeset 3385775


Ignore:
Timestamp:
10/28/2025 10:54:14 AM (4 months ago)
Author:
jruns
Message:

Update version number format

Location:
disable-ai/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • disable-ai/trunk/README.txt

    r3385771 r3385775  
    44Requires at least: 6.0
    55Tested up to: 6.8
    6 Stable tag: 0.3
     6Stable tag: 0.3.0
    77License: GPL-2.0+
    88License URI: http://www.gnu.org/licenses/gpl-2.0.txt
     
    3939== Changelog ==
    4040
    41 = 0.3 =
     41= 0.3.0 =
    4242* Rename plugin option and add sanitization.
    4343* Update PHP file structure and comments.
     
    4545* Hide AIOSEO AI tab in AIOSEO's General Settings, and load style in Elementor editor too.
    4646
    47 = 0.2 =
     47= 0.2.0 =
    4848* Add support for All in One SEO. Hide AI menu items and tabs, hide AI buttons, and remove the Writing Assistant metabox in the post editor.
    4949* Remove WP from more instances of the plugin's name to comply with WordPress plugin repository rules.
    5050
    51 = 0.1 =
     51= 0.1.0 =
    5252* Initial release with support for disabling AI in Elementor, WPForms Lite, and Yoast SEO.
  • disable-ai/trunk/disable-ai.php

    r3385771 r3385775  
    1111 * Plugin URI:        https://github.com/jruns/wp-disable-ai
    1212 * Description:       Turn off unwanted AI features and notifications in plugins, themes, and WordPress Core.
    13  * Version:           0.3
     13 * Version:           0.3.0
    1414 * Author:            jruns
    1515 * Author URI:        https://github.com/jruns
     
    2424if ( ! defined( 'ABSPATH' ) ) exit;
    2525
    26 define( 'DISAI_VERSION', '0.3' );
     26define( 'DISAI_VERSION', '0.3.0' );
    2727define( 'DISAI_BASE_NAME', plugin_basename( __FILE__ ) );
    2828
  • disable-ai/trunk/includes/class-disableai.php

    r3385771 r3385775  
    7272            $this->version = DISAI_VERSION;
    7373        } else {
    74             $this->version = '0.3';
     74            $this->version = '0.3.0';
    7575        }
    7676        $this->plugin_name = 'disable-ai';
Note: See TracChangeset for help on using the changeset viewer.