Bump version v14.0.0

This commit is contained in:
John Livingston
2025-06-19 17:17:07 +02:00
parent 5d27efb961
commit 6d98fc911b
4 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# Changelog # Changelog
## 14.0.0 (Not Released Yet) ## 14.0.0
**Important note**: if you got an error on updating the plugin, please try to restart Peertube and install it again. **Important note**: if you got an error on updating the plugin, please try to restart Peertube and install it again.

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "peertube-plugin-livechat", "name": "peertube-plugin-livechat",
"version": "13.0.0", "version": "14.0.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "peertube-plugin-livechat", "name": "peertube-plugin-livechat",
"version": "13.0.0", "version": "14.0.0",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"dependencies": { "dependencies": {
"@xmpp/jid": "^0.13.2", "@xmpp/jid": "^0.13.2",

View File

@ -1,7 +1,7 @@
{ {
"name": "peertube-plugin-livechat", "name": "peertube-plugin-livechat",
"description": "PeerTube plugin livechat: create chat rooms for your Peertube lives! Comes with many features: federation, moderation tools, chat bot, chat persistence, OBS integration, ...", "description": "PeerTube plugin livechat: create chat rooms for your Peertube lives! Comes with many features: federation, moderation tools, chat bot, chat persistence, OBS integration, ...",
"version": "13.0.0", "version": "14.0.0",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"author": { "author": {
"name": "John Livingston", "name": "John Livingston",

View File

@ -5,6 +5,7 @@
import type { RegisterServerOptions } from '@peertube/peertube-types' import type { RegisterServerOptions } from '@peertube/peertube-types'
/** /**
* **DEPRECATED**
* Livechat v13.0.0: now using xmppjs-chat-bot 0.6.0, which replaced RegExp by RE2. * Livechat v13.0.0: now using xmppjs-chat-bot 0.6.0, which replaced RegExp by RE2.
* we must change the forbidspecialchar regexp configuration, to be compatible. * we must change the forbidspecialchar regexp configuration, to be compatible.
* Livechat v14.0.0: we removed RE2 because of some incompatibility issues. * Livechat v14.0.0: we removed RE2 because of some incompatibility issues.