Changeset 3385775
- Timestamp:
- 10/28/2025 10:54:14 AM (4 months ago)
- Location:
- disable-ai/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (3 diffs)
-
disable-ai.php (modified) (2 diffs)
-
includes/class-disableai.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
disable-ai/trunk/README.txt
r3385771 r3385775 4 4 Requires at least: 6.0 5 5 Tested up to: 6.8 6 Stable tag: 0.3 6 Stable tag: 0.3.0 7 7 License: GPL-2.0+ 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 39 39 == Changelog == 40 40 41 = 0.3 =41 = 0.3.0 = 42 42 * Rename plugin option and add sanitization. 43 43 * Update PHP file structure and comments. … … 45 45 * Hide AIOSEO AI tab in AIOSEO's General Settings, and load style in Elementor editor too. 46 46 47 = 0.2 =47 = 0.2.0 = 48 48 * 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. 49 49 * Remove WP from more instances of the plugin's name to comply with WordPress plugin repository rules. 50 50 51 = 0.1 =51 = 0.1.0 = 52 52 * Initial release with support for disabling AI in Elementor, WPForms Lite, and Yoast SEO. -
disable-ai/trunk/disable-ai.php
r3385771 r3385775 11 11 * Plugin URI: https://github.com/jruns/wp-disable-ai 12 12 * Description: Turn off unwanted AI features and notifications in plugins, themes, and WordPress Core. 13 * Version: 0.3 13 * Version: 0.3.0 14 14 * Author: jruns 15 15 * Author URI: https://github.com/jruns … … 24 24 if ( ! defined( 'ABSPATH' ) ) exit; 25 25 26 define( 'DISAI_VERSION', '0.3 ' );26 define( 'DISAI_VERSION', '0.3.0' ); 27 27 define( 'DISAI_BASE_NAME', plugin_basename( __FILE__ ) ); 28 28 -
disable-ai/trunk/includes/class-disableai.php
r3385771 r3385775 72 72 $this->version = DISAI_VERSION; 73 73 } else { 74 $this->version = '0.3 ';74 $this->version = '0.3.0'; 75 75 } 76 76 $this->plugin_name = 'disable-ai';
Note: See TracChangeset
for help on using the changeset viewer.