Revert "."

This reverts commit 4a3fd3feb8.
This commit is contained in:
2025-06-15 14:07:56 +09:00
parent 4a3fd3feb8
commit 5ae7d529bd
3 changed files with 20 additions and 20 deletions

18
info.js
View File

@@ -5,7 +5,7 @@ class InstanceActionEvent {
static type = 'event';
static src = 'instance';
static dst = 'controller';
static plugin = 'chat_sync';
static plugin = 'ClusterChatSync';
constructor(instanceName, action, content) {
this.instanceName = instanceName;
@@ -25,24 +25,24 @@ class InstanceActionEvent {
}
const plugin = {
name: 'chat_sync',
name: 'ClusterChatSync',
title: 'Cluster Chat Sync',
description: 'One way chat sync.',
instanceEntrypoint: 'instance',
controllerEntrypoint: 'controller',
controllerConfigFields: {
'chat_sync.discord_bot_token': {
'ClusterChatSync.discord_bot_token': {
title: 'Discord Bot Token',
description: 'API Token',
type: 'string'
},
'chat_sync.datetime_on_message': {
'ClusterChatSync.datetime_on_message': {
title: 'Message Datetime',
description: 'Append datetime in front',
type: 'boolean',
initialValue: true
},
'chat_sync.discord_channel_mapping': {
'ClusterChatSync.discord_channel_mapping': {
title: 'Channels',
description: 'Putting the discord channel id and instance relations here',
type: 'object',
@@ -50,25 +50,25 @@ const plugin = {
'S1': '123'
},
},
'chat_sync.use_libretranslate': {
'ClusterChatSync.use_libretranslate': {
title: 'Translate Message',
description: 'Using self host or paid service of libretranslate',
type: 'boolean',
initialValue: false
},
'chat_sync.libretranslate_url': {
'ClusterChatSync.libretranslate_url': {
title: 'Translate Server URL',
description: 'Including http protocol, and the port if needed',
type: 'string',
initialValue: 'http://localhost:5000'
},
'chat_sync.libretranslate_key': {
'ClusterChatSync.libretranslate_key': {
title: 'Translate Server API Key',
description: 'The API key for the translate server',
type: 'string',
initialValue: '123456'
},
'chat_sync.libretranslate_language': {
'ClusterChatSync.libretranslate_language': {
title: 'Translate Server Target Language',
description: 'Put a space between each language, using ISO 639-1 codes',
type: 'string',