mirror of
https://github.com/WenPai-org/wpmind.git
synced 2025-08-03 02:48:41 +08:00
v0.3.0
This commit is contained in:
parent
7d8274547d
commit
de34d751ee
5 changed files with 29 additions and 24 deletions
|
@ -41,7 +41,7 @@
|
|||
"You don't have permissions to request Mind API.": [
|
||||
""
|
||||
],
|
||||
"Claude 3.5 Sonnet": [
|
||||
"Claude 3.7 Sonnet": [
|
||||
""
|
||||
],
|
||||
"Best quality and recommended": [
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
# Copyright (C) 2024 Mind Team
|
||||
# Copyright (C) 2025 Mind Team
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AI Mind 0.2.0\n"
|
||||
"Project-Id-Version: AI Mind 0.3.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/nk-crew/mind/issues\n"
|
||||
"Last-Translator: Lazy Blocks Team\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-12-28T12:49:43+00:00\n"
|
||||
"POT-Creation-Date: 2025-03-16T08:30:22+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
"X-Domain: mind\n"
|
||||
|
@ -72,7 +72,7 @@ msgid "You don't have permissions to request Mind API."
|
|||
msgstr ""
|
||||
|
||||
#: src/admin/page-settings/index.js:29
|
||||
msgid "Claude 3.5 Sonnet"
|
||||
msgid "Claude 3.7 Sonnet"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/page-settings/index.js:31
|
||||
|
@ -399,52 +399,52 @@ msgstr ""
|
|||
msgid "Translate to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/popup/components/footer/index.js:41
|
||||
#: src/editor/popup/components/footer/index.js:42
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/popup/components/footer/index.js:42
|
||||
#: src/editor/popup/components/footer/index.js:43
|
||||
msgid "Provide page context"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/popup/components/footer/index.js:47
|
||||
#: src/editor/popup/components/footer/index.js:48
|
||||
msgid "Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/popup/components/footer/index.js:48
|
||||
#: src/editor/popup/components/footer/index.js:49
|
||||
msgid "Provide selected blocks context"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/popup/components/footer/index.js:121
|
||||
#: src/editor/popup/components/footer/index.js:122
|
||||
msgid "Ask AI and get answer"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/popup/components/footer/index.js:128
|
||||
#: src/editor/popup/components/footer/index.js:129
|
||||
msgid "Get Answer"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/popup/components/footer/index.js:140
|
||||
#: src/editor/popup/components/footer/index.js:141
|
||||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/popup/components/footer/index.js:151
|
||||
#: src/editor/popup/components/footer/index.js:152
|
||||
msgid "Regenerate"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/popup/components/footer/index.js:164
|
||||
#: src/editor/popup/components/footer/index.js:162
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/popup/components/footer/index.js:169
|
||||
#: src/editor/popup/components/footer/index.js:179
|
||||
#: src/editor/popup/components/footer/index.js:167
|
||||
#: src/editor/popup/components/footer/index.js:177
|
||||
msgid "Insert"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/popup/components/footer/index.js:178
|
||||
#: src/editor/popup/components/footer/index.js:176
|
||||
msgid "Replace Selected Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/popup/components/input/index.js:97
|
||||
#: src/editor/popup/components/input/index.js:129
|
||||
msgid "Ask AI to build or change blocks…"
|
||||
msgstr ""
|
||||
|
||||
|
|
6
mind.php
6
mind.php
|
@ -2,9 +2,9 @@
|
|||
/**
|
||||
* Plugin Name: AI Mind
|
||||
* Description: AI Page Builder based on Anthropic and OpenAI. Build, design, improve, rewrite your page sections and blocks.
|
||||
* Requires at least: 6.3
|
||||
* Requires at least: 6.5
|
||||
* Requires PHP: 7.2
|
||||
* Version: 0.2.0
|
||||
* Version: 0.3.0
|
||||
* Author: Mind Team
|
||||
* Author URI: https://www.wp-mind.com/
|
||||
* License: GPLv2 or later
|
||||
|
@ -19,7 +19,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
}
|
||||
|
||||
if ( ! defined( 'MIND_VERSION' ) ) {
|
||||
define( 'MIND_VERSION', '0.2.0' );
|
||||
define( 'MIND_VERSION', '0.3.0' );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mind",
|
||||
"version": "0.2.0",
|
||||
"version": "0.3.0",
|
||||
"description": "Mind - AI Page Builder based on Anthropic and OpenAI. Build, design, improve, rewrite your page sections and blocks.",
|
||||
"author": "Mind Team",
|
||||
"license": "GPL-2.0-or-later",
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
=== Mind - AI Page Builder ===
|
||||
Contributors: nko
|
||||
Tags: ai, gpt, ai page builder, ai editor, copilot
|
||||
Requires at least: 6.2
|
||||
Requires at least: 6.5
|
||||
Tested up to: 6.7
|
||||
Requires PHP: 7.2
|
||||
Stable tag: 0.2.0
|
||||
Stable tag: 0.3.0
|
||||
License: GPL-2.0-or-later
|
||||
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
|
@ -160,6 +160,11 @@ Select the section you want to enhance, click the Mind button in the toolbar, an
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 0.3.0 - Mar 16, 2025 =
|
||||
|
||||
- rewrite code from simple text generation to block building
|
||||
- added support for Claude 3.7 Sonnet, Claude 3.5 Haiku, OpenAI GPT-4o and OpenAI GPT-4o mini
|
||||
|
||||
= 0.2.0 - Dec 9, 2024 =
|
||||
|
||||
- added stream AI response for better experience
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue