Skip to content

Commit a7339f8

Browse files
authored
Sync branch [skip ci]
2 parents 63878a2 + 6d508e8 commit a7339f8

File tree

5 files changed

+39
-5
lines changed

5 files changed

+39
-5
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
#### [Version 1.3.0](https://github.com/Codeinwp/hyve-lite/compare/v1.2.4...v1.3.0) (2025-06-23)
2+
3+
### New Features
4+
5+
- External API support for knowledge base search **[PRO]**
6+
- Customizable similarity threshold
7+
- Option to export messages **[PRO]**
8+
- Option to delete threads
9+
- Show connectivity errors in the dashboard
10+
- NPS survey added
11+
- New chatbot icons **[PRO]**
12+
13+
### Improvements
14+
15+
- Compatibility with PHP 7.4 or higher (Previously 8.1+)
16+
- Add support for more OpenAI models
17+
- Dashboard charts for usage statistics
18+
- Optimize memory consumption for chat endpoint
19+
- Reduced payload size on data endpoint
20+
- Improved time to calculate the cosine similarity score
21+
- Consistent chat style options across themes
22+
- Quick actions for adding/removing posts to knowledge base
23+
- Better UX while waiting for bots response
24+
- Hide chat and show dashboard notice when knowledge base is empty
25+
- Better explanation for Enable Chat options (global vs. specific pages)
26+
- Lowered UI gaps in the messages page
27+
- License key notice redirects to activation page
28+
29+
### Bug Fixes
30+
31+
- Fixed handling of OpenAI status
32+
- Fixed warning on early translation function calls
33+
- Fixed missing embeddings in FAQ
34+
135
##### [Version 1.2.4](https://github.com/Codeinwp/hyve-lite/compare/v1.2.3...v1.2.4) (2025-05-27)
236

337
- Updated dependencies

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "codeinwp/hyve-lite",
33
"description": "An AI support bot.",
4-
"version": "1.2.4",
4+
"version": "1.3.0",
55
"type": "wordpress-plugin",
66
"license": "GPL-V3",
77
"autoload": {

hyve-lite.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Plugin Name: Hyve Lite
88
* Plugin URI: https://themeisle.com/plugins/hyve/
99
* Description: Hyve is an AI-powered chatbot that transforms your WordPress content into engaging conversations.
10-
* Version: 1.2.4
10+
* Version: 1.3.0
1111
* Author: ThemeIsle
1212
* Author URI: https://themeisle.com
1313
* License: GPL-3.0+
@@ -42,7 +42,7 @@ function () {
4242
define( 'HYVE_LITE_BASEFILE', __FILE__ );
4343
define( 'HYVE_LITE_URL', plugins_url( '/', __FILE__ ) );
4444
define( 'HYVE_LITE_PATH', __DIR__ );
45-
define( 'HYVE_LITE_VERSION', '1.2.4' );
45+
define( 'HYVE_LITE_VERSION', '1.3.0' );
4646
define( 'HYVE_PRODUCT_SLUG', basename( dirname( 'HYVE_LITE_BASEFILE' ) ) );
4747

4848
$vendor_file = HYVE_LITE_PATH . '/vendor/autoload.php';

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyve-lite",
3-
"version": "1.2.4",
3+
"version": "1.3.0",
44
"description": "An AI support bot.",
55
"scripts": {
66
"build": "npm-run-all build:*",

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: automation, support, chat, ai, openai
44
Requires at least: 6.2
55
Tested up to: 6.8
66
Requires PHP: 7.4
7-
Stable tag: 1.2.4
7+
Stable tag: 1.3.0
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
1010

0 commit comments

Comments
 (0)