From 39b616d0bf34f41c2b6f59a1cc506136bd52374e Mon Sep 17 00:00:00 2001 From: Kurento Date: Thu, 12 Sep 2024 11:52:57 +0000 Subject: [PATCH] Code autogenerated from Kurento/kurento@6d1a8a5 --- README.md | 4 ++-- README_bower.md | 4 ++-- lib/complexTypes/VideoCodec.js | 6 +++--- lib/index.js | 2 +- package.json | 2 +- src/core.kmd.json | 12 +++++++----- 6 files changed, 16 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index be95370..7d1ad65 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Contribution policy You can contribute to the Kurento community through bug-reports, bug-fixes, new code or new documentation. For contributing to the Kurento community, drop a -post to the [Kurento Public Mailing List] providing full information about your +post to the [Kurento discussion forum] providing full information about your contribution and its value. In your contributions, you must comply with the following guidelines @@ -105,7 +105,7 @@ Before asking for support, please read first the [Kurento Netiquette Guidelines] [Kurento Blog]: https://kurento.openvidu.io/blog [Kurento FIWARE Catalog Entry]: http://catalogue.fiware.org/enablers/stream-oriented-kurento [Kurento Netiquette Guidelines]: https://kurento.openvidu.io/blog/kurento-netiquette-guidelines -[Kurento Public Mailing list]: https://groups.google.com/forum/#!forum/kurento +[Kurento discussion forum]: https://github.com/orgs/Kurento/discussions [KurentoImage]: https://secure.gravatar.com/avatar/21a2a12c56b2a91c8918d5779f1778bf?s=120 [Apache 2.0 License]: http://www.apache.org/licenses/LICENSE-2.0 [NUBOMEDIA]: http://www.nubomedia.eu diff --git a/README_bower.md b/README_bower.md index 712e956..24361fe 100644 --- a/README_bower.md +++ b/README_bower.md @@ -71,7 +71,7 @@ Contribution policy You can contribute to the Kurento community through bug-reports, bug-fixes, new code or new documentation. For contributing to the Kurento community, drop a -post to the [Kurento Public Mailing List] providing full information about your +post to the [Kurento discussion forum] providing full information about your contribution and its value. In your contributions, you must comply with the following guidelines @@ -106,7 +106,7 @@ Before asking for support, please read first the [Kurento Netiquette Guidelines] [Kurento Blog]: https://kurento.openvidu.io/blog [Kurento FIWARE Catalog Entry]: http://catalogue.fiware.org/enablers/stream-oriented-kurento [Kurento Netiquette Guidelines]: https://kurento.openvidu.io/blog/kurento-netiquette-guidelines -[Kurento Public Mailing list]: https://groups.google.com/forum/#!forum/kurento +[Kurento discussion forum]: https://github.com/orgs/Kurento/discussions [KurentoImage]: https://secure.gravatar.com/avatar/21a2a12c56b2a91c8918d5779f1778bf?s=120 [Apache 2.0 License]: http://www.apache.org/licenses/LICENSE-2.0 [NUBOMEDIA]: http://www.nubomedia.eu diff --git a/lib/complexTypes/VideoCodec.js b/lib/complexTypes/VideoCodec.js index d1ccb0d..f500c1d 100644 --- a/lib/complexTypes/VideoCodec.js +++ b/lib/complexTypes/VideoCodec.js @@ -25,7 +25,7 @@ var kurentoClient = require('kurento-client'); * * @typedef core/complexTypes.VideoCodec * - * @type {(VP8|H264|RAW)} + * @type {(AV1|VP9|VP8|H264|RAW)} */ /** @@ -41,8 +41,8 @@ function checkVideoCodec(key, value) if(typeof value != 'string') throw SyntaxError(key+' param should be a String, not '+typeof value); - if(!value.match('VP8|H264|RAW')) - throw SyntaxError(key+' param is not one of [VP8|H264|RAW] ('+value+')'); + if(!value.match('AV1|VP9|VP8|H264|RAW')) + throw SyntaxError(key+' param is not one of [AV1|VP9|VP8|H264|RAW] ('+value+')'); }; diff --git a/lib/index.js b/lib/index.js index 2db33a9..d1c494f 100644 --- a/lib/index.js +++ b/lib/index.js @@ -26,7 +26,7 @@ */ Object.defineProperty(exports, 'name', {value: 'core'}); -Object.defineProperty(exports, 'version', {value: '7.0.0'}); +Object.defineProperty(exports, 'version', {value: '7.1.0'}); var HubPort = require('./HubPort'); diff --git a/package.json b/package.json index 5d87ce3..7958b96 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kurento-client-core", - "version": "7.0.0", + "version": "7.1.0", "description": "JavaScript Client API for Kurento Media Server", "repository": { "type": "git", diff --git a/src/core.kmd.json b/src/core.kmd.json index 0b2b5a9..ac2a415 100644 --- a/src/core.kmd.json +++ b/src/core.kmd.json @@ -1,14 +1,14 @@ { "name": "core", - "version": "7.0.0", - "kurentoVersion": "7.0.0", + "version": "7.1.0", + "kurentoVersion": "7.1.0", "imports": [], "code": { "kmd": { "java": { "mavenGroupId": "org.kurento", "mavenArtifactId": "kms-api-core", - "mavenVersion": "7.0.0" + "mavenVersion": "7.1.0" } }, "api": { @@ -16,13 +16,13 @@ "packageName": "org.kurento.client", "mavenGroupId": "org.kurento", "mavenArtifactId": "kurento-client", - "mavenVersion": "7.0.0" + "mavenVersion": "7.1.0" }, "js": { "nodeName": "kurento-client-core", "npmDescription": "JavaScript Client API for Kurento Media Server", "npmGit": "https://github.com/Kurento/kurento-client-core-js.git", - "npmVersion": "7.0.0" + "npmVersion": "7.1.0" } }, "implementation": { @@ -907,6 +907,8 @@ { "typeFormat": "ENUM", "values": [ + "AV1", + "VP9", "VP8", "H264", "RAW"