v1.1.0
This commit is contained in:
parent
a157afe625
commit
02cd01e862
20 changed files with 1365 additions and 646 deletions
22
readme.txt
22
readme.txt
|
|
@ -2,10 +2,9 @@
|
|||
Contributors: robotstxt, javiercasares
|
||||
Tags: ai, translation, multilingual, multisite, editor
|
||||
Requires at least: 7.0
|
||||
Tested up to: 7.0
|
||||
Tested up to: 7.1
|
||||
Requires PHP: 7.4
|
||||
Requires Plugins: ai
|
||||
Stable tag: 1.0.0
|
||||
Stable tag: 1.1.0
|
||||
License: GPL-3.0-or-later
|
||||
License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
|
|
@ -109,9 +108,9 @@ The endpoint reads the **saved** title and content from the database, not from t
|
|||
|
||||
= Requirements =
|
||||
|
||||
* WordPress 7.0 or higher.
|
||||
* WordPress 7.0 or higher (the `wp_ai_client_prompt()` function is part of WordPress core since 7.0).
|
||||
* PHP 7.4 or higher.
|
||||
* The official WordPress AI plugin (https://wordpress.org/plugins/ai/) installed, active, and configured with valid provider credentials.
|
||||
* At least one AI provider configured in Settings → AI. The plugin works with any provider registered through the WordPress AI client — no specific AI plugin is required.
|
||||
|
||||
= Manual download =
|
||||
|
||||
|
|
@ -123,7 +122,7 @@ On Multisite, network-activate the plugin and configure it under Network Admin -
|
|||
|
||||
= Does this plugin call any AI provider directly? =
|
||||
|
||||
No. Every AI request is delegated to the official WordPress AI plugin, which handles authentication, model selection, and provider routing. This plugin does not store API keys.
|
||||
No. Every AI request goes through `wp_ai_client_prompt()`, WordPress's native AI client (introduced in WP 7.0). The plugin does not talk to any provider directly and does not store API keys. Authentication, model selection, and provider routing are handled by WordPress and whatever AI provider plugin you have configured.
|
||||
|
||||
= Does it work with the classic editor? =
|
||||
|
||||
|
|
@ -135,12 +134,19 @@ The plugin reads the post title and content from the database, not from the edit
|
|||
|
||||
== Compatibility ==
|
||||
|
||||
* WordPress: 7.0
|
||||
* WordPress: 7.0 - 7.1
|
||||
* PHP: 7.4 - 8.5
|
||||
* WP-CLI: 2.10 or newer
|
||||
* WP-CLI: 2.12 or newer
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.1.0 =
|
||||
|
||||
* Added excerpt field (`post_excerpt`) as a translatable field, with a dedicated settings toggle.
|
||||
* Added MultilingualPress integration: when MLP creates a new connected post, the plugin automatically translates the enabled fields into the target site's language (opt-in, disabled by default).
|
||||
* Removed `Requires Plugins: ai` header — `wp_ai_client_prompt()` is a native WordPress 7.0 function; the plugin now works with any AI provider configured through WordPress core.
|
||||
* Admin notice now shows when no AI provider is configured for text generation (instead of checking for a function that always exists in WP 7.0+).
|
||||
|
||||
= 1.0.0 =
|
||||
|
||||
* Initial release. Translation panel for block and classic editors, REST endpoint, WP-CLI command, single-site and Multisite (global / per-site) configuration modes.
|
||||
|
|
|
|||
Loading…
Reference in a new issue