Skip to content

Commit

Permalink
Add v0.20.0 of mattermost-plugin-calls to the Marketplace (#390)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpoile authored Oct 10, 2023
1 parent 0f62985 commit 560de14
Showing 1 changed file with 250 additions and 0 deletions.
250 changes: 250 additions & 0 deletions plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -1685,6 +1685,256 @@
},
"updated_at": "2019-04-17T19:49:19Z"
},
{
"homepage_url": "https://github.com/mattermost/mattermost-plugin-calls/",
"icon_data": "",
"download_url": "https://plugins-store.test.mattermost.com/release/mattermost-plugin-calls-v0.20.0.tar.gz",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-calls/releases/tag/v0.20.0",
"hosting": "",
"author_type": "mattermost",
"release_stage": "production",
"enterprise": false,
"signature": "iQIzBAABCAAdFiEExViBuA9p6GO4WtXR0bVLR6XO/sQFAmUfI98ACgkQ0bVLR6XO/sTjNQ/8DVwFjNmQoEb9RzTScEd99+LtQob805LTrLlkONVcH01NzXFzmi388KQSfEK11hEWTRvcgH65xkVgdYvQV3c87VgUvRKZfMcBz+pKP1EJ92dWuL/EzxbwZG2oYD0+p4nhDG+PJRXlltbG67j9j/nRlwjVkbULXM246MYdxGvBGmxVnbdnNs6k9jaQ4T/tuZOPFLRCWuchFG/8v6CFYoolf21mUaCfmOz5uVhdshvl+3se1UxubcUM3iH5AFvVyCO/SuCNRKvvRqM5Z/k73XjZ+mxyFHNTKmpSoJn/FEFIeG7I+aYiGm7n0G+q6wy7JfvSLhZqnh9yiCddQpzoxwanB2krlNwdNGReveGn7AcDMHri3eh7Sh2uaKkye+5jnoYDaVtTFXcMLEJQ17YKcmHCHRS6voracO56ZzLTQ2231Qa9Yt2vAIrdrT4Qvu4NEhHLERNzfNBkTEfqstthNaw/ABDNigFVFtXe+ig0bUiIhdRfOrnw+WuZMA14j30+qRdqzjMwVyR83FH3gbkOc+QUuJOmIZ4y7mndCEynmZLsTmRYVNrtqkTb3fktuMCIZ9JBgLob7V+hf0woTtcYlorwH57UlCVNWg3X6YULhDSFbmroqChUSQ7nEl8m/zUHfwB0ICHtL3a/cViwxrVbZ9Gu/0Llf3MMX47v9wddQuiGEhg=",
"repo_name": "mattermost-plugin-calls",
"manifest": {
"id": "com.mattermost.calls",
"name": "Calls",
"description": "Integrates real-time voice communication in Mattermost",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-calls/",
"support_url": "https://github.com/mattermost/mattermost-plugin-calls/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-calls/releases/tag/v0.20.0",
"version": "0.20.0",
"min_server_version": "7.8.0",
"server": {
"executables": {
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"freebsd-amd64": "server/dist/plugin-freebsd-amd64",
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"openbsd-amd64": "server/dist/plugin-openbsd-amd64"
},
"executable": ""
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "Calls plugin enables voice calls with screensharing in channels. See [documentation](https://docs.mattermost.com/channels/make-calls.html) to learn more.",
"footer": "",
"settings": [
{
"key": "DefaultEnabled",
"display_name": "Test mode",
"type": "custom",
"help_text": "When test mode is enabled, only system admins are able to start calls in channels. This allows testing to confirm calls are working as expected.",
"placeholder": "",
"default": null,
"hosting": "on-prem"
},
{
"key": "UDPServerAddress",
"display_name": "RTC Server Address (UDP)",
"type": "text",
"help_text": "The local IP address used by the RTC server to listen on for UDP connections.",
"placeholder": "127.0.0.1",
"default": "",
"hosting": "on-prem"
},
{
"key": "TCPServerAddress",
"display_name": "RTC Server Address (TCP)",
"type": "text",
"help_text": "The local IP address used by the RTC server to listen on for TCP connections.",
"placeholder": "127.0.0.1",
"default": "",
"hosting": "on-prem"
},
{
"key": "UDPServerPort",
"display_name": "RTC Server Port (UDP)",
"type": "number",
"help_text": "The UDP port the RTC server will listen on.",
"placeholder": "8443",
"default": 8443,
"hosting": "on-prem"
},
{
"key": "TCPServerPort",
"display_name": "RTC Server Port (TCP)",
"type": "number",
"help_text": "The TCP port the RTC server will listen on.",
"placeholder": "8443",
"default": 8443,
"hosting": "on-prem"
},
{
"key": "ICEHostOverride",
"display_name": "ICE Host Override",
"type": "text",
"help_text": "(Optional) The IP (or hostname) to be used as the host ICE candidate. If empty, it defaults to resolving via STUN.",
"placeholder": "",
"default": "",
"hosting": "on-prem"
},
{
"key": "RTCDServiceURL",
"display_name": "RTCD service URL",
"type": "text",
"help_text": "(Optional) The URL to a running RTCD service instance that should host the calls. When set (non empty) all calls will be handled by the external service.",
"placeholder": "https://rtcd.example.com",
"default": null,
"hosting": "on-prem"
},
{
"key": "MaxCallParticipants",
"display_name": "Max call participants",
"type": "number",
"help_text": "The maximum number of participants that can join a call. If left empty, or set to 0, it means unlimited.",
"placeholder": "",
"default": 0,
"hosting": "on-prem"
},
{
"key": "ICEServersConfigs",
"display_name": "ICE Servers Configurations",
"type": "longtext",
"help_text": "(Optional) A list of ICE servers (STUN/TURN) configurations to use. This field should contain a valid JSON array.",
"placeholder": "[{\n \"urls\":[\"turn:turnserver.example.org:3478\"],\n \"username\": \"webrtc\",\n \"credential\": \"turnpassword\"\n}]",
"default": "[{\"urls\":[\"stun:stun.global.calls.mattermost.com:3478\"]}]",
"hosting": "on-prem"
},
{
"key": "TURNStaticAuthSecret",
"display_name": "TURN Static Auth Secret",
"type": "text",
"help_text": "(Optional) The secret key used to generate TURN short-lived authentication credentials.",
"placeholder": "",
"default": "",
"hosting": "on-prem"
},
{
"key": "TURNCredentialsExpirationMinutes",
"display_name": "TURN Credentials Expiration (minutes)",
"type": "number",
"help_text": "(Optional) The number of minutes that the generated TURN credentials will be valid for.",
"placeholder": "",
"default": 1440,
"hosting": "on-prem"
},
{
"key": "ServerSideTURN",
"display_name": "Server Side TURN",
"type": "bool",
"help_text": "(Optional) When set to on it will pass and use configured TURN candidates to server initiated connections.",
"placeholder": "",
"default": false,
"hosting": "on-prem"
},
{
"key": "AllowScreenSharing",
"display_name": "Allow screen sharing",
"type": "bool",
"help_text": "When set to true it allows call participants to share their screen.",
"placeholder": "",
"default": true,
"hosting": ""
},
{
"key": "EnableSimulcast",
"display_name": "Enable simulcast for screen sharing (Experimental)",
"type": "bool",
"help_text": "When set to true it enables simulcast for screen sharing. This can help to improve screen sharing quality.",
"placeholder": "",
"default": false,
"hosting": ""
},
{
"key": "EnableRecordings",
"display_name": "Enable call recordings (Beta)",
"type": "bool",
"help_text": "(Optional) When set to true it enables the call recordings functionality.",
"placeholder": "",
"default": false,
"hosting": ""
},
{
"key": "JobServiceURL",
"display_name": "Job service URL",
"type": "text",
"help_text": "The URL to a running calls job service instance used for call recordings.",
"placeholder": "https://calls-job-service.example.com",
"default": null,
"hosting": ""
},
{
"key": "MaxRecordingDuration",
"display_name": "Maximum call recording duration",
"type": "number",
"help_text": "The maximum duration (in minutes) for call recordings. Value must be in the range [15, 180].",
"placeholder": "",
"default": 60,
"hosting": ""
},
{
"key": "RecordingQuality",
"display_name": "Call recording quality",
"type": "dropdown",
"help_text": "The audio and video quality of call recordings.\n Note: this setting can affect the overall performance of the job service and the number of concurrent recording jobs that can be run.",
"placeholder": "",
"default": "medium",
"options": [
{
"display_name": "Low",
"value": "low"
},
{
"display_name": "Medium",
"value": "medium"
},
{
"display_name": "High",
"value": "high"
}
],
"hosting": "on-prem"
},
{
"key": "EnableIPv6",
"display_name": "(Experimental) Enable IPv6 support",
"type": "bool",
"help_text": "When set to true the RTC service will work in dual-stack mode, listening for IPv6 connections and generating candidates in addition to IPv4 ones.",
"placeholder": "",
"default": false,
"hosting": "on-prem"
},
{
"key": "EnableRinging",
"display_name": "Enable call ringing (Beta)",
"type": "bool",
"help_text": "When set to true, ringing functionality is enabled: participants in DM and GM channels will receive a desktop alert and a ringing notification when a call is started. Changing this setting requires a plugin restart.",
"placeholder": "",
"default": false,
"hosting": ""
}
]
},
"props": {
"calls_recorder_version": "v0.5.1",
"min_offloader_version": "v0.3.2",
"min_rtcd_version": "v0.10.1"
}
},
"platforms": {
"linux-amd64": {
"download_url": "https://plugins-store.test.mattermost.com/release/mattermost-plugin-calls-v0.20.0-linux-amd64.tar.gz",
"signature": "iQIzBAABCAAdFiEExViBuA9p6GO4WtXR0bVLR6XO/sQFAmUfI9oACgkQ0bVLR6XO/sS0CA/+MGSO25sWsuE4Uaw8v+3qwqJ0mID2XgR1xNGEXnbpdZkHLWFpBDy5ke8i78qa7w64LOGcW8IRu+eotJ0DMhzicIgtK/SEK3MU+iT0TjBJaP1ziuIjgVHv9llGNwD01SPcjpDu/youkCS/b+a+OfezwUdfGMfL+1JqnjwhR6jBfUzQy+bl65durkUzv5hLUdyHoGg38l/6Pueaquro7ZoyB2LJAljqkrbqvJwALaBOwbHkGDiy4j+iz63ahnjYV2V56biXRbPYlOo8Boggjni/8qCe12MvjM1HKW2qUo7BAvSfXY2BNmFYE99Z3t1qSHICh2zJrMZrDNv+e+xbTnq+EprE76/MZY3An+g7siqUoG32i3Bi5GlhPx9PQy1cM0eMhQz2xqtmnRozYp8jkOscvbzREZETT0ToGUQo1PBWWJsvz24uOxTAvDEEWQfi2wmonI1mTL/WJ6sl+dEbrDJ4tYMSLCg04kQ9OGmkc87OQEJ2r2N1kEH/toaL4hwhpZyo3w1l6+qSYcF9xYL6cpgv/eTzi6lcgrUoZySYvJhqanRiAz8V+3W1ALKZxO1FO0jPEqO7j5SHXFm5SQz3sdlyUMgUPIfV5T3eQHq/dBDKN+/PphPEukLUOQLcruiz089K9vLZSEQ9do7kgk6nDXDq0XU/Inp1CnAbdquM6OX44MM="
},
"darwin-amd64": {},
"windows-amd64": {}
},
"updated_at": "2023-10-05T21:03:05.155289Z"
},
{
"homepage_url": "https://github.com/mattermost/mattermost-plugin-calls/",
"icon_data": "",
Expand Down

0 comments on commit 560de14

Please sign in to comment.