Skip to content

Commit 768d45b

Browse files
authored
Merge pull request #71 from tarosky/feature/rename-pubpla
プラグイン名を Pubpla AI Help Center に変更 (#64)
2 parents 0f029b5 + 44da58f commit 768d45b

4 files changed

Lines changed: 9 additions & 8 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Hamelp
1+
# Pubpla AI Help Center
22

33
Contributors: tarosky, hametuha, Takahashi_Fumiki
44
Tags: faq,help
@@ -30,7 +30,7 @@ It uses the [wp-ai-client](https://github.com/WordPress/wp-ai-client) bundled wi
3030

3131
**Requirements:** AI Overview requires **WordPress 7.0 or later**. On older WordPress versions, the AI Overview block and template function will still appear in the editor and on the front-end, but the search form will not work (the REST endpoint that powers it is disabled). Other features of this plugin (FAQ custom post type, incremental search, shortcode) continue to work on WordPress 6.6+. Upgrade WordPress to 7.0 to enable AI Overview.
3232

33-
You can configure AI behavior and rate limiting from **Settings > Hamelp** in the admin panel. The settings page also includes a **Rebuild Catalog Now** button to manually refresh the FAQ catalog used as LLM context.
33+
You can configure AI behavior and rate limiting from **Settings > Help Center** in the admin panel. The settings page also includes a **Rebuild Catalog Now** button to manually refresh the FAQ catalog used as LLM context.
3434

3535
#### Using the Block
3636

@@ -110,6 +110,7 @@ You can contribute to our github repo. Any [issues](https://github.com/tarosky/h
110110
### 2.3.0
111111

112112
- Change ownership to Tarosky.
113+
- Rename the plugin to **Pubpla AI Help Center**. The plugin slug, text domain, REST routes, and PHP APIs stay `hamelp` for backward compatibility, so no configuration or code changes are required.
113114
- AI Overview now supports **multi-turn conversations**. Follow-up questions keep the previous exchanges as context, and answers stack as a Q&A thread. Conversation history is held in the browser and sent with each request, so nothing is stored on the server.
114115
- Add `hamelp_history_window` filter to limit how many prior messages are sent to the LLM (default 10).
115116
- Optionally **save conversations** for question mining (off by default). When enabled on the settings page, conversations are stored as a private post type viewable in the admin, so you can see what visitors actually ask. Toggle via the **Save Conversations** setting or the `hamelp_save_conversations` filter.

app/Hametuha/Hamelp/Commands.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Hametuha\Hamelp\Services\FaqCatalogBuilder;
1111

1212
/**
13-
* Manage Hamelp FAQ system.
13+
* Manage Pubpla AI Help Center FAQ system.
1414
*/
1515
class Commands extends \WP_CLI_Command {
1616

app/Hametuha/Hamelp/Hooks/Settings.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ public function handle_rebuild() {
8989
*/
9090
public function add_menu_page() {
9191
add_options_page(
92-
__( 'Hamelp Settings', 'hamelp' ),
93-
__( 'Hamelp', 'hamelp' ),
92+
__( 'Pubpla AI Help Center', 'hamelp' ),
93+
__( 'Help Center', 'hamelp' ),
9494
'manage_options',
9595
self::PAGE_SLUG,
9696
[ $this, 'render_page' ]
@@ -345,7 +345,7 @@ public function render_page() {
345345
$updated = $builder->get_last_updated();
346346
?>
347347
<div class="wrap">
348-
<h1><?php esc_html_e( 'Hamelp Settings', 'hamelp' ); ?></h1>
348+
<h1><?php esc_html_e( 'Pubpla AI Help Center', 'hamelp' ); ?></h1>
349349

350350
<?php if ( isset( $_GET['rebuilt'] ) ) : // phpcs:ignore WordPress.Security.NonceVerification.Recommended ?>
351351
<div class="notice notice-success is-dismissible">

hamelp.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Plugin Name: Hamelp
3+
* Plugin Name: Pubpla AI Help Center
44
* Plugin URI: https://wordpress.org/plugins/hamelp
55
* Description: AI powered FAQ and Help Document Management Plugin for WordPress.
66
* Version: 2.3.0
@@ -121,7 +121,7 @@ function hamelp_register_assets() {
121121
*/
122122
function hamelp_version_error() {
123123
// translators: %1$s required PHP version, %2$s current PHP version.
124-
printf( '<div class="error"><p>%s</p></div>', sprintf( esc_html__( 'Hamelp requires PHP %1$s, but your PHP version is %2$s. Please consider upgrade.', 'hamelp' ), '7.4', esc_html( phpversion() ) ) );
124+
printf( '<div class="error"><p>%s</p></div>', sprintf( esc_html__( 'Pubpla AI Help Center requires PHP %1$s, but your PHP version is %2$s. Please consider upgrade.', 'hamelp' ), '7.4', esc_html( phpversion() ) ) );
125125
}
126126

127127
/**

0 commit comments

Comments
 (0)