Changeset 3395877
- Timestamp:
- 11/14/2025 05:23:47 PM (4 months ago)
- Location:
- easily-post-gpt
- Files:
-
- 37 added
- 2 edited
-
tags/1.3.0 (added)
-
tags/1.3.0/LICENSE.txt (added)
-
tags/1.3.0/README.txt (added)
-
tags/1.3.0/admin (added)
-
tags/1.3.0/admin/class-gpt2wp-admin.php (added)
-
tags/1.3.0/admin/css (added)
-
tags/1.3.0/admin/css/gpt2wp-admin.css (added)
-
tags/1.3.0/admin/iconheadsvg.svg (added)
-
tags/1.3.0/admin/index.php (added)
-
tags/1.3.0/admin/js (added)
-
tags/1.3.0/admin/js/gpt2wp-admin.js (added)
-
tags/1.3.0/admin/multi-author-thumbnail.jpg (added)
-
tags/1.3.0/admin/partials (added)
-
tags/1.3.0/admin/partials/gpt2wp-admin-display.php (added)
-
tags/1.3.0/easily-post-gpt.php (added)
-
tags/1.3.0/includes (added)
-
tags/1.3.0/includes/class-gpt2wp-activator.php (added)
-
tags/1.3.0/includes/class-gpt2wp-deactivator.php (added)
-
tags/1.3.0/includes/class-gpt2wp-i18n.php (added)
-
tags/1.3.0/includes/class-gpt2wp-loader.php (added)
-
tags/1.3.0/includes/class-gpt2wp-mcp-handler.php (added)
-
tags/1.3.0/includes/class-gpt2wp.php (added)
-
tags/1.3.0/includes/index.php (added)
-
tags/1.3.0/index.php (added)
-
tags/1.3.0/languages (added)
-
tags/1.3.0/languages/gpt2wp.pot (added)
-
tags/1.3.0/public (added)
-
tags/1.3.0/public/class-gpt2wp-public.php (added)
-
tags/1.3.0/public/css (added)
-
tags/1.3.0/public/css/gpt2wp-public.css (added)
-
tags/1.3.0/public/index.php (added)
-
tags/1.3.0/public/js (added)
-
tags/1.3.0/public/js/gpt2wp-public.js (added)
-
tags/1.3.0/public/partials (added)
-
tags/1.3.0/public/partials/gpt2wp-public-display.php (added)
-
tags/1.3.0/uninstall.php (added)
-
trunk/easily-post-gpt.php (modified) (2 diffs)
-
trunk/includes/class-gpt2wp-mcp-handler.php (added)
-
trunk/includes/class-gpt2wp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easily-post-gpt/trunk/easily-post-gpt.php
r3395824 r3395877 16 16 * Plugin Name: Easily Post from GPT 17 17 * Plugin URI: https://easilygpt.com 18 * Description: Easily post from ChatGPT to your WP without writing any codes. 19 * Version: 1. 2.018 * Description: Easily post from ChatGPT to your WP without writing any codes. Includes MCP support for AI assistants. 19 * Version: 1.3.0 20 20 * Author: Knowhalim 21 21 * Requires at least: 6.1 … … 33 33 34 34 35 define( 'GPT2WP_VERSION', '1. 2.0' );35 define( 'GPT2WP_VERSION', '1.3.0' ); 36 36 37 37 -
easily-post-gpt/trunk/includes/class-gpt2wp.php
r3069299 r3395877 123 123 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-gpt2wp-public.php'; 124 124 125 /** 126 * The class responsible for MCP (Model Context Protocol) REST API integration. 127 */ 128 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-gpt2wp-mcp-handler.php'; 129 125 130 $this->loader = new Gpt2wp_Loader(); 126 131 … … 183 188 public function run() { 184 189 $this->loader->run(); 190 191 // Initialize MCP REST API handler 192 Gpt2wp_MCP_Handler::init(); 185 193 } 186 194
Note: See TracChangeset
for help on using the changeset viewer.