diff --git a/Dockerfile b/Dockerfile index 3cab540bb7..93d7c676d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Builder -FROM --platform=$BUILDPLATFORM node:22-bullseye as builder +FROM --platform=$BUILDPLATFORM node:22-bullseye AS builder # Support custom branch of the js-sdk. This also helps us build images of element-web develop. ARG USE_CUSTOM_SDKS=false @@ -25,8 +25,18 @@ COPY --from=builder /src/webapp /app # through `envsubst` by the nginx docker image entry point. COPY /docker/nginx-templates/* /etc/nginx/templates/ +# Tell nginx to put its pidfile elsewhere, so it can run as non-root +RUN sed -i -e 's,/var/run/nginx.pid,/tmp/nginx.pid,' /etc/nginx/nginx.conf + +# nginx user must own the cache and etc directory to write cache and tweak the nginx config +RUN chown -R nginx:0 /var/cache/nginx /etc/nginx +RUN chmod -R g+w /var/cache/nginx /etc/nginx + RUN rm -rf /usr/share/nginx/html \ && ln -s /app /usr/share/nginx/html +# Run as nginx user by default +USER nginx + # HTTP listen port ENV ELEMENT_WEB_PORT=80 diff --git a/LICENSE-COMMERCIAL b/LICENSE-COMMERCIAL new file mode 100644 index 0000000000..173e03e0c0 --- /dev/null +++ b/LICENSE-COMMERCIAL @@ -0,0 +1,6 @@ +Licensees holding a valid commercial license with Element may use this +software in accordance with the terms contained in a written agreement +between you and Element. + +To purchase a commercial license please contact our sales team at +licensing@element.io diff --git a/README.md b/README.md index 87e451c9ff..5924f93498 100644 --- a/README.md +++ b/README.md @@ -311,3 +311,18 @@ For a developer guide, see the [translating dev doc](docs/translating-dev.md). Issues are triaged by community members and the Web App Team, following the [triage process](https://github.com/element-hq/element-meta/wiki/Triage-process). We use [issue labels](https://github.com/element-hq/element-meta/wiki/Issue-labelling) to sort all incoming issues. + +## Copyright & License + +Copyright (c) 2014-2017 OpenMarket Ltd +Copyright (c) 2017 Vector Creations Ltd +Copyright (c) 2017-2025 New Vector Ltd + +This software is multi licensed by New Vector Ltd (Element). It can be used either: + +(1) for free under the terms of the GNU Affero General Public License (as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version); OR + +(2) for free under the terms of the GNU General Public License (as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version); OR + +(3) under the terms of a paid-for Element Commercial License agreement between you and Element (the terms of which may vary depending on what you and Element have agreed to). +Unless required by applicable law or agreed to in writing, software distributed under the Licenses is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Licenses for the specific language governing permissions and limitations under the Licenses. diff --git a/__mocks__/maplibre-gl.js b/__mocks__/maplibre-gl.js index c410e4f24c..cac71db330 100644 --- a/__mocks__/maplibre-gl.js +++ b/__mocks__/maplibre-gl.js @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/__mocks__/workerFactoryMock.js b/__mocks__/workerFactoryMock.js index 956f5b04ac..a6f04ce086 100644 --- a/__mocks__/workerFactoryMock.js +++ b/__mocks__/workerFactoryMock.js @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/contribute.json b/contribute.json index 5c7fc79d39..fdd84bd8a0 100644 --- a/contribute.json +++ b/contribute.json @@ -3,7 +3,7 @@ "description": "A glossy Matrix collaboration client for the web.", "repository": { "url": "https://github.com/element-hq/element-web", - "license": "AGPL-3.0-only OR GPL-3.0-only" + "license": "AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial" }, "bugs": { "list": "https://github.com/element-hq/element-web/issues", diff --git a/docs/install.md b/docs/install.md index 7830324ffc..f6bd98611c 100644 --- a/docs/install.md +++ b/docs/install.md @@ -60,6 +60,12 @@ would be: docker run --rm -p 127.0.0.1:80:80 -v /etc/element-web/config.json:/app/config.json vectorim/element-web ``` +The Docker image is configured to run as an unprivileged (non-root) user by +default. This should be fine on modern Docker runtimes, but binding to port 80 +on other runtimes may require root privileges. To resolve this, either run the +image as root (`docker run --user 0`) or, better, change the port that nginx +listens on via the `ELEMENT_WEB_PORT` environment variable. + The behaviour of the docker image can be customised via the following environment variables: diff --git a/jest.config.ts b/jest.config.ts index 1c4821cc3f..b70b21bc97 100644 --- a/jest.config.ts +++ b/jest.config.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/module_system/BuildConfig.ts b/module_system/BuildConfig.ts index 8cf83dea8b..cfb805840d 100644 --- a/module_system/BuildConfig.ts +++ b/module_system/BuildConfig.ts @@ -1,7 +1,7 @@ /* Copyright 2022-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/module_system/installer.ts b/module_system/installer.ts index e681bb1673..4e677b7d67 100644 --- a/module_system/installer.ts +++ b/module_system/installer.ts @@ -1,7 +1,7 @@ /* Copyright 2022-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/module_system/scripts/install.ts b/module_system/scripts/install.ts index 57a2f9fce3..0b6d2e1c29 100644 --- a/module_system/scripts/install.ts +++ b/module_system/scripts/install.ts @@ -1,7 +1,7 @@ /* Copyright 2022-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/package.json b/package.json index b629e8e08e..4e00cb47f4 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "type": "git", "url": "https://github.com/element-hq/element-web" }, - "license": "AGPL-3.0-only OR GPL-3.0-only", + "license": "SEE LICENSE IN README.md", "files": [ "lib", "res", diff --git a/playwright.config.ts b/playwright.config.ts index 0b2bd1bd02..d317c55a6d 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/@types/playwright-core.d.ts b/playwright/@types/playwright-core.d.ts index 9701b2ddac..244f3c91d4 100644 --- a/playwright/@types/playwright-core.d.ts +++ b/playwright/@types/playwright-core.d.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/accessibility/keyboard-navigation.spec.ts b/playwright/e2e/accessibility/keyboard-navigation.spec.ts index 87cee4e05c..6f4fc9be5f 100644 --- a/playwright/e2e/accessibility/keyboard-navigation.spec.ts +++ b/playwright/e2e/accessibility/keyboard-navigation.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/app-loading/feature-detection.spec.ts b/playwright/e2e/app-loading/feature-detection.spec.ts index ee61fb5662..0d11e4a31a 100644 --- a/playwright/e2e/app-loading/feature-detection.spec.ts +++ b/playwright/e2e/app-loading/feature-detection.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/app-loading/guest-registration.spec.ts b/playwright/e2e/app-loading/guest-registration.spec.ts index 8e96a937f0..e7cf6c6c14 100644 --- a/playwright/e2e/app-loading/guest-registration.spec.ts +++ b/playwright/e2e/app-loading/guest-registration.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/app-loading/stored-credentials.spec.ts b/playwright/e2e/app-loading/stored-credentials.spec.ts index 34cbb5aea4..7e1bb29ce7 100644 --- a/playwright/e2e/app-loading/stored-credentials.spec.ts +++ b/playwright/e2e/app-loading/stored-credentials.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/audio-player/audio-player.spec.ts b/playwright/e2e/audio-player/audio-player.spec.ts index 2749d7eb1d..89d2002ed6 100644 --- a/playwright/e2e/audio-player/audio-player.spec.ts +++ b/playwright/e2e/audio-player/audio-player.spec.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Suguru Hirahara Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/chat-export/html-export.spec.ts b/playwright/e2e/chat-export/html-export.spec.ts index f914cccd96..33ca6728c6 100644 --- a/playwright/e2e/chat-export/html-export.spec.ts +++ b/playwright/e2e/chat-export/html-export.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/composer/CIDER.spec.ts b/playwright/e2e/composer/CIDER.spec.ts index 2052b9683d..03fc59cd0f 100644 --- a/playwright/e2e/composer/CIDER.spec.ts +++ b/playwright/e2e/composer/CIDER.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/composer/RTE.spec.ts b/playwright/e2e/composer/RTE.spec.ts index 91a56afb8a..418f28e126 100644 --- a/playwright/e2e/composer/RTE.spec.ts +++ b/playwright/e2e/composer/RTE.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/create-room/create-room.spec.ts b/playwright/e2e/create-room/create-room.spec.ts index 51a135ca03..4a4fee1620 100644 --- a/playwright/e2e/create-room/create-room.spec.ts +++ b/playwright/e2e/create-room/create-room.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/crypto/backups.spec.ts b/playwright/e2e/crypto/backups.spec.ts index feeaf961df..baff4cd61c 100644 --- a/playwright/e2e/crypto/backups.spec.ts +++ b/playwright/e2e/crypto/backups.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/crypto/complete-security.spec.ts b/playwright/e2e/crypto/complete-security.spec.ts index e5c5f8e9a3..44eb70355c 100644 --- a/playwright/e2e/crypto/complete-security.spec.ts +++ b/playwright/e2e/crypto/complete-security.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/crypto/crypto.spec.ts b/playwright/e2e/crypto/crypto.spec.ts index d223138781..2b6844574e 100644 --- a/playwright/e2e/crypto/crypto.spec.ts +++ b/playwright/e2e/crypto/crypto.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022-2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/crypto/decryption-failure-messages.spec.ts b/playwright/e2e/crypto/decryption-failure-messages.spec.ts index b2a1209a70..b9199ef9fd 100644 --- a/playwright/e2e/crypto/decryption-failure-messages.spec.ts +++ b/playwright/e2e/crypto/decryption-failure-messages.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022-2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/crypto/dehydration.spec.ts b/playwright/e2e/crypto/dehydration.spec.ts index 58bd5847b4..64d0c4888c 100644 --- a/playwright/e2e/crypto/dehydration.spec.ts +++ b/playwright/e2e/crypto/dehydration.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/crypto/device-verification.spec.ts b/playwright/e2e/crypto/device-verification.spec.ts index 032b649b8d..ddd564139f 100644 --- a/playwright/e2e/crypto/device-verification.spec.ts +++ b/playwright/e2e/crypto/device-verification.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/crypto/event-shields.spec.ts b/playwright/e2e/crypto/event-shields.spec.ts index 98228451a3..f680f340c3 100644 --- a/playwright/e2e/crypto/event-shields.spec.ts +++ b/playwright/e2e/crypto/event-shields.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022-2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/crypto/invisible-crypto.spec.ts b/playwright/e2e/crypto/invisible-crypto.spec.ts index f207d2c6bb..f1272ec710 100644 --- a/playwright/e2e/crypto/invisible-crypto.spec.ts +++ b/playwright/e2e/crypto/invisible-crypto.spec.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/crypto/logout.spec.ts b/playwright/e2e/crypto/logout.spec.ts index b88ae0de73..8e408dc634 100644 --- a/playwright/e2e/crypto/logout.spec.ts +++ b/playwright/e2e/crypto/logout.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/crypto/migration.spec.ts b/playwright/e2e/crypto/migration.spec.ts index 52df22688b..c36cf2997e 100644 --- a/playwright/e2e/crypto/migration.spec.ts +++ b/playwright/e2e/crypto/migration.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023, 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/crypto/test_indexeddb_cryptostore_dump/load.js b/playwright/e2e/crypto/test_indexeddb_cryptostore_dump/load.js index 4f5090b55d..73c1b21b22 100644 --- a/playwright/e2e/crypto/test_indexeddb_cryptostore_dump/load.js +++ b/playwright/e2e/crypto/test_indexeddb_cryptostore_dump/load.js @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023, 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/crypto/user-verification.spec.ts b/playwright/e2e/crypto/user-verification.spec.ts index bd3d859526..7d428ac060 100644 --- a/playwright/e2e/crypto/user-verification.spec.ts +++ b/playwright/e2e/crypto/user-verification.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/crypto/utils.ts b/playwright/e2e/crypto/utils.ts index 3771fd73a7..f7f00ef387 100644 --- a/playwright/e2e/crypto/utils.ts +++ b/playwright/e2e/crypto/utils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/editing/editing.spec.ts b/playwright/e2e/editing/editing.spec.ts index e22ec250b9..83ae6ba2d9 100644 --- a/playwright/e2e/editing/editing.spec.ts +++ b/playwright/e2e/editing/editing.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/file-upload/image-upload.spec.ts b/playwright/e2e/file-upload/image-upload.spec.ts index 76782e90e8..ad445ab1d9 100644 --- a/playwright/e2e/file-upload/image-upload.spec.ts +++ b/playwright/e2e/file-upload/image-upload.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/forgot-password/forgot-password.spec.ts b/playwright/e2e/forgot-password/forgot-password.spec.ts index b307637acd..cf7a5d738c 100644 --- a/playwright/e2e/forgot-password/forgot-password.spec.ts +++ b/playwright/e2e/forgot-password/forgot-password.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/integration-manager/get-openid-token.spec.ts b/playwright/e2e/integration-manager/get-openid-token.spec.ts index 2bf00817ed..38da5c3de5 100644 --- a/playwright/e2e/integration-manager/get-openid-token.spec.ts +++ b/playwright/e2e/integration-manager/get-openid-token.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/integration-manager/kick.spec.ts b/playwright/e2e/integration-manager/kick.spec.ts index 9d25d04934..b12215fe33 100644 --- a/playwright/e2e/integration-manager/kick.spec.ts +++ b/playwright/e2e/integration-manager/kick.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/integration-manager/read_events.spec.ts b/playwright/e2e/integration-manager/read_events.spec.ts index 8fc81d766f..6375f3c7a2 100644 --- a/playwright/e2e/integration-manager/read_events.spec.ts +++ b/playwright/e2e/integration-manager/read_events.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/integration-manager/send_event.spec.ts b/playwright/e2e/integration-manager/send_event.spec.ts index 2f6e903953..7edcf9812b 100644 --- a/playwright/e2e/integration-manager/send_event.spec.ts +++ b/playwright/e2e/integration-manager/send_event.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/integration-manager/utils.ts b/playwright/e2e/integration-manager/utils.ts index a6a11473e3..07acb3c9c1 100644 --- a/playwright/e2e/integration-manager/utils.ts +++ b/playwright/e2e/integration-manager/utils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/invite/invite-dialog.spec.ts b/playwright/e2e/invite/invite-dialog.spec.ts index eb434eb5b5..73238f8c3d 100644 --- a/playwright/e2e/invite/invite-dialog.spec.ts +++ b/playwright/e2e/invite/invite-dialog.spec.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Suguru Hirahara Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/knock/create-knock-room.spec.ts b/playwright/e2e/knock/create-knock-room.spec.ts index 12a5a666eb..1c729ff610 100644 --- a/playwright/e2e/knock/create-knock-room.spec.ts +++ b/playwright/e2e/knock/create-knock-room.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/knock/knock-into-room.spec.ts b/playwright/e2e/knock/knock-into-room.spec.ts index e04806f84c..a87c33415b 100644 --- a/playwright/e2e/knock/knock-into-room.spec.ts +++ b/playwright/e2e/knock/knock-into-room.spec.ts @@ -4,7 +4,7 @@ Copyright 2023 Mikhail Aheichyk Copyright 2023 Nordeck IT + Consulting GmbH. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/knock/manage-knocks.spec.ts b/playwright/e2e/knock/manage-knocks.spec.ts index b2e1fc9a39..fb7e275194 100644 --- a/playwright/e2e/knock/manage-knocks.spec.ts +++ b/playwright/e2e/knock/manage-knocks.spec.ts @@ -4,7 +4,7 @@ Copyright 2023 Mikhail Aheichyk Copyright 2023 Nordeck IT + Consulting GmbH. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/lazy-loading/lazy-loading.spec.ts b/playwright/e2e/lazy-loading/lazy-loading.spec.ts index d6a2edb3e5..6c9457dfaf 100644 --- a/playwright/e2e/lazy-loading/lazy-loading.spec.ts +++ b/playwright/e2e/lazy-loading/lazy-loading.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/left-panel/left-panel.spec.ts b/playwright/e2e/left-panel/left-panel.spec.ts index 649302d7bd..3850df5cd0 100644 --- a/playwright/e2e/left-panel/left-panel.spec.ts +++ b/playwright/e2e/left-panel/left-panel.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Suguru Hirahara -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/location/location.spec.ts b/playwright/e2e/location/location.spec.ts index 2277c16d4f..6f4db3ae72 100644 --- a/playwright/e2e/location/location.spec.ts +++ b/playwright/e2e/location/location.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/login/consent.spec.ts b/playwright/e2e/login/consent.spec.ts index 8fd5837957..9127ae54bb 100644 --- a/playwright/e2e/login/consent.spec.ts +++ b/playwright/e2e/login/consent.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/login/login.spec.ts b/playwright/e2e/login/login.spec.ts index ed0ad6c1b5..2adf61f2c5 100644 --- a/playwright/e2e/login/login.spec.ts +++ b/playwright/e2e/login/login.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/login/overwrite_login.spec.ts b/playwright/e2e/login/overwrite_login.spec.ts index 6f82c30331..7fa1ccc7ec 100644 --- a/playwright/e2e/login/overwrite_login.spec.ts +++ b/playwright/e2e/login/overwrite_login.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/login/soft_logout.spec.ts b/playwright/e2e/login/soft_logout.spec.ts index 777fbbd0ae..371740c41b 100644 --- a/playwright/e2e/login/soft_logout.spec.ts +++ b/playwright/e2e/login/soft_logout.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/login/utils.ts b/playwright/e2e/login/utils.ts index dffa6ad7be..0a728faecc 100644 --- a/playwright/e2e/login/utils.ts +++ b/playwright/e2e/login/utils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/messages/messages.spec.ts b/playwright/e2e/messages/messages.spec.ts index 1c518199a0..03c93d2620 100644 --- a/playwright/e2e/messages/messages.spec.ts +++ b/playwright/e2e/messages/messages.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/oidc/index.ts b/playwright/e2e/oidc/index.ts index 8ea03ff37a..7e9b03ee6a 100644 --- a/playwright/e2e/oidc/index.ts +++ b/playwright/e2e/oidc/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/oidc/oidc-native.spec.ts b/playwright/e2e/oidc/oidc-native.spec.ts index e5bb7e2ce6..f40c445fab 100644 --- a/playwright/e2e/oidc/oidc-native.spec.ts +++ b/playwright/e2e/oidc/oidc-native.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/one-to-one-chat/one-to-one-chat.spec.ts b/playwright/e2e/one-to-one-chat/one-to-one-chat.spec.ts index 1e59a9a9b2..deefb305db 100644 --- a/playwright/e2e/one-to-one-chat/one-to-one-chat.spec.ts +++ b/playwright/e2e/one-to-one-chat/one-to-one-chat.spec.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Ahmad Kadri Copyright 2023 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/permalinks/permalinks.spec.ts b/playwright/e2e/permalinks/permalinks.spec.ts index 746e15d288..9b448455ec 100644 --- a/playwright/e2e/permalinks/permalinks.spec.ts +++ b/playwright/e2e/permalinks/permalinks.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/pinned-messages/index.ts b/playwright/e2e/pinned-messages/index.ts index 511b39f6df..bb65f31627 100644 --- a/playwright/e2e/pinned-messages/index.ts +++ b/playwright/e2e/pinned-messages/index.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/pinned-messages/pinned-messages.spec.ts b/playwright/e2e/pinned-messages/pinned-messages.spec.ts index 06d6db8058..bb72c02610 100644 --- a/playwright/e2e/pinned-messages/pinned-messages.spec.ts +++ b/playwright/e2e/pinned-messages/pinned-messages.spec.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/polls/pollHistory.spec.ts b/playwright/e2e/polls/pollHistory.spec.ts index b9250bacea..a4d6a8ae0e 100644 --- a/playwright/e2e/polls/pollHistory.spec.ts +++ b/playwright/e2e/polls/pollHistory.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import { test, expect } from "../../element-web-test"; diff --git a/playwright/e2e/polls/polls.spec.ts b/playwright/e2e/polls/polls.spec.ts index e1d3ebe7e3..727c453a31 100644 --- a/playwright/e2e/polls/polls.spec.ts +++ b/playwright/e2e/polls/polls.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/presence/presence.spec.ts b/playwright/e2e/presence/presence.spec.ts index 47b3440e6e..684fd8a5bf 100644 --- a/playwright/e2e/presence/presence.spec.ts +++ b/playwright/e2e/presence/presence.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/editing-messages-in-threads.spec.ts b/playwright/e2e/read-receipts/editing-messages-in-threads.spec.ts index 42191831c8..da27d39a2c 100644 --- a/playwright/e2e/read-receipts/editing-messages-in-threads.spec.ts +++ b/playwright/e2e/read-receipts/editing-messages-in-threads.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/editing-messages-main-timeline.spec.ts b/playwright/e2e/read-receipts/editing-messages-main-timeline.spec.ts index a464822305..bc4eff711b 100644 --- a/playwright/e2e/read-receipts/editing-messages-main-timeline.spec.ts +++ b/playwright/e2e/read-receipts/editing-messages-main-timeline.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/editing-messages-thread-roots.spec.ts b/playwright/e2e/read-receipts/editing-messages-thread-roots.spec.ts index 506ed603bd..a750fd9ba7 100644 --- a/playwright/e2e/read-receipts/editing-messages-thread-roots.spec.ts +++ b/playwright/e2e/read-receipts/editing-messages-thread-roots.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/high-level.spec.ts b/playwright/e2e/read-receipts/high-level.spec.ts index 2f3221d539..afd790fdb8 100644 --- a/playwright/e2e/read-receipts/high-level.spec.ts +++ b/playwright/e2e/read-receipts/high-level.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/index.ts b/playwright/e2e/read-receipts/index.ts index 62fe5c367d..eab261042e 100644 --- a/playwright/e2e/read-receipts/index.ts +++ b/playwright/e2e/read-receipts/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/message-ordering.spec.ts b/playwright/e2e/read-receipts/message-ordering.spec.ts index d7f77fae5f..59a56e6c50 100644 --- a/playwright/e2e/read-receipts/message-ordering.spec.ts +++ b/playwright/e2e/read-receipts/message-ordering.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/missing-referents.spec.ts b/playwright/e2e/read-receipts/missing-referents.spec.ts index a1741851e2..a953aae448 100644 --- a/playwright/e2e/read-receipts/missing-referents.spec.ts +++ b/playwright/e2e/read-receipts/missing-referents.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/new-messages-in-threads.spec.ts b/playwright/e2e/read-receipts/new-messages-in-threads.spec.ts index 5eb3da5e5e..8deef2d2f5 100644 --- a/playwright/e2e/read-receipts/new-messages-in-threads.spec.ts +++ b/playwright/e2e/read-receipts/new-messages-in-threads.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/new-messages-main-timeline.spec.ts b/playwright/e2e/read-receipts/new-messages-main-timeline.spec.ts index fcc8dbd9de..4f94e7b09f 100644 --- a/playwright/e2e/read-receipts/new-messages-main-timeline.spec.ts +++ b/playwright/e2e/read-receipts/new-messages-main-timeline.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/new-messages-thread-roots.spec.ts b/playwright/e2e/read-receipts/new-messages-thread-roots.spec.ts index 41efa78a1f..0e101d311a 100644 --- a/playwright/e2e/read-receipts/new-messages-thread-roots.spec.ts +++ b/playwright/e2e/read-receipts/new-messages-thread-roots.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/notifications.spec.ts b/playwright/e2e/read-receipts/notifications.spec.ts index 46edc9a7a3..93f5515eeb 100644 --- a/playwright/e2e/read-receipts/notifications.spec.ts +++ b/playwright/e2e/read-receipts/notifications.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/reactions-in-threads.spec.ts b/playwright/e2e/read-receipts/reactions-in-threads.spec.ts index 45b5e071ec..eb733d3a12 100644 --- a/playwright/e2e/read-receipts/reactions-in-threads.spec.ts +++ b/playwright/e2e/read-receipts/reactions-in-threads.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/reactions-main-timeline.spec.ts b/playwright/e2e/read-receipts/reactions-main-timeline.spec.ts index 16d5c92eca..d8c1647383 100644 --- a/playwright/e2e/read-receipts/reactions-main-timeline.spec.ts +++ b/playwright/e2e/read-receipts/reactions-main-timeline.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/reactions-thread-roots.spec.ts b/playwright/e2e/read-receipts/reactions-thread-roots.spec.ts index 817597a27e..d83d55e5dc 100644 --- a/playwright/e2e/read-receipts/reactions-thread-roots.spec.ts +++ b/playwright/e2e/read-receipts/reactions-thread-roots.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/read-receipts.spec.ts b/playwright/e2e/read-receipts/read-receipts.spec.ts index 95ddee7c60..5d42513b56 100644 --- a/playwright/e2e/read-receipts/read-receipts.spec.ts +++ b/playwright/e2e/read-receipts/read-receipts.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/redactions-in-threads.spec.ts b/playwright/e2e/read-receipts/redactions-in-threads.spec.ts index 25c19a4f97..dc229d0b1b 100644 --- a/playwright/e2e/read-receipts/redactions-in-threads.spec.ts +++ b/playwright/e2e/read-receipts/redactions-in-threads.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/redactions-main-timeline.spec.ts b/playwright/e2e/read-receipts/redactions-main-timeline.spec.ts index 143d9685d8..356d03938f 100644 --- a/playwright/e2e/read-receipts/redactions-main-timeline.spec.ts +++ b/playwright/e2e/read-receipts/redactions-main-timeline.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/redactions-thread-roots.spec.ts b/playwright/e2e/read-receipts/redactions-thread-roots.spec.ts index 01f296075c..d875b0cecb 100644 --- a/playwright/e2e/read-receipts/redactions-thread-roots.spec.ts +++ b/playwright/e2e/read-receipts/redactions-thread-roots.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/read-receipts/room-list-order.spec.ts b/playwright/e2e/read-receipts/room-list-order.spec.ts index 80dda202a3..e940c45b87 100644 --- a/playwright/e2e/read-receipts/room-list-order.spec.ts +++ b/playwright/e2e/read-receipts/room-list-order.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/register/email.spec.ts b/playwright/e2e/register/email.spec.ts index 0c42b7062d..e5417bfb24 100644 --- a/playwright/e2e/register/email.spec.ts +++ b/playwright/e2e/register/email.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/register/register.spec.ts b/playwright/e2e/register/register.spec.ts index 63fe24dffd..58c6c27dd9 100644 --- a/playwright/e2e/register/register.spec.ts +++ b/playwright/e2e/register/register.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/regression-tests/pills-click-in-app.spec.ts b/playwright/e2e/regression-tests/pills-click-in-app.spec.ts index f19e8c896e..7486af7033 100644 --- a/playwright/e2e/regression-tests/pills-click-in-app.spec.ts +++ b/playwright/e2e/regression-tests/pills-click-in-app.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/release-announcement/index.ts b/playwright/e2e/release-announcement/index.ts index 59db80c3c6..e20dfb85b4 100644 --- a/playwright/e2e/release-announcement/index.ts +++ b/playwright/e2e/release-announcement/index.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/release-announcement/releaseAnnouncement.spec.ts b/playwright/e2e/release-announcement/releaseAnnouncement.spec.ts index e18d72ddba..c2ebd5b853 100644 --- a/playwright/e2e/release-announcement/releaseAnnouncement.spec.ts +++ b/playwright/e2e/release-announcement/releaseAnnouncement.spec.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/right-panel/file-panel.spec.ts b/playwright/e2e/right-panel/file-panel.spec.ts index c5a106d841..579ba05bb7 100644 --- a/playwright/e2e/right-panel/file-panel.spec.ts +++ b/playwright/e2e/right-panel/file-panel.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Suguru Hirahara -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/right-panel/notification-panel.spec.ts b/playwright/e2e/right-panel/notification-panel.spec.ts index 55a6be0450..6786d8bf8d 100644 --- a/playwright/e2e/right-panel/notification-panel.spec.ts +++ b/playwright/e2e/right-panel/notification-panel.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Suguru Hirahara -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/right-panel/right-panel.spec.ts b/playwright/e2e/right-panel/right-panel.spec.ts index 1e9b8ebe1d..2f51f92587 100644 --- a/playwright/e2e/right-panel/right-panel.spec.ts +++ b/playwright/e2e/right-panel/right-panel.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/right-panel/utils.ts b/playwright/e2e/right-panel/utils.ts index b82698b93e..0f57178f50 100644 --- a/playwright/e2e/right-panel/utils.ts +++ b/playwright/e2e/right-panel/utils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/room-directory/room-directory.spec.ts b/playwright/e2e/room-directory/room-directory.spec.ts index b3d2cf0ee9..34004c90d2 100644 --- a/playwright/e2e/room-directory/room-directory.spec.ts +++ b/playwright/e2e/room-directory/room-directory.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/room/room-header.spec.ts b/playwright/e2e/room/room-header.spec.ts index 0cd0736218..7fe0cb3d47 100644 --- a/playwright/e2e/room/room-header.spec.ts +++ b/playwright/e2e/room/room-header.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Suguru Hirahara -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/room/room.spec.ts b/playwright/e2e/room/room.spec.ts index cd8a3ff793..6181333e87 100644 --- a/playwright/e2e/room/room.spec.ts +++ b/playwright/e2e/room/room.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/room_options/marked_unread.spec.ts b/playwright/e2e/room_options/marked_unread.spec.ts index ec5b1d3679..b314152e68 100644 --- a/playwright/e2e/room_options/marked_unread.spec.ts +++ b/playwright/e2e/room_options/marked_unread.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/settings/account-user-settings-tab.spec.ts b/playwright/e2e/settings/account-user-settings-tab.spec.ts index 7390ccfd8d..f037417447 100644 --- a/playwright/e2e/settings/account-user-settings-tab.spec.ts +++ b/playwright/e2e/settings/account-user-settings-tab.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Suguru Hirahara -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts b/playwright/e2e/settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts index c60ecb99d2..b4eeed7728 100644 --- a/playwright/e2e/settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts +++ b/playwright/e2e/settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Suguru Hirahara -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/settings/appearance-user-settings-tab/index.ts b/playwright/e2e/settings/appearance-user-settings-tab/index.ts index d2810b021b..be609edf9f 100644 --- a/playwright/e2e/settings/appearance-user-settings-tab/index.ts +++ b/playwright/e2e/settings/appearance-user-settings-tab/index.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/settings/appearance-user-settings-tab/message-layout-panel.spec.ts b/playwright/e2e/settings/appearance-user-settings-tab/message-layout-panel.spec.ts index 157942a585..ce0d614d90 100644 --- a/playwright/e2e/settings/appearance-user-settings-tab/message-layout-panel.spec.ts +++ b/playwright/e2e/settings/appearance-user-settings-tab/message-layout-panel.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Suguru Hirahara -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/settings/appearance-user-settings-tab/theme-choice-panel.spec.ts b/playwright/e2e/settings/appearance-user-settings-tab/theme-choice-panel.spec.ts index 63b53caa23..1fad16948d 100644 --- a/playwright/e2e/settings/appearance-user-settings-tab/theme-choice-panel.spec.ts +++ b/playwright/e2e/settings/appearance-user-settings-tab/theme-choice-panel.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Suguru Hirahara -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/settings/device-management.spec.ts b/playwright/e2e/settings/device-management.spec.ts index cc7d033d6c..4c1169ad09 100644 --- a/playwright/e2e/settings/device-management.spec.ts +++ b/playwright/e2e/settings/device-management.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/settings/general-room-settings-tab.spec.ts b/playwright/e2e/settings/general-room-settings-tab.spec.ts index 7102a258bc..eec32f7af5 100644 --- a/playwright/e2e/settings/general-room-settings-tab.spec.ts +++ b/playwright/e2e/settings/general-room-settings-tab.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Suguru Hirahara -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/settings/preferences-user-settings-tab.spec.ts b/playwright/e2e/settings/preferences-user-settings-tab.spec.ts index fb2dae4eb0..4b6e3e299d 100644 --- a/playwright/e2e/settings/preferences-user-settings-tab.spec.ts +++ b/playwright/e2e/settings/preferences-user-settings-tab.spec.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. Copyright 2023 Suguru Hirahara -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/settings/roles-permissions-room-settings-tab.spec.ts b/playwright/e2e/settings/roles-permissions-room-settings-tab.spec.ts index b9fc7c10ef..856546e91a 100644 --- a/playwright/e2e/settings/roles-permissions-room-settings-tab.spec.ts +++ b/playwright/e2e/settings/roles-permissions-room-settings-tab.spec.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/settings/security-user-settings-tab.spec.ts b/playwright/e2e/settings/security-user-settings-tab.spec.ts index e7562698c3..b723d1398f 100644 --- a/playwright/e2e/settings/security-user-settings-tab.spec.ts +++ b/playwright/e2e/settings/security-user-settings-tab.spec.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. Copyright 2023 Suguru Hirahara -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/share-dialog/share-dialog.spec.ts b/playwright/e2e/share-dialog/share-dialog.spec.ts index e0993dd1bc..d5424a681d 100644 --- a/playwright/e2e/share-dialog/share-dialog.spec.ts +++ b/playwright/e2e/share-dialog/share-dialog.spec.ts @@ -1,7 +1,7 @@ /* * Copyright 2024 New Vector Ltd. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/sliding-sync/sliding-sync.spec.ts b/playwright/e2e/sliding-sync/sliding-sync.spec.ts index dec588c5b2..35027746b0 100644 --- a/playwright/e2e/sliding-sync/sliding-sync.spec.ts +++ b/playwright/e2e/sliding-sync/sliding-sync.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/spaces/spaces.spec.ts b/playwright/e2e/spaces/spaces.spec.ts index 374fc6b068..48bcc13c53 100644 --- a/playwright/e2e/spaces/spaces.spec.ts +++ b/playwright/e2e/spaces/spaces.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/spaces/threads-activity-centre/index.ts b/playwright/e2e/spaces/threads-activity-centre/index.ts index 68a58d7094..2555e5a835 100644 --- a/playwright/e2e/spaces/threads-activity-centre/index.ts +++ b/playwright/e2e/spaces/threads-activity-centre/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/spaces/threads-activity-centre/threadsActivityCentre.spec.ts b/playwright/e2e/spaces/threads-activity-centre/threadsActivityCentre.spec.ts index 965047e75e..16276c5b9d 100644 --- a/playwright/e2e/spaces/threads-activity-centre/threadsActivityCentre.spec.ts +++ b/playwright/e2e/spaces/threads-activity-centre/threadsActivityCentre.spec.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/spotlight/spotlight.spec.ts b/playwright/e2e/spotlight/spotlight.spec.ts index a6396dcc42..f72d88d8cc 100644 --- a/playwright/e2e/spotlight/spotlight.spec.ts +++ b/playwright/e2e/spotlight/spotlight.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/threads/threads.spec.ts b/playwright/e2e/threads/threads.spec.ts index b6d72da358..edcc0578d8 100644 --- a/playwright/e2e/threads/threads.spec.ts +++ b/playwright/e2e/threads/threads.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import { SettingLevel } from "../../../src/settings/SettingLevel"; diff --git a/playwright/e2e/timeline/timeline.spec.ts b/playwright/e2e/timeline/timeline.spec.ts index 4761876de4..fc8205709c 100644 --- a/playwright/e2e/timeline/timeline.spec.ts +++ b/playwright/e2e/timeline/timeline.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/toasts/analytics-toast.spec.ts b/playwright/e2e/toasts/analytics-toast.spec.ts index b1faf7a779..ff10629872 100644 --- a/playwright/e2e/toasts/analytics-toast.spec.ts +++ b/playwright/e2e/toasts/analytics-toast.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/update/update.spec.ts b/playwright/e2e/update/update.spec.ts index d073a33433..a5febc5597 100644 --- a/playwright/e2e/update/update.spec.ts +++ b/playwright/e2e/update/update.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/user-menu/user-menu.spec.ts b/playwright/e2e/user-menu/user-menu.spec.ts index 268da00f30..1f67aa0be6 100644 --- a/playwright/e2e/user-menu/user-menu.spec.ts +++ b/playwright/e2e/user-menu/user-menu.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/user-onboarding/user-onboarding-new.spec.ts b/playwright/e2e/user-onboarding/user-onboarding-new.spec.ts index b89fa3ac70..3c7ef1f171 100644 --- a/playwright/e2e/user-onboarding/user-onboarding-new.spec.ts +++ b/playwright/e2e/user-onboarding/user-onboarding-new.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/user-onboarding/user-onboarding-old.spec.ts b/playwright/e2e/user-onboarding/user-onboarding-old.spec.ts index e1454311c8..8931672b52 100644 --- a/playwright/e2e/user-onboarding/user-onboarding-old.spec.ts +++ b/playwright/e2e/user-onboarding/user-onboarding-old.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/user-view/user-view.spec.ts b/playwright/e2e/user-view/user-view.spec.ts index ff8e9684e9..f3745e7859 100644 --- a/playwright/e2e/user-view/user-view.spec.ts +++ b/playwright/e2e/user-view/user-view.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/utils.ts b/playwright/e2e/utils.ts index a2bcc0f29a..49e7577bf6 100644 --- a/playwright/e2e/utils.ts +++ b/playwright/e2e/utils.ts @@ -4,7 +4,7 @@ Copyright 2023 Mikhail Aheichyk Copyright 2023 Nordeck IT + Consulting GmbH. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/widgets/events.spec.ts b/playwright/e2e/widgets/events.spec.ts index c2c8c8d304..7553ec4b46 100644 --- a/playwright/e2e/widgets/events.spec.ts +++ b/playwright/e2e/widgets/events.spec.ts @@ -4,7 +4,7 @@ Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2022 Mikhail Aheichyk Copyright 2022 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/widgets/layout.spec.ts b/playwright/e2e/widgets/layout.spec.ts index c80ea44078..61332aecb4 100644 --- a/playwright/e2e/widgets/layout.spec.ts +++ b/playwright/e2e/widgets/layout.spec.ts @@ -4,7 +4,7 @@ Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2022 Oliver Sand Copyright 2022 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/widgets/stickers.spec.ts b/playwright/e2e/widgets/stickers.spec.ts index bd65100baa..54de1b69e2 100644 --- a/playwright/e2e/widgets/stickers.spec.ts +++ b/playwright/e2e/widgets/stickers.spec.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/e2e/widgets/widget-pip-close.spec.ts b/playwright/e2e/widgets/widget-pip-close.spec.ts index 1ee2246a2a..ec3184ed6c 100644 --- a/playwright/e2e/widgets/widget-pip-close.spec.ts +++ b/playwright/e2e/widgets/widget-pip-close.spec.ts @@ -4,7 +4,7 @@ Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2022 Mikhail Aheichyk Copyright 2022 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/element-web-test.ts b/playwright/element-web-test.ts index ed1bdb2b6c..6ccbf6ed6f 100644 --- a/playwright/element-web-test.ts +++ b/playwright/element-web-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/flaky-reporter.ts b/playwright/flaky-reporter.ts index 243699ebab..ad92aca12e 100644 --- a/playwright/flaky-reporter.ts +++ b/playwright/flaky-reporter.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/global.d.ts b/playwright/global.d.ts index 0ff5bc84dc..30875bd577 100644 --- a/playwright/global.d.ts +++ b/playwright/global.d.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/pages/ElementAppPage.ts b/playwright/pages/ElementAppPage.ts index 494d9fc9aa..a02afd27ba 100644 --- a/playwright/pages/ElementAppPage.ts +++ b/playwright/pages/ElementAppPage.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/pages/Spotlight.ts b/playwright/pages/Spotlight.ts index a5f1318de2..5f3c8ef6b9 100644 --- a/playwright/pages/Spotlight.ts +++ b/playwright/pages/Spotlight.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/pages/bot.ts b/playwright/pages/bot.ts index 6b5b2a326c..1d414c7bf6 100644 --- a/playwright/pages/bot.ts +++ b/playwright/pages/bot.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/pages/client.ts b/playwright/pages/client.ts index af34eb030d..c2586f1b5e 100644 --- a/playwright/pages/client.ts +++ b/playwright/pages/client.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/pages/crypto.ts b/playwright/pages/crypto.ts index 138dfa1c00..c31e7fbedb 100644 --- a/playwright/pages/crypto.ts +++ b/playwright/pages/crypto.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/pages/network.ts b/playwright/pages/network.ts index 04a6528fe1..3296fc8779 100644 --- a/playwright/pages/network.ts +++ b/playwright/pages/network.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/pages/settings.ts b/playwright/pages/settings.ts index 6a1caf1559..7dbd183233 100644 --- a/playwright/pages/settings.ts +++ b/playwright/pages/settings.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/pages/timeline.ts b/playwright/pages/timeline.ts index baf8306a7c..ca9965a63e 100644 --- a/playwright/pages/timeline.ts +++ b/playwright/pages/timeline.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/pages/toasts.ts b/playwright/pages/toasts.ts index a90e18251d..4fadfb9a9b 100644 --- a/playwright/pages/toasts.ts +++ b/playwright/pages/toasts.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/plugins/homeserver/dendrite/index.ts b/playwright/plugins/homeserver/dendrite/index.ts index 9bb1674649..acdb45cfff 100644 --- a/playwright/plugins/homeserver/dendrite/index.ts +++ b/playwright/plugins/homeserver/dendrite/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/plugins/homeserver/index.ts b/playwright/plugins/homeserver/index.ts index b6b4b5ee99..c05a5c345e 100644 --- a/playwright/plugins/homeserver/index.ts +++ b/playwright/plugins/homeserver/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/plugins/homeserver/synapse/consentHomeserver.ts b/playwright/plugins/homeserver/synapse/consentHomeserver.ts index 46c4c9f23d..07d1fbbec2 100644 --- a/playwright/plugins/homeserver/synapse/consentHomeserver.ts +++ b/playwright/plugins/homeserver/synapse/consentHomeserver.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/plugins/homeserver/synapse/emailHomeserver.ts b/playwright/plugins/homeserver/synapse/emailHomeserver.ts index 07dfe69264..a8b4cbf026 100644 --- a/playwright/plugins/homeserver/synapse/emailHomeserver.ts +++ b/playwright/plugins/homeserver/synapse/emailHomeserver.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/plugins/homeserver/synapse/legacyOAuthHomeserver.ts b/playwright/plugins/homeserver/synapse/legacyOAuthHomeserver.ts index 3561c1e686..a6b39e0484 100644 --- a/playwright/plugins/homeserver/synapse/legacyOAuthHomeserver.ts +++ b/playwright/plugins/homeserver/synapse/legacyOAuthHomeserver.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/plugins/homeserver/synapse/masHomeserver.ts b/playwright/plugins/homeserver/synapse/masHomeserver.ts index a9670eb60e..446a0577f8 100644 --- a/playwright/plugins/homeserver/synapse/masHomeserver.ts +++ b/playwright/plugins/homeserver/synapse/masHomeserver.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/plugins/oauth_server/index.ts b/playwright/plugins/oauth_server/index.ts index 4f855d3dc4..3f80dc11ca 100644 --- a/playwright/plugins/oauth_server/index.ts +++ b/playwright/plugins/oauth_server/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/plugins/utils/port.ts b/playwright/plugins/utils/port.ts index 8ab5fddd9b..b54e251f2f 100644 --- a/playwright/plugins/utils/port.ts +++ b/playwright/plugins/utils/port.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/plugins/utils/rand.ts b/playwright/plugins/utils/rand.ts index 2560da2dc9..94f723f0a6 100644 --- a/playwright/plugins/utils/rand.ts +++ b/playwright/plugins/utils/rand.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/plugins/webserver/index.ts b/playwright/plugins/webserver/index.ts index 3a3b77b4d5..7645e9cff3 100644 --- a/playwright/plugins/webserver/index.ts +++ b/playwright/plugins/webserver/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/services.ts b/playwright/services.ts index 770b30b8fc..0e95e91fbe 100644 --- a/playwright/services.ts +++ b/playwright/services.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/stale-screenshot-reporter.ts b/playwright/stale-screenshot-reporter.ts index e5fe7edc99..3e38f78ca9 100644 --- a/playwright/stale-screenshot-reporter.ts +++ b/playwright/stale-screenshot-reporter.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/testcontainers/dendrite.ts b/playwright/testcontainers/dendrite.ts index 25535ae475..f066791e2b 100644 --- a/playwright/testcontainers/dendrite.ts +++ b/playwright/testcontainers/dendrite.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/testcontainers/mas.ts b/playwright/testcontainers/mas.ts index 833167b141..79c354da4d 100644 --- a/playwright/testcontainers/mas.ts +++ b/playwright/testcontainers/mas.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/testcontainers/synapse.ts b/playwright/testcontainers/synapse.ts index 45d544ef27..96104d6272 100644 --- a/playwright/testcontainers/synapse.ts +++ b/playwright/testcontainers/synapse.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/playwright/testcontainers/utils.ts b/playwright/testcontainers/utils.ts index 58afcce138..d4fe32b4d8 100644 --- a/playwright/testcontainers/utils.ts +++ b/playwright/testcontainers/utils.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/recorder-worklet-loader.js b/recorder-worklet-loader.js index 41fe8b3b4e..1717166ae0 100644 --- a/recorder-worklet-loader.js +++ b/recorder-worklet-loader.js @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/_animations.pcss b/res/css/_animations.pcss index f78d8143f5..97fd044331 100644 --- a/res/css/_animations.pcss +++ b/res/css/_animations.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/_common.pcss b/res/css/_common.pcss index 74328af39b..ac7c36daa5 100644 --- a/res/css/_common.pcss +++ b/res/css/_common.pcss @@ -5,7 +5,7 @@ Copyright 2017-2019 New Vector Ltd Copyright 2017 Vector Creations Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/_font-sizes.pcss b/res/css/_font-sizes.pcss index eb6ac362a6..528cc3c462 100644 --- a/res/css/_font-sizes.pcss +++ b/res/css/_font-sizes.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/_spacing.pcss b/res/css/_spacing.pcss index 2fbc380e6a..5887204c31 100644 --- a/res/css/_spacing.pcss +++ b/res/css/_spacing.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/beacon/_BeaconListItem.pcss b/res/css/components/views/beacon/_BeaconListItem.pcss index 8090f55ca3..9b3d0dd88f 100644 --- a/res/css/components/views/beacon/_BeaconListItem.pcss +++ b/res/css/components/views/beacon/_BeaconListItem.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/beacon/_BeaconStatus.pcss b/res/css/components/views/beacon/_BeaconStatus.pcss index 7dfd401aa9..52d27bea61 100644 --- a/res/css/components/views/beacon/_BeaconStatus.pcss +++ b/res/css/components/views/beacon/_BeaconStatus.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/beacon/_BeaconStatusTooltip.pcss b/res/css/components/views/beacon/_BeaconStatusTooltip.pcss index e5ee11ee5e..8b5ef93eb1 100644 --- a/res/css/components/views/beacon/_BeaconStatusTooltip.pcss +++ b/res/css/components/views/beacon/_BeaconStatusTooltip.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/beacon/_BeaconViewDialog.pcss b/res/css/components/views/beacon/_BeaconViewDialog.pcss index 71a276a62f..8883aa4f09 100644 --- a/res/css/components/views/beacon/_BeaconViewDialog.pcss +++ b/res/css/components/views/beacon/_BeaconViewDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/beacon/_DialogOwnBeaconStatus.pcss b/res/css/components/views/beacon/_DialogOwnBeaconStatus.pcss index 3e71001ebd..b9b02c284e 100644 --- a/res/css/components/views/beacon/_DialogOwnBeaconStatus.pcss +++ b/res/css/components/views/beacon/_DialogOwnBeaconStatus.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/beacon/_DialogSidebar.pcss b/res/css/components/views/beacon/_DialogSidebar.pcss index 577a8f19c1..7c882c2da8 100644 --- a/res/css/components/views/beacon/_DialogSidebar.pcss +++ b/res/css/components/views/beacon/_DialogSidebar.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/beacon/_LeftPanelLiveShareWarning.pcss b/res/css/components/views/beacon/_LeftPanelLiveShareWarning.pcss index 83fd0f3fe4..4a8fce98f6 100644 --- a/res/css/components/views/beacon/_LeftPanelLiveShareWarning.pcss +++ b/res/css/components/views/beacon/_LeftPanelLiveShareWarning.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/beacon/_LiveTimeRemaining.pcss b/res/css/components/views/beacon/_LiveTimeRemaining.pcss index a91fa29bc1..4fe954e6a4 100644 --- a/res/css/components/views/beacon/_LiveTimeRemaining.pcss +++ b/res/css/components/views/beacon/_LiveTimeRemaining.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/beacon/_OwnBeaconStatus.pcss b/res/css/components/views/beacon/_OwnBeaconStatus.pcss index e94e07c50c..331c404d1d 100644 --- a/res/css/components/views/beacon/_OwnBeaconStatus.pcss +++ b/res/css/components/views/beacon/_OwnBeaconStatus.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/beacon/_ShareLatestLocation.pcss b/res/css/components/views/beacon/_ShareLatestLocation.pcss index aed3bc7cb9..ada69fddc1 100644 --- a/res/css/components/views/beacon/_ShareLatestLocation.pcss +++ b/res/css/components/views/beacon/_ShareLatestLocation.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/beacon/_StyledLiveBeaconIcon.pcss b/res/css/components/views/beacon/_StyledLiveBeaconIcon.pcss index 89c35791ff..9a1d84bf43 100644 --- a/res/css/components/views/beacon/_StyledLiveBeaconIcon.pcss +++ b/res/css/components/views/beacon/_StyledLiveBeaconIcon.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/context_menus/_KebabContextMenu.pcss b/res/css/components/views/context_menus/_KebabContextMenu.pcss index 21136d01e3..18a01f0f6a 100644 --- a/res/css/components/views/context_menus/_KebabContextMenu.pcss +++ b/res/css/components/views/context_menus/_KebabContextMenu.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/dialogs/polls/_PollDetailHeader.pcss b/res/css/components/views/dialogs/polls/_PollDetailHeader.pcss index 0b31b700e2..56c11740ef 100644 --- a/res/css/components/views/dialogs/polls/_PollDetailHeader.pcss +++ b/res/css/components/views/dialogs/polls/_PollDetailHeader.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/dialogs/polls/_PollListItem.pcss b/res/css/components/views/dialogs/polls/_PollListItem.pcss index 568d1ad712..6cb46a21d2 100644 --- a/res/css/components/views/dialogs/polls/_PollListItem.pcss +++ b/res/css/components/views/dialogs/polls/_PollListItem.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/dialogs/polls/_PollListItemEnded.pcss b/res/css/components/views/dialogs/polls/_PollListItemEnded.pcss index 05734c1e77..772b47c9a4 100644 --- a/res/css/components/views/dialogs/polls/_PollListItemEnded.pcss +++ b/res/css/components/views/dialogs/polls/_PollListItemEnded.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/elements/_AppPermission.pcss b/res/css/components/views/elements/_AppPermission.pcss index 0891d25221..fb7f2a7b70 100644 --- a/res/css/components/views/elements/_AppPermission.pcss +++ b/res/css/components/views/elements/_AppPermission.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/elements/_AppWarning.pcss b/res/css/components/views/elements/_AppWarning.pcss index 9cba3020d5..099d35ce4a 100644 --- a/res/css/components/views/elements/_AppWarning.pcss +++ b/res/css/components/views/elements/_AppWarning.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Suguru Hirahara -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/elements/_FilterDropdown.pcss b/res/css/components/views/elements/_FilterDropdown.pcss index ed9f78e1be..a2682213c6 100644 --- a/res/css/components/views/elements/_FilterDropdown.pcss +++ b/res/css/components/views/elements/_FilterDropdown.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/elements/_FilterTabGroup.pcss b/res/css/components/views/elements/_FilterTabGroup.pcss index da469ca65a..e2b2aba265 100644 --- a/res/css/components/views/elements/_FilterTabGroup.pcss +++ b/res/css/components/views/elements/_FilterTabGroup.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/elements/_LearnMore.pcss b/res/css/components/views/elements/_LearnMore.pcss index 388a8254de..e6fb16ec65 100644 --- a/res/css/components/views/elements/_LearnMore.pcss +++ b/res/css/components/views/elements/_LearnMore.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/location/_EnableLiveShare.pcss b/res/css/components/views/location/_EnableLiveShare.pcss index 4799dda0d2..9e56fa8dc5 100644 --- a/res/css/components/views/location/_EnableLiveShare.pcss +++ b/res/css/components/views/location/_EnableLiveShare.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/location/_LiveDurationDropdown.pcss b/res/css/components/views/location/_LiveDurationDropdown.pcss index 0166109943..fa29291877 100644 --- a/res/css/components/views/location/_LiveDurationDropdown.pcss +++ b/res/css/components/views/location/_LiveDurationDropdown.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/location/_LocationShareMenu.pcss b/res/css/components/views/location/_LocationShareMenu.pcss index e1c10401f2..d34578830f 100644 --- a/res/css/components/views/location/_LocationShareMenu.pcss +++ b/res/css/components/views/location/_LocationShareMenu.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/location/_MapError.pcss b/res/css/components/views/location/_MapError.pcss index 176ab9a2a1..61227f75a3 100644 --- a/res/css/components/views/location/_MapError.pcss +++ b/res/css/components/views/location/_MapError.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/location/_MapFallback.pcss b/res/css/components/views/location/_MapFallback.pcss index 68500eb31d..160480ff25 100644 --- a/res/css/components/views/location/_MapFallback.pcss +++ b/res/css/components/views/location/_MapFallback.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/location/_Marker.pcss b/res/css/components/views/location/_Marker.pcss index e8f321f601..5a8fef9199 100644 --- a/res/css/components/views/location/_Marker.pcss +++ b/res/css/components/views/location/_Marker.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/location/_ShareDialogButtons.pcss b/res/css/components/views/location/_ShareDialogButtons.pcss index 947ac1de1c..d0c419accb 100644 --- a/res/css/components/views/location/_ShareDialogButtons.pcss +++ b/res/css/components/views/location/_ShareDialogButtons.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/location/_ShareType.pcss b/res/css/components/views/location/_ShareType.pcss index 304ecd0086..fd99be3317 100644 --- a/res/css/components/views/location/_ShareType.pcss +++ b/res/css/components/views/location/_ShareType.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/location/_ZoomButtons.pcss b/res/css/components/views/location/_ZoomButtons.pcss index 4e9d3b124b..f98c7bf1b0 100644 --- a/res/css/components/views/location/_ZoomButtons.pcss +++ b/res/css/components/views/location/_ZoomButtons.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/messages/_MBeaconBody.pcss b/res/css/components/views/messages/_MBeaconBody.pcss index 18d7c4b2b3..054db68fea 100644 --- a/res/css/components/views/messages/_MBeaconBody.pcss +++ b/res/css/components/views/messages/_MBeaconBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/messages/shared/_MediaProcessingError.pcss b/res/css/components/views/messages/shared/_MediaProcessingError.pcss index de6915f8e2..39bbbde389 100644 --- a/res/css/components/views/messages/shared/_MediaProcessingError.pcss +++ b/res/css/components/views/messages/shared/_MediaProcessingError.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/pips/_WidgetPip.pcss b/res/css/components/views/pips/_WidgetPip.pcss index db38238a7d..e515e3eec0 100644 --- a/res/css/components/views/pips/_WidgetPip.pcss +++ b/res/css/components/views/pips/_WidgetPip.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/polls/_PollOption.pcss b/res/css/components/views/polls/_PollOption.pcss index 4ef6c22522..42ec7c8dac 100644 --- a/res/css/components/views/polls/_PollOption.pcss +++ b/res/css/components/views/polls/_PollOption.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/settings/_AddRemoveThreepids.pcss b/res/css/components/views/settings/_AddRemoveThreepids.pcss index a67a790c03..b16298f94c 100644 --- a/res/css/components/views/settings/_AddRemoveThreepids.pcss +++ b/res/css/components/views/settings/_AddRemoveThreepids.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/settings/devices/_CurrentDeviceSection.pcss b/res/css/components/views/settings/devices/_CurrentDeviceSection.pcss index 30d6c752f7..051b974de2 100644 --- a/res/css/components/views/settings/devices/_CurrentDeviceSection.pcss +++ b/res/css/components/views/settings/devices/_CurrentDeviceSection.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/settings/devices/_DeviceDetailHeading.pcss b/res/css/components/views/settings/devices/_DeviceDetailHeading.pcss index 6ae233ba9c..789efa9e7f 100644 --- a/res/css/components/views/settings/devices/_DeviceDetailHeading.pcss +++ b/res/css/components/views/settings/devices/_DeviceDetailHeading.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/settings/devices/_DeviceDetails.pcss b/res/css/components/views/settings/devices/_DeviceDetails.pcss index a6c567ad2a..d3635710f3 100644 --- a/res/css/components/views/settings/devices/_DeviceDetails.pcss +++ b/res/css/components/views/settings/devices/_DeviceDetails.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/settings/devices/_DeviceExpandDetailsButton.pcss b/res/css/components/views/settings/devices/_DeviceExpandDetailsButton.pcss index 8ad786c4ba..5526f07241 100644 --- a/res/css/components/views/settings/devices/_DeviceExpandDetailsButton.pcss +++ b/res/css/components/views/settings/devices/_DeviceExpandDetailsButton.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/settings/devices/_DeviceSecurityCard.pcss b/res/css/components/views/settings/devices/_DeviceSecurityCard.pcss index ff596309ab..7ac20c076f 100644 --- a/res/css/components/views/settings/devices/_DeviceSecurityCard.pcss +++ b/res/css/components/views/settings/devices/_DeviceSecurityCard.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/settings/devices/_DeviceTile.pcss b/res/css/components/views/settings/devices/_DeviceTile.pcss index 1bc301efad..e4096329d6 100644 --- a/res/css/components/views/settings/devices/_DeviceTile.pcss +++ b/res/css/components/views/settings/devices/_DeviceTile.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/settings/devices/_DeviceTypeIcon.pcss b/res/css/components/views/settings/devices/_DeviceTypeIcon.pcss index 1c0a453f91..0d459b3473 100644 --- a/res/css/components/views/settings/devices/_DeviceTypeIcon.pcss +++ b/res/css/components/views/settings/devices/_DeviceTypeIcon.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/settings/devices/_FilteredDeviceList.pcss b/res/css/components/views/settings/devices/_FilteredDeviceList.pcss index 8508122fcd..aac5986280 100644 --- a/res/css/components/views/settings/devices/_FilteredDeviceList.pcss +++ b/res/css/components/views/settings/devices/_FilteredDeviceList.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/settings/devices/_FilteredDeviceListHeader.pcss b/res/css/components/views/settings/devices/_FilteredDeviceListHeader.pcss index ce0fe84b60..eb50e097c1 100644 --- a/res/css/components/views/settings/devices/_FilteredDeviceListHeader.pcss +++ b/res/css/components/views/settings/devices/_FilteredDeviceListHeader.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/settings/devices/_SecurityRecommendations.pcss b/res/css/components/views/settings/devices/_SecurityRecommendations.pcss index e40e6048d3..20c9343cda 100644 --- a/res/css/components/views/settings/devices/_SecurityRecommendations.pcss +++ b/res/css/components/views/settings/devices/_SecurityRecommendations.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/settings/devices/_SelectableDeviceTile.pcss b/res/css/components/views/settings/devices/_SelectableDeviceTile.pcss index 9a5ad5d2ab..927a53937f 100644 --- a/res/css/components/views/settings/devices/_SelectableDeviceTile.pcss +++ b/res/css/components/views/settings/devices/_SelectableDeviceTile.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/settings/shared/_SettingsSubsection.pcss b/res/css/components/views/settings/shared/_SettingsSubsection.pcss index ec20b86d98..0d03a12b1d 100644 --- a/res/css/components/views/settings/shared/_SettingsSubsection.pcss +++ b/res/css/components/views/settings/shared/_SettingsSubsection.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/settings/shared/_SettingsSubsectionHeading.pcss b/res/css/components/views/settings/shared/_SettingsSubsectionHeading.pcss index fad1a51337..eab923faa2 100644 --- a/res/css/components/views/settings/shared/_SettingsSubsectionHeading.pcss +++ b/res/css/components/views/settings/shared/_SettingsSubsectionHeading.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/spaces/_QuickThemeSwitcher.pcss b/res/css/components/views/spaces/_QuickThemeSwitcher.pcss index 0c7ca8363d..b84bb636e6 100644 --- a/res/css/components/views/spaces/_QuickThemeSwitcher.pcss +++ b/res/css/components/views/spaces/_QuickThemeSwitcher.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/typography/_Caption.pcss b/res/css/components/views/typography/_Caption.pcss index 1aebc077b0..5ddede46b0 100644 --- a/res/css/components/views/typography/_Caption.pcss +++ b/res/css/components/views/typography/_Caption.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/utils/_Box.pcss b/res/css/components/views/utils/_Box.pcss index d6063c21f4..5721e32633 100644 --- a/res/css/components/views/utils/_Box.pcss +++ b/res/css/components/views/utils/_Box.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/components/views/utils/_Flex.pcss b/res/css/components/views/utils/_Flex.pcss index 7d6ad089ac..a7f3688466 100644 --- a/res/css/components/views/utils/_Flex.pcss +++ b/res/css/components/views/utils/_Flex.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/compound/_Icon.pcss b/res/css/compound/_Icon.pcss index bbe2f7c89b..488e919dee 100644 --- a/res/css/compound/_Icon.pcss +++ b/res/css/compound/_Icon.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/compound/_SuccessDialog.pcss b/res/css/compound/_SuccessDialog.pcss index 040c306405..951eceda99 100644 --- a/res/css/compound/_SuccessDialog.pcss +++ b/res/css/compound/_SuccessDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/ErrorView.pcss b/res/css/structures/ErrorView.pcss index 7267425ae8..cf09ac02af 100644 --- a/res/css/structures/ErrorView.pcss +++ b/res/css/structures/ErrorView.pcss @@ -1,7 +1,7 @@ /* Copyright 2020-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_AutoHideScrollbar.pcss b/res/css/structures/_AutoHideScrollbar.pcss index 610e63e537..48d34b8e2f 100644 --- a/res/css/structures/_AutoHideScrollbar.pcss +++ b/res/css/structures/_AutoHideScrollbar.pcss @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_AutocompleteInput.pcss b/res/css/structures/_AutocompleteInput.pcss index 409d67ceea..1505026424 100644 --- a/res/css/structures/_AutocompleteInput.pcss +++ b/res/css/structures/_AutocompleteInput.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_BackdropPanel.pcss b/res/css/structures/_BackdropPanel.pcss index ee2fcf943d..ee12886880 100644 --- a/res/css/structures/_BackdropPanel.pcss +++ b/res/css/structures/_BackdropPanel.pcss @@ -1,7 +1,7 @@ /* Copyright 2021-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_ContextualMenu.pcss b/res/css/structures/_ContextualMenu.pcss index ac4af84939..9e6be31ac0 100644 --- a/res/css/structures/_ContextualMenu.pcss +++ b/res/css/structures/_ContextualMenu.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_ErrorMessage.pcss b/res/css/structures/_ErrorMessage.pcss index 820d8820d9..aaf2dc3b51 100644 --- a/res/css/structures/_ErrorMessage.pcss +++ b/res/css/structures/_ErrorMessage.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_FileDropTarget.pcss b/res/css/structures/_FileDropTarget.pcss index bfaa7259cf..88712e5c1a 100644 --- a/res/css/structures/_FileDropTarget.pcss +++ b/res/css/structures/_FileDropTarget.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_FilePanel.pcss b/res/css/structures/_FilePanel.pcss index ba6a623576..fff90832da 100644 --- a/res/css/structures/_FilePanel.pcss +++ b/res/css/structures/_FilePanel.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_GenericDropdownMenu.pcss b/res/css/structures/_GenericDropdownMenu.pcss index bf0098b4ed..dd9dc0ade1 100644 --- a/res/css/structures/_GenericDropdownMenu.pcss +++ b/res/css/structures/_GenericDropdownMenu.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_HomePage.pcss b/res/css/structures/_HomePage.pcss index 2c7e665e71..4999bae3fe 100644 --- a/res/css/structures/_HomePage.pcss +++ b/res/css/structures/_HomePage.pcss @@ -3,7 +3,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_LargeLoader.pcss b/res/css/structures/_LargeLoader.pcss index c18d67a057..0e861c67ff 100644 --- a/res/css/structures/_LargeLoader.pcss +++ b/res/css/structures/_LargeLoader.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_LeftPanel.pcss b/res/css/structures/_LeftPanel.pcss index d6d23bbcf2..cf2845b173 100644 --- a/res/css/structures/_LeftPanel.pcss +++ b/res/css/structures/_LeftPanel.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_MainSplit.pcss b/res/css/structures/_MainSplit.pcss index f334e34b93..750ab37108 100644 --- a/res/css/structures/_MainSplit.pcss +++ b/res/css/structures/_MainSplit.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_MatrixChat.pcss b/res/css/structures/_MatrixChat.pcss index 39cc8c467d..284c411013 100644 --- a/res/css/structures/_MatrixChat.pcss +++ b/res/css/structures/_MatrixChat.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_MessagePanel.pcss b/res/css/structures/_MessagePanel.pcss index f35abed590..fb2830bce7 100644 --- a/res/css/structures/_MessagePanel.pcss +++ b/res/css/structures/_MessagePanel.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_NonUrgentToastContainer.pcss b/res/css/structures/_NonUrgentToastContainer.pcss index 05c019e0fc..daccc88600 100644 --- a/res/css/structures/_NonUrgentToastContainer.pcss +++ b/res/css/structures/_NonUrgentToastContainer.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_QuickSettingsButton.pcss b/res/css/structures/_QuickSettingsButton.pcss index 234042105a..44e0ded064 100644 --- a/res/css/structures/_QuickSettingsButton.pcss +++ b/res/css/structures/_QuickSettingsButton.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_RightPanel.pcss b/res/css/structures/_RightPanel.pcss index 0f796dbc96..f96f8b7232 100644 --- a/res/css/structures/_RightPanel.pcss +++ b/res/css/structures/_RightPanel.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_RoomSearch.pcss b/res/css/structures/_RoomSearch.pcss index b3e084e296..8c82f73ea4 100644 --- a/res/css/structures/_RoomSearch.pcss +++ b/res/css/structures/_RoomSearch.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_RoomStatusBar.pcss b/res/css/structures/_RoomStatusBar.pcss index 0f30401a6b..19bcc4cb97 100644 --- a/res/css/structures/_RoomStatusBar.pcss +++ b/res/css/structures/_RoomStatusBar.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_RoomView.pcss b/res/css/structures/_RoomView.pcss index 65ea555ce1..478bf548ca 100644 --- a/res/css/structures/_RoomView.pcss +++ b/res/css/structures/_RoomView.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_SearchBox.pcss b/res/css/structures/_SearchBox.pcss index 316294462d..dcb7bbb85e 100644 --- a/res/css/structures/_SearchBox.pcss +++ b/res/css/structures/_SearchBox.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_SpaceHierarchy.pcss b/res/css/structures/_SpaceHierarchy.pcss index ccbeef0734..31dad9413f 100644 --- a/res/css/structures/_SpaceHierarchy.pcss +++ b/res/css/structures/_SpaceHierarchy.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_SpacePanel.pcss b/res/css/structures/_SpacePanel.pcss index 7ea717554b..31dab1ee8d 100644 --- a/res/css/structures/_SpacePanel.pcss +++ b/res/css/structures/_SpacePanel.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_SpaceRoomView.pcss b/res/css/structures/_SpaceRoomView.pcss index d756d51d65..3f981ba2de 100644 --- a/res/css/structures/_SpaceRoomView.pcss +++ b/res/css/structures/_SpaceRoomView.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_SplashPage.pcss b/res/css/structures/_SplashPage.pcss index ec5e5defc8..6f976ba575 100644 --- a/res/css/structures/_SplashPage.pcss +++ b/res/css/structures/_SplashPage.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_TabbedView.pcss b/res/css/structures/_TabbedView.pcss index 687eaf06ff..60fe2f7211 100644 --- a/res/css/structures/_TabbedView.pcss +++ b/res/css/structures/_TabbedView.pcss @@ -4,7 +4,7 @@ Copyright 2021 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_ThreadsActivityCentre.pcss b/res/css/structures/_ThreadsActivityCentre.pcss index c159ee1114..a1472108ac 100644 --- a/res/css/structures/_ThreadsActivityCentre.pcss +++ b/res/css/structures/_ThreadsActivityCentre.pcss @@ -1,9 +1,9 @@ /* -* Copyright 2024 New Vector Ltd. -* Copyright 2024 The Matrix.org Foundation C.I.C. -* -* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only -* Please see LICENSE files in the repository root for full details. + * Copyright 2024 New Vector Ltd. + * Copyright 2024 The Matrix.org Foundation C.I.C. + * + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial + * Please see LICENSE files in the repository root for full details. */ .mx_ThreadsActivityCentre_container { diff --git a/res/css/structures/_ToastContainer.pcss b/res/css/structures/_ToastContainer.pcss index 0a12bec3bf..6022c01c99 100644 --- a/res/css/structures/_ToastContainer.pcss +++ b/res/css/structures/_ToastContainer.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_UploadBar.pcss b/res/css/structures/_UploadBar.pcss index f28b2fe23a..8bc341c057 100644 --- a/res/css/structures/_UploadBar.pcss +++ b/res/css/structures/_UploadBar.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 , 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_UserMenu.pcss b/res/css/structures/_UserMenu.pcss index d24a6e4ac7..50e93d2369 100644 --- a/res/css/structures/_UserMenu.pcss +++ b/res/css/structures/_UserMenu.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/_ViewSource.pcss b/res/css/structures/_ViewSource.pcss index 68bb123cce..b01f8de8bd 100644 --- a/res/css/structures/_ViewSource.pcss +++ b/res/css/structures/_ViewSource.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/auth/_CompleteSecurity.pcss b/res/css/structures/auth/_CompleteSecurity.pcss index cd54079351..f0bca3f39c 100644 --- a/res/css/structures/auth/_CompleteSecurity.pcss +++ b/res/css/structures/auth/_CompleteSecurity.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/auth/_ConfirmSessionLockTheftView.pcss b/res/css/structures/auth/_ConfirmSessionLockTheftView.pcss index f06da60328..5a4a427fdf 100644 --- a/res/css/structures/auth/_ConfirmSessionLockTheftView.pcss +++ b/res/css/structures/auth/_ConfirmSessionLockTheftView.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/auth/_Login.pcss b/res/css/structures/auth/_Login.pcss index 49b2faf19d..a7192b1f0d 100644 --- a/res/css/structures/auth/_Login.pcss +++ b/res/css/structures/auth/_Login.pcss @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/auth/_LoginSplashView.pcss b/res/css/structures/auth/_LoginSplashView.pcss index 413cda35a2..89e94b3891 100644 --- a/res/css/structures/auth/_LoginSplashView.pcss +++ b/res/css/structures/auth/_LoginSplashView.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/auth/_MobileRegistration.pcss b/res/css/structures/auth/_MobileRegistration.pcss index e2ba1cba28..77c4b78e14 100644 --- a/res/css/structures/auth/_MobileRegistration.pcss +++ b/res/css/structures/auth/_MobileRegistration.pcss @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/auth/_Registration.pcss b/res/css/structures/auth/_Registration.pcss index 7742f256a6..409767e1da 100644 --- a/res/css/structures/auth/_Registration.pcss +++ b/res/css/structures/auth/_Registration.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/auth/_SessionLockStolenView.pcss b/res/css/structures/auth/_SessionLockStolenView.pcss index 046e5c6ebd..a17206ecfd 100644 --- a/res/css/structures/auth/_SessionLockStolenView.pcss +++ b/res/css/structures/auth/_SessionLockStolenView.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/structures/auth/_SetupEncryptionBody.pcss b/res/css/structures/auth/_SetupEncryptionBody.pcss index c7836b96d3..ac6384313c 100644 --- a/res/css/structures/auth/_SetupEncryptionBody.pcss +++ b/res/css/structures/auth/_SetupEncryptionBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/audio_messages/_AudioPlayer.pcss b/res/css/views/audio_messages/_AudioPlayer.pcss index 5a81e266df..51e97611f5 100644 --- a/res/css/views/audio_messages/_AudioPlayer.pcss +++ b/res/css/views/audio_messages/_AudioPlayer.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/audio_messages/_PlayPauseButton.pcss b/res/css/views/audio_messages/_PlayPauseButton.pcss index a47399090b..e932c282e3 100644 --- a/res/css/views/audio_messages/_PlayPauseButton.pcss +++ b/res/css/views/audio_messages/_PlayPauseButton.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/audio_messages/_PlaybackContainer.pcss b/res/css/views/audio_messages/_PlaybackContainer.pcss index f1dc1d1ec8..21980b67e6 100644 --- a/res/css/views/audio_messages/_PlaybackContainer.pcss +++ b/res/css/views/audio_messages/_PlaybackContainer.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/audio_messages/_SeekBar.pcss b/res/css/views/audio_messages/_SeekBar.pcss index fb781811f1..980595905c 100644 --- a/res/css/views/audio_messages/_SeekBar.pcss +++ b/res/css/views/audio_messages/_SeekBar.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/audio_messages/_Waveform.pcss b/res/css/views/audio_messages/_Waveform.pcss index 237352f18f..cb548f7694 100644 --- a/res/css/views/audio_messages/_Waveform.pcss +++ b/res/css/views/audio_messages/_Waveform.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/auth/_AuthBody.pcss b/res/css/views/auth/_AuthBody.pcss index 00db5581a0..d86089e331 100644 --- a/res/css/views/auth/_AuthBody.pcss +++ b/res/css/views/auth/_AuthBody.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/auth/_AuthFooter.pcss b/res/css/views/auth/_AuthFooter.pcss index c3fac57074..96b41406ad 100644 --- a/res/css/views/auth/_AuthFooter.pcss +++ b/res/css/views/auth/_AuthFooter.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/auth/_AuthHeader.pcss b/res/css/views/auth/_AuthHeader.pcss index ef7d4dbff7..c9133ed8cf 100644 --- a/res/css/views/auth/_AuthHeader.pcss +++ b/res/css/views/auth/_AuthHeader.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/auth/_AuthHeaderLogo.pcss b/res/css/views/auth/_AuthHeaderLogo.pcss index 8bc9e16640..431d77e163 100644 --- a/res/css/views/auth/_AuthHeaderLogo.pcss +++ b/res/css/views/auth/_AuthHeaderLogo.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/auth/_AuthPage.pcss b/res/css/views/auth/_AuthPage.pcss index e73d679c46..469bca5053 100644 --- a/res/css/views/auth/_AuthPage.pcss +++ b/res/css/views/auth/_AuthPage.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/auth/_CompleteSecurityBody.pcss b/res/css/views/auth/_CompleteSecurityBody.pcss index 189d97dd52..f070129005 100644 --- a/res/css/views/auth/_CompleteSecurityBody.pcss +++ b/res/css/views/auth/_CompleteSecurityBody.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/auth/_CountryDropdown.pcss b/res/css/views/auth/_CountryDropdown.pcss index 51376fb4e3..aed6ab71d8 100644 --- a/res/css/views/auth/_CountryDropdown.pcss +++ b/res/css/views/auth/_CountryDropdown.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/auth/_InteractiveAuthEntryComponents.pcss b/res/css/views/auth/_InteractiveAuthEntryComponents.pcss index fb0bbfad8b..cd458ee57e 100644 --- a/res/css/views/auth/_InteractiveAuthEntryComponents.pcss +++ b/res/css/views/auth/_InteractiveAuthEntryComponents.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/auth/_LanguageSelector.pcss b/res/css/views/auth/_LanguageSelector.pcss index f76f4d6a79..d5002d00b2 100644 --- a/res/css/views/auth/_LanguageSelector.pcss +++ b/res/css/views/auth/_LanguageSelector.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/auth/_LoginWithQR.pcss b/res/css/views/auth/_LoginWithQR.pcss index 9d4744a389..e4e41d496e 100644 --- a/res/css/views/auth/_LoginWithQR.pcss +++ b/res/css/views/auth/_LoginWithQR.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/auth/_PassphraseField.pcss b/res/css/views/auth/_PassphraseField.pcss index 293a81cbe2..146d501516 100644 --- a/res/css/views/auth/_PassphraseField.pcss +++ b/res/css/views/auth/_PassphraseField.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/auth/_Welcome.pcss b/res/css/views/auth/_Welcome.pcss index 71f607a8f9..490b6490f6 100644 --- a/res/css/views/auth/_Welcome.pcss +++ b/res/css/views/auth/_Welcome.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/avatars/_BaseAvatar.pcss b/res/css/views/avatars/_BaseAvatar.pcss index 8487521524..f1d6e0390e 100644 --- a/res/css/views/avatars/_BaseAvatar.pcss +++ b/res/css/views/avatars/_BaseAvatar.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/avatars/_DecoratedRoomAvatar.pcss b/res/css/views/avatars/_DecoratedRoomAvatar.pcss index 72fd1e4e2b..6ac5d68496 100644 --- a/res/css/views/avatars/_DecoratedRoomAvatar.pcss +++ b/res/css/views/avatars/_DecoratedRoomAvatar.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/avatars/_WidgetAvatar.pcss b/res/css/views/avatars/_WidgetAvatar.pcss index 6e2b77d0eb..564c9fefc2 100644 --- a/res/css/views/avatars/_WidgetAvatar.pcss +++ b/res/css/views/avatars/_WidgetAvatar.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/avatars/_WithPresenceIndicator.pcss b/res/css/views/avatars/_WithPresenceIndicator.pcss index 1dd779cc5c..7fe328dc60 100644 --- a/res/css/views/avatars/_WithPresenceIndicator.pcss +++ b/res/css/views/avatars/_WithPresenceIndicator.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/beta/_BetaCard.pcss b/res/css/views/beta/_BetaCard.pcss index 33f566ae69..c5d0253861 100644 --- a/res/css/views/beta/_BetaCard.pcss +++ b/res/css/views/beta/_BetaCard.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/context_menus/_DeviceContextMenu.pcss b/res/css/views/context_menus/_DeviceContextMenu.pcss index a234f8f5df..d70b5eb043 100644 --- a/res/css/views/context_menus/_DeviceContextMenu.pcss +++ b/res/css/views/context_menus/_DeviceContextMenu.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/context_menus/_IconizedContextMenu.pcss b/res/css/views/context_menus/_IconizedContextMenu.pcss index f57237223f..853d97c935 100644 --- a/res/css/views/context_menus/_IconizedContextMenu.pcss +++ b/res/css/views/context_menus/_IconizedContextMenu.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/context_menus/_LegacyCallContextMenu.pcss b/res/css/views/context_menus/_LegacyCallContextMenu.pcss index 6b83f2af95..e6ec26c8fb 100644 --- a/res/css/views/context_menus/_LegacyCallContextMenu.pcss +++ b/res/css/views/context_menus/_LegacyCallContextMenu.pcss @@ -1,7 +1,7 @@ /* Copyright 2020-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/context_menus/_MessageContextMenu.pcss b/res/css/views/context_menus/_MessageContextMenu.pcss index a73dab9982..f365c4a293 100644 --- a/res/css/views/context_menus/_MessageContextMenu.pcss +++ b/res/css/views/context_menus/_MessageContextMenu.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Michael Weimann Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_AddExistingToSpaceDialog.pcss b/res/css/views/dialogs/_AddExistingToSpaceDialog.pcss index 1656ca7e67..7dc25d6811 100644 --- a/res/css/views/dialogs/_AddExistingToSpaceDialog.pcss +++ b/res/css/views/dialogs/_AddExistingToSpaceDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_AnalyticsLearnMoreDialog.pcss b/res/css/views/dialogs/_AnalyticsLearnMoreDialog.pcss index 456b28d88a..ace0060343 100644 --- a/res/css/views/dialogs/_AnalyticsLearnMoreDialog.pcss +++ b/res/css/views/dialogs/_AnalyticsLearnMoreDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_BugReportDialog.pcss b/res/css/views/dialogs/_BugReportDialog.pcss index 7c1750bc40..8f825a9757 100644 --- a/res/css/views/dialogs/_BugReportDialog.pcss +++ b/res/css/views/dialogs/_BugReportDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_BulkRedactDialog.pcss b/res/css/views/dialogs/_BulkRedactDialog.pcss index 5d8e9d6ef4..3e274798eb 100644 --- a/res/css/views/dialogs/_BulkRedactDialog.pcss +++ b/res/css/views/dialogs/_BulkRedactDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Robin Townsend -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_ChangelogDialog.pcss b/res/css/views/dialogs/_ChangelogDialog.pcss index 81c6b2683f..b5c1398062 100644 --- a/res/css/views/dialogs/_ChangelogDialog.pcss +++ b/res/css/views/dialogs/_ChangelogDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016 Aviral Dasgupta -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_CompoundDialog.pcss b/res/css/views/dialogs/_CompoundDialog.pcss index 789184d47c..b43fa1f14e 100644 --- a/res/css/views/dialogs/_CompoundDialog.pcss +++ b/res/css/views/dialogs/_CompoundDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_ConfirmSpaceUserActionDialog.pcss b/res/css/views/dialogs/_ConfirmSpaceUserActionDialog.pcss index 3b91eddc8b..1921ef2457 100644 --- a/res/css/views/dialogs/_ConfirmSpaceUserActionDialog.pcss +++ b/res/css/views/dialogs/_ConfirmSpaceUserActionDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_ConfirmUserActionDialog.pcss b/res/css/views/dialogs/_ConfirmUserActionDialog.pcss index b1810dff09..fbd67f89f4 100644 --- a/res/css/views/dialogs/_ConfirmUserActionDialog.pcss +++ b/res/css/views/dialogs/_ConfirmUserActionDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_CreateRoomDialog.pcss b/res/css/views/dialogs/_CreateRoomDialog.pcss index 86aa5d0f4d..a96b9ba472 100644 --- a/res/css/views/dialogs/_CreateRoomDialog.pcss +++ b/res/css/views/dialogs/_CreateRoomDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_CreateSubspaceDialog.pcss b/res/css/views/dialogs/_CreateSubspaceDialog.pcss index 4977ee883d..300fc4ba2a 100644 --- a/res/css/views/dialogs/_CreateSubspaceDialog.pcss +++ b/res/css/views/dialogs/_CreateSubspaceDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_DeactivateAccountDialog.pcss b/res/css/views/dialogs/_DeactivateAccountDialog.pcss index d1a899158f..f28cbde889 100644 --- a/res/css/views/dialogs/_DeactivateAccountDialog.pcss +++ b/res/css/views/dialogs/_DeactivateAccountDialog.pcss @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_DevtoolsDialog.pcss b/res/css/views/dialogs/_DevtoolsDialog.pcss index 8b86233b96..3a706345c9 100644 --- a/res/css/views/dialogs/_DevtoolsDialog.pcss +++ b/res/css/views/dialogs/_DevtoolsDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_ExportDialog.pcss b/res/css/views/dialogs/_ExportDialog.pcss index 9a5bc58344..46c0c578c6 100644 --- a/res/css/views/dialogs/_ExportDialog.pcss +++ b/res/css/views/dialogs/_ExportDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_FeedbackDialog.pcss b/res/css/views/dialogs/_FeedbackDialog.pcss index dde15b4e0f..a9e7d97920 100644 --- a/res/css/views/dialogs/_FeedbackDialog.pcss +++ b/res/css/views/dialogs/_FeedbackDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_ForwardDialog.pcss b/res/css/views/dialogs/_ForwardDialog.pcss index 40be3f2292..ecbc19d533 100644 --- a/res/css/views/dialogs/_ForwardDialog.pcss +++ b/res/css/views/dialogs/_ForwardDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Robin Townsend -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_GenericFeatureFeedbackDialog.pcss b/res/css/views/dialogs/_GenericFeatureFeedbackDialog.pcss index cc41e69131..655f7f95e8 100644 --- a/res/css/views/dialogs/_GenericFeatureFeedbackDialog.pcss +++ b/res/css/views/dialogs/_GenericFeatureFeedbackDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_IncomingSasDialog.pcss b/res/css/views/dialogs/_IncomingSasDialog.pcss index a455f144f7..0fb0c9a416 100644 --- a/res/css/views/dialogs/_IncomingSasDialog.pcss +++ b/res/css/views/dialogs/_IncomingSasDialog.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_InviteDialog.pcss b/res/css/views/dialogs/_InviteDialog.pcss index e5c00cef18..70a8cdc608 100644 --- a/res/css/views/dialogs/_InviteDialog.pcss +++ b/res/css/views/dialogs/_InviteDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_JoinRuleDropdown.pcss b/res/css/views/dialogs/_JoinRuleDropdown.pcss index 6fd0016885..3f72b09583 100644 --- a/res/css/views/dialogs/_JoinRuleDropdown.pcss +++ b/res/css/views/dialogs/_JoinRuleDropdown.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_LeaveSpaceDialog.pcss b/res/css/views/dialogs/_LeaveSpaceDialog.pcss index b3e3878276..d988466653 100644 --- a/res/css/views/dialogs/_LeaveSpaceDialog.pcss +++ b/res/css/views/dialogs/_LeaveSpaceDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_LocationViewDialog.pcss b/res/css/views/dialogs/_LocationViewDialog.pcss index 118897b923..f25541520b 100644 --- a/res/css/views/dialogs/_LocationViewDialog.pcss +++ b/res/css/views/dialogs/_LocationViewDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_LogoutDialog.pcss b/res/css/views/dialogs/_LogoutDialog.pcss index 0161c00d32..8f11f8c7c2 100644 --- a/res/css/views/dialogs/_LogoutDialog.pcss +++ b/res/css/views/dialogs/_LogoutDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Manan Sadana -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_ManageRestrictedJoinRuleDialog.pcss b/res/css/views/dialogs/_ManageRestrictedJoinRuleDialog.pcss index a6b9fe0304..f77ebf7b6b 100644 --- a/res/css/views/dialogs/_ManageRestrictedJoinRuleDialog.pcss +++ b/res/css/views/dialogs/_ManageRestrictedJoinRuleDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_MessageEditHistoryDialog.pcss b/res/css/views/dialogs/_MessageEditHistoryDialog.pcss index b1c820e16b..8105833830 100644 --- a/res/css/views/dialogs/_MessageEditHistoryDialog.pcss +++ b/res/css/views/dialogs/_MessageEditHistoryDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_ModalWidgetDialog.pcss b/res/css/views/dialogs/_ModalWidgetDialog.pcss index 6b3e475a84..423e4c26ec 100644 --- a/res/css/views/dialogs/_ModalWidgetDialog.pcss +++ b/res/css/views/dialogs/_ModalWidgetDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_PollCreateDialog.pcss b/res/css/views/dialogs/_PollCreateDialog.pcss index b0d89c4676..0689938a24 100644 --- a/res/css/views/dialogs/_PollCreateDialog.pcss +++ b/res/css/views/dialogs/_PollCreateDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_RegistrationEmailPromptDialog.pcss b/res/css/views/dialogs/_RegistrationEmailPromptDialog.pcss index eea733fa69..98bf9e9cd9 100644 --- a/res/css/views/dialogs/_RegistrationEmailPromptDialog.pcss +++ b/res/css/views/dialogs/_RegistrationEmailPromptDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_RoomSettingsDialog.pcss b/res/css/views/dialogs/_RoomSettingsDialog.pcss index 544512d02a..7593a72bd9 100644 --- a/res/css/views/dialogs/_RoomSettingsDialog.pcss +++ b/res/css/views/dialogs/_RoomSettingsDialog.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_RoomSettingsDialogBridges.pcss b/res/css/views/dialogs/_RoomSettingsDialogBridges.pcss index 36fb34e8b1..5633130b64 100644 --- a/res/css/views/dialogs/_RoomSettingsDialogBridges.pcss +++ b/res/css/views/dialogs/_RoomSettingsDialogBridges.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_RoomUpgradeDialog.pcss b/res/css/views/dialogs/_RoomUpgradeDialog.pcss index 82bce661ed..b64c11bcf7 100644 --- a/res/css/views/dialogs/_RoomUpgradeDialog.pcss +++ b/res/css/views/dialogs/_RoomUpgradeDialog.pcss @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_RoomUpgradeWarningDialog.pcss b/res/css/views/dialogs/_RoomUpgradeWarningDialog.pcss index 79b3228cb3..d988c34077 100644 --- a/res/css/views/dialogs/_RoomUpgradeWarningDialog.pcss +++ b/res/css/views/dialogs/_RoomUpgradeWarningDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_ServerOfflineDialog.pcss b/res/css/views/dialogs/_ServerOfflineDialog.pcss index 0dcd0dbfa7..96a4aa9bfb 100644 --- a/res/css/views/dialogs/_ServerOfflineDialog.pcss +++ b/res/css/views/dialogs/_ServerOfflineDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_ServerPickerDialog.pcss b/res/css/views/dialogs/_ServerPickerDialog.pcss index 445d5aad6f..b1346ff73f 100644 --- a/res/css/views/dialogs/_ServerPickerDialog.pcss +++ b/res/css/views/dialogs/_ServerPickerDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_SetEmailDialog.pcss b/res/css/views/dialogs/_SetEmailDialog.pcss index 1be983eaab..718618c923 100644 --- a/res/css/views/dialogs/_SetEmailDialog.pcss +++ b/res/css/views/dialogs/_SetEmailDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_SettingsDialog.pcss b/res/css/views/dialogs/_SettingsDialog.pcss index 05be3b54f4..186a82c0f5 100644 --- a/res/css/views/dialogs/_SettingsDialog.pcss +++ b/res/css/views/dialogs/_SettingsDialog.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_ShareDialog.pcss b/res/css/views/dialogs/_ShareDialog.pcss index cfede43aae..e8ac18f0be 100644 --- a/res/css/views/dialogs/_ShareDialog.pcss +++ b/res/css/views/dialogs/_ShareDialog.pcss @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_SlashCommandHelpDialog.pcss b/res/css/views/dialogs/_SlashCommandHelpDialog.pcss index 8efa89e1cf..445b2d02d5 100644 --- a/res/css/views/dialogs/_SlashCommandHelpDialog.pcss +++ b/res/css/views/dialogs/_SlashCommandHelpDialog.pcss @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_SpacePreferencesDialog.pcss b/res/css/views/dialogs/_SpacePreferencesDialog.pcss index af75b7866f..709c926760 100644 --- a/res/css/views/dialogs/_SpacePreferencesDialog.pcss +++ b/res/css/views/dialogs/_SpacePreferencesDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_SpaceSettingsDialog.pcss b/res/css/views/dialogs/_SpaceSettingsDialog.pcss index d1990b5973..6c48e34b75 100644 --- a/res/css/views/dialogs/_SpaceSettingsDialog.pcss +++ b/res/css/views/dialogs/_SpaceSettingsDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_SpotlightDialog.pcss b/res/css/views/dialogs/_SpotlightDialog.pcss index c4f94bfde9..d00acd6786 100644 --- a/res/css/views/dialogs/_SpotlightDialog.pcss +++ b/res/css/views/dialogs/_SpotlightDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_TermsDialog.pcss b/res/css/views/dialogs/_TermsDialog.pcss index 268432f441..b6a8170f78 100644 --- a/res/css/views/dialogs/_TermsDialog.pcss +++ b/res/css/views/dialogs/_TermsDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_UnpinAllDialog.pcss b/res/css/views/dialogs/_UnpinAllDialog.pcss index 596f992696..e3a4c41382 100644 --- a/res/css/views/dialogs/_UnpinAllDialog.pcss +++ b/res/css/views/dialogs/_UnpinAllDialog.pcss @@ -1,9 +1,9 @@ /* -* Copyright 2024 New Vector Ltd. -* Copyright 2024 The Matrix.org Foundation C.I.C. -* -* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only -* Please see LICENSE files in the repository root for full details. + * Copyright 2024 New Vector Ltd. + * Copyright 2024 The Matrix.org Foundation C.I.C. + * + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial + * Please see LICENSE files in the repository root for full details. */ .mx_UnpinAllDialog { diff --git a/res/css/views/dialogs/_UntrustedDeviceDialog.pcss b/res/css/views/dialogs/_UntrustedDeviceDialog.pcss index af7d4863b6..8fb7431900 100644 --- a/res/css/views/dialogs/_UntrustedDeviceDialog.pcss +++ b/res/css/views/dialogs/_UntrustedDeviceDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_UploadConfirmDialog.pcss b/res/css/views/dialogs/_UploadConfirmDialog.pcss index fc633b9b69..f50bf5e7d5 100644 --- a/res/css/views/dialogs/_UploadConfirmDialog.pcss +++ b/res/css/views/dialogs/_UploadConfirmDialog.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_UserSettingsDialog.pcss b/res/css/views/dialogs/_UserSettingsDialog.pcss index 4f91ea2ddb..7f307afe2f 100644 --- a/res/css/views/dialogs/_UserSettingsDialog.pcss +++ b/res/css/views/dialogs/_UserSettingsDialog.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_VerifyEMailDialog.pcss b/res/css/views/dialogs/_VerifyEMailDialog.pcss index ec2449517b..32fc8189e9 100644 --- a/res/css/views/dialogs/_VerifyEMailDialog.pcss +++ b/res/css/views/dialogs/_VerifyEMailDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/_WidgetCapabilitiesPromptDialog.pcss b/res/css/views/dialogs/_WidgetCapabilitiesPromptDialog.pcss index 3cc1439622..9e1024b9a4 100644 --- a/res/css/views/dialogs/_WidgetCapabilitiesPromptDialog.pcss +++ b/res/css/views/dialogs/_WidgetCapabilitiesPromptDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/security/_AccessSecretStorageDialog.pcss b/res/css/views/dialogs/security/_AccessSecretStorageDialog.pcss index e5abc1e48b..da71b4462b 100644 --- a/res/css/views/dialogs/security/_AccessSecretStorageDialog.pcss +++ b/res/css/views/dialogs/security/_AccessSecretStorageDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018, 2019 , 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/security/_CreateCrossSigningDialog.pcss b/res/css/views/dialogs/security/_CreateCrossSigningDialog.pcss index e543d08920..9cc7e98243 100644 --- a/res/css/views/dialogs/security/_CreateCrossSigningDialog.pcss +++ b/res/css/views/dialogs/security/_CreateCrossSigningDialog.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/security/_CreateKeyBackupDialog.pcss b/res/css/views/dialogs/security/_CreateKeyBackupDialog.pcss index 4460abd35d..9bd8539881 100644 --- a/res/css/views/dialogs/security/_CreateKeyBackupDialog.pcss +++ b/res/css/views/dialogs/security/_CreateKeyBackupDialog.pcss @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/security/_CreateSecretStorageDialog.pcss b/res/css/views/dialogs/security/_CreateSecretStorageDialog.pcss index 02d9890270..e40458f48f 100644 --- a/res/css/views/dialogs/security/_CreateSecretStorageDialog.pcss +++ b/res/css/views/dialogs/security/_CreateSecretStorageDialog.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/security/_KeyBackupFailedDialog.pcss b/res/css/views/dialogs/security/_KeyBackupFailedDialog.pcss index 604e948a34..b02964f64b 100644 --- a/res/css/views/dialogs/security/_KeyBackupFailedDialog.pcss +++ b/res/css/views/dialogs/security/_KeyBackupFailedDialog.pcss @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/dialogs/security/_RestoreKeyBackupDialog.pcss b/res/css/views/dialogs/security/_RestoreKeyBackupDialog.pcss index 832619c588..c8c7c3355d 100644 --- a/res/css/views/dialogs/security/_RestoreKeyBackupDialog.pcss +++ b/res/css/views/dialogs/security/_RestoreKeyBackupDialog.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/directory/_NetworkDropdown.pcss b/res/css/views/directory/_NetworkDropdown.pcss index df82d17555..47180e3c2f 100644 --- a/res/css/views/directory/_NetworkDropdown.pcss +++ b/res/css/views/directory/_NetworkDropdown.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_AccessibleButton.pcss b/res/css/views/elements/_AccessibleButton.pcss index 27219d06b5..c67a7441be 100644 --- a/res/css/views/elements/_AccessibleButton.pcss +++ b/res/css/views/elements/_AccessibleButton.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_CopyableText.pcss b/res/css/views/elements/_CopyableText.pcss index 7c98d5911d..2764fea46c 100644 --- a/res/css/views/elements/_CopyableText.pcss +++ b/res/css/views/elements/_CopyableText.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 Šimon Brandner Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_DesktopCapturerSourcePicker.pcss b/res/css/views/elements/_DesktopCapturerSourcePicker.pcss index 1281c74a4d..136dada34a 100644 --- a/res/css/views/elements/_DesktopCapturerSourcePicker.pcss +++ b/res/css/views/elements/_DesktopCapturerSourcePicker.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_DialPadBackspaceButton.pcss b/res/css/views/elements/_DialPadBackspaceButton.pcss index 020c4ee578..4e305999ff 100644 --- a/res/css/views/elements/_DialPadBackspaceButton.pcss +++ b/res/css/views/elements/_DialPadBackspaceButton.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_Dropdown.pcss b/res/css/views/elements/_Dropdown.pcss index b91af285fd..355d79d569 100644 --- a/res/css/views/elements/_Dropdown.pcss +++ b/res/css/views/elements/_Dropdown.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_EditableItemList.pcss b/res/css/views/elements/_EditableItemList.pcss index 8a85f615d8..82aa492383 100644 --- a/res/css/views/elements/_EditableItemList.pcss +++ b/res/css/views/elements/_EditableItemList.pcss @@ -1,7 +1,7 @@ /* Copyright 2017-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_ErrorBoundary.pcss b/res/css/views/elements/_ErrorBoundary.pcss index 74fe0792e1..0ed1f7b638 100644 --- a/res/css/views/elements/_ErrorBoundary.pcss +++ b/res/css/views/elements/_ErrorBoundary.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_ExternalLink.pcss b/res/css/views/elements/_ExternalLink.pcss index 7a2c51bcae..c103207ab0 100644 --- a/res/css/views/elements/_ExternalLink.pcss +++ b/res/css/views/elements/_ExternalLink.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_FacePile.pcss b/res/css/views/elements/_FacePile.pcss index b063f5900e..1e4acb75e8 100644 --- a/res/css/views/elements/_FacePile.pcss +++ b/res/css/views/elements/_FacePile.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_Field.pcss b/res/css/views/elements/_Field.pcss index 21a0a0208a..90cb176251 100644 --- a/res/css/views/elements/_Field.pcss +++ b/res/css/views/elements/_Field.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_GenericEventListSummary.pcss b/res/css/views/elements/_GenericEventListSummary.pcss index c13f819439..f4aa0e6f0f 100644 --- a/res/css/views/elements/_GenericEventListSummary.pcss +++ b/res/css/views/elements/_GenericEventListSummary.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_ImageView.pcss b/res/css/views/elements/_ImageView.pcss index c1fa737395..d6649d15da 100644 --- a/res/css/views/elements/_ImageView.pcss +++ b/res/css/views/elements/_ImageView.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_InfoTooltip.pcss b/res/css/views/elements/_InfoTooltip.pcss index dcec1410f1..5229b7d9f5 100644 --- a/res/css/views/elements/_InfoTooltip.pcss +++ b/res/css/views/elements/_InfoTooltip.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_InlineSpinner.pcss b/res/css/views/elements/_InlineSpinner.pcss index f22a0552cb..9f7ae2ab52 100644 --- a/res/css/views/elements/_InlineSpinner.pcss +++ b/res/css/views/elements/_InlineSpinner.pcss @@ -1,7 +1,7 @@ /* Copyright 2017-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_InteractiveTooltip.pcss b/res/css/views/elements/_InteractiveTooltip.pcss index 71d9fa4e29..e53282b203 100644 --- a/res/css/views/elements/_InteractiveTooltip.pcss +++ b/res/css/views/elements/_InteractiveTooltip.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_InviteReason.pcss b/res/css/views/elements/_InviteReason.pcss index c57c59ae1f..509e6cfaf9 100644 --- a/res/css/views/elements/_InviteReason.pcss +++ b/res/css/views/elements/_InviteReason.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_LabelledCheckbox.pcss b/res/css/views/elements/_LabelledCheckbox.pcss index 00eb205303..add8f14998 100644 --- a/res/css/views/elements/_LabelledCheckbox.pcss +++ b/res/css/views/elements/_LabelledCheckbox.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_LanguageDropdown.pcss b/res/css/views/elements/_LanguageDropdown.pcss index 2ba7188e96..cd35d6bd5b 100644 --- a/res/css/views/elements/_LanguageDropdown.pcss +++ b/res/css/views/elements/_LanguageDropdown.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_MiniAvatarUploader.pcss b/res/css/views/elements/_MiniAvatarUploader.pcss index d997118e88..6fbe209ac9 100644 --- a/res/css/views/elements/_MiniAvatarUploader.pcss +++ b/res/css/views/elements/_MiniAvatarUploader.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_Pill.pcss b/res/css/views/elements/_Pill.pcss index ccf82ff6d6..055a524c5a 100644 --- a/res/css/views/elements/_Pill.pcss +++ b/res/css/views/elements/_Pill.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_PowerSelector.pcss b/res/css/views/elements/_PowerSelector.pcss index f400e10764..eded483376 100644 --- a/res/css/views/elements/_PowerSelector.pcss +++ b/res/css/views/elements/_PowerSelector.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_ProgressBar.pcss b/res/css/views/elements/_ProgressBar.pcss index 062770f77f..aea2902e12 100644 --- a/res/css/views/elements/_ProgressBar.pcss +++ b/res/css/views/elements/_ProgressBar.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_QRCode.pcss b/res/css/views/elements/_QRCode.pcss index 5958642708..5af0fd5c20 100644 --- a/res/css/views/elements/_QRCode.pcss +++ b/res/css/views/elements/_QRCode.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_ReplyChain.pcss b/res/css/views/elements/_ReplyChain.pcss index 27d8429b6b..2b1e7f9b57 100644 --- a/res/css/views/elements/_ReplyChain.pcss +++ b/res/css/views/elements/_ReplyChain.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_ResizeHandle.pcss b/res/css/views/elements/_ResizeHandle.pcss index a237662f8b..65827d4fb9 100644 --- a/res/css/views/elements/_ResizeHandle.pcss +++ b/res/css/views/elements/_ResizeHandle.pcss @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_RoomAliasField.pcss b/res/css/views/elements/_RoomAliasField.pcss index 71cc32c386..c1fb066ed5 100644 --- a/res/css/views/elements/_RoomAliasField.pcss +++ b/res/css/views/elements/_RoomAliasField.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_SSOButtons.pcss b/res/css/views/elements/_SSOButtons.pcss index b69c5f99d4..7b4d2c973f 100644 --- a/res/css/views/elements/_SSOButtons.pcss +++ b/res/css/views/elements/_SSOButtons.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_SearchWarning.pcss b/res/css/views/elements/_SearchWarning.pcss index 03be05a1b1..52aadb5694 100644 --- a/res/css/views/elements/_SearchWarning.pcss +++ b/res/css/views/elements/_SearchWarning.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_ServerPicker.pcss b/res/css/views/elements/_ServerPicker.pcss index f525f65df1..fa0b46599f 100644 --- a/res/css/views/elements/_ServerPicker.pcss +++ b/res/css/views/elements/_ServerPicker.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_SettingsFlag.pcss b/res/css/views/elements/_SettingsFlag.pcss index 604b42fd9a..dbef5fcb2b 100644 --- a/res/css/views/elements/_SettingsFlag.pcss +++ b/res/css/views/elements/_SettingsFlag.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_Spinner.pcss b/res/css/views/elements/_Spinner.pcss index f5f5d47070..1280cc888c 100644 --- a/res/css/views/elements/_Spinner.pcss +++ b/res/css/views/elements/_Spinner.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_StyledCheckbox.pcss b/res/css/views/elements/_StyledCheckbox.pcss index 986889c6dc..77382d711c 100644 --- a/res/css/views/elements/_StyledCheckbox.pcss +++ b/res/css/views/elements/_StyledCheckbox.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_StyledRadioButton.pcss b/res/css/views/elements/_StyledRadioButton.pcss index 1df1c453a5..13bcf309e7 100644 --- a/res/css/views/elements/_StyledRadioButton.pcss +++ b/res/css/views/elements/_StyledRadioButton.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_SyntaxHighlight.pcss b/res/css/views/elements/_SyntaxHighlight.pcss index 03ad526754..8472d3cf60 100644 --- a/res/css/views/elements/_SyntaxHighlight.pcss +++ b/res/css/views/elements/_SyntaxHighlight.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_TagComposer.pcss b/res/css/views/elements/_TagComposer.pcss index 1e758a2c3c..a85d24d121 100644 --- a/res/css/views/elements/_TagComposer.pcss +++ b/res/css/views/elements/_TagComposer.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_TextWithTooltip.pcss b/res/css/views/elements/_TextWithTooltip.pcss index 9922158235..ce6cb1cc65 100644 --- a/res/css/views/elements/_TextWithTooltip.pcss +++ b/res/css/views/elements/_TextWithTooltip.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ .mx_TextWithTooltip_target { diff --git a/res/css/views/elements/_ToggleSwitch.pcss b/res/css/views/elements/_ToggleSwitch.pcss index 5ff2f46107..6f197e1c77 100644 --- a/res/css/views/elements/_ToggleSwitch.pcss +++ b/res/css/views/elements/_ToggleSwitch.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_UseCaseSelection.pcss b/res/css/views/elements/_UseCaseSelection.pcss index 070a8a243b..ec577a66bd 100644 --- a/res/css/views/elements/_UseCaseSelection.pcss +++ b/res/css/views/elements/_UseCaseSelection.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_UseCaseSelectionButton.pcss b/res/css/views/elements/_UseCaseSelectionButton.pcss index f8c001714f..9393b8a53c 100644 --- a/res/css/views/elements/_UseCaseSelectionButton.pcss +++ b/res/css/views/elements/_UseCaseSelectionButton.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/elements/_Validation.pcss b/res/css/views/elements/_Validation.pcss index 5bf8dfb794..28ea95c0b0 100644 --- a/res/css/views/elements/_Validation.pcss +++ b/res/css/views/elements/_Validation.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/emojipicker/_EmojiPicker.pcss b/res/css/views/emojipicker/_EmojiPicker.pcss index d4ae92172d..c1a666a672 100644 --- a/res/css/views/emojipicker/_EmojiPicker.pcss +++ b/res/css/views/emojipicker/_EmojiPicker.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 Tulir Asokan -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/location/_LocationPicker.pcss b/res/css/views/location/_LocationPicker.pcss index 872017546e..9384411cf8 100644 --- a/res/css/views/location/_LocationPicker.pcss +++ b/res/css/views/location/_LocationPicker.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_CallEvent.pcss b/res/css/views/messages/_CallEvent.pcss index 45be948b41..1797c283ce 100644 --- a/res/css/views/messages/_CallEvent.pcss +++ b/res/css/views/messages/_CallEvent.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_CreateEvent.pcss b/res/css/views/messages/_CreateEvent.pcss index 7f76d07613..0c8a003dcd 100644 --- a/res/css/views/messages/_CreateEvent.pcss +++ b/res/css/views/messages/_CreateEvent.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_DateSeparator.pcss b/res/css/views/messages/_DateSeparator.pcss index aa6f88eaaa..fe13412561 100644 --- a/res/css/views/messages/_DateSeparator.pcss +++ b/res/css/views/messages/_DateSeparator.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_DecryptionFailureBody.pcss b/res/css/views/messages/_DecryptionFailureBody.pcss index 516e7bcc89..4a4940abe3 100644 --- a/res/css/views/messages/_DecryptionFailureBody.pcss +++ b/res/css/views/messages/_DecryptionFailureBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_DisambiguatedProfile.pcss b/res/css/views/messages/_DisambiguatedProfile.pcss index 25a28971d4..c675ba99ed 100644 --- a/res/css/views/messages/_DisambiguatedProfile.pcss +++ b/res/css/views/messages/_DisambiguatedProfile.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_EventTileBubble.pcss b/res/css/views/messages/_EventTileBubble.pcss index 16d48185fb..4b47c8b78e 100644 --- a/res/css/views/messages/_EventTileBubble.pcss +++ b/res/css/views/messages/_EventTileBubble.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_HiddenBody.pcss b/res/css/views/messages/_HiddenBody.pcss index 05c8df1b03..672cd262b2 100644 --- a/res/css/views/messages/_HiddenBody.pcss +++ b/res/css/views/messages/_HiddenBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_JumpToDatePicker.pcss b/res/css/views/messages/_JumpToDatePicker.pcss index b65091aa4c..b4b0244be5 100644 --- a/res/css/views/messages/_JumpToDatePicker.pcss +++ b/res/css/views/messages/_JumpToDatePicker.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_LegacyCallEvent.pcss b/res/css/views/messages/_LegacyCallEvent.pcss index 54ebb95766..c79279b763 100644 --- a/res/css/views/messages/_LegacyCallEvent.pcss +++ b/res/css/views/messages/_LegacyCallEvent.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MEmoteBody.pcss b/res/css/views/messages/_MEmoteBody.pcss index 4d90af68fa..ad7abb0176 100644 --- a/res/css/views/messages/_MEmoteBody.pcss +++ b/res/css/views/messages/_MEmoteBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MFileBody.pcss b/res/css/views/messages/_MFileBody.pcss index 2ce13320ef..c8361f1d29 100644 --- a/res/css/views/messages/_MFileBody.pcss +++ b/res/css/views/messages/_MFileBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MImageBody.pcss b/res/css/views/messages/_MImageBody.pcss index 6a6f31948a..5942bb44b3 100644 --- a/res/css/views/messages/_MImageBody.pcss +++ b/res/css/views/messages/_MImageBody.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MImageReplyBody.pcss b/res/css/views/messages/_MImageReplyBody.pcss index 58621c7876..9576e75fd8 100644 --- a/res/css/views/messages/_MImageReplyBody.pcss +++ b/res/css/views/messages/_MImageReplyBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 Tulir Asokan -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MJitsiWidgetEvent.pcss b/res/css/views/messages/_MJitsiWidgetEvent.pcss index 6375c99d5b..252681f684 100644 --- a/res/css/views/messages/_MJitsiWidgetEvent.pcss +++ b/res/css/views/messages/_MJitsiWidgetEvent.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MLocationBody.pcss b/res/css/views/messages/_MLocationBody.pcss index c388a58ee7..ad597c42aa 100644 --- a/res/css/views/messages/_MLocationBody.pcss +++ b/res/css/views/messages/_MLocationBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MNoticeBody.pcss b/res/css/views/messages/_MNoticeBody.pcss index 92647ba90f..f82c2b8fcc 100644 --- a/res/css/views/messages/_MNoticeBody.pcss +++ b/res/css/views/messages/_MNoticeBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MPollBody.pcss b/res/css/views/messages/_MPollBody.pcss index 7b272d7aa8..33144083ea 100644 --- a/res/css/views/messages/_MPollBody.pcss +++ b/res/css/views/messages/_MPollBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MPollEndBody.pcss b/res/css/views/messages/_MPollEndBody.pcss index 59787818bb..655f444e35 100644 --- a/res/css/views/messages/_MPollEndBody.pcss +++ b/res/css/views/messages/_MPollEndBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MStickerBody.pcss b/res/css/views/messages/_MStickerBody.pcss index 7db1c396c0..d6331fce59 100644 --- a/res/css/views/messages/_MStickerBody.pcss +++ b/res/css/views/messages/_MStickerBody.pcss @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MTextBody.pcss b/res/css/views/messages/_MTextBody.pcss index 9d17fc4f00..973fd3a354 100644 --- a/res/css/views/messages/_MTextBody.pcss +++ b/res/css/views/messages/_MTextBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MVideoBody.pcss b/res/css/views/messages/_MVideoBody.pcss index bc384754ab..0727a8dc44 100644 --- a/res/css/views/messages/_MVideoBody.pcss +++ b/res/css/views/messages/_MVideoBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MediaBody.pcss b/res/css/views/messages/_MediaBody.pcss index aeafe0f0ee..d3eb02ca65 100644 --- a/res/css/views/messages/_MediaBody.pcss +++ b/res/css/views/messages/_MediaBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MessageActionBar.pcss b/res/css/views/messages/_MessageActionBar.pcss index cdfc3693d5..61897bb34f 100644 --- a/res/css/views/messages/_MessageActionBar.pcss +++ b/res/css/views/messages/_MessageActionBar.pcss @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MessageTimestamp.pcss b/res/css/views/messages/_MessageTimestamp.pcss index 2bb90033e3..2cca6a3aaf 100644 --- a/res/css/views/messages/_MessageTimestamp.pcss +++ b/res/css/views/messages/_MessageTimestamp.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_MjolnirBody.pcss b/res/css/views/messages/_MjolnirBody.pcss index 5c9a749c06..825eb36af6 100644 --- a/res/css/views/messages/_MjolnirBody.pcss +++ b/res/css/views/messages/_MjolnirBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_PinnedMessageBadge.pcss b/res/css/views/messages/_PinnedMessageBadge.pcss index 99770a7037..69b592d789 100644 --- a/res/css/views/messages/_PinnedMessageBadge.pcss +++ b/res/css/views/messages/_PinnedMessageBadge.pcss @@ -1,9 +1,8 @@ /* * Copyright 2024 New Vector Ltd. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. - * */ .mx_PinnedMessageBadge { diff --git a/res/css/views/messages/_ReactionsRow.pcss b/res/css/views/messages/_ReactionsRow.pcss index e07b529ef4..e787e50517 100644 --- a/res/css/views/messages/_ReactionsRow.pcss +++ b/res/css/views/messages/_ReactionsRow.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_ReactionsRowButton.pcss b/res/css/views/messages/_ReactionsRowButton.pcss index dd9d7ddb47..917bcfbb84 100644 --- a/res/css/views/messages/_ReactionsRowButton.pcss +++ b/res/css/views/messages/_ReactionsRowButton.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_RedactedBody.pcss b/res/css/views/messages/_RedactedBody.pcss index 7939cc6d09..7b114b1866 100644 --- a/res/css/views/messages/_RedactedBody.pcss +++ b/res/css/views/messages/_RedactedBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_RoomAvatarEvent.pcss b/res/css/views/messages/_RoomAvatarEvent.pcss index f8ff857c82..340c5a87bd 100644 --- a/res/css/views/messages/_RoomAvatarEvent.pcss +++ b/res/css/views/messages/_RoomAvatarEvent.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_TextualEvent.pcss b/res/css/views/messages/_TextualEvent.pcss index 2a27efccc6..bf7061f2ba 100644 --- a/res/css/views/messages/_TextualEvent.pcss +++ b/res/css/views/messages/_TextualEvent.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_TimelineSeparator.pcss b/res/css/views/messages/_TimelineSeparator.pcss index fcf41e9f05..aab77d4e03 100644 --- a/res/css/views/messages/_TimelineSeparator.pcss +++ b/res/css/views/messages/_TimelineSeparator.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_UnknownBody.pcss b/res/css/views/messages/_UnknownBody.pcss index 2b76805215..9583f55734 100644 --- a/res/css/views/messages/_UnknownBody.pcss +++ b/res/css/views/messages/_UnknownBody.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_ViewSourceEvent.pcss b/res/css/views/messages/_ViewSourceEvent.pcss index 6b497719d9..02dce05bbb 100644 --- a/res/css/views/messages/_ViewSourceEvent.pcss +++ b/res/css/views/messages/_ViewSourceEvent.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/messages/_common_CryptoEvent.pcss b/res/css/views/messages/_common_CryptoEvent.pcss index ef0177c2d2..ba18f4f2ae 100644 --- a/res/css/views/messages/_common_CryptoEvent.pcss +++ b/res/css/views/messages/_common_CryptoEvent.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/polls/pollHistory/_PollHistory.pcss b/res/css/views/polls/pollHistory/_PollHistory.pcss index a68e6ffaf9..ee28f01b65 100644 --- a/res/css/views/polls/pollHistory/_PollHistory.pcss +++ b/res/css/views/polls/pollHistory/_PollHistory.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/polls/pollHistory/_PollHistoryList.pcss b/res/css/views/polls/pollHistory/_PollHistoryList.pcss index 4ac97a70d5..95d54192f9 100644 --- a/res/css/views/polls/pollHistory/_PollHistoryList.pcss +++ b/res/css/views/polls/pollHistory/_PollHistoryList.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/right_panel/_BaseCard.pcss b/res/css/views/right_panel/_BaseCard.pcss index d09a280dfa..83e1fc28d4 100644 --- a/res/css/views/right_panel/_BaseCard.pcss +++ b/res/css/views/right_panel/_BaseCard.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/right_panel/_EmptyState.pcss b/res/css/views/right_panel/_EmptyState.pcss index 8ac6ac2555..05bc2882b8 100644 --- a/res/css/views/right_panel/_EmptyState.pcss +++ b/res/css/views/right_panel/_EmptyState.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/right_panel/_EncryptionInfo.pcss b/res/css/views/right_panel/_EncryptionInfo.pcss index e9fbc73681..9abc23ef70 100644 --- a/res/css/views/right_panel/_EncryptionInfo.pcss +++ b/res/css/views/right_panel/_EncryptionInfo.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/right_panel/_ExtensionsCard.pcss b/res/css/views/right_panel/_ExtensionsCard.pcss index ee3984537b..65dc23f667 100644 --- a/res/css/views/right_panel/_ExtensionsCard.pcss +++ b/res/css/views/right_panel/_ExtensionsCard.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/right_panel/_PinnedMessagesCard.pcss b/res/css/views/right_panel/_PinnedMessagesCard.pcss index 731af8b147..6a15653398 100644 --- a/res/css/views/right_panel/_PinnedMessagesCard.pcss +++ b/res/css/views/right_panel/_PinnedMessagesCard.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/right_panel/_RoomSummaryCard.pcss b/res/css/views/right_panel/_RoomSummaryCard.pcss index 8dcbfe2e0a..fb1d6f7d9c 100644 --- a/res/css/views/right_panel/_RoomSummaryCard.pcss +++ b/res/css/views/right_panel/_RoomSummaryCard.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/right_panel/_ThreadPanel.pcss b/res/css/views/right_panel/_ThreadPanel.pcss index 1f9d1e0562..b21eb17f03 100644 --- a/res/css/views/right_panel/_ThreadPanel.pcss +++ b/res/css/views/right_panel/_ThreadPanel.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/right_panel/_TimelineCard.pcss b/res/css/views/right_panel/_TimelineCard.pcss index adaf20f286..cbd373c7f5 100644 --- a/res/css/views/right_panel/_TimelineCard.pcss +++ b/res/css/views/right_panel/_TimelineCard.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/right_panel/_UserInfo.pcss b/res/css/views/right_panel/_UserInfo.pcss index d381d03867..0af5585d1a 100644 --- a/res/css/views/right_panel/_UserInfo.pcss +++ b/res/css/views/right_panel/_UserInfo.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/right_panel/_VerificationPanel.pcss b/res/css/views/right_panel/_VerificationPanel.pcss index f743724b59..40b6de3266 100644 --- a/res/css/views/right_panel/_VerificationPanel.pcss +++ b/res/css/views/right_panel/_VerificationPanel.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/right_panel/_WidgetCard.pcss b/res/css/views/right_panel/_WidgetCard.pcss index 6fcc3e9963..cba86194ce 100644 --- a/res/css/views/right_panel/_WidgetCard.pcss +++ b/res/css/views/right_panel/_WidgetCard.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/room_settings/_AliasSettings.pcss b/res/css/views/room_settings/_AliasSettings.pcss index ca2c24b296..821a654303 100644 --- a/res/css/views/room_settings/_AliasSettings.pcss +++ b/res/css/views/room_settings/_AliasSettings.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_AppsDrawer.pcss b/res/css/views/rooms/_AppsDrawer.pcss index baf967b7de..e8baa1257b 100644 --- a/res/css/views/rooms/_AppsDrawer.pcss +++ b/res/css/views/rooms/_AppsDrawer.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_AuxPanel.pcss b/res/css/views/rooms/_AuxPanel.pcss index f1440fd98a..c2477287b0 100644 --- a/res/css/views/rooms/_AuxPanel.pcss +++ b/res/css/views/rooms/_AuxPanel.pcss @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_BasicMessageComposer.pcss b/res/css/views/rooms/_BasicMessageComposer.pcss index 499ce870ec..5729c22075 100644 --- a/res/css/views/rooms/_BasicMessageComposer.pcss +++ b/res/css/views/rooms/_BasicMessageComposer.pcss @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_DecryptionFailureBar.pcss b/res/css/views/rooms/_DecryptionFailureBar.pcss index d38d753e0b..ca6709b24b 100644 --- a/res/css/views/rooms/_DecryptionFailureBar.pcss +++ b/res/css/views/rooms/_DecryptionFailureBar.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_E2EIcon.pcss b/res/css/views/rooms/_E2EIcon.pcss index 0d9e7cf7e3..f3aaf8a883 100644 --- a/res/css/views/rooms/_E2EIcon.pcss +++ b/res/css/views/rooms/_E2EIcon.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_EditMessageComposer.pcss b/res/css/views/rooms/_EditMessageComposer.pcss index 0fcc8345e6..dbc7aad4fd 100644 --- a/res/css/views/rooms/_EditMessageComposer.pcss +++ b/res/css/views/rooms/_EditMessageComposer.pcss @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_EmojiButton.pcss b/res/css/views/rooms/_EmojiButton.pcss index 8efdbb7dd2..1628104646 100644 --- a/res/css/views/rooms/_EmojiButton.pcss +++ b/res/css/views/rooms/_EmojiButton.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_EntityTile.pcss b/res/css/views/rooms/_EntityTile.pcss index 979d5bb5d4..43723dfb67 100644 --- a/res/css/views/rooms/_EntityTile.pcss +++ b/res/css/views/rooms/_EntityTile.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_EventBubbleTile.pcss b/res/css/views/rooms/_EventBubbleTile.pcss index 7b1af0c771..c25cbfcec4 100644 --- a/res/css/views/rooms/_EventBubbleTile.pcss +++ b/res/css/views/rooms/_EventBubbleTile.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_EventPreview.pcss b/res/css/views/rooms/_EventPreview.pcss index 0639c76d98..6999810abf 100644 --- a/res/css/views/rooms/_EventPreview.pcss +++ b/res/css/views/rooms/_EventPreview.pcss @@ -1,9 +1,9 @@ /* -* Copyright 2024 New Vector Ltd. -* Copyright 2024 The Matrix.org Foundation C.I.C. -* -* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only -* Please see LICENSE files in the repository root for full details. + * Copyright 2024 New Vector Ltd. + * Copyright 2024 The Matrix.org Foundation C.I.C. + * + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial + * Please see LICENSE files in the repository root for full details. */ .mx_EventPreview { diff --git a/res/css/views/rooms/_EventTile.pcss b/res/css/views/rooms/_EventTile.pcss index d405381db1..5b86e3f753 100644 --- a/res/css/views/rooms/_EventTile.pcss +++ b/res/css/views/rooms/_EventTile.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_HistoryTile.pcss b/res/css/views/rooms/_HistoryTile.pcss index 659ccdaef2..09a75c3e4a 100644 --- a/res/css/views/rooms/_HistoryTile.pcss +++ b/res/css/views/rooms/_HistoryTile.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Robin Townsend -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_IRCLayout.pcss b/res/css/views/rooms/_IRCLayout.pcss index ecf1c25716..953a0c941f 100644 --- a/res/css/views/rooms/_IRCLayout.pcss +++ b/res/css/views/rooms/_IRCLayout.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_JumpToBottomButton.pcss b/res/css/views/rooms/_JumpToBottomButton.pcss index 89aac3c58b..912dda0f67 100644 --- a/res/css/views/rooms/_JumpToBottomButton.pcss +++ b/res/css/views/rooms/_JumpToBottomButton.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_LinkPreviewGroup.pcss b/res/css/views/rooms/_LinkPreviewGroup.pcss index 751a394c44..a98966bc20 100644 --- a/res/css/views/rooms/_LinkPreviewGroup.pcss +++ b/res/css/views/rooms/_LinkPreviewGroup.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_LinkPreviewWidget.pcss b/res/css/views/rooms/_LinkPreviewWidget.pcss index 03134ce733..99f4418c31 100644 --- a/res/css/views/rooms/_LinkPreviewWidget.pcss +++ b/res/css/views/rooms/_LinkPreviewWidget.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_LiveContentSummary.pcss b/res/css/views/rooms/_LiveContentSummary.pcss index 03f62d975f..0736f0dd45 100644 --- a/res/css/views/rooms/_LiveContentSummary.pcss +++ b/res/css/views/rooms/_LiveContentSummary.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_MemberList.pcss b/res/css/views/rooms/_MemberList.pcss index e3fe819ab6..93d390f757 100644 --- a/res/css/views/rooms/_MemberList.pcss +++ b/res/css/views/rooms/_MemberList.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_MessageComposer.pcss b/res/css/views/rooms/_MessageComposer.pcss index 73ac15c9c9..8b92b682ec 100644 --- a/res/css/views/rooms/_MessageComposer.pcss +++ b/res/css/views/rooms/_MessageComposer.pcss @@ -2,7 +2,7 @@ Copyright 2018-2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_MessageComposerFormatBar.pcss b/res/css/views/rooms/_MessageComposerFormatBar.pcss index 36bfe477d7..233fda1aff 100644 --- a/res/css/views/rooms/_MessageComposerFormatBar.pcss +++ b/res/css/views/rooms/_MessageComposerFormatBar.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_NewRoomIntro.pcss b/res/css/views/rooms/_NewRoomIntro.pcss index 84fa5aead0..4f704facd9 100644 --- a/res/css/views/rooms/_NewRoomIntro.pcss +++ b/res/css/views/rooms/_NewRoomIntro.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_NotificationBadge.pcss b/res/css/views/rooms/_NotificationBadge.pcss index 1e708fc847..2066b81f0a 100644 --- a/res/css/views/rooms/_NotificationBadge.pcss +++ b/res/css/views/rooms/_NotificationBadge.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_PinnedEventTile.pcss b/res/css/views/rooms/_PinnedEventTile.pcss index f58645ee8f..a39a7603db 100644 --- a/res/css/views/rooms/_PinnedEventTile.pcss +++ b/res/css/views/rooms/_PinnedEventTile.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_PinnedMessageBanner.pcss b/res/css/views/rooms/_PinnedMessageBanner.pcss index 27c7971833..da9b75b17d 100644 --- a/res/css/views/rooms/_PinnedMessageBanner.pcss +++ b/res/css/views/rooms/_PinnedMessageBanner.pcss @@ -1,9 +1,9 @@ /* -* Copyright 2024 New Vector Ltd. -* Copyright 2024 The Matrix.org Foundation C.I.C. -* -* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only -* Please see LICENSE files in the repository root for full details. + * Copyright 2024 New Vector Ltd. + * Copyright 2024 The Matrix.org Foundation C.I.C. + * + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial + * Please see LICENSE files in the repository root for full details. */ .mx_PinnedMessageBanner { diff --git a/res/css/views/rooms/_PresenceLabel.pcss b/res/css/views/rooms/_PresenceLabel.pcss index c9c610c221..7f7f6dbfaf 100644 --- a/res/css/views/rooms/_PresenceLabel.pcss +++ b/res/css/views/rooms/_PresenceLabel.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_ReadReceiptGroup.pcss b/res/css/views/rooms/_ReadReceiptGroup.pcss index 743f38459e..1b6c1b4b44 100644 --- a/res/css/views/rooms/_ReadReceiptGroup.pcss +++ b/res/css/views/rooms/_ReadReceiptGroup.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_ReplyPreview.pcss b/res/css/views/rooms/_ReplyPreview.pcss index 2aef45ef71..9e48e6656b 100644 --- a/res/css/views/rooms/_ReplyPreview.pcss +++ b/res/css/views/rooms/_ReplyPreview.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_ReplyTile.pcss b/res/css/views/rooms/_ReplyTile.pcss index 82cdd59ccf..803e38c67f 100644 --- a/res/css/views/rooms/_ReplyTile.pcss +++ b/res/css/views/rooms/_ReplyTile.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 Tulir Asokan -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_RoomBreadcrumbs.pcss b/res/css/views/rooms/_RoomBreadcrumbs.pcss index 8aadb3061f..7dd150cd27 100644 --- a/res/css/views/rooms/_RoomBreadcrumbs.pcss +++ b/res/css/views/rooms/_RoomBreadcrumbs.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_RoomCallBanner.pcss b/res/css/views/rooms/_RoomCallBanner.pcss index 2596d220f8..0be3abe26f 100644 --- a/res/css/views/rooms/_RoomCallBanner.pcss +++ b/res/css/views/rooms/_RoomCallBanner.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_RoomHeader.pcss b/res/css/views/rooms/_RoomHeader.pcss index a53d06fd1c..32eb055f07 100644 --- a/res/css/views/rooms/_RoomHeader.pcss +++ b/res/css/views/rooms/_RoomHeader.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_RoomInfoLine.pcss b/res/css/views/rooms/_RoomInfoLine.pcss index 0c49b63c63..16127b1c6d 100644 --- a/res/css/views/rooms/_RoomInfoLine.pcss +++ b/res/css/views/rooms/_RoomInfoLine.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_RoomKnocksBar.pcss b/res/css/views/rooms/_RoomKnocksBar.pcss index 4fc1ab9a71..2661bb069a 100644 --- a/res/css/views/rooms/_RoomKnocksBar.pcss +++ b/res/css/views/rooms/_RoomKnocksBar.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Nordeck IT + Consulting GmbH -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_RoomList.pcss b/res/css/views/rooms/_RoomList.pcss index 97b1e76cef..74e2e86ed1 100644 --- a/res/css/views/rooms/_RoomList.pcss +++ b/res/css/views/rooms/_RoomList.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_RoomListHeader.pcss b/res/css/views/rooms/_RoomListHeader.pcss index fa0e0b24eb..396aa4a61a 100644 --- a/res/css/views/rooms/_RoomListHeader.pcss +++ b/res/css/views/rooms/_RoomListHeader.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_RoomPreviewBar.pcss b/res/css/views/rooms/_RoomPreviewBar.pcss index e052838377..39df898c1a 100644 --- a/res/css/views/rooms/_RoomPreviewBar.pcss +++ b/res/css/views/rooms/_RoomPreviewBar.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_RoomPreviewCard.pcss b/res/css/views/rooms/_RoomPreviewCard.pcss index f96b705cc2..bad3a9ad05 100644 --- a/res/css/views/rooms/_RoomPreviewCard.pcss +++ b/res/css/views/rooms/_RoomPreviewCard.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_RoomSearchAuxPanel.pcss b/res/css/views/rooms/_RoomSearchAuxPanel.pcss index 91ed8fe9f1..3e66f7103c 100644 --- a/res/css/views/rooms/_RoomSearchAuxPanel.pcss +++ b/res/css/views/rooms/_RoomSearchAuxPanel.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_RoomSublist.pcss b/res/css/views/rooms/_RoomSublist.pcss index a804134430..f5d0e4ed91 100644 --- a/res/css/views/rooms/_RoomSublist.pcss +++ b/res/css/views/rooms/_RoomSublist.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_RoomTile.pcss b/res/css/views/rooms/_RoomTile.pcss index 53f9c10f1b..798f3bfa46 100644 --- a/res/css/views/rooms/_RoomTile.pcss +++ b/res/css/views/rooms/_RoomTile.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_RoomUpgradeWarningBar.pcss b/res/css/views/rooms/_RoomUpgradeWarningBar.pcss index 240132dd70..d561a9b81b 100644 --- a/res/css/views/rooms/_RoomUpgradeWarningBar.pcss +++ b/res/css/views/rooms/_RoomUpgradeWarningBar.pcss @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_SendMessageComposer.pcss b/res/css/views/rooms/_SendMessageComposer.pcss index b88bb39471..a0fc1e8132 100644 --- a/res/css/views/rooms/_SendMessageComposer.pcss +++ b/res/css/views/rooms/_SendMessageComposer.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_ThirdPartyMemberInfo.pcss b/res/css/views/rooms/_ThirdPartyMemberInfo.pcss index c645a0ba38..96aadc895e 100644 --- a/res/css/views/rooms/_ThirdPartyMemberInfo.pcss +++ b/res/css/views/rooms/_ThirdPartyMemberInfo.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_ThreadSummary.pcss b/res/css/views/rooms/_ThreadSummary.pcss index 118ee51283..0e30cd3fed 100644 --- a/res/css/views/rooms/_ThreadSummary.pcss +++ b/res/css/views/rooms/_ThreadSummary.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_TopUnreadMessagesBar.pcss b/res/css/views/rooms/_TopUnreadMessagesBar.pcss index dafe192e76..d80bc12916 100644 --- a/res/css/views/rooms/_TopUnreadMessagesBar.pcss +++ b/res/css/views/rooms/_TopUnreadMessagesBar.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_UserIdentityWarning.pcss b/res/css/views/rooms/_UserIdentityWarning.pcss index b294b3fc8c..e5d14eb472 100644 --- a/res/css/views/rooms/_UserIdentityWarning.pcss +++ b/res/css/views/rooms/_UserIdentityWarning.pcss @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_VoiceRecordComposerTile.pcss b/res/css/views/rooms/_VoiceRecordComposerTile.pcss index 9e51dbea6c..8dabc06fe5 100644 --- a/res/css/views/rooms/_VoiceRecordComposerTile.pcss +++ b/res/css/views/rooms/_VoiceRecordComposerTile.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/_WhoIsTypingTile.pcss b/res/css/views/rooms/_WhoIsTypingTile.pcss index a126a8baf2..eb604155c5 100644 --- a/res/css/views/rooms/_WhoIsTypingTile.pcss +++ b/res/css/views/rooms/_WhoIsTypingTile.pcss @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/wysiwyg_composer/_EditWysiwygComposer.pcss b/res/css/views/rooms/wysiwyg_composer/_EditWysiwygComposer.pcss index 4f40280c24..a27f7b9b77 100644 --- a/res/css/views/rooms/wysiwyg_composer/_EditWysiwygComposer.pcss +++ b/res/css/views/rooms/wysiwyg_composer/_EditWysiwygComposer.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/wysiwyg_composer/_SendWysiwygComposer.pcss b/res/css/views/rooms/wysiwyg_composer/_SendWysiwygComposer.pcss index b629088dac..5ad59dd8e5 100644 --- a/res/css/views/rooms/wysiwyg_composer/_SendWysiwygComposer.pcss +++ b/res/css/views/rooms/wysiwyg_composer/_SendWysiwygComposer.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/wysiwyg_composer/components/_Editor.pcss b/res/css/views/rooms/wysiwyg_composer/components/_Editor.pcss index 34c2a4d626..4de58b123b 100644 --- a/res/css/views/rooms/wysiwyg_composer/components/_Editor.pcss +++ b/res/css/views/rooms/wysiwyg_composer/components/_Editor.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/wysiwyg_composer/components/_FormattingButtons.pcss b/res/css/views/rooms/wysiwyg_composer/components/_FormattingButtons.pcss index 4204753166..f43f313b08 100644 --- a/res/css/views/rooms/wysiwyg_composer/components/_FormattingButtons.pcss +++ b/res/css/views/rooms/wysiwyg_composer/components/_FormattingButtons.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/rooms/wysiwyg_composer/components/_LinkModal.pcss b/res/css/views/rooms/wysiwyg_composer/components/_LinkModal.pcss index 77848421fd..346e05efc3 100644 --- a/res/css/views/rooms/wysiwyg_composer/components/_LinkModal.pcss +++ b/res/css/views/rooms/wysiwyg_composer/components/_LinkModal.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_AvatarSetting.pcss b/res/css/views/settings/_AvatarSetting.pcss index fcab16a98e..b928522820 100644 --- a/res/css/views/settings/_AvatarSetting.pcss +++ b/res/css/views/settings/_AvatarSetting.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_CrossSigningPanel.pcss b/res/css/views/settings/_CrossSigningPanel.pcss index 7a68fcddf5..e9b2aa0c29 100644 --- a/res/css/views/settings/_CrossSigningPanel.pcss +++ b/res/css/views/settings/_CrossSigningPanel.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_CryptographyPanel.pcss b/res/css/views/settings/_CryptographyPanel.pcss index dfef7285d2..9c174ceaab 100644 --- a/res/css/views/settings/_CryptographyPanel.pcss +++ b/res/css/views/settings/_CryptographyPanel.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_FontScalingPanel.pcss b/res/css/views/settings/_FontScalingPanel.pcss index e66c220533..56e90bd9b8 100644 --- a/res/css/views/settings/_FontScalingPanel.pcss +++ b/res/css/views/settings/_FontScalingPanel.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_ImageSizePanel.pcss b/res/css/views/settings/_ImageSizePanel.pcss index 8456d16d9c..174f5a262a 100644 --- a/res/css/views/settings/_ImageSizePanel.pcss +++ b/res/css/views/settings/_ImageSizePanel.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_IntegrationManager.pcss b/res/css/views/settings/_IntegrationManager.pcss index 2bc8e9440e..15b7ef4b0d 100644 --- a/res/css/views/settings/_IntegrationManager.pcss +++ b/res/css/views/settings/_IntegrationManager.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_JoinRuleSettings.pcss b/res/css/views/settings/_JoinRuleSettings.pcss index 965db9fb45..485434f0da 100644 --- a/res/css/views/settings/_JoinRuleSettings.pcss +++ b/res/css/views/settings/_JoinRuleSettings.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_KeyboardShortcut.pcss b/res/css/views/settings/_KeyboardShortcut.pcss index 826935eb1a..b35629c98f 100644 --- a/res/css/views/settings/_KeyboardShortcut.pcss +++ b/res/css/views/settings/_KeyboardShortcut.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_LayoutSwitcher.pcss b/res/css/views/settings/_LayoutSwitcher.pcss index 07da23389b..8d50fa25d3 100644 --- a/res/css/views/settings/_LayoutSwitcher.pcss +++ b/res/css/views/settings/_LayoutSwitcher.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_NotificationPusherSettings.pcss b/res/css/views/settings/_NotificationPusherSettings.pcss index 78c2e9f179..a8fc8f7e7d 100644 --- a/res/css/views/settings/_NotificationPusherSettings.pcss +++ b/res/css/views/settings/_NotificationPusherSettings.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_NotificationSettings2.pcss b/res/css/views/settings/_NotificationSettings2.pcss index a56326ac32..d579c22b95 100644 --- a/res/css/views/settings/_NotificationSettings2.pcss +++ b/res/css/views/settings/_NotificationSettings2.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_Notifications.pcss b/res/css/views/settings/_Notifications.pcss index a7f38507cc..e4e450fd58 100644 --- a/res/css/views/settings/_Notifications.pcss +++ b/res/css/views/settings/_Notifications.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_PhoneNumbers.pcss b/res/css/views/settings/_PhoneNumbers.pcss index e6de1320f4..9a5f1e4949 100644 --- a/res/css/views/settings/_PhoneNumbers.pcss +++ b/res/css/views/settings/_PhoneNumbers.pcss @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_PowerLevelSelector.pcss b/res/css/views/settings/_PowerLevelSelector.pcss index 6d5cf0a78f..64c862742b 100644 --- a/res/css/views/settings/_PowerLevelSelector.pcss +++ b/res/css/views/settings/_PowerLevelSelector.pcss @@ -1,9 +1,9 @@ /* -* Copyright 2024 New Vector Ltd. -* Copyright 2024 The Matrix.org Foundation C.I.C. -* -* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only -* Please see LICENSE files in the repository root for full details. + * Copyright 2024 New Vector Ltd. + * Copyright 2024 The Matrix.org Foundation C.I.C. + * + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial + * Please see LICENSE files in the repository root for full details. */ .mx_PowerLevelSelector_Button { diff --git a/res/css/views/settings/_RoomProfileSettings.pcss b/res/css/views/settings/_RoomProfileSettings.pcss index 14251ff291..5b196a44b4 100644 --- a/res/css/views/settings/_RoomProfileSettings.pcss +++ b/res/css/views/settings/_RoomProfileSettings.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 , 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_SecureBackupPanel.pcss b/res/css/views/settings/_SecureBackupPanel.pcss index ed77fcad4f..6e571af339 100644 --- a/res/css/views/settings/_SecureBackupPanel.pcss +++ b/res/css/views/settings/_SecureBackupPanel.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_SetIdServer.pcss b/res/css/views/settings/_SetIdServer.pcss index da752b17f3..377292451f 100644 --- a/res/css/views/settings/_SetIdServer.pcss +++ b/res/css/views/settings/_SetIdServer.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_SetIntegrationManager.pcss b/res/css/views/settings/_SetIntegrationManager.pcss index acdff69026..a046ce0fff 100644 --- a/res/css/views/settings/_SetIntegrationManager.pcss +++ b/res/css/views/settings/_SetIntegrationManager.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_SettingsFieldset.pcss b/res/css/views/settings/_SettingsFieldset.pcss index d45671f37f..2b013da4b1 100644 --- a/res/css/views/settings/_SettingsFieldset.pcss +++ b/res/css/views/settings/_SettingsFieldset.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_SpellCheckLanguages.pcss b/res/css/views/settings/_SpellCheckLanguages.pcss index afd506d49d..42b247b747 100644 --- a/res/css/views/settings/_SpellCheckLanguages.pcss +++ b/res/css/views/settings/_SpellCheckLanguages.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_ThemeChoicePanel.pcss b/res/css/views/settings/_ThemeChoicePanel.pcss index 33a4b0d17f..e61671f4f5 100644 --- a/res/css/views/settings/_ThemeChoicePanel.pcss +++ b/res/css/views/settings/_ThemeChoicePanel.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_UpdateCheckButton.pcss b/res/css/views/settings/_UpdateCheckButton.pcss index 6b81efec8a..e0cab2ad5a 100644 --- a/res/css/views/settings/_UpdateCheckButton.pcss +++ b/res/css/views/settings/_UpdateCheckButton.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/_UserProfileSettings.pcss b/res/css/views/settings/_UserProfileSettings.pcss index a46972e582..9f05851e29 100644 --- a/res/css/views/settings/_UserProfileSettings.pcss +++ b/res/css/views/settings/_UserProfileSettings.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 , 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/_SettingsBanner.pcss b/res/css/views/settings/tabs/_SettingsBanner.pcss index d1adf2889f..70a19da146 100644 --- a/res/css/views/settings/tabs/_SettingsBanner.pcss +++ b/res/css/views/settings/tabs/_SettingsBanner.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/_SettingsIndent.pcss b/res/css/views/settings/tabs/_SettingsIndent.pcss index 65dd95bee8..96e8245a86 100644 --- a/res/css/views/settings/tabs/_SettingsIndent.pcss +++ b/res/css/views/settings/tabs/_SettingsIndent.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/_SettingsSection.pcss b/res/css/views/settings/tabs/_SettingsSection.pcss index a00350c082..1dd1166138 100644 --- a/res/css/views/settings/tabs/_SettingsSection.pcss +++ b/res/css/views/settings/tabs/_SettingsSection.pcss @@ -1,7 +1,7 @@ /* Copyright 2023, 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/_SettingsTab.pcss b/res/css/views/settings/tabs/_SettingsTab.pcss index 43a5a8fd10..6055c289fc 100644 --- a/res/css/views/settings/tabs/_SettingsTab.pcss +++ b/res/css/views/settings/tabs/_SettingsTab.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/room/_NotificationSettingsTab.pcss b/res/css/views/settings/tabs/room/_NotificationSettingsTab.pcss index a36cc92fba..38609c7fd4 100644 --- a/res/css/views/settings/tabs/room/_NotificationSettingsTab.pcss +++ b/res/css/views/settings/tabs/room/_NotificationSettingsTab.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/room/_PeopleRoomSettingsTab.pcss b/res/css/views/settings/tabs/room/_PeopleRoomSettingsTab.pcss index 5a2700e71a..5d649fe2d4 100644 --- a/res/css/views/settings/tabs/room/_PeopleRoomSettingsTab.pcss +++ b/res/css/views/settings/tabs/room/_PeopleRoomSettingsTab.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Nordeck IT + Consulting GmbH -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/room/_RolesRoomSettingsTab.pcss b/res/css/views/settings/tabs/room/_RolesRoomSettingsTab.pcss index 018beed351..390efb48cd 100644 --- a/res/css/views/settings/tabs/room/_RolesRoomSettingsTab.pcss +++ b/res/css/views/settings/tabs/room/_RolesRoomSettingsTab.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/room/_SecurityRoomSettingsTab.pcss b/res/css/views/settings/tabs/room/_SecurityRoomSettingsTab.pcss index dfd3817be1..5ae0d5854c 100644 --- a/res/css/views/settings/tabs/room/_SecurityRoomSettingsTab.pcss +++ b/res/css/views/settings/tabs/room/_SecurityRoomSettingsTab.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/user/_AppearanceUserSettingsTab.pcss b/res/css/views/settings/tabs/user/_AppearanceUserSettingsTab.pcss index 614bfa0098..dd899389ef 100644 --- a/res/css/views/settings/tabs/user/_AppearanceUserSettingsTab.pcss +++ b/res/css/views/settings/tabs/user/_AppearanceUserSettingsTab.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/user/_HelpUserSettingsTab.pcss b/res/css/views/settings/tabs/user/_HelpUserSettingsTab.pcss index e3b4c1cf61..972d0d7ede 100644 --- a/res/css/views/settings/tabs/user/_HelpUserSettingsTab.pcss +++ b/res/css/views/settings/tabs/user/_HelpUserSettingsTab.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 Šimon Brandner Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/user/_KeyboardUserSettingsTab.pcss b/res/css/views/settings/tabs/user/_KeyboardUserSettingsTab.pcss index b9eda93b2e..b3251f3e3c 100644 --- a/res/css/views/settings/tabs/user/_KeyboardUserSettingsTab.pcss +++ b/res/css/views/settings/tabs/user/_KeyboardUserSettingsTab.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/user/_MjolnirUserSettingsTab.pcss b/res/css/views/settings/tabs/user/_MjolnirUserSettingsTab.pcss index 83e2b45c7f..3caec3d08f 100644 --- a/res/css/views/settings/tabs/user/_MjolnirUserSettingsTab.pcss +++ b/res/css/views/settings/tabs/user/_MjolnirUserSettingsTab.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/user/_PreferencesUserSettingsTab.pcss b/res/css/views/settings/tabs/user/_PreferencesUserSettingsTab.pcss index 3dadcb5625..f5b580a14e 100644 --- a/res/css/views/settings/tabs/user/_PreferencesUserSettingsTab.pcss +++ b/res/css/views/settings/tabs/user/_PreferencesUserSettingsTab.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/user/_SecurityUserSettingsTab.pcss b/res/css/views/settings/tabs/user/_SecurityUserSettingsTab.pcss index 55052144cf..cb5d1fbc94 100644 --- a/res/css/views/settings/tabs/user/_SecurityUserSettingsTab.pcss +++ b/res/css/views/settings/tabs/user/_SecurityUserSettingsTab.pcss @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/settings/tabs/user/_SidebarUserSettingsTab.pcss b/res/css/views/settings/tabs/user/_SidebarUserSettingsTab.pcss index 445af10522..cb360cc898 100644 --- a/res/css/views/settings/tabs/user/_SidebarUserSettingsTab.pcss +++ b/res/css/views/settings/tabs/user/_SidebarUserSettingsTab.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/spaces/_SpaceBasicSettings.pcss b/res/css/views/spaces/_SpaceBasicSettings.pcss index 786b041e50..76c58e1f5c 100644 --- a/res/css/views/spaces/_SpaceBasicSettings.pcss +++ b/res/css/views/spaces/_SpaceBasicSettings.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/spaces/_SpaceChildrenPicker.pcss b/res/css/views/spaces/_SpaceChildrenPicker.pcss index 2deeadf5f2..abc51e5ddd 100644 --- a/res/css/views/spaces/_SpaceChildrenPicker.pcss +++ b/res/css/views/spaces/_SpaceChildrenPicker.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/spaces/_SpaceCreateMenu.pcss b/res/css/views/spaces/_SpaceCreateMenu.pcss index 7ab0fdd234..ca2a2c8fc1 100644 --- a/res/css/views/spaces/_SpaceCreateMenu.pcss +++ b/res/css/views/spaces/_SpaceCreateMenu.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/spaces/_SpacePublicShare.pcss b/res/css/views/spaces/_SpacePublicShare.pcss index ddda97b493..b55c0e685c 100644 --- a/res/css/views/spaces/_SpacePublicShare.pcss +++ b/res/css/views/spaces/_SpacePublicShare.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/terms/_InlineTermsAgreement.pcss b/res/css/views/terms/_InlineTermsAgreement.pcss index bd738ca7c5..d289501091 100644 --- a/res/css/views/terms/_InlineTermsAgreement.pcss +++ b/res/css/views/terms/_InlineTermsAgreement.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/toasts/_AnalyticsToast.pcss b/res/css/views/toasts/_AnalyticsToast.pcss index 2ffaf257a1..4b6225f06e 100644 --- a/res/css/views/toasts/_AnalyticsToast.pcss +++ b/res/css/views/toasts/_AnalyticsToast.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/toasts/_IncomingCallToast.pcss b/res/css/views/toasts/_IncomingCallToast.pcss index 3f11cf12f4..2aafff6b04 100644 --- a/res/css/views/toasts/_IncomingCallToast.pcss +++ b/res/css/views/toasts/_IncomingCallToast.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/toasts/_IncomingLegacyCallToast.pcss b/res/css/views/toasts/_IncomingLegacyCallToast.pcss index 8fe94e9ba3..257cfbe370 100644 --- a/res/css/views/toasts/_IncomingLegacyCallToast.pcss +++ b/res/css/views/toasts/_IncomingLegacyCallToast.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/toasts/_NonUrgentEchoFailureToast.pcss b/res/css/views/toasts/_NonUrgentEchoFailureToast.pcss index e1fc0b80c4..a404430204 100644 --- a/res/css/views/toasts/_NonUrgentEchoFailureToast.pcss +++ b/res/css/views/toasts/_NonUrgentEchoFailureToast.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/typography/_Heading.pcss b/res/css/views/typography/_Heading.pcss index 6082c60614..a6204e869d 100644 --- a/res/css/views/typography/_Heading.pcss +++ b/res/css/views/typography/_Heading.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 x The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/user-onboarding/_UserOnboardingButton.pcss b/res/css/views/user-onboarding/_UserOnboardingButton.pcss index 01e27aa143..75b1b1eb68 100644 --- a/res/css/views/user-onboarding/_UserOnboardingButton.pcss +++ b/res/css/views/user-onboarding/_UserOnboardingButton.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/user-onboarding/_UserOnboardingHeader.pcss b/res/css/views/user-onboarding/_UserOnboardingHeader.pcss index 5a659ec173..6402e8c859 100644 --- a/res/css/views/user-onboarding/_UserOnboardingHeader.pcss +++ b/res/css/views/user-onboarding/_UserOnboardingHeader.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/user-onboarding/_UserOnboardingList.pcss b/res/css/views/user-onboarding/_UserOnboardingList.pcss index 689048793c..bd198de2fe 100644 --- a/res/css/views/user-onboarding/_UserOnboardingList.pcss +++ b/res/css/views/user-onboarding/_UserOnboardingList.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/user-onboarding/_UserOnboardingPage.pcss b/res/css/views/user-onboarding/_UserOnboardingPage.pcss index 638bc4b357..285a1b34d4 100644 --- a/res/css/views/user-onboarding/_UserOnboardingPage.pcss +++ b/res/css/views/user-onboarding/_UserOnboardingPage.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/user-onboarding/_UserOnboardingTask.pcss b/res/css/views/user-onboarding/_UserOnboardingTask.pcss index 4056d45d02..756a9d3604 100644 --- a/res/css/views/user-onboarding/_UserOnboardingTask.pcss +++ b/res/css/views/user-onboarding/_UserOnboardingTask.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/verification/_VerificationShowSas.pcss b/res/css/views/verification/_VerificationShowSas.pcss index 74cb4d439b..5e007ed234 100644 --- a/res/css/views/verification/_VerificationShowSas.pcss +++ b/res/css/views/verification/_VerificationShowSas.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/voip/LegacyCallView/_LegacyCallViewButtons.pcss b/res/css/views/voip/LegacyCallView/_LegacyCallViewButtons.pcss index a96fe20ec2..9849e9c560 100644 --- a/res/css/views/voip/LegacyCallView/_LegacyCallViewButtons.pcss +++ b/res/css/views/voip/LegacyCallView/_LegacyCallViewButtons.pcss @@ -4,7 +4,7 @@ Copyright 2021, 2022 Šimon Brandner Copyright 2020, 2021 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/voip/_CallDuration.pcss b/res/css/views/voip/_CallDuration.pcss index e38f90a0c2..f991f897fd 100644 --- a/res/css/views/voip/_CallDuration.pcss +++ b/res/css/views/voip/_CallDuration.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/voip/_CallView.pcss b/res/css/views/voip/_CallView.pcss index 6a6f975710..1acccda595 100644 --- a/res/css/views/voip/_CallView.pcss +++ b/res/css/views/voip/_CallView.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/voip/_DialPad.pcss b/res/css/views/voip/_DialPad.pcss index 18867c3862..e39620fd64 100644 --- a/res/css/views/voip/_DialPad.pcss +++ b/res/css/views/voip/_DialPad.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/voip/_DialPadContextMenu.pcss b/res/css/views/voip/_DialPadContextMenu.pcss index feee0a5fb7..76311836bb 100644 --- a/res/css/views/voip/_DialPadContextMenu.pcss +++ b/res/css/views/voip/_DialPadContextMenu.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/voip/_DialPadModal.pcss b/res/css/views/voip/_DialPadModal.pcss index 46b68fed75..7b979f18f9 100644 --- a/res/css/views/voip/_DialPadModal.pcss +++ b/res/css/views/voip/_DialPadModal.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/voip/_LegacyCallPreview.pcss b/res/css/views/voip/_LegacyCallPreview.pcss index 526fb59823..3a8bf5af9f 100644 --- a/res/css/views/voip/_LegacyCallPreview.pcss +++ b/res/css/views/voip/_LegacyCallPreview.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/voip/_LegacyCallView.pcss b/res/css/views/voip/_LegacyCallView.pcss index 45873face1..007e8b5000 100644 --- a/res/css/views/voip/_LegacyCallView.pcss +++ b/res/css/views/voip/_LegacyCallView.pcss @@ -4,7 +4,7 @@ Copyright 2021, 2022 Šimon Brandner Copyright 2020, 2021 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/voip/_LegacyCallViewForRoom.pcss b/res/css/views/voip/_LegacyCallViewForRoom.pcss index 53b08648f8..18cba04951 100644 --- a/res/css/views/voip/_LegacyCallViewForRoom.pcss +++ b/res/css/views/voip/_LegacyCallViewForRoom.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/voip/_LegacyCallViewHeader.pcss b/res/css/views/voip/_LegacyCallViewHeader.pcss index 361c505acf..c69add3ba0 100644 --- a/res/css/views/voip/_LegacyCallViewHeader.pcss +++ b/res/css/views/voip/_LegacyCallViewHeader.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 Šimon Brandner Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/voip/_LegacyCallViewSidebar.pcss b/res/css/views/voip/_LegacyCallViewSidebar.pcss index fa8c552eff..efc06cb9d2 100644 --- a/res/css/views/voip/_LegacyCallViewSidebar.pcss +++ b/res/css/views/voip/_LegacyCallViewSidebar.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/css/views/voip/_VideoFeed.pcss b/res/css/views/voip/_VideoFeed.pcss index c0f13c3e78..6abe390126 100644 --- a/res/css/views/voip/_VideoFeed.pcss +++ b/res/css/views/voip/_VideoFeed.pcss @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 Šimon Brandner Copyright 2015, 2016 , 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/res/themes/light-custom/css/_custom.pcss b/res/themes/light-custom/css/_custom.pcss index 0dfb38da98..043de30191 100644 --- a/res/themes/light-custom/css/_custom.pcss +++ b/res/themes/light-custom/css/_custom.pcss @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/@types/common.ts b/src/@types/common.ts index b0fc694493..cdf969a698 100644 --- a/src/@types/common.ts +++ b/src/@types/common.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/@types/commonmark.ts b/src/@types/commonmark.ts index d773b736a1..2d3be1b243 100644 --- a/src/@types/commonmark.ts +++ b/src/@types/commonmark.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/@types/diff-dom.d.ts b/src/@types/diff-dom.d.ts index 0ee966ad24..986a84dc0b 100644 --- a/src/@types/diff-dom.d.ts +++ b/src/@types/diff-dom.d.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/@types/electron-to-chromium.d.ts b/src/@types/electron-to-chromium.d.ts index b8dea3f83d..7f723ffad5 100644 --- a/src/@types/electron-to-chromium.d.ts +++ b/src/@types/electron-to-chromium.d.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/@types/global.d.ts b/src/@types/global.d.ts index f921cd291f..c76c43f829 100644 --- a/src/@types/global.d.ts +++ b/src/@types/global.d.ts @@ -2,7 +2,7 @@ Copyright 2020-2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/@types/jitsi-meet.d.ts b/src/@types/jitsi-meet.d.ts index f2fac3ee5d..a5dfe8230b 100644 --- a/src/@types/jitsi-meet.d.ts +++ b/src/@types/jitsi-meet.d.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/@types/json.ts b/src/@types/json.ts index ae88680fc8..33af49a19f 100644 --- a/src/@types/json.ts +++ b/src/@types/json.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/@types/matrix-js-sdk.d.ts b/src/@types/matrix-js-sdk.d.ts index 21299cff30..6ffa09dd4f 100644 --- a/src/@types/matrix-js-sdk.d.ts +++ b/src/@types/matrix-js-sdk.d.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/@types/opus-recorder.d.ts b/src/@types/opus-recorder.d.ts index 8b4605a24a..8d103bedfd 100644 --- a/src/@types/opus-recorder.d.ts +++ b/src/@types/opus-recorder.d.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/@types/polyfill.ts b/src/@types/polyfill.ts index 1e10b17303..5e08725889 100644 --- a/src/@types/polyfill.ts +++ b/src/@types/polyfill.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/@types/raw-loader.d.ts b/src/@types/raw-loader.d.ts index 902a257a12..b9ab4445a4 100644 --- a/src/@types/raw-loader.d.ts +++ b/src/@types/raw-loader.d.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/@types/react.d.ts b/src/@types/react.d.ts index ba97b2bba6..2573bc0ab9 100644 --- a/src/@types/react.d.ts +++ b/src/@types/react.d.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/@types/svg.d.ts b/src/@types/svg.d.ts index f0491a594e..8a8990645b 100644 --- a/src/@types/svg.d.ts +++ b/src/@types/svg.d.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/@types/worker-loader.d.ts b/src/@types/worker-loader.d.ts index 39734725e6..7bc6436367 100644 --- a/src/@types/worker-loader.d.ts +++ b/src/@types/worker-loader.d.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/AddThreepid.ts b/src/AddThreepid.ts index 5232132535..757ea18180 100644 --- a/src/AddThreepid.ts +++ b/src/AddThreepid.ts @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2017 Vector Creations Ltd Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/AsyncWrapper.tsx b/src/AsyncWrapper.tsx index 2a04d804b7..e1b80c9d5a 100644 --- a/src/AsyncWrapper.tsx +++ b/src/AsyncWrapper.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Avatar.ts b/src/Avatar.ts index a78aa4d03b..a6725710d1 100644 --- a/src/Avatar.ts +++ b/src/Avatar.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/BasePlatform.ts b/src/BasePlatform.ts index 0017d00dac..db4802d4bb 100644 --- a/src/BasePlatform.ts +++ b/src/BasePlatform.ts @@ -5,7 +5,7 @@ Copyright 2018 New Vector Ltd Copyright 2016 Aviral Dasgupta Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/BlurhashEncoder.ts b/src/BlurhashEncoder.ts index 9cd386894f..aef0746dbe 100644 --- a/src/BlurhashEncoder.ts +++ b/src/BlurhashEncoder.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/ContentMessages.ts b/src/ContentMessages.ts index 344a2f112c..060c8ab994 100644 --- a/src/ContentMessages.ts +++ b/src/ContentMessages.ts @@ -4,7 +4,7 @@ Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/CreateCrossSigning.ts b/src/CreateCrossSigning.ts index 19b2977a9f..0c043d9d2b 100644 --- a/src/CreateCrossSigning.ts +++ b/src/CreateCrossSigning.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2018, 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/DateUtils.ts b/src/DateUtils.ts index 0710e0b867..7c7b7dd7e6 100644 --- a/src/DateUtils.ts +++ b/src/DateUtils.ts @@ -4,7 +4,7 @@ Copyright 2022 The Matrix.org Foundation C.I.C. Copyright 2017 Vector Creations Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/DecryptionFailureTracker.ts b/src/DecryptionFailureTracker.ts index bfcd126eea..6a226ad3fe 100644 --- a/src/DecryptionFailureTracker.ts +++ b/src/DecryptionFailureTracker.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/DeviceListener.ts b/src/DeviceListener.ts index e34af95962..28bb5f655e 100644 --- a/src/DeviceListener.ts +++ b/src/DeviceListener.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/DraftCleaner.ts b/src/DraftCleaner.ts index 48a3523f61..6adae6b8f4 100644 --- a/src/DraftCleaner.ts +++ b/src/DraftCleaner.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Editing.ts b/src/Editing.ts index 1d0cd26ab7..3b8d2d393a 100644 --- a/src/Editing.ts +++ b/src/Editing.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/HtmlUtils.tsx b/src/HtmlUtils.tsx index f5e30734bb..d635b23221 100644 --- a/src/HtmlUtils.tsx +++ b/src/HtmlUtils.tsx @@ -5,7 +5,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2017, 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/IConfigOptions.ts b/src/IConfigOptions.ts index 5dd500402d..bbb377e07b 100644 --- a/src/IConfigOptions.ts +++ b/src/IConfigOptions.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/IdentityAuthClient.tsx b/src/IdentityAuthClient.tsx index 8963b6bcf2..ce20bc92ed 100644 --- a/src/IdentityAuthClient.tsx +++ b/src/IdentityAuthClient.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/ImageUtils.ts b/src/ImageUtils.ts index 0b5ed28d21..94715f4f7c 100644 --- a/src/ImageUtils.ts +++ b/src/ImageUtils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 , 2020 Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/KeyBindingsDefaults.ts b/src/KeyBindingsDefaults.ts index 10d89ecfda..3a4412c5db 100644 --- a/src/KeyBindingsDefaults.ts +++ b/src/KeyBindingsDefaults.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 Šimon Brandner Copyright 2021 Clemens Zeidler -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/KeyBindingsManager.ts b/src/KeyBindingsManager.ts index 007b6abf17..5c8bccbfd0 100644 --- a/src/KeyBindingsManager.ts +++ b/src/KeyBindingsManager.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 Šimon Brandner Copyright 2021 Clemens Zeidler -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Keyboard.ts b/src/Keyboard.ts index 5688ac2a20..59c6bf77cf 100644 --- a/src/Keyboard.ts +++ b/src/Keyboard.ts @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2017 New Vector Ltd Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/LegacyCallHandler.tsx b/src/LegacyCallHandler.tsx index b804ca0084..c2df066fa2 100644 --- a/src/LegacyCallHandler.tsx +++ b/src/LegacyCallHandler.tsx @@ -5,7 +5,7 @@ Copyright 2021 Šimon Brandner Copyright 2017, 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Lifecycle.ts b/src/Lifecycle.ts index 89faa9e0e9..2f6c460afe 100644 --- a/src/Lifecycle.ts +++ b/src/Lifecycle.ts @@ -5,7 +5,7 @@ Copyright 2018 New Vector Ltd Copyright 2017 Vector Creations Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Linkify.tsx b/src/Linkify.tsx index 37376cd75a..db4c70228a 100644 --- a/src/Linkify.tsx +++ b/src/Linkify.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Livestream.ts b/src/Livestream.ts index ffa59282e3..9cda793385 100644 --- a/src/Livestream.ts +++ b/src/Livestream.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Login.ts b/src/Login.ts index 5e1b1d1a35..aa84ad3c86 100644 --- a/src/Login.ts +++ b/src/Login.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Markdown.ts b/src/Markdown.ts index 9a346bf2f6..6f0e3e0c5e 100644 --- a/src/Markdown.ts +++ b/src/Markdown.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/MatrixClientPeg.ts b/src/MatrixClientPeg.ts index ce87953118..ab952c5633 100644 --- a/src/MatrixClientPeg.ts +++ b/src/MatrixClientPeg.ts @@ -5,7 +5,7 @@ Copyright 2017, 2018 , 2019 New Vector Ltd Copyright 2017 Vector Creations Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/MediaDeviceHandler.ts b/src/MediaDeviceHandler.ts index 147cabb7c5..7a50024d1a 100644 --- a/src/MediaDeviceHandler.ts +++ b/src/MediaDeviceHandler.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner Copyright 2017 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Modal.tsx b/src/Modal.tsx index 2aefdccb46..31ad6b9bfc 100644 --- a/src/Modal.tsx +++ b/src/Modal.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/NodeAnimator.tsx b/src/NodeAnimator.tsx index 3ca098311f..16c5a716ff 100644 --- a/src/NodeAnimator.tsx +++ b/src/NodeAnimator.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Notifier.ts b/src/Notifier.ts index a582c2eb6f..377559a6fc 100644 --- a/src/Notifier.ts +++ b/src/Notifier.ts @@ -5,7 +5,7 @@ Copyright 2017 Vector Creations Ltd Copyright 2017 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/PageTypes.ts b/src/PageTypes.ts index 1ebb824303..3e7f2471a3 100644 --- a/src/PageTypes.ts +++ b/src/PageTypes.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/PasswordReset.ts b/src/PasswordReset.ts index b5ca039d7c..f23d14799b 100644 --- a/src/PasswordReset.ts +++ b/src/PasswordReset.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/PlatformPeg.ts b/src/PlatformPeg.ts index 87c3b17488..493fde8f84 100644 --- a/src/PlatformPeg.ts +++ b/src/PlatformPeg.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/PlaybackEncoder.ts b/src/PlaybackEncoder.ts index 10a539799d..dc212e6a28 100644 --- a/src/PlaybackEncoder.ts +++ b/src/PlaybackEncoder.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/PosthogAnalytics.ts b/src/PosthogAnalytics.ts index 6217d9b7dd..91208e253d 100644 --- a/src/PosthogAnalytics.ts +++ b/src/PosthogAnalytics.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/PosthogTrackers.ts b/src/PosthogTrackers.ts index 5d7c793f62..4af210411e 100644 --- a/src/PosthogTrackers.ts +++ b/src/PosthogTrackers.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Presence.ts b/src/Presence.ts index af06d4a1d6..8057a0f737 100644 --- a/src/Presence.ts +++ b/src/Presence.ts @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Registration.tsx b/src/Registration.tsx index bbb6295f7d..ea0264fab3 100644 --- a/src/Registration.tsx +++ b/src/Registration.tsx @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Resend.ts b/src/Resend.ts index 064bebf93a..109aea632f 100644 --- a/src/Resend.ts +++ b/src/Resend.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Roles.ts b/src/Roles.ts index 38b6d7465e..06433c507b 100644 --- a/src/Roles.ts +++ b/src/Roles.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/RoomAliasCache.ts b/src/RoomAliasCache.ts index 81a85b4a0b..fd611a7559 100644 --- a/src/RoomAliasCache.ts +++ b/src/RoomAliasCache.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/RoomInvite.tsx b/src/RoomInvite.tsx index 07a24dd384..91ea459230 100644 --- a/src/RoomInvite.tsx +++ b/src/RoomInvite.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/RoomNotifs.ts b/src/RoomNotifs.ts index 7c281d0d2d..e6064d2691 100644 --- a/src/RoomNotifs.ts +++ b/src/RoomNotifs.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2019 , 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Rooms.ts b/src/Rooms.ts index d24f008b56..347316c4c9 100644 --- a/src/Rooms.ts +++ b/src/Rooms.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/ScalarAuthClient.ts b/src/ScalarAuthClient.ts index de1bf2943b..094bb6fe59 100644 --- a/src/ScalarAuthClient.ts +++ b/src/ScalarAuthClient.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2019 , 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/ScalarMessaging.ts b/src/ScalarMessaging.ts index 82846b9abf..003d02f2dd 100644 --- a/src/ScalarMessaging.ts +++ b/src/ScalarMessaging.ts @@ -3,7 +3,7 @@ Copyright 2018-2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/SdkConfig.ts b/src/SdkConfig.ts index c9a0010b0f..ee1c4eab8a 100644 --- a/src/SdkConfig.ts +++ b/src/SdkConfig.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Searching.ts b/src/Searching.ts index 252d4378ad..dea724fbdf 100644 --- a/src/Searching.ts +++ b/src/Searching.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/SecurityManager.ts b/src/SecurityManager.ts index 10672917be..6af8dd5f18 100644 --- a/src/SecurityManager.ts +++ b/src/SecurityManager.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/SendHistoryManager.ts b/src/SendHistoryManager.ts index 07da60ef6b..517e1b45e3 100644 --- a/src/SendHistoryManager.ts +++ b/src/SendHistoryManager.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Aviral Dasgupta -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/SlashCommands.tsx b/src/SlashCommands.tsx index b739cec12f..08ecd0562b 100644 --- a/src/SlashCommands.tsx +++ b/src/SlashCommands.tsx @@ -5,7 +5,7 @@ Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/SlidingSyncManager.ts b/src/SlidingSyncManager.ts index 11872d059e..b9922e2290 100644 --- a/src/SlidingSyncManager.ts +++ b/src/SlidingSyncManager.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/SupportedBrowser.ts b/src/SupportedBrowser.ts index 099648a936..0527ed829f 100644 --- a/src/SupportedBrowser.ts +++ b/src/SupportedBrowser.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Terms.ts b/src/Terms.ts index 868e2428c6..02b67545da 100644 --- a/src/Terms.ts +++ b/src/Terms.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/TextForEvent.tsx b/src/TextForEvent.tsx index 49d8b739b7..bdb7e8cbe0 100644 --- a/src/TextForEvent.tsx +++ b/src/TextForEvent.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/TimezoneHandler.ts b/src/TimezoneHandler.ts index c7c603b5fe..eb1bacef5f 100644 --- a/src/TimezoneHandler.ts +++ b/src/TimezoneHandler.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Typeguards.ts b/src/Typeguards.ts index 4d39847dcb..138accbb95 100644 --- a/src/Typeguards.ts +++ b/src/Typeguards.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Unread.ts b/src/Unread.ts index 06d2344938..e79a9cb75f 100644 --- a/src/Unread.ts +++ b/src/Unread.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/UserActivity.ts b/src/UserActivity.ts index a1a090ca0e..c63b595b41 100644 --- a/src/UserActivity.ts +++ b/src/UserActivity.ts @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/UserAddress.ts b/src/UserAddress.ts index 4f576d0762..1ba84a5ab3 100644 --- a/src/UserAddress.ts +++ b/src/UserAddress.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/Views.ts b/src/Views.ts index 68e1feb230..90480b2669 100644 --- a/src/Views.ts +++ b/src/Views.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/VoipUserMapper.ts b/src/VoipUserMapper.ts index 41e0ab3df4..a0290a3eb1 100644 --- a/src/VoipUserMapper.ts +++ b/src/VoipUserMapper.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/WhoIsTyping.ts b/src/WhoIsTyping.ts index 9a0b279c32..c209253206 100644 --- a/src/WhoIsTyping.ts +++ b/src/WhoIsTyping.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/WorkerManager.ts b/src/WorkerManager.ts index 1878769c24..089463dc91 100644 --- a/src/WorkerManager.ts +++ b/src/WorkerManager.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/KeyboardShortcutUtils.ts b/src/accessibility/KeyboardShortcutUtils.ts index 6b049ab41c..4eafb80f36 100644 --- a/src/accessibility/KeyboardShortcutUtils.ts +++ b/src/accessibility/KeyboardShortcutUtils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/KeyboardShortcuts.ts b/src/accessibility/KeyboardShortcuts.ts index bdc0123ee7..1e8febb0bb 100644 --- a/src/accessibility/KeyboardShortcuts.ts +++ b/src/accessibility/KeyboardShortcuts.ts @@ -4,7 +4,7 @@ Copyright 2022 The Matrix.org Foundation C.I.C. Copyright 2021, 2022 Šimon Brandner Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/LandmarkNavigation.ts b/src/accessibility/LandmarkNavigation.ts index 68c9e0b118..1c6fe54345 100644 --- a/src/accessibility/LandmarkNavigation.ts +++ b/src/accessibility/LandmarkNavigation.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/RovingTabIndex.tsx b/src/accessibility/RovingTabIndex.tsx index d35a0291c3..dada99b3e7 100644 --- a/src/accessibility/RovingTabIndex.tsx +++ b/src/accessibility/RovingTabIndex.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/Toolbar.tsx b/src/accessibility/Toolbar.tsx index 7d4b1f936d..317ff8b936 100644 --- a/src/accessibility/Toolbar.tsx +++ b/src/accessibility/Toolbar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/context_menu/ContextMenuButton.tsx b/src/accessibility/context_menu/ContextMenuButton.tsx index 9d8b5585e3..e326e087b9 100644 --- a/src/accessibility/context_menu/ContextMenuButton.tsx +++ b/src/accessibility/context_menu/ContextMenuButton.tsx @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/context_menu/ContextMenuTooltipButton.tsx b/src/accessibility/context_menu/ContextMenuTooltipButton.tsx index 8002368083..7a4230ddf7 100644 --- a/src/accessibility/context_menu/ContextMenuTooltipButton.tsx +++ b/src/accessibility/context_menu/ContextMenuTooltipButton.tsx @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/context_menu/MenuItem.tsx b/src/accessibility/context_menu/MenuItem.tsx index f30fd64f72..6aef549870 100644 --- a/src/accessibility/context_menu/MenuItem.tsx +++ b/src/accessibility/context_menu/MenuItem.tsx @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/context_menu/MenuItemCheckbox.tsx b/src/accessibility/context_menu/MenuItemCheckbox.tsx index 2e383393e4..7ee6287513 100644 --- a/src/accessibility/context_menu/MenuItemCheckbox.tsx +++ b/src/accessibility/context_menu/MenuItemCheckbox.tsx @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/context_menu/MenuItemRadio.tsx b/src/accessibility/context_menu/MenuItemRadio.tsx index 69e690f83f..8094e984e7 100644 --- a/src/accessibility/context_menu/MenuItemRadio.tsx +++ b/src/accessibility/context_menu/MenuItemRadio.tsx @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/context_menu/StyledMenuItemCheckbox.tsx b/src/accessibility/context_menu/StyledMenuItemCheckbox.tsx index af49288d0f..472e7bcae2 100644 --- a/src/accessibility/context_menu/StyledMenuItemCheckbox.tsx +++ b/src/accessibility/context_menu/StyledMenuItemCheckbox.tsx @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/context_menu/StyledMenuItemRadio.tsx b/src/accessibility/context_menu/StyledMenuItemRadio.tsx index a6a6993e77..5bf6d4706c 100644 --- a/src/accessibility/context_menu/StyledMenuItemRadio.tsx +++ b/src/accessibility/context_menu/StyledMenuItemRadio.tsx @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/roving/RovingAccessibleButton.tsx b/src/accessibility/roving/RovingAccessibleButton.tsx index b53221e1c9..70e569e335 100644 --- a/src/accessibility/roving/RovingAccessibleButton.tsx +++ b/src/accessibility/roving/RovingAccessibleButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/roving/RovingTabIndexWrapper.tsx b/src/accessibility/roving/RovingTabIndexWrapper.tsx index b44f44b92f..a47c1cb3ef 100644 --- a/src/accessibility/roving/RovingTabIndexWrapper.tsx +++ b/src/accessibility/roving/RovingTabIndexWrapper.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/accessibility/roving/types.ts b/src/accessibility/roving/types.ts index 98b498844b..3cf8cdf6c0 100644 --- a/src/accessibility/roving/types.ts +++ b/src/accessibility/roving/types.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/actions/MatrixActionCreators.ts b/src/actions/MatrixActionCreators.ts index 6f32220ee3..ccda4853f6 100644 --- a/src/actions/MatrixActionCreators.ts +++ b/src/actions/MatrixActionCreators.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/actions/RoomListActions.ts b/src/actions/RoomListActions.ts index 578226986d..7418ec2cdd 100644 --- a/src/actions/RoomListActions.ts +++ b/src/actions/RoomListActions.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/actions/actionCreators.ts b/src/actions/actionCreators.ts index 55a6ec729c..f3a097d06f 100644 --- a/src/actions/actionCreators.ts +++ b/src/actions/actionCreators.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2017 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/actions/handlers/viewUserDeviceSettings.ts b/src/actions/handlers/viewUserDeviceSettings.ts index 56083dd4e8..d7cfe73d86 100644 --- a/src/actions/handlers/viewUserDeviceSettings.ts +++ b/src/actions/handlers/viewUserDeviceSettings.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/async-components/structures/ErrorView.tsx b/src/async-components/structures/ErrorView.tsx index 5e60b8e67c..cee6c6345b 100644 --- a/src/async-components/structures/ErrorView.tsx +++ b/src/async-components/structures/ErrorView.tsx @@ -1,7 +1,7 @@ /* Copyright 2020-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/async-components/views/dialogs/eventindex/DisableEventIndexDialog.tsx b/src/async-components/views/dialogs/eventindex/DisableEventIndexDialog.tsx index 90b0ee2991..f84d682784 100644 --- a/src/async-components/views/dialogs/eventindex/DisableEventIndexDialog.tsx +++ b/src/async-components/views/dialogs/eventindex/DisableEventIndexDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/async-components/views/dialogs/eventindex/ManageEventIndexDialog.tsx b/src/async-components/views/dialogs/eventindex/ManageEventIndexDialog.tsx index 01b7e8227c..a740523549 100644 --- a/src/async-components/views/dialogs/eventindex/ManageEventIndexDialog.tsx +++ b/src/async-components/views/dialogs/eventindex/ManageEventIndexDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/async-components/views/dialogs/security/CreateKeyBackupDialog.tsx b/src/async-components/views/dialogs/security/CreateKeyBackupDialog.tsx index 9608abc4bc..30d04baec1 100644 --- a/src/async-components/views/dialogs/security/CreateKeyBackupDialog.tsx +++ b/src/async-components/views/dialogs/security/CreateKeyBackupDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2018, 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/async-components/views/dialogs/security/CreateSecretStorageDialog.tsx b/src/async-components/views/dialogs/security/CreateSecretStorageDialog.tsx index 932f6d7fcf..235f73fc8e 100644 --- a/src/async-components/views/dialogs/security/CreateSecretStorageDialog.tsx +++ b/src/async-components/views/dialogs/security/CreateSecretStorageDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 , 2023 The Matrix.org Foundation C.I.C. Copyright 2018, 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/async-components/views/dialogs/security/ExportE2eKeysDialog.tsx b/src/async-components/views/dialogs/security/ExportE2eKeysDialog.tsx index 673ff5e399..18dd507b5a 100644 --- a/src/async-components/views/dialogs/security/ExportE2eKeysDialog.tsx +++ b/src/async-components/views/dialogs/security/ExportE2eKeysDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/async-components/views/dialogs/security/ImportE2eKeysDialog.tsx b/src/async-components/views/dialogs/security/ImportE2eKeysDialog.tsx index d08259f2cb..16d50640f5 100644 --- a/src/async-components/views/dialogs/security/ImportE2eKeysDialog.tsx +++ b/src/async-components/views/dialogs/security/ImportE2eKeysDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/async-components/views/dialogs/security/NewRecoveryMethodDialog.tsx b/src/async-components/views/dialogs/security/NewRecoveryMethodDialog.tsx index 69fc4b4814..bec708e664 100644 --- a/src/async-components/views/dialogs/security/NewRecoveryMethodDialog.tsx +++ b/src/async-components/views/dialogs/security/NewRecoveryMethodDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2018, 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/async-components/views/dialogs/security/RecoveryMethodRemovedDialog.tsx b/src/async-components/views/dialogs/security/RecoveryMethodRemovedDialog.tsx index b1a6ebafc7..7e82ff722b 100644 --- a/src/async-components/views/dialogs/security/RecoveryMethodRemovedDialog.tsx +++ b/src/async-components/views/dialogs/security/RecoveryMethodRemovedDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/audio/BackgroundAudio.ts b/src/audio/BackgroundAudio.ts index 7bb6ebb508..c90016eef9 100644 --- a/src/audio/BackgroundAudio.ts +++ b/src/audio/BackgroundAudio.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/audio/ManagedPlayback.ts b/src/audio/ManagedPlayback.ts index cab2142c28..0f0b420d1e 100644 --- a/src/audio/ManagedPlayback.ts +++ b/src/audio/ManagedPlayback.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/audio/Playback.ts b/src/audio/Playback.ts index f0155574ca..af777a8c01 100644 --- a/src/audio/Playback.ts +++ b/src/audio/Playback.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/audio/PlaybackClock.ts b/src/audio/PlaybackClock.ts index a0f1b3b5bb..ceb06987c8 100644 --- a/src/audio/PlaybackClock.ts +++ b/src/audio/PlaybackClock.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/audio/PlaybackManager.ts b/src/audio/PlaybackManager.ts index d33b31ea7a..80d28f1196 100644 --- a/src/audio/PlaybackManager.ts +++ b/src/audio/PlaybackManager.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/audio/PlaybackQueue.ts b/src/audio/PlaybackQueue.ts index bc3b3c692d..f84f6add3c 100644 --- a/src/audio/PlaybackQueue.ts +++ b/src/audio/PlaybackQueue.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/audio/RecorderWorklet.ts b/src/audio/RecorderWorklet.ts index 509dac09cb..acf23f4dcd 100644 --- a/src/audio/RecorderWorklet.ts +++ b/src/audio/RecorderWorklet.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/audio/VoiceMessageRecording.ts b/src/audio/VoiceMessageRecording.ts index 8824206b85..2dac4ac9c3 100644 --- a/src/audio/VoiceMessageRecording.ts +++ b/src/audio/VoiceMessageRecording.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/audio/VoiceRecording.ts b/src/audio/VoiceRecording.ts index 692f731c2d..0a48c27e06 100644 --- a/src/audio/VoiceRecording.ts +++ b/src/audio/VoiceRecording.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/audio/compat.ts b/src/audio/compat.ts index bce98874aa..7af6ef68b2 100644 --- a/src/audio/compat.ts +++ b/src/audio/compat.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/audio/consts.ts b/src/audio/consts.ts index bf6405a035..e8910fa8ed 100644 --- a/src/audio/consts.ts +++ b/src/audio/consts.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/audio/recorderWorkletFactory.ts b/src/audio/recorderWorkletFactory.ts index 460f325957..3290e118a4 100644 --- a/src/audio/recorderWorkletFactory.ts +++ b/src/audio/recorderWorkletFactory.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/autocomplete/AutocompleteProvider.tsx b/src/autocomplete/AutocompleteProvider.tsx index 8c755cc950..0161a64dce 100644 --- a/src/autocomplete/AutocompleteProvider.tsx +++ b/src/autocomplete/AutocompleteProvider.tsx @@ -3,7 +3,7 @@ Copyright 2017-2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd Copyright 2016 Aviral Dasgupta -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/autocomplete/Autocompleter.ts b/src/autocomplete/Autocompleter.ts index b2a2b1e13e..7ac11e9539 100644 --- a/src/autocomplete/Autocompleter.ts +++ b/src/autocomplete/Autocompleter.ts @@ -2,7 +2,7 @@ Copyright 2017-2024 New Vector Ltd. Copyright 2016 Aviral Dasgupta -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/autocomplete/CommandProvider.tsx b/src/autocomplete/CommandProvider.tsx index e573775186..d2b9f18f15 100644 --- a/src/autocomplete/CommandProvider.tsx +++ b/src/autocomplete/CommandProvider.tsx @@ -5,7 +5,7 @@ Copyright 2017 Vector Creations Ltd Copyright 2017 New Vector Ltd Copyright 2016 Aviral Dasgupta -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/autocomplete/Components.tsx b/src/autocomplete/Components.tsx index 0dcfd467e2..ebbc1732e2 100644 --- a/src/autocomplete/Components.tsx +++ b/src/autocomplete/Components.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016 Aviral Dasgupta -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/autocomplete/EmojiProvider.tsx b/src/autocomplete/EmojiProvider.tsx index f25b94f998..f976fd37db 100644 --- a/src/autocomplete/EmojiProvider.tsx +++ b/src/autocomplete/EmojiProvider.tsx @@ -6,7 +6,7 @@ Copyright 2017, 2018 New Vector Ltd Copyright 2017 Vector Creations Ltd Copyright 2016 Aviral Dasgupta -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/autocomplete/NotifProvider.tsx b/src/autocomplete/NotifProvider.tsx index 0d9741276f..4919045578 100644 --- a/src/autocomplete/NotifProvider.tsx +++ b/src/autocomplete/NotifProvider.tsx @@ -1,7 +1,7 @@ /* Copyright 2017-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/autocomplete/QueryMatcher.ts b/src/autocomplete/QueryMatcher.ts index 2426621423..985ca3a516 100644 --- a/src/autocomplete/QueryMatcher.ts +++ b/src/autocomplete/QueryMatcher.ts @@ -4,7 +4,7 @@ Copyright 2018 Michael Telatynski <7t3chguy@gmail.com> Copyright 2018 New Vector Ltd Copyright 2017 Aviral Dasgupta -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/autocomplete/RoomProvider.tsx b/src/autocomplete/RoomProvider.tsx index 94763486e8..84a4a8a023 100644 --- a/src/autocomplete/RoomProvider.tsx +++ b/src/autocomplete/RoomProvider.tsx @@ -4,7 +4,7 @@ Copyright 2017-2023 The Matrix.org Foundation C.I.C. Copyright 2018 Michael Telatynski <7t3chguy@gmail.com> Copyright 2016 Aviral Dasgupta -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/autocomplete/SpaceProvider.tsx b/src/autocomplete/SpaceProvider.tsx index 88bc9f3d12..273d9ace00 100644 --- a/src/autocomplete/SpaceProvider.tsx +++ b/src/autocomplete/SpaceProvider.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/autocomplete/UserProvider.tsx b/src/autocomplete/UserProvider.tsx index a8f50ceccb..673bee7bf2 100644 --- a/src/autocomplete/UserProvider.tsx +++ b/src/autocomplete/UserProvider.tsx @@ -5,7 +5,7 @@ Copyright 2017, 2018 New Vector Ltd Copyright 2017 Vector Creations Ltd Copyright 2016 Aviral Dasgupta -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/boundThreepids.ts b/src/boundThreepids.ts index 4417f3daaf..b7c749a020 100644 --- a/src/boundThreepids.ts +++ b/src/boundThreepids.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/call-types.ts b/src/call-types.ts index 2384c85e5e..2a263174ef 100644 --- a/src/call-types.ts +++ b/src/call-types.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/AutoHideScrollbar.tsx b/src/components/structures/AutoHideScrollbar.tsx index 549fbf4592..764a712d44 100644 --- a/src/components/structures/AutoHideScrollbar.tsx +++ b/src/components/structures/AutoHideScrollbar.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/AutocompleteInput.tsx b/src/components/structures/AutocompleteInput.tsx index 5e930d5f1b..b25e93bc75 100644 --- a/src/components/structures/AutocompleteInput.tsx +++ b/src/components/structures/AutocompleteInput.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/BackdropPanel.tsx b/src/components/structures/BackdropPanel.tsx index 32c75a936e..64b2ab0fce 100644 --- a/src/components/structures/BackdropPanel.tsx +++ b/src/components/structures/BackdropPanel.tsx @@ -1,7 +1,7 @@ /* Copyright 2021-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/ContextMenu.tsx b/src/components/structures/ContextMenu.tsx index 2c7a864db5..3d0c169267 100644 --- a/src/components/structures/ContextMenu.tsx +++ b/src/components/structures/ContextMenu.tsx @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/EmbeddedPage.tsx b/src/components/structures/EmbeddedPage.tsx index c471565d91..2833f79626 100644 --- a/src/components/structures/EmbeddedPage.tsx +++ b/src/components/structures/EmbeddedPage.tsx @@ -3,7 +3,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/ErrorMessage.tsx b/src/components/structures/ErrorMessage.tsx index 58c523272b..ce4788c0fa 100644 --- a/src/components/structures/ErrorMessage.tsx +++ b/src/components/structures/ErrorMessage.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/FileDropTarget.tsx b/src/components/structures/FileDropTarget.tsx index 5bc16e2ee4..dcf4a2fdb1 100644 --- a/src/components/structures/FileDropTarget.tsx +++ b/src/components/structures/FileDropTarget.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/FilePanel.tsx b/src/components/structures/FilePanel.tsx index 4c580cb9fe..32e5bbc519 100644 --- a/src/components/structures/FilePanel.tsx +++ b/src/components/structures/FilePanel.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/GenericDropdownMenu.tsx b/src/components/structures/GenericDropdownMenu.tsx index b323d9b8ad..5c617e8015 100644 --- a/src/components/structures/GenericDropdownMenu.tsx +++ b/src/components/structures/GenericDropdownMenu.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/HomePage.tsx b/src/components/structures/HomePage.tsx index 31deb381dd..f8dcc7b70d 100644 --- a/src/components/structures/HomePage.tsx +++ b/src/components/structures/HomePage.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/IndicatorScrollbar.tsx b/src/components/structures/IndicatorScrollbar.tsx index 2c1db504b1..1d0a90a14e 100644 --- a/src/components/structures/IndicatorScrollbar.tsx +++ b/src/components/structures/IndicatorScrollbar.tsx @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/InteractiveAuth.tsx b/src/components/structures/InteractiveAuth.tsx index 4b0f060952..08aa4eeafa 100644 --- a/src/components/structures/InteractiveAuth.tsx +++ b/src/components/structures/InteractiveAuth.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/LargeLoader.tsx b/src/components/structures/LargeLoader.tsx index 4a83d58cac..57f0f949e9 100644 --- a/src/components/structures/LargeLoader.tsx +++ b/src/components/structures/LargeLoader.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/LeftPanel.tsx b/src/components/structures/LeftPanel.tsx index 49d0f570a5..e4964dd972 100644 --- a/src/components/structures/LeftPanel.tsx +++ b/src/components/structures/LeftPanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/LegacyCallEventGrouper.ts b/src/components/structures/LegacyCallEventGrouper.ts index 3eefbdbb87..9647158921 100644 --- a/src/components/structures/LegacyCallEventGrouper.ts +++ b/src/components/structures/LegacyCallEventGrouper.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/LoggedInView.tsx b/src/components/structures/LoggedInView.tsx index b0531df1d5..7081052346 100644 --- a/src/components/structures/LoggedInView.tsx +++ b/src/components/structures/LoggedInView.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/MainSplit.tsx b/src/components/structures/MainSplit.tsx index 54aa220354..79ba7ab7db 100644 --- a/src/components/structures/MainSplit.tsx +++ b/src/components/structures/MainSplit.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/MatrixChat.tsx b/src/components/structures/MatrixChat.tsx index 1a6abbbadd..f417bd6045 100644 --- a/src/components/structures/MatrixChat.tsx +++ b/src/components/structures/MatrixChat.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/MatrixClientContextProvider.tsx b/src/components/structures/MatrixClientContextProvider.tsx index 384a8fa8ac..edd0daaaba 100644 --- a/src/components/structures/MatrixClientContextProvider.tsx +++ b/src/components/structures/MatrixClientContextProvider.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/MessagePanel.tsx b/src/components/structures/MessagePanel.tsx index d2133f4f13..67c1b98d68 100644 --- a/src/components/structures/MessagePanel.tsx +++ b/src/components/structures/MessagePanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/NonUrgentToastContainer.tsx b/src/components/structures/NonUrgentToastContainer.tsx index d01bf78959..aa445a5498 100644 --- a/src/components/structures/NonUrgentToastContainer.tsx +++ b/src/components/structures/NonUrgentToastContainer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/NotificationPanel.tsx b/src/components/structures/NotificationPanel.tsx index 236da25409..af772f7ce2 100644 --- a/src/components/structures/NotificationPanel.tsx +++ b/src/components/structures/NotificationPanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/PictureInPictureDragger.tsx b/src/components/structures/PictureInPictureDragger.tsx index fe8badd99d..ffdf1fd7c8 100644 --- a/src/components/structures/PictureInPictureDragger.tsx +++ b/src/components/structures/PictureInPictureDragger.tsx @@ -1,7 +1,7 @@ /* Copyright 2021-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/PipContainer.tsx b/src/components/structures/PipContainer.tsx index c9fabfe0c9..c68aa561d8 100644 --- a/src/components/structures/PipContainer.tsx +++ b/src/components/structures/PipContainer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/ReleaseAnnouncement.tsx b/src/components/structures/ReleaseAnnouncement.tsx index b8fc42d915..cc21407c60 100644 --- a/src/components/structures/ReleaseAnnouncement.tsx +++ b/src/components/structures/ReleaseAnnouncement.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/RightPanel.tsx b/src/components/structures/RightPanel.tsx index a1f2016243..06e019f4a9 100644 --- a/src/components/structures/RightPanel.tsx +++ b/src/components/structures/RightPanel.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2022 The Matrix.org Foundation C.I.C. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/RoomSearch.tsx b/src/components/structures/RoomSearch.tsx index 35751ef35f..1e36dc84db 100644 --- a/src/components/structures/RoomSearch.tsx +++ b/src/components/structures/RoomSearch.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/RoomSearchView.tsx b/src/components/structures/RoomSearchView.tsx index 82146bcc5e..ca67ca6bbf 100644 --- a/src/components/structures/RoomSearchView.tsx +++ b/src/components/structures/RoomSearchView.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/RoomStatusBar.tsx b/src/components/structures/RoomStatusBar.tsx index 3bd69148ae..095c359566 100644 --- a/src/components/structures/RoomStatusBar.tsx +++ b/src/components/structures/RoomStatusBar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/RoomStatusBarUnsentMessages.tsx b/src/components/structures/RoomStatusBarUnsentMessages.tsx index ab356405b2..8cb80c894c 100644 --- a/src/components/structures/RoomStatusBarUnsentMessages.tsx +++ b/src/components/structures/RoomStatusBarUnsentMessages.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/RoomView.tsx b/src/components/structures/RoomView.tsx index 772d5698a3..78d14d39df 100644 --- a/src/components/structures/RoomView.tsx +++ b/src/components/structures/RoomView.tsx @@ -5,7 +5,7 @@ Copyright 2018, 2019 New Vector Ltd Copyright 2017 Vector Creations Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/ScrollPanel.tsx b/src/components/structures/ScrollPanel.tsx index b354f6b005..413d081746 100644 --- a/src/components/structures/ScrollPanel.tsx +++ b/src/components/structures/ScrollPanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/SearchBox.tsx b/src/components/structures/SearchBox.tsx index 323d3c855d..a5bbb7865e 100644 --- a/src/components/structures/SearchBox.tsx +++ b/src/components/structures/SearchBox.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/SpaceHierarchy.tsx b/src/components/structures/SpaceHierarchy.tsx index 80193fd338..362fe82dce 100644 --- a/src/components/structures/SpaceHierarchy.tsx +++ b/src/components/structures/SpaceHierarchy.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/SpaceRoomView.tsx b/src/components/structures/SpaceRoomView.tsx index bf0ddb1fe2..1424df2c98 100644 --- a/src/components/structures/SpaceRoomView.tsx +++ b/src/components/structures/SpaceRoomView.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/SplashPage.tsx b/src/components/structures/SplashPage.tsx index 6ca20fdb3c..1ce0724dab 100644 --- a/src/components/structures/SplashPage.tsx +++ b/src/components/structures/SplashPage.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/TabbedView.tsx b/src/components/structures/TabbedView.tsx index 7678dbf784..71161fec52 100644 --- a/src/components/structures/TabbedView.tsx +++ b/src/components/structures/TabbedView.tsx @@ -4,7 +4,7 @@ Copyright 2019, 2020 , 2024 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/ThreadPanel.tsx b/src/components/structures/ThreadPanel.tsx index 0e82baa28b..7aee8554b1 100644 --- a/src/components/structures/ThreadPanel.tsx +++ b/src/components/structures/ThreadPanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/ThreadView.tsx b/src/components/structures/ThreadView.tsx index bc1e26d087..0fa9b9fed6 100644 --- a/src/components/structures/ThreadView.tsx +++ b/src/components/structures/ThreadView.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/TimelinePanel.tsx b/src/components/structures/TimelinePanel.tsx index a28089c989..31ce65cfa7 100644 --- a/src/components/structures/TimelinePanel.tsx +++ b/src/components/structures/TimelinePanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/ToastContainer.tsx b/src/components/structures/ToastContainer.tsx index 3e5b4a4474..02db99a0e0 100644 --- a/src/components/structures/ToastContainer.tsx +++ b/src/components/structures/ToastContainer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/UploadBar.tsx b/src/components/structures/UploadBar.tsx index 01ecae96dc..7618862798 100644 --- a/src/components/structures/UploadBar.tsx +++ b/src/components/structures/UploadBar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 , 2019, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/UserMenu.tsx b/src/components/structures/UserMenu.tsx index c5f8ef841d..e266352393 100644 --- a/src/components/structures/UserMenu.tsx +++ b/src/components/structures/UserMenu.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/UserView.tsx b/src/components/structures/UserView.tsx index ba905099ba..f71a6331d9 100644 --- a/src/components/structures/UserView.tsx +++ b/src/components/structures/UserView.tsx @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/ViewSource.tsx b/src/components/structures/ViewSource.tsx index 3aba3be472..eca37842d7 100644 --- a/src/components/structures/ViewSource.tsx +++ b/src/components/structures/ViewSource.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2015, 2016 , 2019, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/WaitingForThirdPartyRoomView.tsx b/src/components/structures/WaitingForThirdPartyRoomView.tsx index cabe92a53d..7787a03bf2 100644 --- a/src/components/structures/WaitingForThirdPartyRoomView.tsx +++ b/src/components/structures/WaitingForThirdPartyRoomView.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/CompleteSecurity.tsx b/src/components/structures/auth/CompleteSecurity.tsx index ec65a62cef..a0f2be8836 100644 --- a/src/components/structures/auth/CompleteSecurity.tsx +++ b/src/components/structures/auth/CompleteSecurity.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/ConfirmSessionLockTheftView.tsx b/src/components/structures/auth/ConfirmSessionLockTheftView.tsx index 38d0d4efcc..b71b627a5a 100644 --- a/src/components/structures/auth/ConfirmSessionLockTheftView.tsx +++ b/src/components/structures/auth/ConfirmSessionLockTheftView.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/E2eSetup.tsx b/src/components/structures/auth/E2eSetup.tsx index 3b064d6134..0fcacca66a 100644 --- a/src/components/structures/auth/E2eSetup.tsx +++ b/src/components/structures/auth/E2eSetup.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/ForgotPassword.tsx b/src/components/structures/auth/ForgotPassword.tsx index 0cc6fbd04d..ecf888f6e9 100644 --- a/src/components/structures/auth/ForgotPassword.tsx +++ b/src/components/structures/auth/ForgotPassword.tsx @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2017, 2018 , 2019 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/Login.tsx b/src/components/structures/auth/Login.tsx index 34cea1317c..b4b41f0515 100644 --- a/src/components/structures/auth/Login.tsx +++ b/src/components/structures/auth/Login.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/LoginSplashView.tsx b/src/components/structures/auth/LoginSplashView.tsx index a75cc14261..3d68a12e8d 100644 --- a/src/components/structures/auth/LoginSplashView.tsx +++ b/src/components/structures/auth/LoginSplashView.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/Registration.tsx b/src/components/structures/auth/Registration.tsx index fa20efe349..1dc6f57bc7 100644 --- a/src/components/structures/auth/Registration.tsx +++ b/src/components/structures/auth/Registration.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/SessionLockStolenView.tsx b/src/components/structures/auth/SessionLockStolenView.tsx index edb20188a6..01193440fc 100644 --- a/src/components/structures/auth/SessionLockStolenView.tsx +++ b/src/components/structures/auth/SessionLockStolenView.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/SetupEncryptionBody.tsx b/src/components/structures/auth/SetupEncryptionBody.tsx index 32528fc7e3..1ff0ad4120 100644 --- a/src/components/structures/auth/SetupEncryptionBody.tsx +++ b/src/components/structures/auth/SetupEncryptionBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/SoftLogout.tsx b/src/components/structures/auth/SoftLogout.tsx index 9c7a900643..696edc0ad2 100644 --- a/src/components/structures/auth/SoftLogout.tsx +++ b/src/components/structures/auth/SoftLogout.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/forgot-password/CheckEmail.tsx b/src/components/structures/auth/forgot-password/CheckEmail.tsx index dbc667c07e..428bc17026 100644 --- a/src/components/structures/auth/forgot-password/CheckEmail.tsx +++ b/src/components/structures/auth/forgot-password/CheckEmail.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/forgot-password/EnterEmail.tsx b/src/components/structures/auth/forgot-password/EnterEmail.tsx index 98af5aef47..d50040552d 100644 --- a/src/components/structures/auth/forgot-password/EnterEmail.tsx +++ b/src/components/structures/auth/forgot-password/EnterEmail.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/forgot-password/VerifyEmailModal.tsx b/src/components/structures/auth/forgot-password/VerifyEmailModal.tsx index 24caa2b13d..cb2c5b3b85 100644 --- a/src/components/structures/auth/forgot-password/VerifyEmailModal.tsx +++ b/src/components/structures/auth/forgot-password/VerifyEmailModal.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/header/AuthHeaderContext.tsx b/src/components/structures/auth/header/AuthHeaderContext.tsx index 97d587f40b..4c9d436f0c 100644 --- a/src/components/structures/auth/header/AuthHeaderContext.tsx +++ b/src/components/structures/auth/header/AuthHeaderContext.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/header/AuthHeaderDisplay.tsx b/src/components/structures/auth/header/AuthHeaderDisplay.tsx index 479e982c9b..f1289a1c99 100644 --- a/src/components/structures/auth/header/AuthHeaderDisplay.tsx +++ b/src/components/structures/auth/header/AuthHeaderDisplay.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/header/AuthHeaderModifier.tsx b/src/components/structures/auth/header/AuthHeaderModifier.tsx index 05313cda3c..d3b3d648e7 100644 --- a/src/components/structures/auth/header/AuthHeaderModifier.tsx +++ b/src/components/structures/auth/header/AuthHeaderModifier.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/auth/header/AuthHeaderProvider.tsx b/src/components/structures/auth/header/AuthHeaderProvider.tsx index 0bf5028274..0189b69212 100644 --- a/src/components/structures/auth/header/AuthHeaderProvider.tsx +++ b/src/components/structures/auth/header/AuthHeaderProvider.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/grouper/BaseGrouper.ts b/src/components/structures/grouper/BaseGrouper.ts index fd8e3a59e2..a685582a2c 100644 --- a/src/components/structures/grouper/BaseGrouper.ts +++ b/src/components/structures/grouper/BaseGrouper.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/grouper/CreationGrouper.tsx b/src/components/structures/grouper/CreationGrouper.tsx index 84982066c3..5009b14baf 100644 --- a/src/components/structures/grouper/CreationGrouper.tsx +++ b/src/components/structures/grouper/CreationGrouper.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/grouper/LateEventGrouper.ts b/src/components/structures/grouper/LateEventGrouper.ts index a248d13143..87cf6549b2 100644 --- a/src/components/structures/grouper/LateEventGrouper.ts +++ b/src/components/structures/grouper/LateEventGrouper.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/grouper/MainGrouper.tsx b/src/components/structures/grouper/MainGrouper.tsx index 72fd3fcdf0..84d0be2674 100644 --- a/src/components/structures/grouper/MainGrouper.tsx +++ b/src/components/structures/grouper/MainGrouper.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/structures/static-page-vars.ts b/src/components/structures/static-page-vars.ts index aaabfafa6d..e27a449546 100644 --- a/src/components/structures/static-page-vars.ts +++ b/src/components/structures/static-page-vars.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/utils/Box.tsx b/src/components/utils/Box.tsx index b48b13aa0f..c81c9bafed 100644 --- a/src/components/utils/Box.tsx +++ b/src/components/utils/Box.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/utils/Flex.tsx b/src/components/utils/Flex.tsx index 852ebb7e40..ae5704d247 100644 --- a/src/components/utils/Flex.tsx +++ b/src/components/utils/Flex.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/audio_messages/AudioPlayer.tsx b/src/components/views/audio_messages/AudioPlayer.tsx index 885b1ecb80..63c77108e3 100644 --- a/src/components/views/audio_messages/AudioPlayer.tsx +++ b/src/components/views/audio_messages/AudioPlayer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/audio_messages/AudioPlayerBase.tsx b/src/components/views/audio_messages/AudioPlayerBase.tsx index 601611e422..97cbad0fc2 100644 --- a/src/components/views/audio_messages/AudioPlayerBase.tsx +++ b/src/components/views/audio_messages/AudioPlayerBase.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/audio_messages/Clock.tsx b/src/components/views/audio_messages/Clock.tsx index ca72d29a05..c8f27c3f9c 100644 --- a/src/components/views/audio_messages/Clock.tsx +++ b/src/components/views/audio_messages/Clock.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/audio_messages/DurationClock.tsx b/src/components/views/audio_messages/DurationClock.tsx index 3794ab9a4f..1a84a15955 100644 --- a/src/components/views/audio_messages/DurationClock.tsx +++ b/src/components/views/audio_messages/DurationClock.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/audio_messages/LiveRecordingClock.tsx b/src/components/views/audio_messages/LiveRecordingClock.tsx index 9569e9c11a..bd8b8d5d23 100644 --- a/src/components/views/audio_messages/LiveRecordingClock.tsx +++ b/src/components/views/audio_messages/LiveRecordingClock.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/audio_messages/LiveRecordingWaveform.tsx b/src/components/views/audio_messages/LiveRecordingWaveform.tsx index 6fdb723015..18c1ca1aa2 100644 --- a/src/components/views/audio_messages/LiveRecordingWaveform.tsx +++ b/src/components/views/audio_messages/LiveRecordingWaveform.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/audio_messages/PlayPauseButton.tsx b/src/components/views/audio_messages/PlayPauseButton.tsx index 1cd2d168b4..1b197c6bad 100644 --- a/src/components/views/audio_messages/PlayPauseButton.tsx +++ b/src/components/views/audio_messages/PlayPauseButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/audio_messages/PlaybackClock.tsx b/src/components/views/audio_messages/PlaybackClock.tsx index b3d736758b..999b5398b1 100644 --- a/src/components/views/audio_messages/PlaybackClock.tsx +++ b/src/components/views/audio_messages/PlaybackClock.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/audio_messages/PlaybackWaveform.tsx b/src/components/views/audio_messages/PlaybackWaveform.tsx index 0f95f7084b..a5113dd042 100644 --- a/src/components/views/audio_messages/PlaybackWaveform.tsx +++ b/src/components/views/audio_messages/PlaybackWaveform.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/audio_messages/RecordingPlayback.tsx b/src/components/views/audio_messages/RecordingPlayback.tsx index 7b00c59a1c..4c030f81ef 100644 --- a/src/components/views/audio_messages/RecordingPlayback.tsx +++ b/src/components/views/audio_messages/RecordingPlayback.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/audio_messages/SeekBar.tsx b/src/components/views/audio_messages/SeekBar.tsx index f56bfee9af..1a79f5be06 100644 --- a/src/components/views/audio_messages/SeekBar.tsx +++ b/src/components/views/audio_messages/SeekBar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/audio_messages/Waveform.tsx b/src/components/views/audio_messages/Waveform.tsx index e0a440f505..83d02b81fd 100644 --- a/src/components/views/audio_messages/Waveform.tsx +++ b/src/components/views/audio_messages/Waveform.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/AuthBody.tsx b/src/components/views/auth/AuthBody.tsx index ea4deb4f12..b83955fcd9 100644 --- a/src/components/views/auth/AuthBody.tsx +++ b/src/components/views/auth/AuthBody.tsx @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/AuthFooter.tsx b/src/components/views/auth/AuthFooter.tsx index a792896a88..472ff53f09 100644 --- a/src/components/views/auth/AuthFooter.tsx +++ b/src/components/views/auth/AuthFooter.tsx @@ -3,7 +3,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/AuthHeader.tsx b/src/components/views/auth/AuthHeader.tsx index a3a34d8e5f..de16e11def 100644 --- a/src/components/views/auth/AuthHeader.tsx +++ b/src/components/views/auth/AuthHeader.tsx @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/AuthHeaderLogo.tsx b/src/components/views/auth/AuthHeaderLogo.tsx index 07cc2f978a..35d35bc3a5 100644 --- a/src/components/views/auth/AuthHeaderLogo.tsx +++ b/src/components/views/auth/AuthHeaderLogo.tsx @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/AuthPage.tsx b/src/components/views/auth/AuthPage.tsx index 2782d0a641..dd3facaa79 100644 --- a/src/components/views/auth/AuthPage.tsx +++ b/src/components/views/auth/AuthPage.tsx @@ -3,7 +3,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/CaptchaForm.tsx b/src/components/views/auth/CaptchaForm.tsx index f216f004fd..d019ba234c 100644 --- a/src/components/views/auth/CaptchaForm.tsx +++ b/src/components/views/auth/CaptchaForm.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/CompleteSecurityBody.tsx b/src/components/views/auth/CompleteSecurityBody.tsx index 8c6d77a049..77808ec71c 100644 --- a/src/components/views/auth/CompleteSecurityBody.tsx +++ b/src/components/views/auth/CompleteSecurityBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/CountryDropdown.tsx b/src/components/views/auth/CountryDropdown.tsx index a4bf6592bf..7e8d669d15 100644 --- a/src/components/views/auth/CountryDropdown.tsx +++ b/src/components/views/auth/CountryDropdown.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/EmailField.tsx b/src/components/views/auth/EmailField.tsx index 1a72872b95..ddc20c0bd1 100644 --- a/src/components/views/auth/EmailField.tsx +++ b/src/components/views/auth/EmailField.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/InteractiveAuthEntryComponents.tsx b/src/components/views/auth/InteractiveAuthEntryComponents.tsx index ae5c07e348..d493e5c3ca 100644 --- a/src/components/views/auth/InteractiveAuthEntryComponents.tsx +++ b/src/components/views/auth/InteractiveAuthEntryComponents.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/LanguageSelector.tsx b/src/components/views/auth/LanguageSelector.tsx index c15189b88d..a3be10eeec 100644 --- a/src/components/views/auth/LanguageSelector.tsx +++ b/src/components/views/auth/LanguageSelector.tsx @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/LoginWithQR-types.ts b/src/components/views/auth/LoginWithQR-types.ts index 2f041a7ced..8e1d58515d 100644 --- a/src/components/views/auth/LoginWithQR-types.ts +++ b/src/components/views/auth/LoginWithQR-types.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/LoginWithQR.tsx b/src/components/views/auth/LoginWithQR.tsx index 76475e1dd3..ecf107cfbd 100644 --- a/src/components/views/auth/LoginWithQR.tsx +++ b/src/components/views/auth/LoginWithQR.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/LoginWithQRFlow.tsx b/src/components/views/auth/LoginWithQRFlow.tsx index 33d51f6952..663dc1acff 100644 --- a/src/components/views/auth/LoginWithQRFlow.tsx +++ b/src/components/views/auth/LoginWithQRFlow.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022-2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/PassphraseConfirmField.tsx b/src/components/views/auth/PassphraseConfirmField.tsx index 2b27d3ecaf..0337c80359 100644 --- a/src/components/views/auth/PassphraseConfirmField.tsx +++ b/src/components/views/auth/PassphraseConfirmField.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/PassphraseField.tsx b/src/components/views/auth/PassphraseField.tsx index 90201d1ec1..8fc56cc68c 100644 --- a/src/components/views/auth/PassphraseField.tsx +++ b/src/components/views/auth/PassphraseField.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/PasswordLogin.tsx b/src/components/views/auth/PasswordLogin.tsx index c2c1e9382d..e13af99f6f 100644 --- a/src/components/views/auth/PasswordLogin.tsx +++ b/src/components/views/auth/PasswordLogin.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 , 2017, 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/RegistrationForm.tsx b/src/components/views/auth/RegistrationForm.tsx index 540e5905a3..ef2c83d3be 100644 --- a/src/components/views/auth/RegistrationForm.tsx +++ b/src/components/views/auth/RegistrationForm.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2015, 2016 , 2017, 2018, 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/auth/Welcome.tsx b/src/components/views/auth/Welcome.tsx index 13755f6ca1..39d5f95a8d 100644 --- a/src/components/views/auth/Welcome.tsx +++ b/src/components/views/auth/Welcome.tsx @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/avatars/BaseAvatar.tsx b/src/components/views/avatars/BaseAvatar.tsx index 766eb561ec..942650c65a 100644 --- a/src/components/views/avatars/BaseAvatar.tsx +++ b/src/components/views/avatars/BaseAvatar.tsx @@ -5,7 +5,7 @@ Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/avatars/DecoratedRoomAvatar.tsx b/src/components/views/avatars/DecoratedRoomAvatar.tsx index df8a6c00d8..5a11e0f6b2 100644 --- a/src/components/views/avatars/DecoratedRoomAvatar.tsx +++ b/src/components/views/avatars/DecoratedRoomAvatar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/avatars/MemberAvatar.tsx b/src/components/views/avatars/MemberAvatar.tsx index 19df06a249..641fe4a783 100644 --- a/src/components/views/avatars/MemberAvatar.tsx +++ b/src/components/views/avatars/MemberAvatar.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/avatars/RoomAvatar.tsx b/src/components/views/avatars/RoomAvatar.tsx index c839761fee..e1d71ac1aa 100644 --- a/src/components/views/avatars/RoomAvatar.tsx +++ b/src/components/views/avatars/RoomAvatar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/avatars/SearchResultAvatar.tsx b/src/components/views/avatars/SearchResultAvatar.tsx index ad2b3dd668..c50c4d81b2 100644 --- a/src/components/views/avatars/SearchResultAvatar.tsx +++ b/src/components/views/avatars/SearchResultAvatar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/avatars/WidgetAvatar.tsx b/src/components/views/avatars/WidgetAvatar.tsx index bbb673a295..f6d73e7d1c 100644 --- a/src/components/views/avatars/WidgetAvatar.tsx +++ b/src/components/views/avatars/WidgetAvatar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/avatars/WithPresenceIndicator.tsx b/src/components/views/avatars/WithPresenceIndicator.tsx index 519575d0d5..9d10f8dce6 100644 --- a/src/components/views/avatars/WithPresenceIndicator.tsx +++ b/src/components/views/avatars/WithPresenceIndicator.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/BeaconListItem.tsx b/src/components/views/beacon/BeaconListItem.tsx index 972a91c392..01a7f9364a 100644 --- a/src/components/views/beacon/BeaconListItem.tsx +++ b/src/components/views/beacon/BeaconListItem.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/BeaconMarker.tsx b/src/components/views/beacon/BeaconMarker.tsx index 5f8f76ecfe..01d74e72b1 100644 --- a/src/components/views/beacon/BeaconMarker.tsx +++ b/src/components/views/beacon/BeaconMarker.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/BeaconStatus.tsx b/src/components/views/beacon/BeaconStatus.tsx index 08c3797d32..1415dc229c 100644 --- a/src/components/views/beacon/BeaconStatus.tsx +++ b/src/components/views/beacon/BeaconStatus.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/BeaconStatusTooltip.tsx b/src/components/views/beacon/BeaconStatusTooltip.tsx index e69e1c6b85..1dc1b05e61 100644 --- a/src/components/views/beacon/BeaconStatusTooltip.tsx +++ b/src/components/views/beacon/BeaconStatusTooltip.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/BeaconViewDialog.tsx b/src/components/views/beacon/BeaconViewDialog.tsx index ec737baffb..27f9f2e520 100644 --- a/src/components/views/beacon/BeaconViewDialog.tsx +++ b/src/components/views/beacon/BeaconViewDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/DialogOwnBeaconStatus.tsx b/src/components/views/beacon/DialogOwnBeaconStatus.tsx index 56ffb5a1a6..e6b35d9247 100644 --- a/src/components/views/beacon/DialogOwnBeaconStatus.tsx +++ b/src/components/views/beacon/DialogOwnBeaconStatus.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/DialogSidebar.tsx b/src/components/views/beacon/DialogSidebar.tsx index 824d772bce..9fcca26dde 100644 --- a/src/components/views/beacon/DialogSidebar.tsx +++ b/src/components/views/beacon/DialogSidebar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/LeftPanelLiveShareWarning.tsx b/src/components/views/beacon/LeftPanelLiveShareWarning.tsx index ac80067fad..0c3f26f91e 100644 --- a/src/components/views/beacon/LeftPanelLiveShareWarning.tsx +++ b/src/components/views/beacon/LeftPanelLiveShareWarning.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/LiveTimeRemaining.tsx b/src/components/views/beacon/LiveTimeRemaining.tsx index 89052b5df2..c0730938ee 100644 --- a/src/components/views/beacon/LiveTimeRemaining.tsx +++ b/src/components/views/beacon/LiveTimeRemaining.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/OwnBeaconStatus.tsx b/src/components/views/beacon/OwnBeaconStatus.tsx index e84fa6d0b9..7d0f277786 100644 --- a/src/components/views/beacon/OwnBeaconStatus.tsx +++ b/src/components/views/beacon/OwnBeaconStatus.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/RoomCallBanner.tsx b/src/components/views/beacon/RoomCallBanner.tsx index b5626da95b..a9f25e7e6c 100644 --- a/src/components/views/beacon/RoomCallBanner.tsx +++ b/src/components/views/beacon/RoomCallBanner.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/ShareLatestLocation.tsx b/src/components/views/beacon/ShareLatestLocation.tsx index 74e253a0bb..5300a81900 100644 --- a/src/components/views/beacon/ShareLatestLocation.tsx +++ b/src/components/views/beacon/ShareLatestLocation.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/StyledLiveBeaconIcon.tsx b/src/components/views/beacon/StyledLiveBeaconIcon.tsx index b60d9c6070..c73931918f 100644 --- a/src/components/views/beacon/StyledLiveBeaconIcon.tsx +++ b/src/components/views/beacon/StyledLiveBeaconIcon.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/displayStatus.ts b/src/components/views/beacon/displayStatus.ts index ad92e0f0fb..e11b0018ba 100644 --- a/src/components/views/beacon/displayStatus.ts +++ b/src/components/views/beacon/displayStatus.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beacon/index.tsx b/src/components/views/beacon/index.tsx index 782a69f98e..871e7cb07e 100644 --- a/src/components/views/beacon/index.tsx +++ b/src/components/views/beacon/index.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/beta/BetaCard.tsx b/src/components/views/beta/BetaCard.tsx index 9b55d17a10..93d69dffce 100644 --- a/src/components/views/beta/BetaCard.tsx +++ b/src/components/views/beta/BetaCard.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/context_menus/DeveloperToolsOption.tsx b/src/components/views/context_menus/DeveloperToolsOption.tsx index ce673f5285..fc77a2e284 100644 --- a/src/components/views/context_menus/DeveloperToolsOption.tsx +++ b/src/components/views/context_menus/DeveloperToolsOption.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/context_menus/DeviceContextMenu.tsx b/src/components/views/context_menus/DeviceContextMenu.tsx index efe1b33e47..5d71049fb4 100644 --- a/src/components/views/context_menus/DeviceContextMenu.tsx +++ b/src/components/views/context_menus/DeviceContextMenu.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/context_menus/DialpadContextMenu.tsx b/src/components/views/context_menus/DialpadContextMenu.tsx index 72e7e04817..c4d0d73786 100644 --- a/src/components/views/context_menus/DialpadContextMenu.tsx +++ b/src/components/views/context_menus/DialpadContextMenu.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/context_menus/GenericElementContextMenu.tsx b/src/components/views/context_menus/GenericElementContextMenu.tsx index afb39d6ebe..b6d3304c42 100644 --- a/src/components/views/context_menus/GenericElementContextMenu.tsx +++ b/src/components/views/context_menus/GenericElementContextMenu.tsx @@ -1,7 +1,7 @@ /* Copyright 2017-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/context_menus/IconizedContextMenu.tsx b/src/components/views/context_menus/IconizedContextMenu.tsx index f621d8af87..17a3805513 100644 --- a/src/components/views/context_menus/IconizedContextMenu.tsx +++ b/src/components/views/context_menus/IconizedContextMenu.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/context_menus/KebabContextMenu.tsx b/src/components/views/context_menus/KebabContextMenu.tsx index 7e2077473c..e65f0389ff 100644 --- a/src/components/views/context_menus/KebabContextMenu.tsx +++ b/src/components/views/context_menus/KebabContextMenu.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/context_menus/LegacyCallContextMenu.tsx b/src/components/views/context_menus/LegacyCallContextMenu.tsx index e6bb191df8..bc3deab7a1 100644 --- a/src/components/views/context_menus/LegacyCallContextMenu.tsx +++ b/src/components/views/context_menus/LegacyCallContextMenu.tsx @@ -1,7 +1,7 @@ /* Copyright 2020-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/context_menus/MessageContextMenu.tsx b/src/components/views/context_menus/MessageContextMenu.tsx index 711ffbe70f..0af3604fca 100644 --- a/src/components/views/context_menus/MessageContextMenu.tsx +++ b/src/components/views/context_menus/MessageContextMenu.tsx @@ -4,7 +4,7 @@ Copyright 2015-2023 The Matrix.org Foundation C.I.C. Copyright 2021, 2022 Šimon Brandner Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/context_menus/RoomGeneralContextMenu.tsx b/src/components/views/context_menus/RoomGeneralContextMenu.tsx index b2abac1985..c54aa1e465 100644 --- a/src/components/views/context_menus/RoomGeneralContextMenu.tsx +++ b/src/components/views/context_menus/RoomGeneralContextMenu.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/context_menus/RoomNotificationContextMenu.tsx b/src/components/views/context_menus/RoomNotificationContextMenu.tsx index b43f4e4112..ea63880762 100644 --- a/src/components/views/context_menus/RoomNotificationContextMenu.tsx +++ b/src/components/views/context_menus/RoomNotificationContextMenu.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/context_menus/SpaceContextMenu.tsx b/src/components/views/context_menus/SpaceContextMenu.tsx index 2d407214da..11a1364d6d 100644 --- a/src/components/views/context_menus/SpaceContextMenu.tsx +++ b/src/components/views/context_menus/SpaceContextMenu.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/context_menus/ThreadListContextMenu.tsx b/src/components/views/context_menus/ThreadListContextMenu.tsx index 0d30e7174a..eea9815954 100644 --- a/src/components/views/context_menus/ThreadListContextMenu.tsx +++ b/src/components/views/context_menus/ThreadListContextMenu.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/context_menus/WidgetContextMenu.tsx b/src/components/views/context_menus/WidgetContextMenu.tsx index cf1fa756e7..894e8f8c7d 100644 --- a/src/components/views/context_menus/WidgetContextMenu.tsx +++ b/src/components/views/context_menus/WidgetContextMenu.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/AddExistingSubspaceDialog.tsx b/src/components/views/dialogs/AddExistingSubspaceDialog.tsx index e76c42c2bd..d7311244b7 100644 --- a/src/components/views/dialogs/AddExistingSubspaceDialog.tsx +++ b/src/components/views/dialogs/AddExistingSubspaceDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/AddExistingToSpaceDialog.tsx b/src/components/views/dialogs/AddExistingToSpaceDialog.tsx index fd562583db..3cc62f4155 100644 --- a/src/components/views/dialogs/AddExistingToSpaceDialog.tsx +++ b/src/components/views/dialogs/AddExistingToSpaceDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/AnalyticsLearnMoreDialog.tsx b/src/components/views/dialogs/AnalyticsLearnMoreDialog.tsx index 98e2921a60..5396d1e9a7 100644 --- a/src/components/views/dialogs/AnalyticsLearnMoreDialog.tsx +++ b/src/components/views/dialogs/AnalyticsLearnMoreDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/AppDownloadDialog.tsx b/src/components/views/dialogs/AppDownloadDialog.tsx index 4faeb08387..a934b5825a 100644 --- a/src/components/views/dialogs/AppDownloadDialog.tsx +++ b/src/components/views/dialogs/AppDownloadDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/AskInviteAnywayDialog.tsx b/src/components/views/dialogs/AskInviteAnywayDialog.tsx index de8fc5eb3c..b18d70df11 100644 --- a/src/components/views/dialogs/AskInviteAnywayDialog.tsx +++ b/src/components/views/dialogs/AskInviteAnywayDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/BaseDialog.tsx b/src/components/views/dialogs/BaseDialog.tsx index ccb162e1cb..39afb2e621 100644 --- a/src/components/views/dialogs/BaseDialog.tsx +++ b/src/components/views/dialogs/BaseDialog.tsx @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018, 2019 New Vector Ltd Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/BetaFeedbackDialog.tsx b/src/components/views/dialogs/BetaFeedbackDialog.tsx index c479e1dfe0..2c13ae0006 100644 --- a/src/components/views/dialogs/BetaFeedbackDialog.tsx +++ b/src/components/views/dialogs/BetaFeedbackDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/BugReportDialog.tsx b/src/components/views/dialogs/BugReportDialog.tsx index 373f30d3ae..013f9ecb06 100644 --- a/src/components/views/dialogs/BugReportDialog.tsx +++ b/src/components/views/dialogs/BugReportDialog.tsx @@ -5,7 +5,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2017 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/BulkRedactDialog.tsx b/src/components/views/dialogs/BulkRedactDialog.tsx index 33fa825091..d766c6c973 100644 --- a/src/components/views/dialogs/BulkRedactDialog.tsx +++ b/src/components/views/dialogs/BulkRedactDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ChangelogDialog.tsx b/src/components/views/dialogs/ChangelogDialog.tsx index ae3c157c78..087beaf6a8 100644 --- a/src/components/views/dialogs/ChangelogDialog.tsx +++ b/src/components/views/dialogs/ChangelogDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2016 Aviral Dasgupta -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ConfirmAndWaitRedactDialog.tsx b/src/components/views/dialogs/ConfirmAndWaitRedactDialog.tsx index 5771181951..2d7500e72c 100644 --- a/src/components/views/dialogs/ConfirmAndWaitRedactDialog.tsx +++ b/src/components/views/dialogs/ConfirmAndWaitRedactDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ConfirmRedactDialog.tsx b/src/components/views/dialogs/ConfirmRedactDialog.tsx index f4258c9d6d..7733d83585 100644 --- a/src/components/views/dialogs/ConfirmRedactDialog.tsx +++ b/src/components/views/dialogs/ConfirmRedactDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ConfirmSpaceUserActionDialog.tsx b/src/components/views/dialogs/ConfirmSpaceUserActionDialog.tsx index cb79f27a2f..9c21b469e4 100644 --- a/src/components/views/dialogs/ConfirmSpaceUserActionDialog.tsx +++ b/src/components/views/dialogs/ConfirmSpaceUserActionDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ConfirmUserActionDialog.tsx b/src/components/views/dialogs/ConfirmUserActionDialog.tsx index ffe8c778f4..f79601f855 100644 --- a/src/components/views/dialogs/ConfirmUserActionDialog.tsx +++ b/src/components/views/dialogs/ConfirmUserActionDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ConfirmWipeDeviceDialog.tsx b/src/components/views/dialogs/ConfirmWipeDeviceDialog.tsx index 1fa8f4f0c5..695219a54b 100644 --- a/src/components/views/dialogs/ConfirmWipeDeviceDialog.tsx +++ b/src/components/views/dialogs/ConfirmWipeDeviceDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/CreateRoomDialog.tsx b/src/components/views/dialogs/CreateRoomDialog.tsx index 4d36d01623..d77ec14578 100644 --- a/src/components/views/dialogs/CreateRoomDialog.tsx +++ b/src/components/views/dialogs/CreateRoomDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. Copyright 2017 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/CreateSubspaceDialog.tsx b/src/components/views/dialogs/CreateSubspaceDialog.tsx index 6add812793..6af128ef64 100644 --- a/src/components/views/dialogs/CreateSubspaceDialog.tsx +++ b/src/components/views/dialogs/CreateSubspaceDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/DeactivateAccountDialog.tsx b/src/components/views/dialogs/DeactivateAccountDialog.tsx index d68c931cc1..52140b2967 100644 --- a/src/components/views/dialogs/DeactivateAccountDialog.tsx +++ b/src/components/views/dialogs/DeactivateAccountDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/DevtoolsDialog.tsx b/src/components/views/dialogs/DevtoolsDialog.tsx index 7dc683469a..e9e2c9a334 100644 --- a/src/components/views/dialogs/DevtoolsDialog.tsx +++ b/src/components/views/dialogs/DevtoolsDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2023 The Matrix.org Foundation C.I.C. Copyright 2022 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/EndPollDialog.tsx b/src/components/views/dialogs/EndPollDialog.tsx index 92c98190fe..03d9c7f7f5 100644 --- a/src/components/views/dialogs/EndPollDialog.tsx +++ b/src/components/views/dialogs/EndPollDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ErrorDialog.tsx b/src/components/views/dialogs/ErrorDialog.tsx index 2e7cd753fc..5f800e53df 100644 --- a/src/components/views/dialogs/ErrorDialog.tsx +++ b/src/components/views/dialogs/ErrorDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ExportDialog.tsx b/src/components/views/dialogs/ExportDialog.tsx index 54c58fe2e4..bd7ad24bca 100644 --- a/src/components/views/dialogs/ExportDialog.tsx +++ b/src/components/views/dialogs/ExportDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/FeedbackDialog.tsx b/src/components/views/dialogs/FeedbackDialog.tsx index 1e391d8002..27de625920 100644 --- a/src/components/views/dialogs/FeedbackDialog.tsx +++ b/src/components/views/dialogs/FeedbackDialog.tsx @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ForwardDialog.tsx b/src/components/views/dialogs/ForwardDialog.tsx index 687e0f9eed..dc6186a868 100644 --- a/src/components/views/dialogs/ForwardDialog.tsx +++ b/src/components/views/dialogs/ForwardDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Robin Townsend -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/GenericFeatureFeedbackDialog.tsx b/src/components/views/dialogs/GenericFeatureFeedbackDialog.tsx index 489e4c7bce..1ea187361e 100644 --- a/src/components/views/dialogs/GenericFeatureFeedbackDialog.tsx +++ b/src/components/views/dialogs/GenericFeatureFeedbackDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/IncomingSasDialog.tsx b/src/components/views/dialogs/IncomingSasDialog.tsx index 4e273f62f7..e5df3a35b1 100644 --- a/src/components/views/dialogs/IncomingSasDialog.tsx +++ b/src/components/views/dialogs/IncomingSasDialog.tsx @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/InfoDialog.tsx b/src/components/views/dialogs/InfoDialog.tsx index 1f5449a327..20fb51a7d0 100644 --- a/src/components/views/dialogs/InfoDialog.tsx +++ b/src/components/views/dialogs/InfoDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. Copyright 2019 Bastian Masanek, Noxware IT -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/IntegrationsDisabledDialog.tsx b/src/components/views/dialogs/IntegrationsDisabledDialog.tsx index 44fea65d53..ad0f765413 100644 --- a/src/components/views/dialogs/IntegrationsDisabledDialog.tsx +++ b/src/components/views/dialogs/IntegrationsDisabledDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/IntegrationsImpossibleDialog.tsx b/src/components/views/dialogs/IntegrationsImpossibleDialog.tsx index a17b25bf23..625854a36a 100644 --- a/src/components/views/dialogs/IntegrationsImpossibleDialog.tsx +++ b/src/components/views/dialogs/IntegrationsImpossibleDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/InteractiveAuthDialog.tsx b/src/components/views/dialogs/InteractiveAuthDialog.tsx index 305534e6db..beb27573c6 100644 --- a/src/components/views/dialogs/InteractiveAuthDialog.tsx +++ b/src/components/views/dialogs/InteractiveAuthDialog.tsx @@ -4,7 +4,7 @@ Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2017 Vector Creations Ltd Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/InviteDialog.tsx b/src/components/views/dialogs/InviteDialog.tsx index 35e04fb12e..d72baae523 100644 --- a/src/components/views/dialogs/InviteDialog.tsx +++ b/src/components/views/dialogs/InviteDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/InviteDialogTypes.ts b/src/components/views/dialogs/InviteDialogTypes.ts index 97a71408f3..535693faae 100644 --- a/src/components/views/dialogs/InviteDialogTypes.ts +++ b/src/components/views/dialogs/InviteDialogTypes.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/LeaveSpaceDialog.tsx b/src/components/views/dialogs/LeaveSpaceDialog.tsx index 50821694db..72ad5f478f 100644 --- a/src/components/views/dialogs/LeaveSpaceDialog.tsx +++ b/src/components/views/dialogs/LeaveSpaceDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/LogoutDialog.tsx b/src/components/views/dialogs/LogoutDialog.tsx index af8f91533e..460871fb36 100644 --- a/src/components/views/dialogs/LogoutDialog.tsx +++ b/src/components/views/dialogs/LogoutDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2022 The Matrix.org Foundation C.I.C. Copyright 2018, 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ManageRestrictedJoinRuleDialog.tsx b/src/components/views/dialogs/ManageRestrictedJoinRuleDialog.tsx index d124d97456..7a2e3b35ef 100644 --- a/src/components/views/dialogs/ManageRestrictedJoinRuleDialog.tsx +++ b/src/components/views/dialogs/ManageRestrictedJoinRuleDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/MessageEditHistoryDialog.tsx b/src/components/views/dialogs/MessageEditHistoryDialog.tsx index 48564e2411..3008e2d16c 100644 --- a/src/components/views/dialogs/MessageEditHistoryDialog.tsx +++ b/src/components/views/dialogs/MessageEditHistoryDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ModalWidgetDialog.tsx b/src/components/views/dialogs/ModalWidgetDialog.tsx index 7df9130a7a..58c6c92a5e 100644 --- a/src/components/views/dialogs/ModalWidgetDialog.tsx +++ b/src/components/views/dialogs/ModalWidgetDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ModuleUiDialog.tsx b/src/components/views/dialogs/ModuleUiDialog.tsx index 7cdb0190d0..89ef4ad0ea 100644 --- a/src/components/views/dialogs/ModuleUiDialog.tsx +++ b/src/components/views/dialogs/ModuleUiDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/PollHistoryDialog.tsx b/src/components/views/dialogs/PollHistoryDialog.tsx index 50774425cc..528b44f332 100644 --- a/src/components/views/dialogs/PollHistoryDialog.tsx +++ b/src/components/views/dialogs/PollHistoryDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/QuestionDialog.tsx b/src/components/views/dialogs/QuestionDialog.tsx index 109599ee08..1539bbe365 100644 --- a/src/components/views/dialogs/QuestionDialog.tsx +++ b/src/components/views/dialogs/QuestionDialog.tsx @@ -2,7 +2,7 @@ Copyright 2017-2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/RegistrationEmailPromptDialog.tsx b/src/components/views/dialogs/RegistrationEmailPromptDialog.tsx index a02098d3ed..a7748e3d69 100644 --- a/src/components/views/dialogs/RegistrationEmailPromptDialog.tsx +++ b/src/components/views/dialogs/RegistrationEmailPromptDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ReportEventDialog.tsx b/src/components/views/dialogs/ReportEventDialog.tsx index 3234c2be35..5c1e409ca5 100644 --- a/src/components/views/dialogs/ReportEventDialog.tsx +++ b/src/components/views/dialogs/ReportEventDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/RoomSettingsDialog.tsx b/src/components/views/dialogs/RoomSettingsDialog.tsx index cb804b8e00..a4c8dd91b2 100644 --- a/src/components/views/dialogs/RoomSettingsDialog.tsx +++ b/src/components/views/dialogs/RoomSettingsDialog.tsx @@ -4,7 +4,7 @@ Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/RoomUpgradeDialog.tsx b/src/components/views/dialogs/RoomUpgradeDialog.tsx index 337c1a334c..fdb0a9f0a6 100644 --- a/src/components/views/dialogs/RoomUpgradeDialog.tsx +++ b/src/components/views/dialogs/RoomUpgradeDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/RoomUpgradeWarningDialog.tsx b/src/components/views/dialogs/RoomUpgradeWarningDialog.tsx index 48d0bef28c..c15db4a5df 100644 --- a/src/components/views/dialogs/RoomUpgradeWarningDialog.tsx +++ b/src/components/views/dialogs/RoomUpgradeWarningDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ScrollableBaseModal.tsx b/src/components/views/dialogs/ScrollableBaseModal.tsx index 564c773975..2f9c94f66f 100644 --- a/src/components/views/dialogs/ScrollableBaseModal.tsx +++ b/src/components/views/dialogs/ScrollableBaseModal.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ServerOfflineDialog.tsx b/src/components/views/dialogs/ServerOfflineDialog.tsx index d48097b060..b4d03c4c12 100644 --- a/src/components/views/dialogs/ServerOfflineDialog.tsx +++ b/src/components/views/dialogs/ServerOfflineDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ServerPickerDialog.tsx b/src/components/views/dialogs/ServerPickerDialog.tsx index 3fc74ec80a..9fd5002138 100644 --- a/src/components/views/dialogs/ServerPickerDialog.tsx +++ b/src/components/views/dialogs/ServerPickerDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/SeshatResetDialog.tsx b/src/components/views/dialogs/SeshatResetDialog.tsx index 3e257fd94f..247d6f9b04 100644 --- a/src/components/views/dialogs/SeshatResetDialog.tsx +++ b/src/components/views/dialogs/SeshatResetDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/SessionRestoreErrorDialog.tsx b/src/components/views/dialogs/SessionRestoreErrorDialog.tsx index 84832cb1f2..26baef9f2a 100644 --- a/src/components/views/dialogs/SessionRestoreErrorDialog.tsx +++ b/src/components/views/dialogs/SessionRestoreErrorDialog.tsx @@ -4,7 +4,7 @@ Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/SetEmailDialog.tsx b/src/components/views/dialogs/SetEmailDialog.tsx index 2b1798e387..57d8ed12d4 100644 --- a/src/components/views/dialogs/SetEmailDialog.tsx +++ b/src/components/views/dialogs/SetEmailDialog.tsx @@ -2,7 +2,7 @@ Copyright 2018-2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/ShareDialog.tsx b/src/components/views/dialogs/ShareDialog.tsx index 2d3a277188..3feff26f8f 100644 --- a/src/components/views/dialogs/ShareDialog.tsx +++ b/src/components/views/dialogs/ShareDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/SlashCommandHelpDialog.tsx b/src/components/views/dialogs/SlashCommandHelpDialog.tsx index b5e01bf41e..1c087567c3 100644 --- a/src/components/views/dialogs/SlashCommandHelpDialog.tsx +++ b/src/components/views/dialogs/SlashCommandHelpDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/SpacePreferencesDialog.tsx b/src/components/views/dialogs/SpacePreferencesDialog.tsx index 1361b2728f..a5f30f0d64 100644 --- a/src/components/views/dialogs/SpacePreferencesDialog.tsx +++ b/src/components/views/dialogs/SpacePreferencesDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/SpaceSettingsDialog.tsx b/src/components/views/dialogs/SpaceSettingsDialog.tsx index fd415c7897..5ea4ea3418 100644 --- a/src/components/views/dialogs/SpaceSettingsDialog.tsx +++ b/src/components/views/dialogs/SpaceSettingsDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/StorageEvictedDialog.tsx b/src/components/views/dialogs/StorageEvictedDialog.tsx index 3e62d85a9a..bdacbcbb51 100644 --- a/src/components/views/dialogs/StorageEvictedDialog.tsx +++ b/src/components/views/dialogs/StorageEvictedDialog.tsx @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/TermsDialog.tsx b/src/components/views/dialogs/TermsDialog.tsx index 4d66e41b5a..c71a77c85b 100644 --- a/src/components/views/dialogs/TermsDialog.tsx +++ b/src/components/views/dialogs/TermsDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/TextInputDialog.tsx b/src/components/views/dialogs/TextInputDialog.tsx index 811b79100f..9d68668413 100644 --- a/src/components/views/dialogs/TextInputDialog.tsx +++ b/src/components/views/dialogs/TextInputDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/UnpinAllDialog.tsx b/src/components/views/dialogs/UnpinAllDialog.tsx index 4d66a339ce..f2390a978c 100644 --- a/src/components/views/dialogs/UnpinAllDialog.tsx +++ b/src/components/views/dialogs/UnpinAllDialog.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/UntrustedDeviceDialog.tsx b/src/components/views/dialogs/UntrustedDeviceDialog.tsx index 4b37032207..668a3f52b3 100644 --- a/src/components/views/dialogs/UntrustedDeviceDialog.tsx +++ b/src/components/views/dialogs/UntrustedDeviceDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 , 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/UploadConfirmDialog.tsx b/src/components/views/dialogs/UploadConfirmDialog.tsx index 7fdb601c44..83459c7ed7 100644 --- a/src/components/views/dialogs/UploadConfirmDialog.tsx +++ b/src/components/views/dialogs/UploadConfirmDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/UploadFailureDialog.tsx b/src/components/views/dialogs/UploadFailureDialog.tsx index ca7b1c14fd..7e98fb24b3 100644 --- a/src/components/views/dialogs/UploadFailureDialog.tsx +++ b/src/components/views/dialogs/UploadFailureDialog.tsx @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/UserSettingsDialog.tsx b/src/components/views/dialogs/UserSettingsDialog.tsx index 473ed2efe3..2c1c87d19f 100644 --- a/src/components/views/dialogs/UserSettingsDialog.tsx +++ b/src/components/views/dialogs/UserSettingsDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2024 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/UserTab.ts b/src/components/views/dialogs/UserTab.ts index 467a67cd9f..1984f99604 100644 --- a/src/components/views/dialogs/UserTab.ts +++ b/src/components/views/dialogs/UserTab.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/VerificationRequestDialog.tsx b/src/components/views/dialogs/VerificationRequestDialog.tsx index d2ea83f2af..bb49abbf15 100644 --- a/src/components/views/dialogs/VerificationRequestDialog.tsx +++ b/src/components/views/dialogs/VerificationRequestDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/WidgetCapabilitiesPromptDialog.tsx b/src/components/views/dialogs/WidgetCapabilitiesPromptDialog.tsx index 1a94f0a9fd..7e57d95708 100644 --- a/src/components/views/dialogs/WidgetCapabilitiesPromptDialog.tsx +++ b/src/components/views/dialogs/WidgetCapabilitiesPromptDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/WidgetOpenIDPermissionsDialog.tsx b/src/components/views/dialogs/WidgetOpenIDPermissionsDialog.tsx index 263f5127b7..4c1e8a9d32 100644 --- a/src/components/views/dialogs/WidgetOpenIDPermissionsDialog.tsx +++ b/src/components/views/dialogs/WidgetOpenIDPermissionsDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. Copyright 2019 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/devtools/AccountData.tsx b/src/components/views/dialogs/devtools/AccountData.tsx index 920cab8860..402aa396d1 100644 --- a/src/components/views/dialogs/devtools/AccountData.tsx +++ b/src/components/views/dialogs/devtools/AccountData.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2022 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/devtools/BaseTool.tsx b/src/components/views/dialogs/devtools/BaseTool.tsx index 88dd2ea178..adc13d2eab 100644 --- a/src/components/views/dialogs/devtools/BaseTool.tsx +++ b/src/components/views/dialogs/devtools/BaseTool.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2022 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/devtools/Event.tsx b/src/components/views/dialogs/devtools/Event.tsx index f9fc68da22..a0f7bfece5 100644 --- a/src/components/views/dialogs/devtools/Event.tsx +++ b/src/components/views/dialogs/devtools/Event.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2022 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/devtools/FilteredList.tsx b/src/components/views/dialogs/devtools/FilteredList.tsx index 400c646958..0f0c52df94 100644 --- a/src/components/views/dialogs/devtools/FilteredList.tsx +++ b/src/components/views/dialogs/devtools/FilteredList.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2022 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/devtools/RoomNotifications.tsx b/src/components/views/dialogs/devtools/RoomNotifications.tsx index 1bcff78487..a7c8bb7dde 100644 --- a/src/components/views/dialogs/devtools/RoomNotifications.tsx +++ b/src/components/views/dialogs/devtools/RoomNotifications.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/devtools/RoomState.tsx b/src/components/views/dialogs/devtools/RoomState.tsx index a331a19147..8831ccc805 100644 --- a/src/components/views/dialogs/devtools/RoomState.tsx +++ b/src/components/views/dialogs/devtools/RoomState.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2022 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/devtools/ServerInfo.tsx b/src/components/views/dialogs/devtools/ServerInfo.tsx index 337ed42177..85780b8fd9 100644 --- a/src/components/views/dialogs/devtools/ServerInfo.tsx +++ b/src/components/views/dialogs/devtools/ServerInfo.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/devtools/ServersInRoom.tsx b/src/components/views/dialogs/devtools/ServersInRoom.tsx index fdb4a2f070..e7b90c9794 100644 --- a/src/components/views/dialogs/devtools/ServersInRoom.tsx +++ b/src/components/views/dialogs/devtools/ServersInRoom.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2022 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/devtools/SettingExplorer.tsx b/src/components/views/dialogs/devtools/SettingExplorer.tsx index e7c0efaa95..b9919973eb 100644 --- a/src/components/views/dialogs/devtools/SettingExplorer.tsx +++ b/src/components/views/dialogs/devtools/SettingExplorer.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2023 The Matrix.org Foundation C.I.C. Copyright 2022 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/devtools/WidgetExplorer.tsx b/src/components/views/dialogs/devtools/WidgetExplorer.tsx index 6fad898031..5bcae19141 100644 --- a/src/components/views/dialogs/devtools/WidgetExplorer.tsx +++ b/src/components/views/dialogs/devtools/WidgetExplorer.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2022 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/security/AccessSecretStorageDialog.tsx b/src/components/views/dialogs/security/AccessSecretStorageDialog.tsx index d9c97261dd..a6d81ae2ce 100644 --- a/src/components/views/dialogs/security/AccessSecretStorageDialog.tsx +++ b/src/components/views/dialogs/security/AccessSecretStorageDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/security/ConfirmDestroyCrossSigningDialog.tsx b/src/components/views/dialogs/security/ConfirmDestroyCrossSigningDialog.tsx index fbcc2bef11..5e3136c5ad 100644 --- a/src/components/views/dialogs/security/ConfirmDestroyCrossSigningDialog.tsx +++ b/src/components/views/dialogs/security/ConfirmDestroyCrossSigningDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/security/InitialCryptoSetupDialog.tsx b/src/components/views/dialogs/security/InitialCryptoSetupDialog.tsx index 22635662ce..bda09f02a6 100644 --- a/src/components/views/dialogs/security/InitialCryptoSetupDialog.tsx +++ b/src/components/views/dialogs/security/InitialCryptoSetupDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2018, 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/security/RestoreKeyBackupDialog.tsx b/src/components/views/dialogs/security/RestoreKeyBackupDialog.tsx index fddba10948..ca0a5e877e 100644 --- a/src/components/views/dialogs/security/RestoreKeyBackupDialog.tsx +++ b/src/components/views/dialogs/security/RestoreKeyBackupDialog.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2018, 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/security/SetupEncryptionDialog.tsx b/src/components/views/dialogs/security/SetupEncryptionDialog.tsx index c0dc8b4915..2f845b627a 100644 --- a/src/components/views/dialogs/security/SetupEncryptionDialog.tsx +++ b/src/components/views/dialogs/security/SetupEncryptionDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/spotlight/Filter.ts b/src/components/views/dialogs/spotlight/Filter.ts index fa4359db47..944b55a1fe 100644 --- a/src/components/views/dialogs/spotlight/Filter.ts +++ b/src/components/views/dialogs/spotlight/Filter.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/spotlight/Option.tsx b/src/components/views/dialogs/spotlight/Option.tsx index 6de93d0512..ac568afe26 100644 --- a/src/components/views/dialogs/spotlight/Option.tsx +++ b/src/components/views/dialogs/spotlight/Option.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/spotlight/PublicRoomResultDetails.tsx b/src/components/views/dialogs/spotlight/PublicRoomResultDetails.tsx index d2003473b9..3e1025a81f 100644 --- a/src/components/views/dialogs/spotlight/PublicRoomResultDetails.tsx +++ b/src/components/views/dialogs/spotlight/PublicRoomResultDetails.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/spotlight/RoomResultContextMenus.tsx b/src/components/views/dialogs/spotlight/RoomResultContextMenus.tsx index 667cc7980a..f7b8311f98 100644 --- a/src/components/views/dialogs/spotlight/RoomResultContextMenus.tsx +++ b/src/components/views/dialogs/spotlight/RoomResultContextMenus.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/spotlight/SpotlightDialog.tsx b/src/components/views/dialogs/spotlight/SpotlightDialog.tsx index a87b7341e7..e4f9b11e67 100644 --- a/src/components/views/dialogs/spotlight/SpotlightDialog.tsx +++ b/src/components/views/dialogs/spotlight/SpotlightDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/dialogs/spotlight/TooltipOption.tsx b/src/components/views/dialogs/spotlight/TooltipOption.tsx index ebb0b4cf06..26d0dcada8 100644 --- a/src/components/views/dialogs/spotlight/TooltipOption.tsx +++ b/src/components/views/dialogs/spotlight/TooltipOption.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/directory/NetworkDropdown.tsx b/src/components/views/directory/NetworkDropdown.tsx index d753ec1bdd..c2a7a11b98 100644 --- a/src/components/views/directory/NetworkDropdown.tsx +++ b/src/components/views/directory/NetworkDropdown.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/AccessibleButton.tsx b/src/components/views/elements/AccessibleButton.tsx index 8b58f251c3..f12b36359b 100644 --- a/src/components/views/elements/AccessibleButton.tsx +++ b/src/components/views/elements/AccessibleButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016 Jani Mustonen -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/AppPermission.tsx b/src/components/views/elements/AppPermission.tsx index 846cc2625a..c6ac9d2f50 100644 --- a/src/components/views/elements/AppPermission.tsx +++ b/src/components/views/elements/AppPermission.tsx @@ -4,7 +4,7 @@ Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2018, 2019 New Vector Ltd Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/AppTile.tsx b/src/components/views/elements/AppTile.tsx index 56754f14a6..8af4a95f93 100644 --- a/src/components/views/elements/AppTile.tsx +++ b/src/components/views/elements/AppTile.tsx @@ -5,7 +5,7 @@ Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2018 New Vector Ltd Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/AppWarning.tsx b/src/components/views/elements/AppWarning.tsx index 4e43ca9c1a..9f8a26e6cd 100644 --- a/src/components/views/elements/AppWarning.tsx +++ b/src/components/views/elements/AppWarning.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/CopyableText.tsx b/src/components/views/elements/CopyableText.tsx index c7b0df0679..02c1b14563 100644 --- a/src/components/views/elements/CopyableText.tsx +++ b/src/components/views/elements/CopyableText.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 Šimon Brandner Copyright 2019-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/DesktopCapturerSourcePicker.tsx b/src/components/views/elements/DesktopCapturerSourcePicker.tsx index e1f1def836..2e100e767c 100644 --- a/src/components/views/elements/DesktopCapturerSourcePicker.tsx +++ b/src/components/views/elements/DesktopCapturerSourcePicker.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/DialPadBackspaceButton.tsx b/src/components/views/elements/DialPadBackspaceButton.tsx index 4165b9077d..7ebf9694b3 100644 --- a/src/components/views/elements/DialPadBackspaceButton.tsx +++ b/src/components/views/elements/DialPadBackspaceButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/DialogButtons.tsx b/src/components/views/elements/DialogButtons.tsx index 7b49c9af5a..defee130bc 100644 --- a/src/components/views/elements/DialogButtons.tsx +++ b/src/components/views/elements/DialogButtons.tsx @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd. Copyright 2017 Aidan Gauland -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/Draggable.tsx b/src/components/views/elements/Draggable.tsx index 69209f383e..959ed8ff98 100644 --- a/src/components/views/elements/Draggable.tsx +++ b/src/components/views/elements/Draggable.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/Dropdown.tsx b/src/components/views/elements/Dropdown.tsx index a7ce84163c..b4d0df69df 100644 --- a/src/components/views/elements/Dropdown.tsx +++ b/src/components/views/elements/Dropdown.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017-2021 The Matrix.org Foundation C.I.C. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/EditableItemList.tsx b/src/components/views/elements/EditableItemList.tsx index ad2d9aceee..134c615194 100644 --- a/src/components/views/elements/EditableItemList.tsx +++ b/src/components/views/elements/EditableItemList.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/EditableText.tsx b/src/components/views/elements/EditableText.tsx index f31660854e..1e1d00d14c 100644 --- a/src/components/views/elements/EditableText.tsx +++ b/src/components/views/elements/EditableText.tsx @@ -2,7 +2,7 @@ Copyright 2018-2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/EffectsOverlay.tsx b/src/components/views/elements/EffectsOverlay.tsx index 3e5a5ead60..68733b4ceb 100644 --- a/src/components/views/elements/EffectsOverlay.tsx +++ b/src/components/views/elements/EffectsOverlay.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 Nurjin Jafar Copyright 2020 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import React, { FunctionComponent, useEffect, useRef } from "react"; diff --git a/src/components/views/elements/ErrorBoundary.tsx b/src/components/views/elements/ErrorBoundary.tsx index 98e38350fd..6ea625cec0 100644 --- a/src/components/views/elements/ErrorBoundary.tsx +++ b/src/components/views/elements/ErrorBoundary.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/EventListSummary.tsx b/src/components/views/elements/EventListSummary.tsx index 776908375a..c052a83f66 100644 --- a/src/components/views/elements/EventListSummary.tsx +++ b/src/components/views/elements/EventListSummary.tsx @@ -4,7 +4,7 @@ Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/EventTilePreview.tsx b/src/components/views/elements/EventTilePreview.tsx index bc9a16283c..dc276858bd 100644 --- a/src/components/views/elements/EventTilePreview.tsx +++ b/src/components/views/elements/EventTilePreview.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/ExternalLink.tsx b/src/components/views/elements/ExternalLink.tsx index 4b56841eb1..8c30f6e2bd 100644 --- a/src/components/views/elements/ExternalLink.tsx +++ b/src/components/views/elements/ExternalLink.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/FacePile.tsx b/src/components/views/elements/FacePile.tsx index 74a857953c..49416a8d38 100644 --- a/src/components/views/elements/FacePile.tsx +++ b/src/components/views/elements/FacePile.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/Field.tsx b/src/components/views/elements/Field.tsx index 26e76bb014..ea41582d62 100644 --- a/src/components/views/elements/Field.tsx +++ b/src/components/views/elements/Field.tsx @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/FilterDropdown.tsx b/src/components/views/elements/FilterDropdown.tsx index 9a66ffcea1..63e0fca243 100644 --- a/src/components/views/elements/FilterDropdown.tsx +++ b/src/components/views/elements/FilterDropdown.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/FilterTabGroup.tsx b/src/components/views/elements/FilterTabGroup.tsx index 6129cd1219..b63d96bdd3 100644 --- a/src/components/views/elements/FilterTabGroup.tsx +++ b/src/components/views/elements/FilterTabGroup.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/GenericEventListSummary.tsx b/src/components/views/elements/GenericEventListSummary.tsx index ae20d186ba..11da97f76b 100644 --- a/src/components/views/elements/GenericEventListSummary.tsx +++ b/src/components/views/elements/GenericEventListSummary.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/IRCTimelineProfileResizer.tsx b/src/components/views/elements/IRCTimelineProfileResizer.tsx index d653361e3e..625ea2cb53 100644 --- a/src/components/views/elements/IRCTimelineProfileResizer.tsx +++ b/src/components/views/elements/IRCTimelineProfileResizer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/ImageView.tsx b/src/components/views/elements/ImageView.tsx index 711a221994..3a3006edc5 100644 --- a/src/components/views/elements/ImageView.tsx +++ b/src/components/views/elements/ImageView.tsx @@ -4,7 +4,7 @@ Copyright 2020, 2021 Šimon Brandner Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/InfoTooltip.tsx b/src/components/views/elements/InfoTooltip.tsx index e840100f21..7d62b81cb3 100644 --- a/src/components/views/elements/InfoTooltip.tsx +++ b/src/components/views/elements/InfoTooltip.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/InlineSpinner.tsx b/src/components/views/elements/InlineSpinner.tsx index 868bdb5d6a..7c1bde36b4 100644 --- a/src/components/views/elements/InlineSpinner.tsx +++ b/src/components/views/elements/InlineSpinner.tsx @@ -1,7 +1,7 @@ /* Copyright 2017-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/InviteReason.tsx b/src/components/views/elements/InviteReason.tsx index ea79f33e5d..fd44b5a418 100644 --- a/src/components/views/elements/InviteReason.tsx +++ b/src/components/views/elements/InviteReason.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/JoinRuleDropdown.tsx b/src/components/views/elements/JoinRuleDropdown.tsx index 19afdc828c..7e678b02e6 100644 --- a/src/components/views/elements/JoinRuleDropdown.tsx +++ b/src/components/views/elements/JoinRuleDropdown.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/LabelledCheckbox.tsx b/src/components/views/elements/LabelledCheckbox.tsx index f46de7f162..ea7b5d2b04 100644 --- a/src/components/views/elements/LabelledCheckbox.tsx +++ b/src/components/views/elements/LabelledCheckbox.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/LabelledToggleSwitch.tsx b/src/components/views/elements/LabelledToggleSwitch.tsx index 34c08c252f..bbc1344efd 100644 --- a/src/components/views/elements/LabelledToggleSwitch.tsx +++ b/src/components/views/elements/LabelledToggleSwitch.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/LanguageDropdown.tsx b/src/components/views/elements/LanguageDropdown.tsx index 753cf9e145..743e0df1f7 100644 --- a/src/components/views/elements/LanguageDropdown.tsx +++ b/src/components/views/elements/LanguageDropdown.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Marcel Radzio (MTRNord) Copyright 2017 Vector Creations Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/LazyRenderList.tsx b/src/components/views/elements/LazyRenderList.tsx index 996a3981ce..c4a928ef66 100644 --- a/src/components/views/elements/LazyRenderList.tsx +++ b/src/components/views/elements/LazyRenderList.tsx @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/LearnMore.tsx b/src/components/views/elements/LearnMore.tsx index 02e685de38..ac7ec09954 100644 --- a/src/components/views/elements/LearnMore.tsx +++ b/src/components/views/elements/LearnMore.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/LinkWithTooltip.tsx b/src/components/views/elements/LinkWithTooltip.tsx index 016297d9f1..6265910bd8 100644 --- a/src/components/views/elements/LinkWithTooltip.tsx +++ b/src/components/views/elements/LinkWithTooltip.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/Measured.tsx b/src/components/views/elements/Measured.tsx index e2f9d14dde..6a4abae2de 100644 --- a/src/components/views/elements/Measured.tsx +++ b/src/components/views/elements/Measured.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/MiniAvatarUploader.tsx b/src/components/views/elements/MiniAvatarUploader.tsx index 452b206bef..f5e22ecfab 100644 --- a/src/components/views/elements/MiniAvatarUploader.tsx +++ b/src/components/views/elements/MiniAvatarUploader.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/PersistedElement.tsx b/src/components/views/elements/PersistedElement.tsx index 3feb856145..410b96d037 100644 --- a/src/components/views/elements/PersistedElement.tsx +++ b/src/components/views/elements/PersistedElement.tsx @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/PersistentApp.tsx b/src/components/views/elements/PersistentApp.tsx index 5f720dc85e..bd49b32dff 100644 --- a/src/components/views/elements/PersistentApp.tsx +++ b/src/components/views/elements/PersistentApp.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/Pill.tsx b/src/components/views/elements/Pill.tsx index 14093587ad..266312124a 100644 --- a/src/components/views/elements/Pill.tsx +++ b/src/components/views/elements/Pill.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017-2019 , 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/PollCreateDialog.tsx b/src/components/views/elements/PollCreateDialog.tsx index eb6a762bf3..37139ec0d0 100644 --- a/src/components/views/elements/PollCreateDialog.tsx +++ b/src/components/views/elements/PollCreateDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/PowerSelector.tsx b/src/components/views/elements/PowerSelector.tsx index 385d932b87..6c7c1889d4 100644 --- a/src/components/views/elements/PowerSelector.tsx +++ b/src/components/views/elements/PowerSelector.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/ProgressBar.tsx b/src/components/views/elements/ProgressBar.tsx index b0f4ccd9c5..eb16724d3e 100644 --- a/src/components/views/elements/ProgressBar.tsx +++ b/src/components/views/elements/ProgressBar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/QRCode.tsx b/src/components/views/elements/QRCode.tsx index 4eea8dc55e..a60d5e6625 100644 --- a/src/components/views/elements/QRCode.tsx +++ b/src/components/views/elements/QRCode.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/ReplyChain.tsx b/src/components/views/elements/ReplyChain.tsx index 8e10ca3af9..d2b9cf079f 100644 --- a/src/components/views/elements/ReplyChain.tsx +++ b/src/components/views/elements/ReplyChain.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017-2023 The Matrix.org Foundation C.I.C. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/ResizeHandle.tsx b/src/components/views/elements/ResizeHandle.tsx index 4890921663..a04f223e03 100644 --- a/src/components/views/elements/ResizeHandle.tsx +++ b/src/components/views/elements/ResizeHandle.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/RoomAliasField.tsx b/src/components/views/elements/RoomAliasField.tsx index faa0ccf1a6..e87d26a340 100644 --- a/src/components/views/elements/RoomAliasField.tsx +++ b/src/components/views/elements/RoomAliasField.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/RoomFacePile.tsx b/src/components/views/elements/RoomFacePile.tsx index 642af48c07..9b65fb98ae 100644 --- a/src/components/views/elements/RoomFacePile.tsx +++ b/src/components/views/elements/RoomFacePile.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/RoomName.tsx b/src/components/views/elements/RoomName.tsx index 169671f057..9228a71cf0 100644 --- a/src/components/views/elements/RoomName.tsx +++ b/src/components/views/elements/RoomName.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/RoomTopic.tsx b/src/components/views/elements/RoomTopic.tsx index a23f396be5..4e71a65c4d 100644 --- a/src/components/views/elements/RoomTopic.tsx +++ b/src/components/views/elements/RoomTopic.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/SSOButtons.tsx b/src/components/views/elements/SSOButtons.tsx index e2fd92e97b..39355b1889 100644 --- a/src/components/views/elements/SSOButtons.tsx +++ b/src/components/views/elements/SSOButtons.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/SearchWarning.tsx b/src/components/views/elements/SearchWarning.tsx index e7c651c802..6c6c4d82b1 100644 --- a/src/components/views/elements/SearchWarning.tsx +++ b/src/components/views/elements/SearchWarning.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/ServerPicker.tsx b/src/components/views/elements/ServerPicker.tsx index e6d899dff5..b433aa5150 100644 --- a/src/components/views/elements/ServerPicker.tsx +++ b/src/components/views/elements/ServerPicker.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/SettingsFlag.tsx b/src/components/views/elements/SettingsFlag.tsx index 2af9b9aa71..f3472f3889 100644 --- a/src/components/views/elements/SettingsFlag.tsx +++ b/src/components/views/elements/SettingsFlag.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/SpellCheckLanguagesDropdown.tsx b/src/components/views/elements/SpellCheckLanguagesDropdown.tsx index 3014ee959b..9d250831ff 100644 --- a/src/components/views/elements/SpellCheckLanguagesDropdown.tsx +++ b/src/components/views/elements/SpellCheckLanguagesDropdown.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/Spinner.tsx b/src/components/views/elements/Spinner.tsx index 0a080693e2..ab23135a88 100644 --- a/src/components/views/elements/Spinner.tsx +++ b/src/components/views/elements/Spinner.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/Spoiler.tsx b/src/components/views/elements/Spoiler.tsx index 031700948d..588da46c6f 100644 --- a/src/components/views/elements/Spoiler.tsx +++ b/src/components/views/elements/Spoiler.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 Sorunome -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/StyledCheckbox.tsx b/src/components/views/elements/StyledCheckbox.tsx index 83409b8f68..49d173cd7c 100644 --- a/src/components/views/elements/StyledCheckbox.tsx +++ b/src/components/views/elements/StyledCheckbox.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/StyledRadioButton.tsx b/src/components/views/elements/StyledRadioButton.tsx index 01c30c837b..01e4de1dad 100644 --- a/src/components/views/elements/StyledRadioButton.tsx +++ b/src/components/views/elements/StyledRadioButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/StyledRadioGroup.tsx b/src/components/views/elements/StyledRadioGroup.tsx index 7e527aade5..b93a697bfb 100644 --- a/src/components/views/elements/StyledRadioGroup.tsx +++ b/src/components/views/elements/StyledRadioGroup.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/SyntaxHighlight.tsx b/src/components/views/elements/SyntaxHighlight.tsx index 7570ea22ed..d8c50e5789 100644 --- a/src/components/views/elements/SyntaxHighlight.tsx +++ b/src/components/views/elements/SyntaxHighlight.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2017 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/Tag.tsx b/src/components/views/elements/Tag.tsx index b9f8780628..0c1676794e 100644 --- a/src/components/views/elements/Tag.tsx +++ b/src/components/views/elements/Tag.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/TagComposer.tsx b/src/components/views/elements/TagComposer.tsx index 39dd85f814..55071964bc 100644 --- a/src/components/views/elements/TagComposer.tsx +++ b/src/components/views/elements/TagComposer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/TextWithTooltip.tsx b/src/components/views/elements/TextWithTooltip.tsx index b589ce3635..42d436ced4 100644 --- a/src/components/views/elements/TextWithTooltip.tsx +++ b/src/components/views/elements/TextWithTooltip.tsx @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/ToggleSwitch.tsx b/src/components/views/elements/ToggleSwitch.tsx index a6ed4fb4f1..3ef4981d55 100644 --- a/src/components/views/elements/ToggleSwitch.tsx +++ b/src/components/views/elements/ToggleSwitch.tsx @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/TruncatedList.tsx b/src/components/views/elements/TruncatedList.tsx index 073d5a91e4..8e7abc1104 100644 --- a/src/components/views/elements/TruncatedList.tsx +++ b/src/components/views/elements/TruncatedList.tsx @@ -2,7 +2,7 @@ Copyright 2017-2024 New Vector Ltd. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/UseCaseSelection.tsx b/src/components/views/elements/UseCaseSelection.tsx index 2c64c2903a..7d2019e089 100644 --- a/src/components/views/elements/UseCaseSelection.tsx +++ b/src/components/views/elements/UseCaseSelection.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/UseCaseSelectionButton.tsx b/src/components/views/elements/UseCaseSelectionButton.tsx index 2899a1ee50..c1b33a63b6 100644 --- a/src/components/views/elements/UseCaseSelectionButton.tsx +++ b/src/components/views/elements/UseCaseSelectionButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/Validation.tsx b/src/components/views/elements/Validation.tsx index f859c00beb..2420945c6e 100644 --- a/src/components/views/elements/Validation.tsx +++ b/src/components/views/elements/Validation.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/elements/crypto/VerificationQRCode.tsx b/src/components/views/elements/crypto/VerificationQRCode.tsx index 021457bc00..22acd41a74 100644 --- a/src/components/views/elements/crypto/VerificationQRCode.tsx +++ b/src/components/views/elements/crypto/VerificationQRCode.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/emojipicker/Category.tsx b/src/components/views/emojipicker/Category.tsx index 4c9fbc2d89..397778e0af 100644 --- a/src/components/views/emojipicker/Category.tsx +++ b/src/components/views/emojipicker/Category.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 Tulir Asokan -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/emojipicker/Emoji.tsx b/src/components/views/emojipicker/Emoji.tsx index a852122b75..3b74947f04 100644 --- a/src/components/views/emojipicker/Emoji.tsx +++ b/src/components/views/emojipicker/Emoji.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 Tulir Asokan -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/emojipicker/EmojiPicker.tsx b/src/components/views/emojipicker/EmojiPicker.tsx index e2470d188d..0c10d778a6 100644 --- a/src/components/views/emojipicker/EmojiPicker.tsx +++ b/src/components/views/emojipicker/EmojiPicker.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 Tulir Asokan -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/emojipicker/Header.tsx b/src/components/views/emojipicker/Header.tsx index b66f0dbaa9..53607e2861 100644 --- a/src/components/views/emojipicker/Header.tsx +++ b/src/components/views/emojipicker/Header.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 Tulir Asokan -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/emojipicker/Preview.tsx b/src/components/views/emojipicker/Preview.tsx index 8856a9f56e..a511251028 100644 --- a/src/components/views/emojipicker/Preview.tsx +++ b/src/components/views/emojipicker/Preview.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 Tulir Asokan -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/emojipicker/QuickReactions.tsx b/src/components/views/emojipicker/QuickReactions.tsx index d261171867..7a8511f997 100644 --- a/src/components/views/emojipicker/QuickReactions.tsx +++ b/src/components/views/emojipicker/QuickReactions.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 Tulir Asokan -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/emojipicker/ReactionPicker.tsx b/src/components/views/emojipicker/ReactionPicker.tsx index bd16634490..ea1a502942 100644 --- a/src/components/views/emojipicker/ReactionPicker.tsx +++ b/src/components/views/emojipicker/ReactionPicker.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 Tulir Asokan -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/emojipicker/Search.tsx b/src/components/views/emojipicker/Search.tsx index bce045cb8c..bc560c4643 100644 --- a/src/components/views/emojipicker/Search.tsx +++ b/src/components/views/emojipicker/Search.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 Tulir Asokan -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/EnableLiveShare.tsx b/src/components/views/location/EnableLiveShare.tsx index 1daeef044f..18fc6025d3 100644 --- a/src/components/views/location/EnableLiveShare.tsx +++ b/src/components/views/location/EnableLiveShare.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/LiveDurationDropdown.tsx b/src/components/views/location/LiveDurationDropdown.tsx index f0a85b842a..1bdf93a8e6 100644 --- a/src/components/views/location/LiveDurationDropdown.tsx +++ b/src/components/views/location/LiveDurationDropdown.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/LocationButton.tsx b/src/components/views/location/LocationButton.tsx index 654a3b69f5..3a4460bec4 100644 --- a/src/components/views/location/LocationButton.tsx +++ b/src/components/views/location/LocationButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/LocationPicker.tsx b/src/components/views/location/LocationPicker.tsx index e812f1c6bd..fe0838c166 100644 --- a/src/components/views/location/LocationPicker.tsx +++ b/src/components/views/location/LocationPicker.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/LocationShareMenu.tsx b/src/components/views/location/LocationShareMenu.tsx index 4f64a116cc..546ab4f373 100644 --- a/src/components/views/location/LocationShareMenu.tsx +++ b/src/components/views/location/LocationShareMenu.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/LocationViewDialog.tsx b/src/components/views/location/LocationViewDialog.tsx index 93016bb9a4..d35f0b75e2 100644 --- a/src/components/views/location/LocationViewDialog.tsx +++ b/src/components/views/location/LocationViewDialog.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/Map.tsx b/src/components/views/location/Map.tsx index 6ba25662e8..3af8b79579 100644 --- a/src/components/views/location/Map.tsx +++ b/src/components/views/location/Map.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/MapError.tsx b/src/components/views/location/MapError.tsx index 319223d3f9..93c7dab406 100644 --- a/src/components/views/location/MapError.tsx +++ b/src/components/views/location/MapError.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/MapFallback.tsx b/src/components/views/location/MapFallback.tsx index 101a5d8066..94829d3bc0 100644 --- a/src/components/views/location/MapFallback.tsx +++ b/src/components/views/location/MapFallback.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/Marker.tsx b/src/components/views/location/Marker.tsx index 58e1ce30fb..13239240f1 100644 --- a/src/components/views/location/Marker.tsx +++ b/src/components/views/location/Marker.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/ShareDialogButtons.tsx b/src/components/views/location/ShareDialogButtons.tsx index 867309f8f2..8b9bf01199 100644 --- a/src/components/views/location/ShareDialogButtons.tsx +++ b/src/components/views/location/ShareDialogButtons.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/ShareType.tsx b/src/components/views/location/ShareType.tsx index 0aa31b7bd4..923cd26572 100644 --- a/src/components/views/location/ShareType.tsx +++ b/src/components/views/location/ShareType.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/SmartMarker.tsx b/src/components/views/location/SmartMarker.tsx index 50e927b96d..4ec42468a6 100644 --- a/src/components/views/location/SmartMarker.tsx +++ b/src/components/views/location/SmartMarker.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/ZoomButtons.tsx b/src/components/views/location/ZoomButtons.tsx index 1b370744de..8926fa20c7 100644 --- a/src/components/views/location/ZoomButtons.tsx +++ b/src/components/views/location/ZoomButtons.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/index.tsx b/src/components/views/location/index.tsx index d51d6c58f3..3f308f3812 100644 --- a/src/components/views/location/index.tsx +++ b/src/components/views/location/index.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/location/shareLocation.ts b/src/components/views/location/shareLocation.ts index 8d4349735e..5aed9ec37e 100644 --- a/src/components/views/location/shareLocation.ts +++ b/src/components/views/location/shareLocation.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/CallEvent.tsx b/src/components/views/messages/CallEvent.tsx index fa8d14f5f6..5d2e56c4e8 100644 --- a/src/components/views/messages/CallEvent.tsx +++ b/src/components/views/messages/CallEvent.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/CodeBlock.tsx b/src/components/views/messages/CodeBlock.tsx index 2fd8941765..fd623eea01 100644 --- a/src/components/views/messages/CodeBlock.tsx +++ b/src/components/views/messages/CodeBlock.tsx @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/DateSeparator.tsx b/src/components/views/messages/DateSeparator.tsx index 98f397eb45..e8515b9347 100644 --- a/src/components/views/messages/DateSeparator.tsx +++ b/src/components/views/messages/DateSeparator.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. Copyright 2018 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/DecryptionFailureBody.tsx b/src/components/views/messages/DecryptionFailureBody.tsx index 108ec45b03..f3c02d4c0c 100644 --- a/src/components/views/messages/DecryptionFailureBody.tsx +++ b/src/components/views/messages/DecryptionFailureBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022-2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/DisambiguatedProfile.tsx b/src/components/views/messages/DisambiguatedProfile.tsx index 0e7d2e046e..4357ac73e0 100644 --- a/src/components/views/messages/DisambiguatedProfile.tsx +++ b/src/components/views/messages/DisambiguatedProfile.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/DownloadActionButton.tsx b/src/components/views/messages/DownloadActionButton.tsx index 2940dab292..e85389f2e7 100644 --- a/src/components/views/messages/DownloadActionButton.tsx +++ b/src/components/views/messages/DownloadActionButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/EditHistoryMessage.tsx b/src/components/views/messages/EditHistoryMessage.tsx index fb6f04c08f..1e6333807d 100644 --- a/src/components/views/messages/EditHistoryMessage.tsx +++ b/src/components/views/messages/EditHistoryMessage.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/EncryptionEvent.tsx b/src/components/views/messages/EncryptionEvent.tsx index bc6680d300..090881aa02 100644 --- a/src/components/views/messages/EncryptionEvent.tsx +++ b/src/components/views/messages/EncryptionEvent.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/EventTileBubble.tsx b/src/components/views/messages/EventTileBubble.tsx index 05c8a66f99..4ba159089f 100644 --- a/src/components/views/messages/EventTileBubble.tsx +++ b/src/components/views/messages/EventTileBubble.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/HiddenBody.tsx b/src/components/views/messages/HiddenBody.tsx index 9bde6adefc..5485d2fd6e 100644 --- a/src/components/views/messages/HiddenBody.tsx +++ b/src/components/views/messages/HiddenBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/IBodyProps.ts b/src/components/views/messages/IBodyProps.ts index e48ba96b56..c8f6820e23 100644 --- a/src/components/views/messages/IBodyProps.ts +++ b/src/components/views/messages/IBodyProps.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/IMediaBody.ts b/src/components/views/messages/IMediaBody.ts index c8f7f5b95d..4025f4e631 100644 --- a/src/components/views/messages/IMediaBody.ts +++ b/src/components/views/messages/IMediaBody.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/JumpToDatePicker.tsx b/src/components/views/messages/JumpToDatePicker.tsx index 4f4f0a6e05..28814d1f77 100644 --- a/src/components/views/messages/JumpToDatePicker.tsx +++ b/src/components/views/messages/JumpToDatePicker.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/LegacyCallEvent.tsx b/src/components/views/messages/LegacyCallEvent.tsx index 3f24459b5b..fe52a83fb7 100644 --- a/src/components/views/messages/LegacyCallEvent.tsx +++ b/src/components/views/messages/LegacyCallEvent.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MAudioBody.tsx b/src/components/views/messages/MAudioBody.tsx index bf0cc9ee54..9c2bc9583b 100644 --- a/src/components/views/messages/MAudioBody.tsx +++ b/src/components/views/messages/MAudioBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MBeaconBody.tsx b/src/components/views/messages/MBeaconBody.tsx index 8b250fa0d5..43f7bbd7d3 100644 --- a/src/components/views/messages/MBeaconBody.tsx +++ b/src/components/views/messages/MBeaconBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MFileBody.tsx b/src/components/views/messages/MFileBody.tsx index 1235b73b4b..20a27b9744 100644 --- a/src/components/views/messages/MFileBody.tsx +++ b/src/components/views/messages/MFileBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MImageBody.tsx b/src/components/views/messages/MImageBody.tsx index c3aeee1a54..86bc59fdbd 100644 --- a/src/components/views/messages/MImageBody.tsx +++ b/src/components/views/messages/MImageBody.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. Copyright 2018, 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MImageReplyBody.tsx b/src/components/views/messages/MImageReplyBody.tsx index c1ba78fbf7..4ba5fc23f2 100644 --- a/src/components/views/messages/MImageReplyBody.tsx +++ b/src/components/views/messages/MImageReplyBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 Tulir Asokan -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MJitsiWidgetEvent.tsx b/src/components/views/messages/MJitsiWidgetEvent.tsx index bec4f56164..2b785b60b4 100644 --- a/src/components/views/messages/MJitsiWidgetEvent.tsx +++ b/src/components/views/messages/MJitsiWidgetEvent.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MKeyVerificationRequest.tsx b/src/components/views/messages/MKeyVerificationRequest.tsx index 56e7b1c39c..fb929f79a2 100644 --- a/src/components/views/messages/MKeyVerificationRequest.tsx +++ b/src/components/views/messages/MKeyVerificationRequest.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 , 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MLocationBody.tsx b/src/components/views/messages/MLocationBody.tsx index 7735e64b03..006b35bb9b 100644 --- a/src/components/views/messages/MLocationBody.tsx +++ b/src/components/views/messages/MLocationBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MPollBody.tsx b/src/components/views/messages/MPollBody.tsx index ba3962779f..17c7a577df 100644 --- a/src/components/views/messages/MPollBody.tsx +++ b/src/components/views/messages/MPollBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MPollEndBody.tsx b/src/components/views/messages/MPollEndBody.tsx index 1129b3538e..7df0e8ad58 100644 --- a/src/components/views/messages/MPollEndBody.tsx +++ b/src/components/views/messages/MPollEndBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MStickerBody.tsx b/src/components/views/messages/MStickerBody.tsx index b1638d5b31..0864ecfcfe 100644 --- a/src/components/views/messages/MStickerBody.tsx +++ b/src/components/views/messages/MStickerBody.tsx @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MVideoBody.tsx b/src/components/views/messages/MVideoBody.tsx index 822d2c3f59..c513925acd 100644 --- a/src/components/views/messages/MVideoBody.tsx +++ b/src/components/views/messages/MVideoBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MVoiceMessageBody.tsx b/src/components/views/messages/MVoiceMessageBody.tsx index 690537b2e1..cc0e030c78 100644 --- a/src/components/views/messages/MVoiceMessageBody.tsx +++ b/src/components/views/messages/MVoiceMessageBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MVoiceOrAudioBody.tsx b/src/components/views/messages/MVoiceOrAudioBody.tsx index cfbeaa820b..af7eb6f84a 100644 --- a/src/components/views/messages/MVoiceOrAudioBody.tsx +++ b/src/components/views/messages/MVoiceOrAudioBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MessageActionBar.tsx b/src/components/views/messages/MessageActionBar.tsx index 579db054e9..1476249c2b 100644 --- a/src/components/views/messages/MessageActionBar.tsx +++ b/src/components/views/messages/MessageActionBar.tsx @@ -4,7 +4,7 @@ Copyright 2019-2023 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MessageEvent.tsx b/src/components/views/messages/MessageEvent.tsx index d1a1c59141..6fb239069f 100644 --- a/src/components/views/messages/MessageEvent.tsx +++ b/src/components/views/messages/MessageEvent.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MessageTimestamp.tsx b/src/components/views/messages/MessageTimestamp.tsx index 2e0535be5c..34c25303ed 100644 --- a/src/components/views/messages/MessageTimestamp.tsx +++ b/src/components/views/messages/MessageTimestamp.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018 Michael Telatynski <7t3chguy@gmail.com> Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/MjolnirBody.tsx b/src/components/views/messages/MjolnirBody.tsx index 678671d42e..20587f879e 100644 --- a/src/components/views/messages/MjolnirBody.tsx +++ b/src/components/views/messages/MjolnirBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/PinnedMessageBadge.tsx b/src/components/views/messages/PinnedMessageBadge.tsx index cdf22390c0..7f4c132087 100644 --- a/src/components/views/messages/PinnedMessageBadge.tsx +++ b/src/components/views/messages/PinnedMessageBadge.tsx @@ -1,9 +1,8 @@ /* * Copyright 2024 New Vector Ltd. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. - * */ import React, { JSX } from "react"; diff --git a/src/components/views/messages/ReactionsRow.tsx b/src/components/views/messages/ReactionsRow.tsx index 605e6a7dfe..504bf1b244 100644 --- a/src/components/views/messages/ReactionsRow.tsx +++ b/src/components/views/messages/ReactionsRow.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/ReactionsRowButton.tsx b/src/components/views/messages/ReactionsRowButton.tsx index 709edeffd8..9e3763e439 100644 --- a/src/components/views/messages/ReactionsRowButton.tsx +++ b/src/components/views/messages/ReactionsRowButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/ReactionsRowButtonTooltip.tsx b/src/components/views/messages/ReactionsRowButtonTooltip.tsx index 5f407e2e20..84fb95f210 100644 --- a/src/components/views/messages/ReactionsRowButtonTooltip.tsx +++ b/src/components/views/messages/ReactionsRowButtonTooltip.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/RedactedBody.tsx b/src/components/views/messages/RedactedBody.tsx index 7da9eef03d..dd311c8f5e 100644 --- a/src/components/views/messages/RedactedBody.tsx +++ b/src/components/views/messages/RedactedBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/RoomAvatarEvent.tsx b/src/components/views/messages/RoomAvatarEvent.tsx index 295d2b0680..1d3f9172ca 100644 --- a/src/components/views/messages/RoomAvatarEvent.tsx +++ b/src/components/views/messages/RoomAvatarEvent.tsx @@ -4,7 +4,7 @@ Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/RoomPredecessorTile.tsx b/src/components/views/messages/RoomPredecessorTile.tsx index afc8142234..3b2de5d67d 100644 --- a/src/components/views/messages/RoomPredecessorTile.tsx +++ b/src/components/views/messages/RoomPredecessorTile.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/SenderProfile.tsx b/src/components/views/messages/SenderProfile.tsx index 7c239d0500..8e99e45e75 100644 --- a/src/components/views/messages/SenderProfile.tsx +++ b/src/components/views/messages/SenderProfile.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/TextualBody.tsx b/src/components/views/messages/TextualBody.tsx index 9c10d6ca0c..5aa8581f50 100644 --- a/src/components/views/messages/TextualBody.tsx +++ b/src/components/views/messages/TextualBody.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/TextualEvent.tsx b/src/components/views/messages/TextualEvent.tsx index 1c54963f76..8549fc5cab 100644 --- a/src/components/views/messages/TextualEvent.tsx +++ b/src/components/views/messages/TextualEvent.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/TileErrorBoundary.tsx b/src/components/views/messages/TileErrorBoundary.tsx index b1cc53f267..33d82e538a 100644 --- a/src/components/views/messages/TileErrorBoundary.tsx +++ b/src/components/views/messages/TileErrorBoundary.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/TimelineSeparator.tsx b/src/components/views/messages/TimelineSeparator.tsx index 5657ca7e6a..f89ba64292 100644 --- a/src/components/views/messages/TimelineSeparator.tsx +++ b/src/components/views/messages/TimelineSeparator.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/UnknownBody.tsx b/src/components/views/messages/UnknownBody.tsx index ce9355b4b4..2e804a221c 100644 --- a/src/components/views/messages/UnknownBody.tsx +++ b/src/components/views/messages/UnknownBody.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/ViewSourceEvent.tsx b/src/components/views/messages/ViewSourceEvent.tsx index 8352f0f7e2..3489921729 100644 --- a/src/components/views/messages/ViewSourceEvent.tsx +++ b/src/components/views/messages/ViewSourceEvent.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/messages/shared/MediaProcessingError.tsx b/src/components/views/messages/shared/MediaProcessingError.tsx index 39c0017f57..95a65b4538 100644 --- a/src/components/views/messages/shared/MediaProcessingError.tsx +++ b/src/components/views/messages/shared/MediaProcessingError.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/pips/WidgetPip.tsx b/src/components/views/pips/WidgetPip.tsx index a556d3b93c..13df6dbfad 100644 --- a/src/components/views/pips/WidgetPip.tsx +++ b/src/components/views/pips/WidgetPip.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/polls/PollOption.tsx b/src/components/views/polls/PollOption.tsx index c84653c2a1..07c6d141bb 100644 --- a/src/components/views/polls/PollOption.tsx +++ b/src/components/views/polls/PollOption.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/polls/pollHistory/PollDetail.tsx b/src/components/views/polls/pollHistory/PollDetail.tsx index fbc09ffced..67da1526cc 100644 --- a/src/components/views/polls/pollHistory/PollDetail.tsx +++ b/src/components/views/polls/pollHistory/PollDetail.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/polls/pollHistory/PollDetailHeader.tsx b/src/components/views/polls/pollHistory/PollDetailHeader.tsx index 0b175629ae..429f1740a7 100644 --- a/src/components/views/polls/pollHistory/PollDetailHeader.tsx +++ b/src/components/views/polls/pollHistory/PollDetailHeader.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/polls/pollHistory/PollHistory.tsx b/src/components/views/polls/pollHistory/PollHistory.tsx index 4d145f3054..01fcedd8ee 100644 --- a/src/components/views/polls/pollHistory/PollHistory.tsx +++ b/src/components/views/polls/pollHistory/PollHistory.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/polls/pollHistory/PollHistoryList.tsx b/src/components/views/polls/pollHistory/PollHistoryList.tsx index 466ad2d58f..ed0b935050 100644 --- a/src/components/views/polls/pollHistory/PollHistoryList.tsx +++ b/src/components/views/polls/pollHistory/PollHistoryList.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/polls/pollHistory/PollListItem.tsx b/src/components/views/polls/pollHistory/PollListItem.tsx index 544af0a682..3a631c4242 100644 --- a/src/components/views/polls/pollHistory/PollListItem.tsx +++ b/src/components/views/polls/pollHistory/PollListItem.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/polls/pollHistory/PollListItemEnded.tsx b/src/components/views/polls/pollHistory/PollListItemEnded.tsx index e2f80e8eba..17a9f9ae3e 100644 --- a/src/components/views/polls/pollHistory/PollListItemEnded.tsx +++ b/src/components/views/polls/pollHistory/PollListItemEnded.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/polls/pollHistory/fetchPastPolls.ts b/src/components/views/polls/pollHistory/fetchPastPolls.ts index d4d58948c3..2e6c707594 100644 --- a/src/components/views/polls/pollHistory/fetchPastPolls.ts +++ b/src/components/views/polls/pollHistory/fetchPastPolls.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/polls/pollHistory/types.ts b/src/components/views/polls/pollHistory/types.ts index 75b02f0fca..0b9b98900e 100644 --- a/src/components/views/polls/pollHistory/types.ts +++ b/src/components/views/polls/pollHistory/types.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/polls/pollHistory/usePollHistory.ts b/src/components/views/polls/pollHistory/usePollHistory.ts index 6594cfbb41..fbc5715842 100644 --- a/src/components/views/polls/pollHistory/usePollHistory.ts +++ b/src/components/views/polls/pollHistory/usePollHistory.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/right_panel/BaseCard.tsx b/src/components/views/right_panel/BaseCard.tsx index 30ec02a247..d7d6129960 100644 --- a/src/components/views/right_panel/BaseCard.tsx +++ b/src/components/views/right_panel/BaseCard.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/right_panel/EmptyState.tsx b/src/components/views/right_panel/EmptyState.tsx index 3d7c9a89a6..1c7713a5d8 100644 --- a/src/components/views/right_panel/EmptyState.tsx +++ b/src/components/views/right_panel/EmptyState.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/right_panel/EncryptionInfo.tsx b/src/components/views/right_panel/EncryptionInfo.tsx index 588d2d910e..a2fb6e8f24 100644 --- a/src/components/views/right_panel/EncryptionInfo.tsx +++ b/src/components/views/right_panel/EncryptionInfo.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/right_panel/EncryptionPanel.tsx b/src/components/views/right_panel/EncryptionPanel.tsx index 47fb995c20..3ccd07cfc2 100644 --- a/src/components/views/right_panel/EncryptionPanel.tsx +++ b/src/components/views/right_panel/EncryptionPanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/right_panel/ExtensionsCard.tsx b/src/components/views/right_panel/ExtensionsCard.tsx index 0c6b3ecde0..0e0ca12d67 100644 --- a/src/components/views/right_panel/ExtensionsCard.tsx +++ b/src/components/views/right_panel/ExtensionsCard.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/right_panel/PinnedMessagesCard.tsx b/src/components/views/right_panel/PinnedMessagesCard.tsx index d6161e9434..2ce514c97a 100644 --- a/src/components/views/right_panel/PinnedMessagesCard.tsx +++ b/src/components/views/right_panel/PinnedMessagesCard.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/right_panel/RoomSummaryCard.tsx b/src/components/views/right_panel/RoomSummaryCard.tsx index c8dd0b9738..0abdba5276 100644 --- a/src/components/views/right_panel/RoomSummaryCard.tsx +++ b/src/components/views/right_panel/RoomSummaryCard.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/right_panel/TimelineCard.tsx b/src/components/views/right_panel/TimelineCard.tsx index f62319f3cd..49b313ca44 100644 --- a/src/components/views/right_panel/TimelineCard.tsx +++ b/src/components/views/right_panel/TimelineCard.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/right_panel/UserInfo.tsx b/src/components/views/right_panel/UserInfo.tsx index 591e2327ae..4e8968afaa 100644 --- a/src/components/views/right_panel/UserInfo.tsx +++ b/src/components/views/right_panel/UserInfo.tsx @@ -5,7 +5,7 @@ Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2017, 2018 Vector Creations Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/right_panel/VerificationPanel.tsx b/src/components/views/right_panel/VerificationPanel.tsx index 6f8295dece..ba419afa98 100644 --- a/src/components/views/right_panel/VerificationPanel.tsx +++ b/src/components/views/right_panel/VerificationPanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/right_panel/WidgetCard.tsx b/src/components/views/right_panel/WidgetCard.tsx index 887ecb6190..b1488aefb4 100644 --- a/src/components/views/right_panel/WidgetCard.tsx +++ b/src/components/views/right_panel/WidgetCard.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/right_panel/context.ts b/src/components/views/right_panel/context.ts index b0d979ea03..ba289c87f7 100644 --- a/src/components/views/right_panel/context.ts +++ b/src/components/views/right_panel/context.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/right_panel/types.ts b/src/components/views/right_panel/types.ts index f390dfcb7d..09965a2a10 100644 --- a/src/components/views/right_panel/types.ts +++ b/src/components/views/right_panel/types.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/room_settings/AliasSettings.tsx b/src/components/views/room_settings/AliasSettings.tsx index 0bb29b7f89..e76c8a2cd5 100644 --- a/src/components/views/room_settings/AliasSettings.tsx +++ b/src/components/views/room_settings/AliasSettings.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/room_settings/RoomProfileSettings.tsx b/src/components/views/room_settings/RoomProfileSettings.tsx index 73d345847e..8789ea48fc 100644 --- a/src/components/views/room_settings/RoomProfileSettings.tsx +++ b/src/components/views/room_settings/RoomProfileSettings.tsx @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/room_settings/RoomPublishSetting.tsx b/src/components/views/room_settings/RoomPublishSetting.tsx index 9690e9c0eb..5147945c36 100644 --- a/src/components/views/room_settings/RoomPublishSetting.tsx +++ b/src/components/views/room_settings/RoomPublishSetting.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/room_settings/UrlPreviewSettings.tsx b/src/components/views/room_settings/UrlPreviewSettings.tsx index 4ca63fd4a0..9c7dcabbc6 100644 --- a/src/components/views/room_settings/UrlPreviewSettings.tsx +++ b/src/components/views/room_settings/UrlPreviewSettings.tsx @@ -5,7 +5,7 @@ Copyright 2018, 2019 New Vector Ltd Copyright 2017 Travis Ralston Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/AppsDrawer.tsx b/src/components/views/rooms/AppsDrawer.tsx index c02bfe8cf2..36df51f4cb 100644 --- a/src/components/views/rooms/AppsDrawer.tsx +++ b/src/components/views/rooms/AppsDrawer.tsx @@ -2,7 +2,7 @@ Copyright 2018-2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/Autocomplete.tsx b/src/components/views/rooms/Autocomplete.tsx index 3ffd6648ea..f77f394d8c 100644 --- a/src/components/views/rooms/Autocomplete.tsx +++ b/src/components/views/rooms/Autocomplete.tsx @@ -2,7 +2,7 @@ Copyright 2017-2024 New Vector Ltd. Copyright 2016 Aviral Dasgupta -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/AuxPanel.tsx b/src/components/views/rooms/AuxPanel.tsx index 5763a28154..67a25d433d 100644 --- a/src/components/views/rooms/AuxPanel.tsx +++ b/src/components/views/rooms/AuxPanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/BasicMessageComposer.tsx b/src/components/views/rooms/BasicMessageComposer.tsx index 5f033de238..ffa5e99f92 100644 --- a/src/components/views/rooms/BasicMessageComposer.tsx +++ b/src/components/views/rooms/BasicMessageComposer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/CollapsibleButton.tsx b/src/components/views/rooms/CollapsibleButton.tsx index 27589ec58c..f1387a7a1b 100644 --- a/src/components/views/rooms/CollapsibleButton.tsx +++ b/src/components/views/rooms/CollapsibleButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/E2EIcon.tsx b/src/components/views/rooms/E2EIcon.tsx index 29899e85ba..3eb789914b 100644 --- a/src/components/views/rooms/E2EIcon.tsx +++ b/src/components/views/rooms/E2EIcon.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/EditMessageComposer.tsx b/src/components/views/rooms/EditMessageComposer.tsx index f4b5c3698e..dcae215352 100644 --- a/src/components/views/rooms/EditMessageComposer.tsx +++ b/src/components/views/rooms/EditMessageComposer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/EmojiButton.tsx b/src/components/views/rooms/EmojiButton.tsx index de64b3d42c..79184486b1 100644 --- a/src/components/views/rooms/EmojiButton.tsx +++ b/src/components/views/rooms/EmojiButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/EntityTile.tsx b/src/components/views/rooms/EntityTile.tsx index 946a5cd46b..af4a265b72 100644 --- a/src/components/views/rooms/EntityTile.tsx +++ b/src/components/views/rooms/EntityTile.tsx @@ -4,7 +4,7 @@ Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/EventPreview.tsx b/src/components/views/rooms/EventPreview.tsx index e02c2f152f..8e7f53a330 100644 --- a/src/components/views/rooms/EventPreview.tsx +++ b/src/components/views/rooms/EventPreview.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/EventTile.tsx b/src/components/views/rooms/EventTile.tsx index 8c755f00bd..1d2983dd03 100644 --- a/src/components/views/rooms/EventTile.tsx +++ b/src/components/views/rooms/EventTile.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2023 The Matrix.org Foundation C.I.C. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/EventTile/EventTileThreadToolbar.tsx b/src/components/views/rooms/EventTile/EventTileThreadToolbar.tsx index ad1a6ce9a6..29f3a43633 100644 --- a/src/components/views/rooms/EventTile/EventTileThreadToolbar.tsx +++ b/src/components/views/rooms/EventTile/EventTileThreadToolbar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/ExtraTile.tsx b/src/components/views/rooms/ExtraTile.tsx index 8f94264623..d33db33e16 100644 --- a/src/components/views/rooms/ExtraTile.tsx +++ b/src/components/views/rooms/ExtraTile.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/HistoryTile.tsx b/src/components/views/rooms/HistoryTile.tsx index 3aa74b8b0c..a004aaeab9 100644 --- a/src/components/views/rooms/HistoryTile.tsx +++ b/src/components/views/rooms/HistoryTile.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Robin Townsend -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/JumpToBottomButton.tsx b/src/components/views/rooms/JumpToBottomButton.tsx index 7111a14e76..a33fa7857b 100644 --- a/src/components/views/rooms/JumpToBottomButton.tsx +++ b/src/components/views/rooms/JumpToBottomButton.tsx @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/LinkPreviewGroup.tsx b/src/components/views/rooms/LinkPreviewGroup.tsx index cbbd2a3d7b..4ba64cee8c 100644 --- a/src/components/views/rooms/LinkPreviewGroup.tsx +++ b/src/components/views/rooms/LinkPreviewGroup.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/LinkPreviewWidget.tsx b/src/components/views/rooms/LinkPreviewWidget.tsx index 91fb0608aa..07d41ea534 100644 --- a/src/components/views/rooms/LinkPreviewWidget.tsx +++ b/src/components/views/rooms/LinkPreviewWidget.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/LiveContentSummary.tsx b/src/components/views/rooms/LiveContentSummary.tsx index 0d92119411..3ffcc6c0ec 100644 --- a/src/components/views/rooms/LiveContentSummary.tsx +++ b/src/components/views/rooms/LiveContentSummary.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/MemberList.tsx b/src/components/views/rooms/MemberList.tsx index 5587b56bf8..b7a241c0eb 100644 --- a/src/components/views/rooms/MemberList.tsx +++ b/src/components/views/rooms/MemberList.tsx @@ -5,7 +5,7 @@ Copyright 2017, 2018 New Vector Ltd Copyright 2017 Vector Creations Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/MemberTile.tsx b/src/components/views/rooms/MemberTile.tsx index acb2e5153b..04006dc70e 100644 --- a/src/components/views/rooms/MemberTile.tsx +++ b/src/components/views/rooms/MemberTile.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/MessageComposer.tsx b/src/components/views/rooms/MessageComposer.tsx index 508b64eec2..3cab66201a 100644 --- a/src/components/views/rooms/MessageComposer.tsx +++ b/src/components/views/rooms/MessageComposer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/MessageComposerButtons.tsx b/src/components/views/rooms/MessageComposerButtons.tsx index e54306caff..b70c39fb02 100644 --- a/src/components/views/rooms/MessageComposerButtons.tsx +++ b/src/components/views/rooms/MessageComposerButtons.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/MessageComposerFormatBar.tsx b/src/components/views/rooms/MessageComposerFormatBar.tsx index 0ab359d9dd..855c7c1d40 100644 --- a/src/components/views/rooms/MessageComposerFormatBar.tsx +++ b/src/components/views/rooms/MessageComposerFormatBar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/NewRoomIntro.tsx b/src/components/views/rooms/NewRoomIntro.tsx index a5577ee372..cb15917e37 100644 --- a/src/components/views/rooms/NewRoomIntro.tsx +++ b/src/components/views/rooms/NewRoomIntro.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/NotificationBadge.tsx b/src/components/views/rooms/NotificationBadge.tsx index 6825ea8e43..f2fe9b0886 100644 --- a/src/components/views/rooms/NotificationBadge.tsx +++ b/src/components/views/rooms/NotificationBadge.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/NotificationBadge/StatelessNotificationBadge.tsx b/src/components/views/rooms/NotificationBadge/StatelessNotificationBadge.tsx index 597f6d599b..7031814607 100644 --- a/src/components/views/rooms/NotificationBadge/StatelessNotificationBadge.tsx +++ b/src/components/views/rooms/NotificationBadge/StatelessNotificationBadge.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/NotificationBadge/UnreadNotificationBadge.tsx b/src/components/views/rooms/NotificationBadge/UnreadNotificationBadge.tsx index dee861f11c..1c75b34704 100644 --- a/src/components/views/rooms/NotificationBadge/UnreadNotificationBadge.tsx +++ b/src/components/views/rooms/NotificationBadge/UnreadNotificationBadge.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/PinnedEventTile.tsx b/src/components/views/rooms/PinnedEventTile.tsx index 217571df95..42cc21026f 100644 --- a/src/components/views/rooms/PinnedEventTile.tsx +++ b/src/components/views/rooms/PinnedEventTile.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/PinnedMessageBanner.tsx b/src/components/views/rooms/PinnedMessageBanner.tsx index 32000d5792..4ba9e0a40c 100644 --- a/src/components/views/rooms/PinnedMessageBanner.tsx +++ b/src/components/views/rooms/PinnedMessageBanner.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/PresenceLabel.tsx b/src/components/views/rooms/PresenceLabel.tsx index de7a46c666..17197abce3 100644 --- a/src/components/views/rooms/PresenceLabel.tsx +++ b/src/components/views/rooms/PresenceLabel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/ReadReceiptGroup.tsx b/src/components/views/rooms/ReadReceiptGroup.tsx index ea60518f4b..e97171493d 100644 --- a/src/components/views/rooms/ReadReceiptGroup.tsx +++ b/src/components/views/rooms/ReadReceiptGroup.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/ReadReceiptMarker.tsx b/src/components/views/rooms/ReadReceiptMarker.tsx index edfad13fc2..9d4feb10c4 100644 --- a/src/components/views/rooms/ReadReceiptMarker.tsx +++ b/src/components/views/rooms/ReadReceiptMarker.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/ReplyPreview.tsx b/src/components/views/rooms/ReplyPreview.tsx index 7851f7914d..f426a924b8 100644 --- a/src/components/views/rooms/ReplyPreview.tsx +++ b/src/components/views/rooms/ReplyPreview.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/ReplyTile.tsx b/src/components/views/rooms/ReplyTile.tsx index 6841d984de..73352a806e 100644 --- a/src/components/views/rooms/ReplyTile.tsx +++ b/src/components/views/rooms/ReplyTile.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 Tulir Asokan -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomBreadcrumbs.tsx b/src/components/views/rooms/RoomBreadcrumbs.tsx index bb787d509a..40290358f5 100644 --- a/src/components/views/rooms/RoomBreadcrumbs.tsx +++ b/src/components/views/rooms/RoomBreadcrumbs.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomContextDetails.tsx b/src/components/views/rooms/RoomContextDetails.tsx index d341c6fbbf..cd6ca327c0 100644 --- a/src/components/views/rooms/RoomContextDetails.tsx +++ b/src/components/views/rooms/RoomContextDetails.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomHeader.tsx b/src/components/views/rooms/RoomHeader.tsx index 4c39a2db18..afe68ee5be 100644 --- a/src/components/views/rooms/RoomHeader.tsx +++ b/src/components/views/rooms/RoomHeader.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomHeader/CallGuestLinkButton.tsx b/src/components/views/rooms/RoomHeader/CallGuestLinkButton.tsx index 8c000bdf3b..76e91cada6 100644 --- a/src/components/views/rooms/RoomHeader/CallGuestLinkButton.tsx +++ b/src/components/views/rooms/RoomHeader/CallGuestLinkButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import ExternalLinkIcon from "@vector-im/compound-design-tokens/assets/web/icons/link"; diff --git a/src/components/views/rooms/RoomHeader/VideoRoomChatButton.tsx b/src/components/views/rooms/RoomHeader/VideoRoomChatButton.tsx index af664f6841..0dbf62dfda 100644 --- a/src/components/views/rooms/RoomHeader/VideoRoomChatButton.tsx +++ b/src/components/views/rooms/RoomHeader/VideoRoomChatButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomInfoLine.tsx b/src/components/views/rooms/RoomInfoLine.tsx index 1487bfe15b..438b804d88 100644 --- a/src/components/views/rooms/RoomInfoLine.tsx +++ b/src/components/views/rooms/RoomInfoLine.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomKnocksBar.tsx b/src/components/views/rooms/RoomKnocksBar.tsx index 0ff9ce3e27..64d6956625 100644 --- a/src/components/views/rooms/RoomKnocksBar.tsx +++ b/src/components/views/rooms/RoomKnocksBar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Nordeck IT + Consulting GmbH -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomList.tsx b/src/components/views/rooms/RoomList.tsx index f3bde66af9..fed1826bbb 100644 --- a/src/components/views/rooms/RoomList.tsx +++ b/src/components/views/rooms/RoomList.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2018 , 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomListHeader.tsx b/src/components/views/rooms/RoomListHeader.tsx index 9ce1d7524f..aa41c1f2ba 100644 --- a/src/components/views/rooms/RoomListHeader.tsx +++ b/src/components/views/rooms/RoomListHeader.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomPreviewBar.tsx b/src/components/views/rooms/RoomPreviewBar.tsx index b69b01177e..7b1791d0cd 100644 --- a/src/components/views/rooms/RoomPreviewBar.tsx +++ b/src/components/views/rooms/RoomPreviewBar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomPreviewCard.tsx b/src/components/views/rooms/RoomPreviewCard.tsx index 2c816e4743..bce6fc22b3 100644 --- a/src/components/views/rooms/RoomPreviewCard.tsx +++ b/src/components/views/rooms/RoomPreviewCard.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomSearchAuxPanel.tsx b/src/components/views/rooms/RoomSearchAuxPanel.tsx index e317e6161b..1c3ec238b2 100644 --- a/src/components/views/rooms/RoomSearchAuxPanel.tsx +++ b/src/components/views/rooms/RoomSearchAuxPanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomSublist.tsx b/src/components/views/rooms/RoomSublist.tsx index 34961c0853..dac72994b0 100644 --- a/src/components/views/rooms/RoomSublist.tsx +++ b/src/components/views/rooms/RoomSublist.tsx @@ -4,7 +4,7 @@ Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2017, 2018 Vector Creations Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomTile.tsx b/src/components/views/rooms/RoomTile.tsx index 7953c5068d..cbeb562077 100644 --- a/src/components/views/rooms/RoomTile.tsx +++ b/src/components/views/rooms/RoomTile.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018 Michael Telatynski <7t3chguy@gmail.com> Copyright 2015-2017 , 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomTileCallSummary.tsx b/src/components/views/rooms/RoomTileCallSummary.tsx index d97ae1b71e..8c1db5f34b 100644 --- a/src/components/views/rooms/RoomTileCallSummary.tsx +++ b/src/components/views/rooms/RoomTileCallSummary.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomTileSubtitle.tsx b/src/components/views/rooms/RoomTileSubtitle.tsx index 479b9c4f71..883dc5db0d 100644 --- a/src/components/views/rooms/RoomTileSubtitle.tsx +++ b/src/components/views/rooms/RoomTileSubtitle.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/RoomUpgradeWarningBar.tsx b/src/components/views/rooms/RoomUpgradeWarningBar.tsx index e92be96cb2..3b5685c229 100644 --- a/src/components/views/rooms/RoomUpgradeWarningBar.tsx +++ b/src/components/views/rooms/RoomUpgradeWarningBar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/SearchResultTile.tsx b/src/components/views/rooms/SearchResultTile.tsx index 94f5e6da9d..825a5d235f 100644 --- a/src/components/views/rooms/SearchResultTile.tsx +++ b/src/components/views/rooms/SearchResultTile.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. Copyright 2015 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/SendMessageComposer.tsx b/src/components/views/rooms/SendMessageComposer.tsx index b3767cbd2a..d12a84e0c2 100644 --- a/src/components/views/rooms/SendMessageComposer.tsx +++ b/src/components/views/rooms/SendMessageComposer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/Stickerpicker.tsx b/src/components/views/rooms/Stickerpicker.tsx index ad1b11f368..448e05ac55 100644 --- a/src/components/views/rooms/Stickerpicker.tsx +++ b/src/components/views/rooms/Stickerpicker.tsx @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/ThirdPartyMemberInfo.tsx b/src/components/views/rooms/ThirdPartyMemberInfo.tsx index df008199cd..cee38fc078 100644 --- a/src/components/views/rooms/ThirdPartyMemberInfo.tsx +++ b/src/components/views/rooms/ThirdPartyMemberInfo.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/ThreadSummary.tsx b/src/components/views/rooms/ThreadSummary.tsx index ac23331f66..1ec6a56e78 100644 --- a/src/components/views/rooms/ThreadSummary.tsx +++ b/src/components/views/rooms/ThreadSummary.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/TopUnreadMessagesBar.tsx b/src/components/views/rooms/TopUnreadMessagesBar.tsx index b90c69f857..f9053cc31a 100644 --- a/src/components/views/rooms/TopUnreadMessagesBar.tsx +++ b/src/components/views/rooms/TopUnreadMessagesBar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/UserIdentityWarning.tsx b/src/components/views/rooms/UserIdentityWarning.tsx index dbb6d3d049..cb2f1e792d 100644 --- a/src/components/views/rooms/UserIdentityWarning.tsx +++ b/src/components/views/rooms/UserIdentityWarning.tsx @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/VoiceRecordComposerTile.tsx b/src/components/views/rooms/VoiceRecordComposerTile.tsx index a8335a9902..486c9475bc 100644 --- a/src/components/views/rooms/VoiceRecordComposerTile.tsx +++ b/src/components/views/rooms/VoiceRecordComposerTile.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/WhoIsTypingTile.tsx b/src/components/views/rooms/WhoIsTypingTile.tsx index 85cf4f6dd6..7c0c53c7a2 100644 --- a/src/components/views/rooms/WhoIsTypingTile.tsx +++ b/src/components/views/rooms/WhoIsTypingTile.tsx @@ -2,7 +2,7 @@ Copyright 2017-2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/ComposerContext.ts b/src/components/views/rooms/wysiwyg_composer/ComposerContext.ts index 3babdfb937..cfd8e6fa80 100644 --- a/src/components/views/rooms/wysiwyg_composer/ComposerContext.ts +++ b/src/components/views/rooms/wysiwyg_composer/ComposerContext.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/DynamicImportWysiwygComposer.tsx b/src/components/views/rooms/wysiwyg_composer/DynamicImportWysiwygComposer.tsx index 46210949f5..2cde64a33d 100644 --- a/src/components/views/rooms/wysiwyg_composer/DynamicImportWysiwygComposer.tsx +++ b/src/components/views/rooms/wysiwyg_composer/DynamicImportWysiwygComposer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/EditWysiwygComposer.tsx b/src/components/views/rooms/wysiwyg_composer/EditWysiwygComposer.tsx index 98597c7360..25822b9176 100644 --- a/src/components/views/rooms/wysiwyg_composer/EditWysiwygComposer.tsx +++ b/src/components/views/rooms/wysiwyg_composer/EditWysiwygComposer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/SendWysiwygComposer.tsx b/src/components/views/rooms/wysiwyg_composer/SendWysiwygComposer.tsx index 7f790978f6..6478566969 100644 --- a/src/components/views/rooms/wysiwyg_composer/SendWysiwygComposer.tsx +++ b/src/components/views/rooms/wysiwyg_composer/SendWysiwygComposer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/components/EditionButtons.tsx b/src/components/views/rooms/wysiwyg_composer/components/EditionButtons.tsx index fccd4b7f24..0a6a78210c 100644 --- a/src/components/views/rooms/wysiwyg_composer/components/EditionButtons.tsx +++ b/src/components/views/rooms/wysiwyg_composer/components/EditionButtons.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/components/Editor.tsx b/src/components/views/rooms/wysiwyg_composer/components/Editor.tsx index 7e3d0f4d65..79bc19445c 100644 --- a/src/components/views/rooms/wysiwyg_composer/components/Editor.tsx +++ b/src/components/views/rooms/wysiwyg_composer/components/Editor.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/components/Emoji.tsx b/src/components/views/rooms/wysiwyg_composer/components/Emoji.tsx index 9ab3d210ab..94d7603c6b 100644 --- a/src/components/views/rooms/wysiwyg_composer/components/Emoji.tsx +++ b/src/components/views/rooms/wysiwyg_composer/components/Emoji.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/components/FormattingButtons.tsx b/src/components/views/rooms/wysiwyg_composer/components/FormattingButtons.tsx index f02f1a4c6b..e541d17e0d 100644 --- a/src/components/views/rooms/wysiwyg_composer/components/FormattingButtons.tsx +++ b/src/components/views/rooms/wysiwyg_composer/components/FormattingButtons.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/components/LinkModal.tsx b/src/components/views/rooms/wysiwyg_composer/components/LinkModal.tsx index 3b5bfb7ad4..31f153dbec 100644 --- a/src/components/views/rooms/wysiwyg_composer/components/LinkModal.tsx +++ b/src/components/views/rooms/wysiwyg_composer/components/LinkModal.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/components/PlainTextComposer.tsx b/src/components/views/rooms/wysiwyg_composer/components/PlainTextComposer.tsx index 3430994e01..c826bbc98b 100644 --- a/src/components/views/rooms/wysiwyg_composer/components/PlainTextComposer.tsx +++ b/src/components/views/rooms/wysiwyg_composer/components/PlainTextComposer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete.tsx b/src/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete.tsx index 4d06adcd4e..b006ec2d35 100644 --- a/src/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete.tsx +++ b/src/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/components/WysiwygComposer.tsx b/src/components/views/rooms/wysiwyg_composer/components/WysiwygComposer.tsx index f72fa44a0e..e7dd0213a4 100644 --- a/src/components/views/rooms/wysiwyg_composer/components/WysiwygComposer.tsx +++ b/src/components/views/rooms/wysiwyg_composer/components/WysiwygComposer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/hooks/useComposerFunctions.ts b/src/components/views/rooms/wysiwyg_composer/hooks/useComposerFunctions.ts index aa7c672af3..f5219c6543 100644 --- a/src/components/views/rooms/wysiwyg_composer/hooks/useComposerFunctions.ts +++ b/src/components/views/rooms/wysiwyg_composer/hooks/useComposerFunctions.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/hooks/useEditing.ts b/src/components/views/rooms/wysiwyg_composer/hooks/useEditing.ts index 20f394e8a3..8fbd856200 100644 --- a/src/components/views/rooms/wysiwyg_composer/hooks/useEditing.ts +++ b/src/components/views/rooms/wysiwyg_composer/hooks/useEditing.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/hooks/useInitialContent.ts b/src/components/views/rooms/wysiwyg_composer/hooks/useInitialContent.ts index 3a3799496b..25afcd431f 100644 --- a/src/components/views/rooms/wysiwyg_composer/hooks/useInitialContent.ts +++ b/src/components/views/rooms/wysiwyg_composer/hooks/useInitialContent.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/hooks/useInputEventProcessor.ts b/src/components/views/rooms/wysiwyg_composer/hooks/useInputEventProcessor.ts index 33314ef418..26a72f4b96 100644 --- a/src/components/views/rooms/wysiwyg_composer/hooks/useInputEventProcessor.ts +++ b/src/components/views/rooms/wysiwyg_composer/hooks/useInputEventProcessor.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/hooks/useIsExpanded.ts b/src/components/views/rooms/wysiwyg_composer/hooks/useIsExpanded.ts index 09e47d7b0c..9941dda7bb 100644 --- a/src/components/views/rooms/wysiwyg_composer/hooks/useIsExpanded.ts +++ b/src/components/views/rooms/wysiwyg_composer/hooks/useIsExpanded.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/hooks/useIsFocused.ts b/src/components/views/rooms/wysiwyg_composer/hooks/useIsFocused.ts index de9f758dc6..1391939713 100644 --- a/src/components/views/rooms/wysiwyg_composer/hooks/useIsFocused.ts +++ b/src/components/views/rooms/wysiwyg_composer/hooks/useIsFocused.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/hooks/usePlainTextInitialization.ts b/src/components/views/rooms/wysiwyg_composer/hooks/usePlainTextInitialization.ts index 6adf43d9a4..52613b6b2a 100644 --- a/src/components/views/rooms/wysiwyg_composer/hooks/usePlainTextInitialization.ts +++ b/src/components/views/rooms/wysiwyg_composer/hooks/usePlainTextInitialization.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners.ts b/src/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners.ts index 2e9dd7e32d..6dfae53efe 100644 --- a/src/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners.ts +++ b/src/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/hooks/useSelection.ts b/src/components/views/rooms/wysiwyg_composer/hooks/useSelection.ts index aa541afa56..0689c466f6 100644 --- a/src/components/views/rooms/wysiwyg_composer/hooks/useSelection.ts +++ b/src/components/views/rooms/wysiwyg_composer/hooks/useSelection.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/hooks/useSetCursorPosition.ts b/src/components/views/rooms/wysiwyg_composer/hooks/useSetCursorPosition.ts index 01d42378a8..8fd39111ff 100644 --- a/src/components/views/rooms/wysiwyg_composer/hooks/useSetCursorPosition.ts +++ b/src/components/views/rooms/wysiwyg_composer/hooks/useSetCursorPosition.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/hooks/useSuggestion.ts b/src/components/views/rooms/wysiwyg_composer/hooks/useSuggestion.ts index 5b4957a9c5..6e4473f454 100644 --- a/src/components/views/rooms/wysiwyg_composer/hooks/useSuggestion.ts +++ b/src/components/views/rooms/wysiwyg_composer/hooks/useSuggestion.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/hooks/useWysiwygEditActionHandler.ts b/src/components/views/rooms/wysiwyg_composer/hooks/useWysiwygEditActionHandler.ts index eb76d77af5..8761b8addb 100644 --- a/src/components/views/rooms/wysiwyg_composer/hooks/useWysiwygEditActionHandler.ts +++ b/src/components/views/rooms/wysiwyg_composer/hooks/useWysiwygEditActionHandler.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/hooks/useWysiwygSendActionHandler.ts b/src/components/views/rooms/wysiwyg_composer/hooks/useWysiwygSendActionHandler.ts index d11f3498fd..cef635ef5b 100644 --- a/src/components/views/rooms/wysiwyg_composer/hooks/useWysiwygSendActionHandler.ts +++ b/src/components/views/rooms/wysiwyg_composer/hooks/useWysiwygSendActionHandler.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/hooks/utils.ts b/src/components/views/rooms/wysiwyg_composer/hooks/utils.ts index 3345c9f474..52a61ac0e3 100644 --- a/src/components/views/rooms/wysiwyg_composer/hooks/utils.ts +++ b/src/components/views/rooms/wysiwyg_composer/hooks/utils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/index.ts b/src/components/views/rooms/wysiwyg_composer/index.ts index 82d7d2a904..281ea634f8 100644 --- a/src/components/views/rooms/wysiwyg_composer/index.ts +++ b/src/components/views/rooms/wysiwyg_composer/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/types.ts b/src/components/views/rooms/wysiwyg_composer/types.ts index d38704f346..f6ce261909 100644 --- a/src/components/views/rooms/wysiwyg_composer/types.ts +++ b/src/components/views/rooms/wysiwyg_composer/types.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/utils/autocomplete.ts b/src/components/views/rooms/wysiwyg_composer/utils/autocomplete.ts index d97b07adee..529f15cff3 100644 --- a/src/components/views/rooms/wysiwyg_composer/utils/autocomplete.ts +++ b/src/components/views/rooms/wysiwyg_composer/utils/autocomplete.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/utils/createMessageContent.ts b/src/components/views/rooms/wysiwyg_composer/utils/createMessageContent.ts index c73f6332ee..5778faa61a 100644 --- a/src/components/views/rooms/wysiwyg_composer/utils/createMessageContent.ts +++ b/src/components/views/rooms/wysiwyg_composer/utils/createMessageContent.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/utils/editing.ts b/src/components/views/rooms/wysiwyg_composer/utils/editing.ts index 462763b8f4..fd5c7d1997 100644 --- a/src/components/views/rooms/wysiwyg_composer/utils/editing.ts +++ b/src/components/views/rooms/wysiwyg_composer/utils/editing.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/utils/event.ts b/src/components/views/rooms/wysiwyg_composer/utils/event.ts index 45c6b1cac3..5860ae9ec6 100644 --- a/src/components/views/rooms/wysiwyg_composer/utils/event.ts +++ b/src/components/views/rooms/wysiwyg_composer/utils/event.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/utils/isContentModified.ts b/src/components/views/rooms/wysiwyg_composer/utils/isContentModified.ts index 6ffbb9b69a..3821ca3512 100644 --- a/src/components/views/rooms/wysiwyg_composer/utils/isContentModified.ts +++ b/src/components/views/rooms/wysiwyg_composer/utils/isContentModified.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/utils/message.ts b/src/components/views/rooms/wysiwyg_composer/utils/message.ts index b7fca8ecb4..8f95bf8da1 100644 --- a/src/components/views/rooms/wysiwyg_composer/utils/message.ts +++ b/src/components/views/rooms/wysiwyg_composer/utils/message.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/rooms/wysiwyg_composer/utils/selection.ts b/src/components/views/rooms/wysiwyg_composer/utils/selection.ts index f526675213..95da5ef66b 100644 --- a/src/components/views/rooms/wysiwyg_composer/utils/selection.ts +++ b/src/components/views/rooms/wysiwyg_composer/utils/selection.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/AddPrivilegedUsers.tsx b/src/components/views/settings/AddPrivilegedUsers.tsx index c19c8fdddc..5276e825fd 100644 --- a/src/components/views/settings/AddPrivilegedUsers.tsx +++ b/src/components/views/settings/AddPrivilegedUsers.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/AddRemoveThreepids.tsx b/src/components/views/settings/AddRemoveThreepids.tsx index 8b2b61bb9a..704f2a1292 100644 --- a/src/components/views/settings/AddRemoveThreepids.tsx +++ b/src/components/views/settings/AddRemoveThreepids.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/AvatarSetting.tsx b/src/components/views/settings/AvatarSetting.tsx index ee47094cf9..2ed4d06568 100644 --- a/src/components/views/settings/AvatarSetting.tsx +++ b/src/components/views/settings/AvatarSetting.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/BridgeTile.tsx b/src/components/views/settings/BridgeTile.tsx index 6ae860aa0a..ad9088116c 100644 --- a/src/components/views/settings/BridgeTile.tsx +++ b/src/components/views/settings/BridgeTile.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/ChangePassword.tsx b/src/components/views/settings/ChangePassword.tsx index 9461f20d8a..07a13cd347 100644 --- a/src/components/views/settings/ChangePassword.tsx +++ b/src/components/views/settings/ChangePassword.tsx @@ -2,7 +2,7 @@ Copyright 2018-2024 New Vector Ltd. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/CrossSigningPanel.tsx b/src/components/views/settings/CrossSigningPanel.tsx index a91238848e..9ec9e9f6c1 100644 --- a/src/components/views/settings/CrossSigningPanel.tsx +++ b/src/components/views/settings/CrossSigningPanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/CryptographyPanel.tsx b/src/components/views/settings/CryptographyPanel.tsx index fbd696f243..beb08ab1e9 100644 --- a/src/components/views/settings/CryptographyPanel.tsx +++ b/src/components/views/settings/CryptographyPanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/EventIndexPanel.tsx b/src/components/views/settings/EventIndexPanel.tsx index 8cd67c7ccf..41845eb94e 100644 --- a/src/components/views/settings/EventIndexPanel.tsx +++ b/src/components/views/settings/EventIndexPanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/FontScalingPanel.tsx b/src/components/views/settings/FontScalingPanel.tsx index 034fbc0631..e1a7f4902f 100644 --- a/src/components/views/settings/FontScalingPanel.tsx +++ b/src/components/views/settings/FontScalingPanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/ImageSizePanel.tsx b/src/components/views/settings/ImageSizePanel.tsx index dca21d89e2..8079ea1654 100644 --- a/src/components/views/settings/ImageSizePanel.tsx +++ b/src/components/views/settings/ImageSizePanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/IntegrationManager.tsx b/src/components/views/settings/IntegrationManager.tsx index 3a31a9e9c8..28a5130b25 100644 --- a/src/components/views/settings/IntegrationManager.tsx +++ b/src/components/views/settings/IntegrationManager.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/JoinRuleSettings.tsx b/src/components/views/settings/JoinRuleSettings.tsx index a6c1e91241..023b68c282 100644 --- a/src/components/views/settings/JoinRuleSettings.tsx +++ b/src/components/views/settings/JoinRuleSettings.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/KeyboardShortcut.tsx b/src/components/views/settings/KeyboardShortcut.tsx index 4f0973b102..f84c89208a 100644 --- a/src/components/views/settings/KeyboardShortcut.tsx +++ b/src/components/views/settings/KeyboardShortcut.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/LayoutSwitcher.tsx b/src/components/views/settings/LayoutSwitcher.tsx index 4eaf8e6619..075c92fce7 100644 --- a/src/components/views/settings/LayoutSwitcher.tsx +++ b/src/components/views/settings/LayoutSwitcher.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/Notifications.tsx b/src/components/views/settings/Notifications.tsx index 4ac5e2069b..6cf4f8abea 100644 --- a/src/components/views/settings/Notifications.tsx +++ b/src/components/views/settings/Notifications.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/PowerLevelSelector.tsx b/src/components/views/settings/PowerLevelSelector.tsx index a2de6791d7..5bc2da9f92 100644 --- a/src/components/views/settings/PowerLevelSelector.tsx +++ b/src/components/views/settings/PowerLevelSelector.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/SecureBackupPanel.tsx b/src/components/views/settings/SecureBackupPanel.tsx index 05c7829644..3d24567832 100644 --- a/src/components/views/settings/SecureBackupPanel.tsx +++ b/src/components/views/settings/SecureBackupPanel.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/SetIdServer.tsx b/src/components/views/settings/SetIdServer.tsx index 6dc3ae48a2..9345d87e82 100644 --- a/src/components/views/settings/SetIdServer.tsx +++ b/src/components/views/settings/SetIdServer.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/SetIntegrationManager.tsx b/src/components/views/settings/SetIntegrationManager.tsx index c129d0e2e1..01dab79547 100644 --- a/src/components/views/settings/SetIntegrationManager.tsx +++ b/src/components/views/settings/SetIntegrationManager.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/SettingsFieldset.tsx b/src/components/views/settings/SettingsFieldset.tsx index 1ff40bcf71..3316b657e6 100644 --- a/src/components/views/settings/SettingsFieldset.tsx +++ b/src/components/views/settings/SettingsFieldset.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/SpellCheckSettings.tsx b/src/components/views/settings/SpellCheckSettings.tsx index 13f542b749..1ec8e0adce 100644 --- a/src/components/views/settings/SpellCheckSettings.tsx +++ b/src/components/views/settings/SpellCheckSettings.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/ThemeChoicePanel.tsx b/src/components/views/settings/ThemeChoicePanel.tsx index 6feb350d11..0e3926d7e8 100644 --- a/src/components/views/settings/ThemeChoicePanel.tsx +++ b/src/components/views/settings/ThemeChoicePanel.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/UpdateCheckButton.tsx b/src/components/views/settings/UpdateCheckButton.tsx index 3b2c9bfa68..e283373eb9 100644 --- a/src/components/views/settings/UpdateCheckButton.tsx +++ b/src/components/views/settings/UpdateCheckButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/UserPersonalInfoSettings.tsx b/src/components/views/settings/UserPersonalInfoSettings.tsx index e33aa87781..c08c0f636f 100644 --- a/src/components/views/settings/UserPersonalInfoSettings.tsx +++ b/src/components/views/settings/UserPersonalInfoSettings.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/UserProfileSettings.tsx b/src/components/views/settings/UserProfileSettings.tsx index 83a00c122d..5fba36ad01 100644 --- a/src/components/views/settings/UserProfileSettings.tsx +++ b/src/components/views/settings/UserProfileSettings.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/CurrentDeviceSection.tsx b/src/components/views/settings/devices/CurrentDeviceSection.tsx index 9a3eb41015..245c244c90 100644 --- a/src/components/views/settings/devices/CurrentDeviceSection.tsx +++ b/src/components/views/settings/devices/CurrentDeviceSection.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/DeviceDetailHeading.tsx b/src/components/views/settings/devices/DeviceDetailHeading.tsx index 86c9b929cf..945f5f204a 100644 --- a/src/components/views/settings/devices/DeviceDetailHeading.tsx +++ b/src/components/views/settings/devices/DeviceDetailHeading.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/DeviceDetails.tsx b/src/components/views/settings/devices/DeviceDetails.tsx index 569a2a0199..a97a1b1bfe 100644 --- a/src/components/views/settings/devices/DeviceDetails.tsx +++ b/src/components/views/settings/devices/DeviceDetails.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/DeviceExpandDetailsButton.tsx b/src/components/views/settings/devices/DeviceExpandDetailsButton.tsx index a04430a0c2..b227ea3814 100644 --- a/src/components/views/settings/devices/DeviceExpandDetailsButton.tsx +++ b/src/components/views/settings/devices/DeviceExpandDetailsButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/DeviceMetaData.tsx b/src/components/views/settings/devices/DeviceMetaData.tsx index 08d22968f0..be7bd11996 100644 --- a/src/components/views/settings/devices/DeviceMetaData.tsx +++ b/src/components/views/settings/devices/DeviceMetaData.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/DeviceSecurityCard.tsx b/src/components/views/settings/devices/DeviceSecurityCard.tsx index 1f47135b00..2de343d51b 100644 --- a/src/components/views/settings/devices/DeviceSecurityCard.tsx +++ b/src/components/views/settings/devices/DeviceSecurityCard.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/DeviceSecurityLearnMore.tsx b/src/components/views/settings/devices/DeviceSecurityLearnMore.tsx index bc2e0be43e..6a2ca55d43 100644 --- a/src/components/views/settings/devices/DeviceSecurityLearnMore.tsx +++ b/src/components/views/settings/devices/DeviceSecurityLearnMore.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/DeviceTile.tsx b/src/components/views/settings/devices/DeviceTile.tsx index 6463af48ce..79d0c720df 100644 --- a/src/components/views/settings/devices/DeviceTile.tsx +++ b/src/components/views/settings/devices/DeviceTile.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/DeviceTypeIcon.tsx b/src/components/views/settings/devices/DeviceTypeIcon.tsx index b9ab535e27..c685c4c895 100644 --- a/src/components/views/settings/devices/DeviceTypeIcon.tsx +++ b/src/components/views/settings/devices/DeviceTypeIcon.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/DeviceVerificationStatusCard.tsx b/src/components/views/settings/devices/DeviceVerificationStatusCard.tsx index 8989400e71..d57231076b 100644 --- a/src/components/views/settings/devices/DeviceVerificationStatusCard.tsx +++ b/src/components/views/settings/devices/DeviceVerificationStatusCard.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/FilteredDeviceList.tsx b/src/components/views/settings/devices/FilteredDeviceList.tsx index b1f2180a78..bf37b09548 100644 --- a/src/components/views/settings/devices/FilteredDeviceList.tsx +++ b/src/components/views/settings/devices/FilteredDeviceList.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/FilteredDeviceListHeader.tsx b/src/components/views/settings/devices/FilteredDeviceListHeader.tsx index 9cd5a285d5..28fcec6715 100644 --- a/src/components/views/settings/devices/FilteredDeviceListHeader.tsx +++ b/src/components/views/settings/devices/FilteredDeviceListHeader.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/LoginWithQRSection.tsx b/src/components/views/settings/devices/LoginWithQRSection.tsx index 033aa8e32a..4043d28c80 100644 --- a/src/components/views/settings/devices/LoginWithQRSection.tsx +++ b/src/components/views/settings/devices/LoginWithQRSection.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/OtherSessionsSectionHeading.tsx b/src/components/views/settings/devices/OtherSessionsSectionHeading.tsx index b5ba0cb4c4..4615c39daf 100644 --- a/src/components/views/settings/devices/OtherSessionsSectionHeading.tsx +++ b/src/components/views/settings/devices/OtherSessionsSectionHeading.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/SecurityRecommendations.tsx b/src/components/views/settings/devices/SecurityRecommendations.tsx index c0fc8e26b8..599c3bd5b3 100644 --- a/src/components/views/settings/devices/SecurityRecommendations.tsx +++ b/src/components/views/settings/devices/SecurityRecommendations.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/SelectableDeviceTile.tsx b/src/components/views/settings/devices/SelectableDeviceTile.tsx index 4c8747a634..b83b2c5870 100644 --- a/src/components/views/settings/devices/SelectableDeviceTile.tsx +++ b/src/components/views/settings/devices/SelectableDeviceTile.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/deleteDevices.tsx b/src/components/views/settings/devices/deleteDevices.tsx index 4b8bc19d76..16fdca9219 100644 --- a/src/components/views/settings/devices/deleteDevices.tsx +++ b/src/components/views/settings/devices/deleteDevices.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/filter.ts b/src/components/views/settings/devices/filter.ts index 0b252e7cde..ba7f6f5c21 100644 --- a/src/components/views/settings/devices/filter.ts +++ b/src/components/views/settings/devices/filter.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/types.ts b/src/components/views/settings/devices/types.ts index e46e43ab03..3891f6be32 100644 --- a/src/components/views/settings/devices/types.ts +++ b/src/components/views/settings/devices/types.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/devices/useOwnDevices.ts b/src/components/views/settings/devices/useOwnDevices.ts index 52b8e0aa63..8cb3f9dbc1 100644 --- a/src/components/views/settings/devices/useOwnDevices.ts +++ b/src/components/views/settings/devices/useOwnDevices.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/discovery/DiscoverySettings.tsx b/src/components/views/settings/discovery/DiscoverySettings.tsx index f96b79fe8d..28913f289d 100644 --- a/src/components/views/settings/discovery/DiscoverySettings.tsx +++ b/src/components/views/settings/discovery/DiscoverySettings.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/notifications/NotificationPusherSettings.tsx b/src/components/views/settings/notifications/NotificationPusherSettings.tsx index 9e17e7b829..d5506f7b95 100644 --- a/src/components/views/settings/notifications/NotificationPusherSettings.tsx +++ b/src/components/views/settings/notifications/NotificationPusherSettings.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/notifications/NotificationSettings2.tsx b/src/components/views/settings/notifications/NotificationSettings2.tsx index 38d4c3ce19..babc4c8bd5 100644 --- a/src/components/views/settings/notifications/NotificationSettings2.tsx +++ b/src/components/views/settings/notifications/NotificationSettings2.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/shared/SettingsBanner.tsx b/src/components/views/settings/shared/SettingsBanner.tsx index c35703bf16..a5b0ac2a36 100644 --- a/src/components/views/settings/shared/SettingsBanner.tsx +++ b/src/components/views/settings/shared/SettingsBanner.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/shared/SettingsIndent.tsx b/src/components/views/settings/shared/SettingsIndent.tsx index ee7e570d1a..7c280311c2 100644 --- a/src/components/views/settings/shared/SettingsIndent.tsx +++ b/src/components/views/settings/shared/SettingsIndent.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/shared/SettingsSection.tsx b/src/components/views/settings/shared/SettingsSection.tsx index a42a2a9b78..fbc502e733 100644 --- a/src/components/views/settings/shared/SettingsSection.tsx +++ b/src/components/views/settings/shared/SettingsSection.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/shared/SettingsSubsection.tsx b/src/components/views/settings/shared/SettingsSubsection.tsx index ba8d9aba6d..cbb20f771b 100644 --- a/src/components/views/settings/shared/SettingsSubsection.tsx +++ b/src/components/views/settings/shared/SettingsSubsection.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/shared/SettingsSubsectionHeading.tsx b/src/components/views/settings/shared/SettingsSubsectionHeading.tsx index 8c51eac0c2..61c29642a9 100644 --- a/src/components/views/settings/shared/SettingsSubsectionHeading.tsx +++ b/src/components/views/settings/shared/SettingsSubsectionHeading.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/SettingsTab.tsx b/src/components/views/settings/tabs/SettingsTab.tsx index 7472da22e7..169a373db7 100644 --- a/src/components/views/settings/tabs/SettingsTab.tsx +++ b/src/components/views/settings/tabs/SettingsTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import React, { HTMLAttributes } from "react"; diff --git a/src/components/views/settings/tabs/room/AdvancedRoomSettingsTab.tsx b/src/components/views/settings/tabs/room/AdvancedRoomSettingsTab.tsx index 5798771e67..dbd2a63505 100644 --- a/src/components/views/settings/tabs/room/AdvancedRoomSettingsTab.tsx +++ b/src/components/views/settings/tabs/room/AdvancedRoomSettingsTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/room/BridgeSettingsTab.tsx b/src/components/views/settings/tabs/room/BridgeSettingsTab.tsx index 0da257607e..ed80cc31e8 100644 --- a/src/components/views/settings/tabs/room/BridgeSettingsTab.tsx +++ b/src/components/views/settings/tabs/room/BridgeSettingsTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/room/GeneralRoomSettingsTab.tsx b/src/components/views/settings/tabs/room/GeneralRoomSettingsTab.tsx index 31c361de1b..590b54218f 100644 --- a/src/components/views/settings/tabs/room/GeneralRoomSettingsTab.tsx +++ b/src/components/views/settings/tabs/room/GeneralRoomSettingsTab.tsx @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/room/NotificationSettingsTab.tsx b/src/components/views/settings/tabs/room/NotificationSettingsTab.tsx index 9aabf1edb0..17e2498ae7 100644 --- a/src/components/views/settings/tabs/room/NotificationSettingsTab.tsx +++ b/src/components/views/settings/tabs/room/NotificationSettingsTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/room/PeopleRoomSettingsTab.tsx b/src/components/views/settings/tabs/room/PeopleRoomSettingsTab.tsx index 768d35890a..b374f36de1 100644 --- a/src/components/views/settings/tabs/room/PeopleRoomSettingsTab.tsx +++ b/src/components/views/settings/tabs/room/PeopleRoomSettingsTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Nordeck IT + Consulting GmbH -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/room/PollHistoryTab.tsx b/src/components/views/settings/tabs/room/PollHistoryTab.tsx index 830da280aa..a33e132e13 100644 --- a/src/components/views/settings/tabs/room/PollHistoryTab.tsx +++ b/src/components/views/settings/tabs/room/PollHistoryTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/room/RolesRoomSettingsTab.tsx b/src/components/views/settings/tabs/room/RolesRoomSettingsTab.tsx index baf4b41253..e2de5c3e69 100644 --- a/src/components/views/settings/tabs/room/RolesRoomSettingsTab.tsx +++ b/src/components/views/settings/tabs/room/RolesRoomSettingsTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/room/SecurityRoomSettingsTab.tsx b/src/components/views/settings/tabs/room/SecurityRoomSettingsTab.tsx index ece6a7deaf..f90dd9821d 100644 --- a/src/components/views/settings/tabs/room/SecurityRoomSettingsTab.tsx +++ b/src/components/views/settings/tabs/room/SecurityRoomSettingsTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/room/VoipRoomSettingsTab.tsx b/src/components/views/settings/tabs/room/VoipRoomSettingsTab.tsx index 783ea1bce3..2a8425823b 100644 --- a/src/components/views/settings/tabs/room/VoipRoomSettingsTab.tsx +++ b/src/components/views/settings/tabs/room/VoipRoomSettingsTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/user/AccountUserSettingsTab.tsx b/src/components/views/settings/tabs/user/AccountUserSettingsTab.tsx index cb1d2a3edd..c94eef6d2c 100644 --- a/src/components/views/settings/tabs/user/AccountUserSettingsTab.tsx +++ b/src/components/views/settings/tabs/user/AccountUserSettingsTab.tsx @@ -3,7 +3,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/user/AppearanceUserSettingsTab.tsx b/src/components/views/settings/tabs/user/AppearanceUserSettingsTab.tsx index f220803f72..4586191db1 100644 --- a/src/components/views/settings/tabs/user/AppearanceUserSettingsTab.tsx +++ b/src/components/views/settings/tabs/user/AppearanceUserSettingsTab.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/user/HelpUserSettingsTab.tsx b/src/components/views/settings/tabs/user/HelpUserSettingsTab.tsx index f19343be20..d28c820d20 100644 --- a/src/components/views/settings/tabs/user/HelpUserSettingsTab.tsx +++ b/src/components/views/settings/tabs/user/HelpUserSettingsTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/user/KeyboardUserSettingsTab.tsx b/src/components/views/settings/tabs/user/KeyboardUserSettingsTab.tsx index f4dd3de0ff..b6d2d24c96 100644 --- a/src/components/views/settings/tabs/user/KeyboardUserSettingsTab.tsx +++ b/src/components/views/settings/tabs/user/KeyboardUserSettingsTab.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 Šimon Brandner Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/user/LabsUserSettingsTab.tsx b/src/components/views/settings/tabs/user/LabsUserSettingsTab.tsx index 0e1654bbf4..5cee63b48e 100644 --- a/src/components/views/settings/tabs/user/LabsUserSettingsTab.tsx +++ b/src/components/views/settings/tabs/user/LabsUserSettingsTab.tsx @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/user/MjolnirUserSettingsTab.tsx b/src/components/views/settings/tabs/user/MjolnirUserSettingsTab.tsx index 3e86d779ff..9b71244e55 100644 --- a/src/components/views/settings/tabs/user/MjolnirUserSettingsTab.tsx +++ b/src/components/views/settings/tabs/user/MjolnirUserSettingsTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/user/NotificationUserSettingsTab.tsx b/src/components/views/settings/tabs/user/NotificationUserSettingsTab.tsx index 5b70d908cc..b63e790736 100644 --- a/src/components/views/settings/tabs/user/NotificationUserSettingsTab.tsx +++ b/src/components/views/settings/tabs/user/NotificationUserSettingsTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/user/PreferencesUserSettingsTab.tsx b/src/components/views/settings/tabs/user/PreferencesUserSettingsTab.tsx index db214bd7ed..5fc8fba7e3 100644 --- a/src/components/views/settings/tabs/user/PreferencesUserSettingsTab.tsx +++ b/src/components/views/settings/tabs/user/PreferencesUserSettingsTab.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/user/SecurityUserSettingsTab.tsx b/src/components/views/settings/tabs/user/SecurityUserSettingsTab.tsx index 7d5e27580c..13fc695c3a 100644 --- a/src/components/views/settings/tabs/user/SecurityUserSettingsTab.tsx +++ b/src/components/views/settings/tabs/user/SecurityUserSettingsTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/user/SessionManagerTab.tsx b/src/components/views/settings/tabs/user/SessionManagerTab.tsx index 71ff94ed7d..bc4355652b 100644 --- a/src/components/views/settings/tabs/user/SessionManagerTab.tsx +++ b/src/components/views/settings/tabs/user/SessionManagerTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/user/SidebarUserSettingsTab.tsx b/src/components/views/settings/tabs/user/SidebarUserSettingsTab.tsx index 413551e900..d7b6283aa4 100644 --- a/src/components/views/settings/tabs/user/SidebarUserSettingsTab.tsx +++ b/src/components/views/settings/tabs/user/SidebarUserSettingsTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/settings/tabs/user/VoiceUserSettingsTab.tsx b/src/components/views/settings/tabs/user/VoiceUserSettingsTab.tsx index 9711159a10..a52a232cd5 100644 --- a/src/components/views/settings/tabs/user/VoiceUserSettingsTab.tsx +++ b/src/components/views/settings/tabs/user/VoiceUserSettingsTab.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/spaces/QuickSettingsButton.tsx b/src/components/views/spaces/QuickSettingsButton.tsx index f7b2691fdd..21e2fda301 100644 --- a/src/components/views/spaces/QuickSettingsButton.tsx +++ b/src/components/views/spaces/QuickSettingsButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/spaces/QuickThemeSwitcher.tsx b/src/components/views/spaces/QuickThemeSwitcher.tsx index 195fcb9899..1eff342ac3 100644 --- a/src/components/views/spaces/QuickThemeSwitcher.tsx +++ b/src/components/views/spaces/QuickThemeSwitcher.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/spaces/SpaceBasicSettings.tsx b/src/components/views/spaces/SpaceBasicSettings.tsx index 63a70a97cd..4832da50b3 100644 --- a/src/components/views/spaces/SpaceBasicSettings.tsx +++ b/src/components/views/spaces/SpaceBasicSettings.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/spaces/SpaceChildrenPicker.tsx b/src/components/views/spaces/SpaceChildrenPicker.tsx index f6bbe96947..49f873fcf5 100644 --- a/src/components/views/spaces/SpaceChildrenPicker.tsx +++ b/src/components/views/spaces/SpaceChildrenPicker.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/spaces/SpaceCreateMenu.tsx b/src/components/views/spaces/SpaceCreateMenu.tsx index 764417e0b2..e964894502 100644 --- a/src/components/views/spaces/SpaceCreateMenu.tsx +++ b/src/components/views/spaces/SpaceCreateMenu.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/spaces/SpacePanel.tsx b/src/components/views/spaces/SpacePanel.tsx index 7f88837055..3dd46abb8d 100644 --- a/src/components/views/spaces/SpacePanel.tsx +++ b/src/components/views/spaces/SpacePanel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/spaces/SpacePublicShare.tsx b/src/components/views/spaces/SpacePublicShare.tsx index 8b649e0b32..8e148567ac 100644 --- a/src/components/views/spaces/SpacePublicShare.tsx +++ b/src/components/views/spaces/SpacePublicShare.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/spaces/SpaceSettingsGeneralTab.tsx b/src/components/views/spaces/SpaceSettingsGeneralTab.tsx index 8d80f85c58..09f14ec2e1 100644 --- a/src/components/views/spaces/SpaceSettingsGeneralTab.tsx +++ b/src/components/views/spaces/SpaceSettingsGeneralTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/spaces/SpaceSettingsVisibilityTab.tsx b/src/components/views/spaces/SpaceSettingsVisibilityTab.tsx index 47f4fe8ce9..3612f668c9 100644 --- a/src/components/views/spaces/SpaceSettingsVisibilityTab.tsx +++ b/src/components/views/spaces/SpaceSettingsVisibilityTab.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/spaces/SpaceTreeLevel.tsx b/src/components/views/spaces/SpaceTreeLevel.tsx index 38329c39b7..d85e5ff2a9 100644 --- a/src/components/views/spaces/SpaceTreeLevel.tsx +++ b/src/components/views/spaces/SpaceTreeLevel.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/spaces/threads-activity-centre/ThreadsActivityCentre.tsx b/src/components/views/spaces/threads-activity-centre/ThreadsActivityCentre.tsx index 5d08744fc7..562019a33f 100644 --- a/src/components/views/spaces/threads-activity-centre/ThreadsActivityCentre.tsx +++ b/src/components/views/spaces/threads-activity-centre/ThreadsActivityCentre.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/spaces/threads-activity-centre/ThreadsActivityCentreButton.tsx b/src/components/views/spaces/threads-activity-centre/ThreadsActivityCentreButton.tsx index 801a6050c3..123b8a072e 100644 --- a/src/components/views/spaces/threads-activity-centre/ThreadsActivityCentreButton.tsx +++ b/src/components/views/spaces/threads-activity-centre/ThreadsActivityCentreButton.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/spaces/threads-activity-centre/index.ts b/src/components/views/spaces/threads-activity-centre/index.ts index 98aa767866..f900a80570 100644 --- a/src/components/views/spaces/threads-activity-centre/index.ts +++ b/src/components/views/spaces/threads-activity-centre/index.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/spaces/threads-activity-centre/useUnreadThreadRooms.ts b/src/components/views/spaces/threads-activity-centre/useUnreadThreadRooms.ts index 574d7459ea..94486fdf76 100644 --- a/src/components/views/spaces/threads-activity-centre/useUnreadThreadRooms.ts +++ b/src/components/views/spaces/threads-activity-centre/useUnreadThreadRooms.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/terms/InlineTermsAgreement.tsx b/src/components/views/terms/InlineTermsAgreement.tsx index 350c408d75..2e4f48712f 100644 --- a/src/components/views/terms/InlineTermsAgreement.tsx +++ b/src/components/views/terms/InlineTermsAgreement.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/toasts/GenericExpiringToast.tsx b/src/components/views/toasts/GenericExpiringToast.tsx index 0809eae92c..b019babaf2 100644 --- a/src/components/views/toasts/GenericExpiringToast.tsx +++ b/src/components/views/toasts/GenericExpiringToast.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/toasts/GenericToast.tsx b/src/components/views/toasts/GenericToast.tsx index 76c74993c0..0e249cecdc 100644 --- a/src/components/views/toasts/GenericToast.tsx +++ b/src/components/views/toasts/GenericToast.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/toasts/NonUrgentEchoFailureToast.tsx b/src/components/views/toasts/NonUrgentEchoFailureToast.tsx index 069d5ee88c..490b251ade 100644 --- a/src/components/views/toasts/NonUrgentEchoFailureToast.tsx +++ b/src/components/views/toasts/NonUrgentEchoFailureToast.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/toasts/VerificationRequestToast.tsx b/src/components/views/toasts/VerificationRequestToast.tsx index 7d31aa6764..f235b8f488 100644 --- a/src/components/views/toasts/VerificationRequestToast.tsx +++ b/src/components/views/toasts/VerificationRequestToast.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/typography/Caption.tsx b/src/components/views/typography/Caption.tsx index 3bf5747688..0ce9fbb65c 100644 --- a/src/components/views/typography/Caption.tsx +++ b/src/components/views/typography/Caption.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/typography/Heading.tsx b/src/components/views/typography/Heading.tsx index 70ade1a516..c367c5d445 100644 --- a/src/components/views/typography/Heading.tsx +++ b/src/components/views/typography/Heading.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/user-onboarding/UserOnboardingButton.tsx b/src/components/views/user-onboarding/UserOnboardingButton.tsx index b6002f1d0b..6d009f378b 100644 --- a/src/components/views/user-onboarding/UserOnboardingButton.tsx +++ b/src/components/views/user-onboarding/UserOnboardingButton.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/user-onboarding/UserOnboardingHeader.tsx b/src/components/views/user-onboarding/UserOnboardingHeader.tsx index 1f6edbff1d..d4702ed372 100644 --- a/src/components/views/user-onboarding/UserOnboardingHeader.tsx +++ b/src/components/views/user-onboarding/UserOnboardingHeader.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/user-onboarding/UserOnboardingList.tsx b/src/components/views/user-onboarding/UserOnboardingList.tsx index c6c03527cb..0f0298eb65 100644 --- a/src/components/views/user-onboarding/UserOnboardingList.tsx +++ b/src/components/views/user-onboarding/UserOnboardingList.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/user-onboarding/UserOnboardingPage.tsx b/src/components/views/user-onboarding/UserOnboardingPage.tsx index d150c782c9..3f7a1e80dd 100644 --- a/src/components/views/user-onboarding/UserOnboardingPage.tsx +++ b/src/components/views/user-onboarding/UserOnboardingPage.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/user-onboarding/UserOnboardingTask.tsx b/src/components/views/user-onboarding/UserOnboardingTask.tsx index add9db1b35..c379cbc3d1 100644 --- a/src/components/views/user-onboarding/UserOnboardingTask.tsx +++ b/src/components/views/user-onboarding/UserOnboardingTask.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/verification/VerificationCancelled.tsx b/src/components/views/verification/VerificationCancelled.tsx index d1a84742b1..41fae925f6 100644 --- a/src/components/views/verification/VerificationCancelled.tsx +++ b/src/components/views/verification/VerificationCancelled.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/verification/VerificationComplete.tsx b/src/components/views/verification/VerificationComplete.tsx index 3760b2df70..0bbb2d39de 100644 --- a/src/components/views/verification/VerificationComplete.tsx +++ b/src/components/views/verification/VerificationComplete.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/verification/VerificationShowSas.tsx b/src/components/views/verification/VerificationShowSas.tsx index 1e053a7e99..df9ddba892 100644 --- a/src/components/views/verification/VerificationShowSas.tsx +++ b/src/components/views/verification/VerificationShowSas.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/voip/AudioFeed.tsx b/src/components/views/voip/AudioFeed.tsx index 88f1463bb5..36a02c21cd 100644 --- a/src/components/views/voip/AudioFeed.tsx +++ b/src/components/views/voip/AudioFeed.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/voip/AudioFeedArrayForLegacyCall.tsx b/src/components/views/voip/AudioFeedArrayForLegacyCall.tsx index b135bb0279..5b2a0d0c87 100644 --- a/src/components/views/voip/AudioFeedArrayForLegacyCall.tsx +++ b/src/components/views/voip/AudioFeedArrayForLegacyCall.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/voip/CallDuration.tsx b/src/components/views/voip/CallDuration.tsx index 3dba4bfc17..34f5d0ba60 100644 --- a/src/components/views/voip/CallDuration.tsx +++ b/src/components/views/voip/CallDuration.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/voip/CallView.tsx b/src/components/views/voip/CallView.tsx index e51d1c0253..b7b15c2f71 100644 --- a/src/components/views/voip/CallView.tsx +++ b/src/components/views/voip/CallView.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/voip/DialPad.tsx b/src/components/views/voip/DialPad.tsx index 9dda9468d8..a23c89fdef 100644 --- a/src/components/views/voip/DialPad.tsx +++ b/src/components/views/voip/DialPad.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/voip/DialPadModal.tsx b/src/components/views/voip/DialPadModal.tsx index b4b7cdf647..172a9cbaa5 100644 --- a/src/components/views/voip/DialPadModal.tsx +++ b/src/components/views/voip/DialPadModal.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/voip/LegacyCallView.tsx b/src/components/views/voip/LegacyCallView.tsx index aba3d60743..9c5246b912 100644 --- a/src/components/views/voip/LegacyCallView.tsx +++ b/src/components/views/voip/LegacyCallView.tsx @@ -4,7 +4,7 @@ Copyright 2021, 2022 Šimon Brandner Copyright 2019-2021 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/voip/LegacyCallView/LegacyCallViewButtons.tsx b/src/components/views/voip/LegacyCallView/LegacyCallViewButtons.tsx index 105736d04e..7788cb0e78 100644 --- a/src/components/views/voip/LegacyCallView/LegacyCallViewButtons.tsx +++ b/src/components/views/voip/LegacyCallView/LegacyCallViewButtons.tsx @@ -4,7 +4,7 @@ Copyright 2021 Šimon Brandner Copyright 2019-2021 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/voip/LegacyCallView/LegacyCallViewHeader.tsx b/src/components/views/voip/LegacyCallView/LegacyCallViewHeader.tsx index bb81527ef0..b443636d85 100644 --- a/src/components/views/voip/LegacyCallView/LegacyCallViewHeader.tsx +++ b/src/components/views/voip/LegacyCallView/LegacyCallViewHeader.tsx @@ -1,7 +1,7 @@ /* Copyright 2021-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/voip/LegacyCallViewForRoom.tsx b/src/components/views/voip/LegacyCallViewForRoom.tsx index defee6b97c..ed55f908be 100644 --- a/src/components/views/voip/LegacyCallViewForRoom.tsx +++ b/src/components/views/voip/LegacyCallViewForRoom.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/voip/LegacyCallViewSidebar.tsx b/src/components/views/voip/LegacyCallViewSidebar.tsx index d0c328f8be..3dcf3c644d 100644 --- a/src/components/views/voip/LegacyCallViewSidebar.tsx +++ b/src/components/views/voip/LegacyCallViewSidebar.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/components/views/voip/VideoFeed.tsx b/src/components/views/voip/VideoFeed.tsx index 6931027ddf..80ea27223c 100644 --- a/src/components/views/voip/VideoFeed.tsx +++ b/src/components/views/voip/VideoFeed.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 Šimon Brandner Copyright 2015, 2016 , 2019, 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/contexts/LocalDeviceVerificationStateContext.ts b/src/contexts/LocalDeviceVerificationStateContext.ts index 43527e100b..df5af67252 100644 --- a/src/contexts/LocalDeviceVerificationStateContext.ts +++ b/src/contexts/LocalDeviceVerificationStateContext.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/contexts/MatrixClientContext.tsx b/src/contexts/MatrixClientContext.tsx index ec804f881b..79ce5e5009 100644 --- a/src/contexts/MatrixClientContext.tsx +++ b/src/contexts/MatrixClientContext.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/contexts/RoomContext.ts b/src/contexts/RoomContext.ts index 4303c46a34..19f87d9471 100644 --- a/src/contexts/RoomContext.ts +++ b/src/contexts/RoomContext.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/contexts/SDKContext.ts b/src/contexts/SDKContext.ts index d77cd1e804..184bea4cfa 100644 --- a/src/contexts/SDKContext.ts +++ b/src/contexts/SDKContext.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/contexts/ScopedRoomContext.tsx b/src/contexts/ScopedRoomContext.tsx index 1222443d29..2b1827952d 100644 --- a/src/contexts/ScopedRoomContext.tsx +++ b/src/contexts/ScopedRoomContext.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/contexts/ToastContext.tsx b/src/contexts/ToastContext.tsx index 4ae4875c96..100eb6add0 100644 --- a/src/contexts/ToastContext.tsx +++ b/src/contexts/ToastContext.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/createRoom.ts b/src/createRoom.ts index 1a09eecfe9..45f071aac7 100644 --- a/src/createRoom.ts +++ b/src/createRoom.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/customisations/Alias.ts b/src/customisations/Alias.ts index 58be28ced8..6e5c60be58 100644 --- a/src/customisations/Alias.ts +++ b/src/customisations/Alias.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/customisations/ChatExport.ts b/src/customisations/ChatExport.ts index a4c6c70b33..ae979d4273 100644 --- a/src/customisations/ChatExport.ts +++ b/src/customisations/ChatExport.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/customisations/ComponentVisibility.ts b/src/customisations/ComponentVisibility.ts index 44464169f5..c69b6ee185 100644 --- a/src/customisations/ComponentVisibility.ts +++ b/src/customisations/ComponentVisibility.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/customisations/Directory.ts b/src/customisations/Directory.ts index 445863eaec..c553680125 100644 --- a/src/customisations/Directory.ts +++ b/src/customisations/Directory.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/customisations/Lifecycle.ts b/src/customisations/Lifecycle.ts index d76275e23a..2873093414 100644 --- a/src/customisations/Lifecycle.ts +++ b/src/customisations/Lifecycle.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/customisations/Media.ts b/src/customisations/Media.ts index f9e7766b00..d7b367c584 100644 --- a/src/customisations/Media.ts +++ b/src/customisations/Media.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2021 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/customisations/RoomList.ts b/src/customisations/RoomList.ts index e2c2088dad..a62e1bf6fc 100644 --- a/src/customisations/RoomList.ts +++ b/src/customisations/RoomList.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2020 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/customisations/UserIdentifier.ts b/src/customisations/UserIdentifier.ts index 7e291bdad8..cc36a1d8c7 100644 --- a/src/customisations/UserIdentifier.ts +++ b/src/customisations/UserIdentifier.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/customisations/WidgetPermissions.ts b/src/customisations/WidgetPermissions.ts index fa46e032dc..9734fee9d0 100644 --- a/src/customisations/WidgetPermissions.ts +++ b/src/customisations/WidgetPermissions.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2020 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/customisations/WidgetVariables.ts b/src/customisations/WidgetVariables.ts index a6235b721b..6a6651dd10 100644 --- a/src/customisations/WidgetVariables.ts +++ b/src/customisations/WidgetVariables.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2021 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/customisations/helpers/UIComponents.ts b/src/customisations/helpers/UIComponents.ts index 4cbc9a88a9..1c710f112d 100644 --- a/src/customisations/helpers/UIComponents.ts +++ b/src/customisations/helpers/UIComponents.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/customisations/models/IMediaEventContent.ts b/src/customisations/models/IMediaEventContent.ts index 15dae2eb67..607fc012ad 100644 --- a/src/customisations/models/IMediaEventContent.ts +++ b/src/customisations/models/IMediaEventContent.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2021 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/actions.ts b/src/dispatcher/actions.ts index 718f592e6a..5205e5badf 100644 --- a/src/dispatcher/actions.ts +++ b/src/dispatcher/actions.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/dispatcher.ts b/src/dispatcher/dispatcher.ts index f50e2bfe00..8b093e2e4a 100644 --- a/src/dispatcher/dispatcher.ts +++ b/src/dispatcher/dispatcher.ts @@ -4,7 +4,7 @@ Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2017 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads.ts b/src/dispatcher/payloads.ts index eb177e8b56..114f1e5515 100644 --- a/src/dispatcher/payloads.ts +++ b/src/dispatcher/payloads.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/ActiveRoomChangedPayload.ts b/src/dispatcher/payloads/ActiveRoomChangedPayload.ts index e24a523e8c..bb1c0e4afb 100644 --- a/src/dispatcher/payloads/ActiveRoomChangedPayload.ts +++ b/src/dispatcher/payloads/ActiveRoomChangedPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/AfterLeaveRoomPayload.ts b/src/dispatcher/payloads/AfterLeaveRoomPayload.ts index bb2cd0825c..5a74dce7be 100644 --- a/src/dispatcher/payloads/AfterLeaveRoomPayload.ts +++ b/src/dispatcher/payloads/AfterLeaveRoomPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/CancelAskToJoinPayload.ts b/src/dispatcher/payloads/CancelAskToJoinPayload.ts index a35d76d1e8..d9ca8d291e 100644 --- a/src/dispatcher/payloads/CancelAskToJoinPayload.ts +++ b/src/dispatcher/payloads/CancelAskToJoinPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Nordeck IT + Consulting GmbH -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/CheckUpdatesPayload.ts b/src/dispatcher/payloads/CheckUpdatesPayload.ts index e1f8c948a5..b588193b4f 100644 --- a/src/dispatcher/payloads/CheckUpdatesPayload.ts +++ b/src/dispatcher/payloads/CheckUpdatesPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/ComposerInsertPayload.ts b/src/dispatcher/payloads/ComposerInsertPayload.ts index d0652f431a..941f8c135c 100644 --- a/src/dispatcher/payloads/ComposerInsertPayload.ts +++ b/src/dispatcher/payloads/ComposerInsertPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/DoAfterSyncPreparedPayload.ts b/src/dispatcher/payloads/DoAfterSyncPreparedPayload.ts index c55b62bbc8..2f2ed06f66 100644 --- a/src/dispatcher/payloads/DoAfterSyncPreparedPayload.ts +++ b/src/dispatcher/payloads/DoAfterSyncPreparedPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/FocusComposerPayload.ts b/src/dispatcher/payloads/FocusComposerPayload.ts index 9db1ba9b1c..6ec62e4758 100644 --- a/src/dispatcher/payloads/FocusComposerPayload.ts +++ b/src/dispatcher/payloads/FocusComposerPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/JoinRoomErrorPayload.ts b/src/dispatcher/payloads/JoinRoomErrorPayload.ts index 7db3102fd6..1112674f21 100644 --- a/src/dispatcher/payloads/JoinRoomErrorPayload.ts +++ b/src/dispatcher/payloads/JoinRoomErrorPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/JoinRoomPayload.ts b/src/dispatcher/payloads/JoinRoomPayload.ts index c7fccaebc1..d4d0f5ca99 100644 --- a/src/dispatcher/payloads/JoinRoomPayload.ts +++ b/src/dispatcher/payloads/JoinRoomPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/JoinRoomReadyPayload.ts b/src/dispatcher/payloads/JoinRoomReadyPayload.ts index bd47e13f4a..5eaa9e3c8d 100644 --- a/src/dispatcher/payloads/JoinRoomReadyPayload.ts +++ b/src/dispatcher/payloads/JoinRoomReadyPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/OpenAddExistingToSpaceDialogPayload.ts b/src/dispatcher/payloads/OpenAddExistingToSpaceDialogPayload.ts index 33b3000ed4..ebcddb36c8 100644 --- a/src/dispatcher/payloads/OpenAddExistingToSpaceDialogPayload.ts +++ b/src/dispatcher/payloads/OpenAddExistingToSpaceDialogPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/OpenForwardDialogPayload.ts b/src/dispatcher/payloads/OpenForwardDialogPayload.ts index d6688575a0..cc1bffa21e 100644 --- a/src/dispatcher/payloads/OpenForwardDialogPayload.ts +++ b/src/dispatcher/payloads/OpenForwardDialogPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/OpenInviteDialogPayload.ts b/src/dispatcher/payloads/OpenInviteDialogPayload.ts index c8a3522f16..1d27507821 100644 --- a/src/dispatcher/payloads/OpenInviteDialogPayload.ts +++ b/src/dispatcher/payloads/OpenInviteDialogPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/OpenReportEventDialogPayload.ts b/src/dispatcher/payloads/OpenReportEventDialogPayload.ts index 238adeaeb5..a4b355e984 100644 --- a/src/dispatcher/payloads/OpenReportEventDialogPayload.ts +++ b/src/dispatcher/payloads/OpenReportEventDialogPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/OpenSpacePreferencesPayload.ts b/src/dispatcher/payloads/OpenSpacePreferencesPayload.ts index 5bc1abb557..ea068054db 100644 --- a/src/dispatcher/payloads/OpenSpacePreferencesPayload.ts +++ b/src/dispatcher/payloads/OpenSpacePreferencesPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/OpenSpaceSettingsPayload.ts b/src/dispatcher/payloads/OpenSpaceSettingsPayload.ts index b7691d44f8..9a1feae34d 100644 --- a/src/dispatcher/payloads/OpenSpaceSettingsPayload.ts +++ b/src/dispatcher/payloads/OpenSpaceSettingsPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/OpenSpotlightPayload.ts b/src/dispatcher/payloads/OpenSpotlightPayload.ts index bad5ab0f7d..ec2a630d07 100644 --- a/src/dispatcher/payloads/OpenSpotlightPayload.ts +++ b/src/dispatcher/payloads/OpenSpotlightPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/OpenToTabPayload.ts b/src/dispatcher/payloads/OpenToTabPayload.ts index dfe10f65a5..872ae62665 100644 --- a/src/dispatcher/payloads/OpenToTabPayload.ts +++ b/src/dispatcher/payloads/OpenToTabPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/OverwriteLoginPayload.ts b/src/dispatcher/payloads/OverwriteLoginPayload.ts index 6ba5d33ecf..dd53b0b7f9 100644 --- a/src/dispatcher/payloads/OverwriteLoginPayload.ts +++ b/src/dispatcher/payloads/OverwriteLoginPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/PlatformSetPayload.ts b/src/dispatcher/payloads/PlatformSetPayload.ts index 9b844b6d19..69dc79121c 100644 --- a/src/dispatcher/payloads/PlatformSetPayload.ts +++ b/src/dispatcher/payloads/PlatformSetPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/RecheckThemePayload.ts b/src/dispatcher/payloads/RecheckThemePayload.ts index 9281a56eb6..87419465ae 100644 --- a/src/dispatcher/payloads/RecheckThemePayload.ts +++ b/src/dispatcher/payloads/RecheckThemePayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/SettingUpdatedPayload.ts b/src/dispatcher/payloads/SettingUpdatedPayload.ts index 17cad17042..16c8d50590 100644 --- a/src/dispatcher/payloads/SettingUpdatedPayload.ts +++ b/src/dispatcher/payloads/SettingUpdatedPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/ShowThreadPayload.ts b/src/dispatcher/payloads/ShowThreadPayload.ts index 5dbc575e3c..700758af94 100644 --- a/src/dispatcher/payloads/ShowThreadPayload.ts +++ b/src/dispatcher/payloads/ShowThreadPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/SubmitAskToJoinPayload.ts b/src/dispatcher/payloads/SubmitAskToJoinPayload.ts index ec1414c22a..40334fab8d 100644 --- a/src/dispatcher/payloads/SubmitAskToJoinPayload.ts +++ b/src/dispatcher/payloads/SubmitAskToJoinPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Nordeck IT + Consulting GmbH -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/SwitchSpacePayload.ts b/src/dispatcher/payloads/SwitchSpacePayload.ts index 63677af658..7ad22a7b2d 100644 --- a/src/dispatcher/payloads/SwitchSpacePayload.ts +++ b/src/dispatcher/payloads/SwitchSpacePayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/ThreadPayload.ts b/src/dispatcher/payloads/ThreadPayload.ts index c09519e2e7..2f21576c33 100644 --- a/src/dispatcher/payloads/ThreadPayload.ts +++ b/src/dispatcher/payloads/ThreadPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/UpdateFontSizeDeltaPayload.ts b/src/dispatcher/payloads/UpdateFontSizeDeltaPayload.ts index b4ef6823a5..40495615b5 100644 --- a/src/dispatcher/payloads/UpdateFontSizeDeltaPayload.ts +++ b/src/dispatcher/payloads/UpdateFontSizeDeltaPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/UpdateSystemFontPayload.ts b/src/dispatcher/payloads/UpdateSystemFontPayload.ts index 0061f20e2c..91951244a9 100644 --- a/src/dispatcher/payloads/UpdateSystemFontPayload.ts +++ b/src/dispatcher/payloads/UpdateSystemFontPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/UploadPayload.ts b/src/dispatcher/payloads/UploadPayload.ts index afc4ca6c24..6d26a4dd2b 100644 --- a/src/dispatcher/payloads/UploadPayload.ts +++ b/src/dispatcher/payloads/UploadPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/ViewHomePagePayload.ts b/src/dispatcher/payloads/ViewHomePagePayload.ts index 923635e3a8..8743569bdf 100644 --- a/src/dispatcher/payloads/ViewHomePagePayload.ts +++ b/src/dispatcher/payloads/ViewHomePagePayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/ViewRoomDeltaPayload.ts b/src/dispatcher/payloads/ViewRoomDeltaPayload.ts index e28f26f2e1..fefe5ec544 100644 --- a/src/dispatcher/payloads/ViewRoomDeltaPayload.ts +++ b/src/dispatcher/payloads/ViewRoomDeltaPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/ViewRoomErrorPayload.ts b/src/dispatcher/payloads/ViewRoomErrorPayload.ts index 4657a3581e..fd85b9af09 100644 --- a/src/dispatcher/payloads/ViewRoomErrorPayload.ts +++ b/src/dispatcher/payloads/ViewRoomErrorPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/ViewRoomPayload.ts b/src/dispatcher/payloads/ViewRoomPayload.ts index 549e8d2c97..95affe573e 100644 --- a/src/dispatcher/payloads/ViewRoomPayload.ts +++ b/src/dispatcher/payloads/ViewRoomPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/ViewStartChatOrReusePayload.ts b/src/dispatcher/payloads/ViewStartChatOrReusePayload.ts index 619d96c67a..0c988d917a 100644 --- a/src/dispatcher/payloads/ViewStartChatOrReusePayload.ts +++ b/src/dispatcher/payloads/ViewStartChatOrReusePayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/dispatcher/payloads/ViewUserPayload.ts b/src/dispatcher/payloads/ViewUserPayload.ts index 405820b8c8..497ebf5671 100644 --- a/src/dispatcher/payloads/ViewUserPayload.ts +++ b/src/dispatcher/payloads/ViewUserPayload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/autocomplete.ts b/src/editor/autocomplete.ts index 542a2bbea5..ff1e89b1f1 100644 --- a/src/editor/autocomplete.ts +++ b/src/editor/autocomplete.ts @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/caret.ts b/src/editor/caret.ts index 316c3a052f..7db2c59b77 100644 --- a/src/editor/caret.ts +++ b/src/editor/caret.ts @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/commands.tsx b/src/editor/commands.tsx index 2930efe86f..cb38f88d0d 100644 --- a/src/editor/commands.tsx +++ b/src/editor/commands.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/deserialize.ts b/src/editor/deserialize.ts index 91afe4bd34..77ca729feb 100644 --- a/src/editor/deserialize.ts +++ b/src/editor/deserialize.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/diff.ts b/src/editor/diff.ts index 90429018f8..dfc654996e 100644 --- a/src/editor/diff.ts +++ b/src/editor/diff.ts @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/dom.ts b/src/editor/dom.ts index bb8372a097..b0fd9b47e9 100644 --- a/src/editor/dom.ts +++ b/src/editor/dom.ts @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/history.ts b/src/editor/history.ts index 2485b3ceee..ca5a39bb77 100644 --- a/src/editor/history.ts +++ b/src/editor/history.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/model.ts b/src/editor/model.ts index efe294cd21..c583c93972 100644 --- a/src/editor/model.ts +++ b/src/editor/model.ts @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/offset.ts b/src/editor/offset.ts index 7216dac295..143fcdd0f0 100644 --- a/src/editor/offset.ts +++ b/src/editor/offset.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/operations.ts b/src/editor/operations.ts index 3a2b7d8fb3..6ee663968d 100644 --- a/src/editor/operations.ts +++ b/src/editor/operations.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/parts.ts b/src/editor/parts.ts index bfdc3d29fb..907758e39a 100644 --- a/src/editor/parts.ts +++ b/src/editor/parts.ts @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/position.ts b/src/editor/position.ts index 439b991887..2b728b22b4 100644 --- a/src/editor/position.ts +++ b/src/editor/position.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/range.ts b/src/editor/range.ts index c3ec67e674..6441e92d04 100644 --- a/src/editor/range.ts +++ b/src/editor/range.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/render.ts b/src/editor/render.ts index 22ad40beb5..4ac2fc54b3 100644 --- a/src/editor/render.ts +++ b/src/editor/render.ts @@ -2,7 +2,7 @@ Copyright 2019-2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/editor/serialize.ts b/src/editor/serialize.ts index 36e2b97b09..8b05063b4e 100644 --- a/src/editor/serialize.ts +++ b/src/editor/serialize.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/effects/ICanvasEffect.ts b/src/effects/ICanvasEffect.ts index ef36b862bf..6fe8be9dc0 100644 --- a/src/effects/ICanvasEffect.ts +++ b/src/effects/ICanvasEffect.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 Nurjin Jafar Copyright 2020 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/effects/confetti/index.ts b/src/effects/confetti/index.ts index 28f37a5320..4c9046f8df 100644 --- a/src/effects/confetti/index.ts +++ b/src/effects/confetti/index.ts @@ -4,7 +4,7 @@ Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2020 Nurjin Jafar Copyright 2020 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import ICanvasEffect from "../ICanvasEffect"; diff --git a/src/effects/effect.ts b/src/effects/effect.ts index 2f1ad651b8..6a8ae5d8ba 100644 --- a/src/effects/effect.ts +++ b/src/effects/effect.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 Nurjin Jafar Copyright 2020 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/effects/fireworks/index.ts b/src/effects/fireworks/index.ts index 00b7758286..13f6e6408b 100644 --- a/src/effects/fireworks/index.ts +++ b/src/effects/fireworks/index.ts @@ -4,7 +4,7 @@ Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2020 Nurjin Jafar Copyright 2020 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/effects/hearts/index.ts b/src/effects/hearts/index.ts index 608ceaa783..00082049eb 100644 --- a/src/effects/hearts/index.ts +++ b/src/effects/hearts/index.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. Copyright 2022 Arseny Uskov -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import ICanvasEffect from "../ICanvasEffect"; diff --git a/src/effects/index.ts b/src/effects/index.ts index 42f8aea785..1ed7d2c3a3 100644 --- a/src/effects/index.ts +++ b/src/effects/index.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 Nurjin Jafar Copyright 2020 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import { _t, _td } from "../languageHandler"; diff --git a/src/effects/rainfall/index.ts b/src/effects/rainfall/index.ts index 8fe3ea54eb..9fac36d615 100644 --- a/src/effects/rainfall/index.ts +++ b/src/effects/rainfall/index.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2023 The Matrix.org Foundation C.I.C. Copyright 2021 Josias Allestad -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import ICanvasEffect from "../ICanvasEffect"; diff --git a/src/effects/snowfall/index.ts b/src/effects/snowfall/index.ts index b25aebf598..bfc690d1a4 100644 --- a/src/effects/snowfall/index.ts +++ b/src/effects/snowfall/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import ICanvasEffect from "../ICanvasEffect"; diff --git a/src/effects/spaceinvaders/index.ts b/src/effects/spaceinvaders/index.ts index ca90c921e4..49aeb26e8d 100644 --- a/src/effects/spaceinvaders/index.ts +++ b/src/effects/spaceinvaders/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import ICanvasEffect from "../ICanvasEffect"; diff --git a/src/effects/utils.ts b/src/effects/utils.ts index 62d3046fde..1479b6f5cd 100644 --- a/src/effects/utils.ts +++ b/src/effects/utils.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 Nurjin Jafar Copyright 2020 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/email.ts b/src/email.ts index dfdd325002..ca606a0dc7 100644 --- a/src/email.ts +++ b/src/email.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/emojipicker/recent.ts b/src/emojipicker/recent.ts index 44b04778d7..05c1321716 100644 --- a/src/emojipicker/recent.ts +++ b/src/emojipicker/recent.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2019 Tulir Asokan -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/events/EventTileFactory.tsx b/src/events/EventTileFactory.tsx index ec1651872a..3079e45abf 100644 --- a/src/events/EventTileFactory.tsx +++ b/src/events/EventTileFactory.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/events/RelationsHelper.ts b/src/events/RelationsHelper.ts index 79b4ee7770..e063395c9a 100644 --- a/src/events/RelationsHelper.ts +++ b/src/events/RelationsHelper.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/events/forward/getForwardableEvent.ts b/src/events/forward/getForwardableEvent.ts index 2d37ebf6e9..151da1e8af 100644 --- a/src/events/forward/getForwardableEvent.ts +++ b/src/events/forward/getForwardableEvent.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/events/index.ts b/src/events/index.ts index 7e1651927d..2fbbc1c600 100644 --- a/src/events/index.ts +++ b/src/events/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/events/location/getShareableLocationEvent.ts b/src/events/location/getShareableLocationEvent.ts index ef57464935..e5c9a0f3a1 100644 --- a/src/events/location/getShareableLocationEvent.ts +++ b/src/events/location/getShareableLocationEvent.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/favicon.ts b/src/favicon.ts index 112bfca7bf..e109c73460 100644 --- a/src/favicon.ts +++ b/src/favicon.ts @@ -1,7 +1,7 @@ /* Copyright 2020-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/room/useGuestAccessInformation.ts b/src/hooks/room/useGuestAccessInformation.ts index 6f53e0d554..bf49d434ef 100644 --- a/src/hooks/room/useGuestAccessInformation.ts +++ b/src/hooks/room/useGuestAccessInformation.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/room/useRoomCall.tsx b/src/hooks/room/useRoomCall.tsx index e1db9f9248..74a518b217 100644 --- a/src/hooks/room/useRoomCall.tsx +++ b/src/hooks/room/useRoomCall.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/room/useRoomMemberProfile.ts b/src/hooks/room/useRoomMemberProfile.ts index b8bb44c50d..123e6f0991 100644 --- a/src/hooks/room/useRoomMemberProfile.ts +++ b/src/hooks/room/useRoomMemberProfile.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/room/useRoomThreadNotifications.ts b/src/hooks/room/useRoomThreadNotifications.ts index 356af140fb..2740a016f7 100644 --- a/src/hooks/room/useRoomThreadNotifications.ts +++ b/src/hooks/room/useRoomThreadNotifications.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/room/useTopic.ts b/src/hooks/room/useTopic.ts index e9d98da972..3f8de87e39 100644 --- a/src/hooks/room/useTopic.ts +++ b/src/hooks/room/useTopic.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/spotlight/useDebouncedCallback.ts b/src/hooks/spotlight/useDebouncedCallback.ts index dbb6a3d209..26edb3c68c 100644 --- a/src/hooks/spotlight/useDebouncedCallback.ts +++ b/src/hooks/spotlight/useDebouncedCallback.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/spotlight/useRecentSearches.ts b/src/hooks/spotlight/useRecentSearches.ts index 33942c64cc..7f7ec89c19 100644 --- a/src/hooks/spotlight/useRecentSearches.ts +++ b/src/hooks/spotlight/useRecentSearches.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useAccountData.ts b/src/hooks/useAccountData.ts index b2fe464e55..7cbc77d525 100644 --- a/src/hooks/useAccountData.ts +++ b/src/hooks/useAccountData.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useAnimation.ts b/src/hooks/useAnimation.ts index a02bed7083..f5da36123e 100644 --- a/src/hooks/useAnimation.ts +++ b/src/hooks/useAnimation.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useAsyncMemo.ts b/src/hooks/useAsyncMemo.ts index ee3eb7bf6e..49925d0c74 100644 --- a/src/hooks/useAsyncMemo.ts +++ b/src/hooks/useAsyncMemo.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useAsyncRefreshMemo.ts b/src/hooks/useAsyncRefreshMemo.ts index 122b7cdb20..646217bb63 100644 --- a/src/hooks/useAsyncRefreshMemo.ts +++ b/src/hooks/useAsyncRefreshMemo.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useCall.ts b/src/hooks/useCall.ts index 5a913f84ad..63f5cd87ad 100644 --- a/src/hooks/useCall.ts +++ b/src/hooks/useCall.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useDispatcher.ts b/src/hooks/useDispatcher.ts index b9b22c4137..2072e31824 100644 --- a/src/hooks/useDispatcher.ts +++ b/src/hooks/useDispatcher.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useEncryptionStatus.ts b/src/hooks/useEncryptionStatus.ts index ed8cceb9f8..32238aa442 100644 --- a/src/hooks/useEncryptionStatus.ts +++ b/src/hooks/useEncryptionStatus.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useEventEmitter.ts b/src/hooks/useEventEmitter.ts index e3020384e9..b7c35081cd 100644 --- a/src/hooks/useEventEmitter.ts +++ b/src/hooks/useEventEmitter.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useFocus.ts b/src/hooks/useFocus.ts index b03ed47999..cbbea28d07 100644 --- a/src/hooks/useFocus.ts +++ b/src/hooks/useFocus.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useGlobalNotificationState.ts b/src/hooks/useGlobalNotificationState.ts index 755ffbf06d..fd2f0b7063 100644 --- a/src/hooks/useGlobalNotificationState.ts +++ b/src/hooks/useGlobalNotificationState.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useHover.ts b/src/hooks/useHover.ts index bbba5549dd..1a8aecd942 100644 --- a/src/hooks/useHover.ts +++ b/src/hooks/useHover.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useIsEncrypted.ts b/src/hooks/useIsEncrypted.ts index c9d3ed3bc8..7cdfcc68a1 100644 --- a/src/hooks/useIsEncrypted.ts +++ b/src/hooks/useIsEncrypted.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useIsInitialSyncComplete.ts b/src/hooks/useIsInitialSyncComplete.ts index b0131213a7..25cd8f52bd 100644 --- a/src/hooks/useIsInitialSyncComplete.ts +++ b/src/hooks/useIsInitialSyncComplete.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useIsReleaseAnnouncementOpen.ts b/src/hooks/useIsReleaseAnnouncementOpen.ts index b4a46568e2..68ab65f97a 100644 --- a/src/hooks/useIsReleaseAnnouncementOpen.ts +++ b/src/hooks/useIsReleaseAnnouncementOpen.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useLatestResult.ts b/src/hooks/useLatestResult.ts index 9776103ab3..632a0f7714 100644 --- a/src/hooks/useLatestResult.ts +++ b/src/hooks/useLatestResult.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useLocalEcho.ts b/src/hooks/useLocalEcho.ts index bbb978e5d4..baa967031f 100644 --- a/src/hooks/useLocalEcho.ts +++ b/src/hooks/useLocalEcho.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useLocalStorageState.ts b/src/hooks/useLocalStorageState.ts index b926033e47..5efec21035 100644 --- a/src/hooks/useLocalStorageState.ts +++ b/src/hooks/useLocalStorageState.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useNotificationSettings.tsx b/src/hooks/useNotificationSettings.tsx index bf4290a068..3036a8122c 100644 --- a/src/hooks/useNotificationSettings.tsx +++ b/src/hooks/useNotificationSettings.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/usePermalink.ts b/src/hooks/usePermalink.ts index 18c5ed6b98..f9174654fc 100644 --- a/src/hooks/usePermalink.ts +++ b/src/hooks/usePermalink.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/usePermalinkEvent.ts b/src/hooks/usePermalinkEvent.ts index ff77f15238..12844d73bb 100644 --- a/src/hooks/usePermalinkEvent.ts +++ b/src/hooks/usePermalinkEvent.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/usePermalinkMember.ts b/src/hooks/usePermalinkMember.ts index 1fc144c9f6..787062ca3a 100644 --- a/src/hooks/usePermalinkMember.ts +++ b/src/hooks/usePermalinkMember.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/usePermalinkTargetRoom.ts b/src/hooks/usePermalinkTargetRoom.ts index e5f46cc496..7a3a40ae52 100644 --- a/src/hooks/usePermalinkTargetRoom.ts +++ b/src/hooks/usePermalinkTargetRoom.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/usePinnedEvents.ts b/src/hooks/usePinnedEvents.ts index a29c65625c..bdda4a7701 100644 --- a/src/hooks/usePinnedEvents.ts +++ b/src/hooks/usePinnedEvents.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useProfileInfo.ts b/src/hooks/useProfileInfo.ts index bc57f27160..45500fac69 100644 --- a/src/hooks/useProfileInfo.ts +++ b/src/hooks/useProfileInfo.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/usePublicRoomDirectory.ts b/src/hooks/usePublicRoomDirectory.ts index be3f41b663..2e8cfb21b6 100644 --- a/src/hooks/usePublicRoomDirectory.ts +++ b/src/hooks/usePublicRoomDirectory.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/usePushers.ts b/src/hooks/usePushers.ts index 38c36ebc88..8dc6283291 100644 --- a/src/hooks/usePushers.ts +++ b/src/hooks/usePushers.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useRoomMembers.ts b/src/hooks/useRoomMembers.ts index 51aa7b4640..7a37d693df 100644 --- a/src/hooks/useRoomMembers.ts +++ b/src/hooks/useRoomMembers.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useRoomName.ts b/src/hooks/useRoomName.ts index b1f25b7ca2..201cc088de 100644 --- a/src/hooks/useRoomName.ts +++ b/src/hooks/useRoomName.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useRoomNotificationState.ts b/src/hooks/useRoomNotificationState.ts index 46dd4e5524..c964501aa9 100644 --- a/src/hooks/useRoomNotificationState.ts +++ b/src/hooks/useRoomNotificationState.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useRoomState.ts b/src/hooks/useRoomState.ts index 8c0c559610..24c4609b12 100644 --- a/src/hooks/useRoomState.ts +++ b/src/hooks/useRoomState.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useSettings.ts b/src/hooks/useSettings.ts index efb04e459a..7fbf5231fa 100644 --- a/src/hooks/useSettings.ts +++ b/src/hooks/useSettings.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useSlidingSyncRoomSearch.ts b/src/hooks/useSlidingSyncRoomSearch.ts index bd8529bfd9..079d11d7e7 100644 --- a/src/hooks/useSlidingSyncRoomSearch.ts +++ b/src/hooks/useSlidingSyncRoomSearch.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useSmoothAnimation.ts b/src/hooks/useSmoothAnimation.ts index df62a4d3d5..dd157911b3 100644 --- a/src/hooks/useSmoothAnimation.ts +++ b/src/hooks/useSmoothAnimation.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useSpaceResults.ts b/src/hooks/useSpaceResults.ts index 75a0a119a9..3c4698cb66 100644 --- a/src/hooks/useSpaceResults.ts +++ b/src/hooks/useSpaceResults.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useStateArray.ts b/src/hooks/useStateArray.ts index 3db3f5fe7f..1b57a29652 100644 --- a/src/hooks/useStateArray.ts +++ b/src/hooks/useStateArray.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useStateCallback.ts b/src/hooks/useStateCallback.ts index 661898c9f6..ec46d0151f 100644 --- a/src/hooks/useStateCallback.ts +++ b/src/hooks/useStateCallback.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useStateToggle.ts b/src/hooks/useStateToggle.ts index c5f24c5db6..d808d9b133 100644 --- a/src/hooks/useStateToggle.ts +++ b/src/hooks/useStateToggle.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useTheme.ts b/src/hooks/useTheme.ts index 5afcf9ea1d..31b01dc2e3 100644 --- a/src/hooks/useTheme.ts +++ b/src/hooks/useTheme.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useThreepids.ts b/src/hooks/useThreepids.ts index 7e9f2cc52b..32884bc7cc 100644 --- a/src/hooks/useThreepids.ts +++ b/src/hooks/useThreepids.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useTimeout.ts b/src/hooks/useTimeout.ts index c88de82c0f..64343cbfad 100644 --- a/src/hooks/useTimeout.ts +++ b/src/hooks/useTimeout.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useTimeoutToggle.ts b/src/hooks/useTimeoutToggle.ts index 83f1bc333b..c67af845db 100644 --- a/src/hooks/useTimeoutToggle.ts +++ b/src/hooks/useTimeoutToggle.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useTransition.ts b/src/hooks/useTransition.ts index 853354e100..e583ba8557 100644 --- a/src/hooks/useTransition.ts +++ b/src/hooks/useTransition.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useUnreadNotifications.ts b/src/hooks/useUnreadNotifications.ts index 47e4e6b811..7697524da5 100644 --- a/src/hooks/useUnreadNotifications.ts +++ b/src/hooks/useUnreadNotifications.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useUserDirectory.ts b/src/hooks/useUserDirectory.ts index 09b55f21af..8599b2488a 100644 --- a/src/hooks/useUserDirectory.ts +++ b/src/hooks/useUserDirectory.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useUserOnboardingContext.ts b/src/hooks/useUserOnboardingContext.ts index 8bd93603d4..48517bd192 100644 --- a/src/hooks/useUserOnboardingContext.ts +++ b/src/hooks/useUserOnboardingContext.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useUserOnboardingTasks.ts b/src/hooks/useUserOnboardingTasks.ts index 52463e1487..87fec0d78d 100644 --- a/src/hooks/useUserOnboardingTasks.ts +++ b/src/hooks/useUserOnboardingTasks.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/hooks/useUserTimezone.ts b/src/hooks/useUserTimezone.ts index 686679bb90..c6c98483dd 100644 --- a/src/hooks/useUserTimezone.ts +++ b/src/hooks/useUserTimezone.ts @@ -1,17 +1,8 @@ /* -Copyright 2024 New Vector Ltd +Copyright 2024 New Vector Ltd. -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial +Please see LICENSE files in the repository root for full details. */ import { useEffect, useState } from "react"; import { MatrixClient, MatrixError } from "matrix-js-sdk/src/matrix"; diff --git a/src/hooks/useWindowWidth.ts b/src/hooks/useWindowWidth.ts index 0b952ffce8..ddf64bbd9b 100644 --- a/src/hooks/useWindowWidth.ts +++ b/src/hooks/useWindowWidth.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/identifiers.ts b/src/identifiers.ts index 88f3c26592..db342ed046 100644 --- a/src/identifiers.ts +++ b/src/identifiers.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2021 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/index.ts b/src/index.ts index e1fe9c0103..7988f32dad 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/indexing/BaseEventIndexManager.ts b/src/indexing/BaseEventIndexManager.ts index efdc64e36a..0088a79683 100644 --- a/src/indexing/BaseEventIndexManager.ts +++ b/src/indexing/BaseEventIndexManager.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/indexing/EventIndex.ts b/src/indexing/EventIndex.ts index da2eee995c..7a126b2ffb 100644 --- a/src/indexing/EventIndex.ts +++ b/src/indexing/EventIndex.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/indexing/EventIndexPeg.ts b/src/indexing/EventIndexPeg.ts index 73acfff857..f33cbcc74c 100644 --- a/src/indexing/EventIndexPeg.ts +++ b/src/indexing/EventIndexPeg.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/integrations/IntegrationManagerInstance.ts b/src/integrations/IntegrationManagerInstance.ts index 4516922fb5..d74b380bfd 100644 --- a/src/integrations/IntegrationManagerInstance.ts +++ b/src/integrations/IntegrationManagerInstance.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/integrations/IntegrationManagers.ts b/src/integrations/IntegrationManagers.ts index 86c1b2db8c..a8fe8a33dc 100644 --- a/src/integrations/IntegrationManagers.ts +++ b/src/integrations/IntegrationManagers.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/languageHandler.tsx b/src/languageHandler.tsx index c30ca94922..14f611b138 100644 --- a/src/languageHandler.tsx +++ b/src/languageHandler.tsx @@ -5,7 +5,7 @@ Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2017 MTRNord and Cooperative EITA Copyright 2017 Vector Creations Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/linkify-matrix.ts b/src/linkify-matrix.ts index 0d129ff952..198d5982c1 100644 --- a/src/linkify-matrix.ts +++ b/src/linkify-matrix.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/mjolnir/BanList.ts b/src/mjolnir/BanList.ts index 7e31b652da..617b37d77a 100644 --- a/src/mjolnir/BanList.ts +++ b/src/mjolnir/BanList.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/mjolnir/ListRule.ts b/src/mjolnir/ListRule.ts index 0261ec2ef9..6c9389bd33 100644 --- a/src/mjolnir/ListRule.ts +++ b/src/mjolnir/ListRule.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/mjolnir/Mjolnir.ts b/src/mjolnir/Mjolnir.ts index 9dacc0d41f..cea128e5ef 100644 --- a/src/mjolnir/Mjolnir.ts +++ b/src/mjolnir/Mjolnir.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/models/Call.ts b/src/models/Call.ts index fe92bed4c7..03645ed47e 100644 --- a/src/models/Call.ts +++ b/src/models/Call.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/models/LocalRoom.ts b/src/models/LocalRoom.ts index f1f8dde1cd..4a233f976f 100644 --- a/src/models/LocalRoom.ts +++ b/src/models/LocalRoom.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/models/RoomUpload.ts b/src/models/RoomUpload.ts index 569f59e016..61add9c7f5 100644 --- a/src/models/RoomUpload.ts +++ b/src/models/RoomUpload.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/models/notificationsettings/NotificationSettings.ts b/src/models/notificationsettings/NotificationSettings.ts index 533afe2d04..3ebd6811f4 100644 --- a/src/models/notificationsettings/NotificationSettings.ts +++ b/src/models/notificationsettings/NotificationSettings.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/models/notificationsettings/PushRuleDiff.ts b/src/models/notificationsettings/PushRuleDiff.ts index 82c4a4d4b5..11d8ce0522 100644 --- a/src/models/notificationsettings/PushRuleDiff.ts +++ b/src/models/notificationsettings/PushRuleDiff.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/models/notificationsettings/PushRuleMap.ts b/src/models/notificationsettings/PushRuleMap.ts index bf217d16ff..8c7ede293c 100644 --- a/src/models/notificationsettings/PushRuleMap.ts +++ b/src/models/notificationsettings/PushRuleMap.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/models/notificationsettings/reconcileNotificationSettings.ts b/src/models/notificationsettings/reconcileNotificationSettings.ts index da052b4475..ce67d25d34 100644 --- a/src/models/notificationsettings/reconcileNotificationSettings.ts +++ b/src/models/notificationsettings/reconcileNotificationSettings.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/models/notificationsettings/toNotificationSettings.ts b/src/models/notificationsettings/toNotificationSettings.ts index 7f7f5798b8..33ed4b5e4a 100644 --- a/src/models/notificationsettings/toNotificationSettings.ts +++ b/src/models/notificationsettings/toNotificationSettings.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/modules/AppModule.ts b/src/modules/AppModule.ts index 3904efe6f2..b7585fd2c6 100644 --- a/src/modules/AppModule.ts +++ b/src/modules/AppModule.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/modules/ModuleComponents.tsx b/src/modules/ModuleComponents.tsx index 25a5092a21..53ab415603 100644 --- a/src/modules/ModuleComponents.tsx +++ b/src/modules/ModuleComponents.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/modules/ModuleFactory.ts b/src/modules/ModuleFactory.ts index 42d5c0f4a6..9d72a18d6b 100644 --- a/src/modules/ModuleFactory.ts +++ b/src/modules/ModuleFactory.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/modules/ModuleRunner.ts b/src/modules/ModuleRunner.ts index 06a17b43b4..c01015206d 100644 --- a/src/modules/ModuleRunner.ts +++ b/src/modules/ModuleRunner.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/modules/ProxiedModuleApi.ts b/src/modules/ProxiedModuleApi.ts index 34735afe0f..7aa6ccd3b8 100644 --- a/src/modules/ProxiedModuleApi.ts +++ b/src/modules/ProxiedModuleApi.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/notifications/ContentRules.ts b/src/notifications/ContentRules.ts index 0f0fcc21e1..bfe3bed6c2 100644 --- a/src/notifications/ContentRules.ts +++ b/src/notifications/ContentRules.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/notifications/NotificationUtils.ts b/src/notifications/NotificationUtils.ts index 37f58d839f..0504ba41f7 100644 --- a/src/notifications/NotificationUtils.ts +++ b/src/notifications/NotificationUtils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/notifications/PushRuleVectorState.ts b/src/notifications/PushRuleVectorState.ts index 1a6559df60..eeed5ca99c 100644 --- a/src/notifications/PushRuleVectorState.ts +++ b/src/notifications/PushRuleVectorState.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/notifications/StandardActions.ts b/src/notifications/StandardActions.ts index 17d8454e33..21dad0e655 100644 --- a/src/notifications/StandardActions.ts +++ b/src/notifications/StandardActions.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/notifications/VectorPushRulesDefinitions.ts b/src/notifications/VectorPushRulesDefinitions.ts index 4149a8efb9..77311edcec 100644 --- a/src/notifications/VectorPushRulesDefinitions.ts +++ b/src/notifications/VectorPushRulesDefinitions.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/notifications/index.ts b/src/notifications/index.ts index 332c8ef698..17f1b249a9 100644 --- a/src/notifications/index.ts +++ b/src/notifications/index.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/performance/entry-names.ts b/src/performance/entry-names.ts index 13953ebf32..fcdd0621e1 100644 --- a/src/performance/entry-names.ts +++ b/src/performance/entry-names.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/performance/index.ts b/src/performance/index.ts index 4d26f02b28..468181e0c1 100644 --- a/src/performance/index.ts +++ b/src/performance/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/phonenumber.ts b/src/phonenumber.ts index 185287ff6f..dbf49e65b9 100644 --- a/src/phonenumber.ts +++ b/src/phonenumber.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/rageshake/rageshake.ts b/src/rageshake/rageshake.ts index c68fa8503c..2d8ec572d5 100644 --- a/src/rageshake/rageshake.ts +++ b/src/rageshake/rageshake.ts @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2017 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/rageshake/submit-rageshake.ts b/src/rageshake/submit-rageshake.ts index 0c00cc777a..05f8a49b43 100644 --- a/src/rageshake/submit-rageshake.ts +++ b/src/rageshake/submit-rageshake.ts @@ -4,7 +4,7 @@ Copyright 2019 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2017 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/resizer/distributors/collapse.ts b/src/resizer/distributors/collapse.ts index 172ece19c3..a4693e8e14 100644 --- a/src/resizer/distributors/collapse.ts +++ b/src/resizer/distributors/collapse.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/resizer/distributors/fixed.ts b/src/resizer/distributors/fixed.ts index 06535771fc..609df1deae 100644 --- a/src/resizer/distributors/fixed.ts +++ b/src/resizer/distributors/fixed.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/resizer/distributors/percentage.ts b/src/resizer/distributors/percentage.ts index 3c487fcd0f..f8a0010787 100644 --- a/src/resizer/distributors/percentage.ts +++ b/src/resizer/distributors/percentage.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/resizer/index.ts b/src/resizer/index.ts index 11b8101338..b73b368361 100644 --- a/src/resizer/index.ts +++ b/src/resizer/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/resizer/item.ts b/src/resizer/item.ts index e715a1a25c..9eeea86fd6 100644 --- a/src/resizer/item.ts +++ b/src/resizer/item.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/resizer/resizer.ts b/src/resizer/resizer.ts index 1b24ee00e6..826b017d56 100644 --- a/src/resizer/resizer.ts +++ b/src/resizer/resizer.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/resizer/sizer.ts b/src/resizer/sizer.ts index 046e13fd6b..2284781c9d 100644 --- a/src/resizer/sizer.ts +++ b/src/resizer/sizer.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/sendTimePerformanceMetrics.ts b/src/sendTimePerformanceMetrics.ts index d5fc46241e..c57ed3771b 100644 --- a/src/sendTimePerformanceMetrics.ts +++ b/src/sendTimePerformanceMetrics.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/sentry.ts b/src/sentry.ts index c70201679c..90ce39d671 100644 --- a/src/sentry.ts +++ b/src/sentry.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/serviceworker/index.ts b/src/serviceworker/index.ts index f15c880cf5..8c522ede59 100644 --- a/src/serviceworker/index.ts +++ b/src/serviceworker/index.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/SettingLevel.ts b/src/settings/SettingLevel.ts index 88be8f381c..2904350d4d 100644 --- a/src/settings/SettingLevel.ts +++ b/src/settings/SettingLevel.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/Settings.tsx b/src/settings/Settings.tsx index 649dca0e23..9c4bb76f9f 100644 --- a/src/settings/Settings.tsx +++ b/src/settings/Settings.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2024 The Matrix.org Foundation C.I.C. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/SettingsStore.ts b/src/settings/SettingsStore.ts index 6e857c2618..f0b74de15a 100644 --- a/src/settings/SettingsStore.ts +++ b/src/settings/SettingsStore.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/UIFeature.ts b/src/settings/UIFeature.ts index 238e8a233f..4aef725d4a 100644 --- a/src/settings/UIFeature.ts +++ b/src/settings/UIFeature.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/WatchManager.ts b/src/settings/WatchManager.ts index 52403136c1..fd38ae3637 100644 --- a/src/settings/WatchManager.ts +++ b/src/settings/WatchManager.ts @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/AnalyticsController.ts b/src/settings/controllers/AnalyticsController.ts index 9272753e51..f2b432ef5b 100644 --- a/src/settings/controllers/AnalyticsController.ts +++ b/src/settings/controllers/AnalyticsController.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/DeviceIsolationModeController.ts b/src/settings/controllers/DeviceIsolationModeController.ts index fe932d0deb..bbdca789ce 100644 --- a/src/settings/controllers/DeviceIsolationModeController.ts +++ b/src/settings/controllers/DeviceIsolationModeController.ts @@ -1,6 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/FallbackIceServerController.ts b/src/settings/controllers/FallbackIceServerController.ts index 5fd8bee322..e433b64ba3 100644 --- a/src/settings/controllers/FallbackIceServerController.ts +++ b/src/settings/controllers/FallbackIceServerController.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/FontSizeController.ts b/src/settings/controllers/FontSizeController.ts index d4b23b96cb..762e18011e 100644 --- a/src/settings/controllers/FontSizeController.ts +++ b/src/settings/controllers/FontSizeController.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/IncompatibleController.ts b/src/settings/controllers/IncompatibleController.ts index 47d6e83c6d..37100271f6 100644 --- a/src/settings/controllers/IncompatibleController.ts +++ b/src/settings/controllers/IncompatibleController.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/MatrixClientBackedController.ts b/src/settings/controllers/MatrixClientBackedController.ts index 15cc58e25a..ab0ca82093 100644 --- a/src/settings/controllers/MatrixClientBackedController.ts +++ b/src/settings/controllers/MatrixClientBackedController.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/NotificationControllers.ts b/src/settings/controllers/NotificationControllers.ts index da3ef6d859..effb7aee59 100644 --- a/src/settings/controllers/NotificationControllers.ts +++ b/src/settings/controllers/NotificationControllers.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/ReducedMotionController.ts b/src/settings/controllers/ReducedMotionController.ts index 11207fe303..38d2477fc3 100644 --- a/src/settings/controllers/ReducedMotionController.ts +++ b/src/settings/controllers/ReducedMotionController.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/ReloadOnChangeController.ts b/src/settings/controllers/ReloadOnChangeController.ts index 2e1bb15b77..ace6d108d2 100644 --- a/src/settings/controllers/ReloadOnChangeController.ts +++ b/src/settings/controllers/ReloadOnChangeController.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/ServerSupportUnstableFeatureController.ts b/src/settings/controllers/ServerSupportUnstableFeatureController.ts index f535969108..9da9e3befc 100644 --- a/src/settings/controllers/ServerSupportUnstableFeatureController.ts +++ b/src/settings/controllers/ServerSupportUnstableFeatureController.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/SettingController.ts b/src/settings/controllers/SettingController.ts index 63922f64a8..821b3d2032 100644 --- a/src/settings/controllers/SettingController.ts +++ b/src/settings/controllers/SettingController.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/SlidingSyncController.ts b/src/settings/controllers/SlidingSyncController.ts index eccff0ab90..11ae1a2ba0 100644 --- a/src/settings/controllers/SlidingSyncController.ts +++ b/src/settings/controllers/SlidingSyncController.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 Ed Geraghty Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/SystemFontController.ts b/src/settings/controllers/SystemFontController.ts index d1cc107ca1..70fab9eda9 100644 --- a/src/settings/controllers/SystemFontController.ts +++ b/src/settings/controllers/SystemFontController.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/ThemeController.ts b/src/settings/controllers/ThemeController.ts index 69f091c436..a192a4d080 100644 --- a/src/settings/controllers/ThemeController.ts +++ b/src/settings/controllers/ThemeController.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/controllers/UIFeatureController.ts b/src/settings/controllers/UIFeatureController.ts index 74e6693e02..5371751a3c 100644 --- a/src/settings/controllers/UIFeatureController.ts +++ b/src/settings/controllers/UIFeatureController.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/enums/ImageSize.ts b/src/settings/enums/ImageSize.ts index 1ce293a536..394ee6b4fe 100644 --- a/src/settings/enums/ImageSize.ts +++ b/src/settings/enums/ImageSize.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/enums/Layout.ts b/src/settings/enums/Layout.ts index 9054dd5582..1bf560a8fd 100644 --- a/src/settings/enums/Layout.ts +++ b/src/settings/enums/Layout.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner Copyright 2021 Quirin Götz -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/enums/UseCase.tsx b/src/settings/enums/UseCase.tsx index 07b24f9028..036e0a51cd 100644 --- a/src/settings/enums/UseCase.tsx +++ b/src/settings/enums/UseCase.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/handlers/AbstractLocalStorageSettingsHandler.ts b/src/settings/handlers/AbstractLocalStorageSettingsHandler.ts index 70cdedffe1..e6e2288319 100644 --- a/src/settings/handlers/AbstractLocalStorageSettingsHandler.ts +++ b/src/settings/handlers/AbstractLocalStorageSettingsHandler.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/handlers/AccountSettingsHandler.ts b/src/settings/handlers/AccountSettingsHandler.ts index 9187bd0d49..0500556931 100644 --- a/src/settings/handlers/AccountSettingsHandler.ts +++ b/src/settings/handlers/AccountSettingsHandler.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/handlers/ConfigSettingsHandler.ts b/src/settings/handlers/ConfigSettingsHandler.ts index 06e694bc38..1dd0e19dc5 100644 --- a/src/settings/handlers/ConfigSettingsHandler.ts +++ b/src/settings/handlers/ConfigSettingsHandler.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/handlers/DefaultSettingsHandler.ts b/src/settings/handlers/DefaultSettingsHandler.ts index 758a8c0c0d..a005525b4c 100644 --- a/src/settings/handlers/DefaultSettingsHandler.ts +++ b/src/settings/handlers/DefaultSettingsHandler.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/handlers/DeviceSettingsHandler.ts b/src/settings/handlers/DeviceSettingsHandler.ts index 0fe5ef7411..5feb0c1db3 100644 --- a/src/settings/handlers/DeviceSettingsHandler.ts +++ b/src/settings/handlers/DeviceSettingsHandler.ts @@ -4,7 +4,7 @@ Copyright 2019-2022 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/handlers/LocalEchoWrapper.ts b/src/settings/handlers/LocalEchoWrapper.ts index 7d5050c9b8..2c44fca8a4 100644 --- a/src/settings/handlers/LocalEchoWrapper.ts +++ b/src/settings/handlers/LocalEchoWrapper.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/handlers/MatrixClientBackedSettingsHandler.ts b/src/settings/handlers/MatrixClientBackedSettingsHandler.ts index 86b3071a0e..84d56dcecf 100644 --- a/src/settings/handlers/MatrixClientBackedSettingsHandler.ts +++ b/src/settings/handlers/MatrixClientBackedSettingsHandler.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/handlers/PlatformSettingsHandler.ts b/src/settings/handlers/PlatformSettingsHandler.ts index 2ea350fdd8..fb16b182fe 100644 --- a/src/settings/handlers/PlatformSettingsHandler.ts +++ b/src/settings/handlers/PlatformSettingsHandler.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/handlers/RoomAccountSettingsHandler.ts b/src/settings/handlers/RoomAccountSettingsHandler.ts index 7e7242b62b..73a83d4575 100644 --- a/src/settings/handlers/RoomAccountSettingsHandler.ts +++ b/src/settings/handlers/RoomAccountSettingsHandler.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/handlers/RoomDeviceSettingsHandler.ts b/src/settings/handlers/RoomDeviceSettingsHandler.ts index 6e4324fad8..cf7c17ced6 100644 --- a/src/settings/handlers/RoomDeviceSettingsHandler.ts +++ b/src/settings/handlers/RoomDeviceSettingsHandler.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 - 2022 The Matrix.org Foundation C.I.C. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/handlers/RoomSettingsHandler.ts b/src/settings/handlers/RoomSettingsHandler.ts index d67acf5d0f..dd6bc48a01 100644 --- a/src/settings/handlers/RoomSettingsHandler.ts +++ b/src/settings/handlers/RoomSettingsHandler.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/handlers/SettingsHandler.ts b/src/settings/handlers/SettingsHandler.ts index 158e45847e..43ec57cc13 100644 --- a/src/settings/handlers/SettingsHandler.ts +++ b/src/settings/handlers/SettingsHandler.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/watchers/FontWatcher.ts b/src/settings/watchers/FontWatcher.ts index 3ee5320f54..6be4b92581 100644 --- a/src/settings/watchers/FontWatcher.ts +++ b/src/settings/watchers/FontWatcher.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/watchers/ThemeWatcher.ts b/src/settings/watchers/ThemeWatcher.ts index d0f00c52d9..4d0c4a7171 100644 --- a/src/settings/watchers/ThemeWatcher.ts +++ b/src/settings/watchers/ThemeWatcher.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/settings/watchers/Watcher.ts b/src/settings/watchers/Watcher.ts index 9a5b37b3d6..903db56ac3 100644 --- a/src/settings/watchers/Watcher.ts +++ b/src/settings/watchers/Watcher.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/shouldHideEvent.ts b/src/shouldHideEvent.ts index aaeff25293..e97afd0fbd 100644 --- a/src/shouldHideEvent.ts +++ b/src/shouldHideEvent.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/slash-commands/command.ts b/src/slash-commands/command.ts index 22ab875894..01c6227723 100644 --- a/src/slash-commands/command.ts +++ b/src/slash-commands/command.ts @@ -5,7 +5,7 @@ Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/slash-commands/interface.ts b/src/slash-commands/interface.ts index 43d3cc7e27..6f1f0c8af4 100644 --- a/src/slash-commands/interface.ts +++ b/src/slash-commands/interface.ts @@ -5,7 +5,7 @@ Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/slash-commands/join.ts b/src/slash-commands/join.ts index 886e17e230..de548cba5f 100644 --- a/src/slash-commands/join.ts +++ b/src/slash-commands/join.ts @@ -5,7 +5,7 @@ Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/slash-commands/op.ts b/src/slash-commands/op.ts index ff575575b0..77084bc7a0 100644 --- a/src/slash-commands/op.ts +++ b/src/slash-commands/op.ts @@ -5,7 +5,7 @@ Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/slash-commands/utils.ts b/src/slash-commands/utils.ts index 073820364e..8bdade9cf1 100644 --- a/src/slash-commands/utils.ts +++ b/src/slash-commands/utils.ts @@ -5,7 +5,7 @@ Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/ActiveWidgetStore.ts b/src/stores/ActiveWidgetStore.ts index c3db7888fd..8d59155224 100644 --- a/src/stores/ActiveWidgetStore.ts +++ b/src/stores/ActiveWidgetStore.ts @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/AsyncStore.ts b/src/stores/AsyncStore.ts index 4baf807247..8f73bdb10a 100644 --- a/src/stores/AsyncStore.ts +++ b/src/stores/AsyncStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/AsyncStoreWithClient.ts b/src/stores/AsyncStoreWithClient.ts index a131614c7c..598594ca3b 100644 --- a/src/stores/AsyncStoreWithClient.ts +++ b/src/stores/AsyncStoreWithClient.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/AutoRageshakeStore.ts b/src/stores/AutoRageshakeStore.ts index 284c3e24a4..a972099473 100644 --- a/src/stores/AutoRageshakeStore.ts +++ b/src/stores/AutoRageshakeStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/BreadcrumbsStore.ts b/src/stores/BreadcrumbsStore.ts index 661dda7760..c02d1181fe 100644 --- a/src/stores/BreadcrumbsStore.ts +++ b/src/stores/BreadcrumbsStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/CallStore.ts b/src/stores/CallStore.ts index c21a81b145..d667e0b811 100644 --- a/src/stores/CallStore.ts +++ b/src/stores/CallStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/InitialCryptoSetupStore.ts b/src/stores/InitialCryptoSetupStore.ts index 46ae784db4..593b9c1108 100644 --- a/src/stores/InitialCryptoSetupStore.ts +++ b/src/stores/InitialCryptoSetupStore.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/LifecycleStore.ts b/src/stores/LifecycleStore.ts index a918814abd..8a369cb51e 100644 --- a/src/stores/LifecycleStore.ts +++ b/src/stores/LifecycleStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/MemberListStore.ts b/src/stores/MemberListStore.ts index e500dec84c..12878c4ec9 100644 --- a/src/stores/MemberListStore.ts +++ b/src/stores/MemberListStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/ModalWidgetStore.ts b/src/stores/ModalWidgetStore.ts index 59437db403..9f5ddca25d 100644 --- a/src/stores/ModalWidgetStore.ts +++ b/src/stores/ModalWidgetStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/NonUrgentToastStore.ts b/src/stores/NonUrgentToastStore.ts index fc05fb02cd..97a4bbdfdf 100644 --- a/src/stores/NonUrgentToastStore.ts +++ b/src/stores/NonUrgentToastStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/OwnBeaconStore.ts b/src/stores/OwnBeaconStore.ts index ccd4bf33a3..72c67c3635 100644 --- a/src/stores/OwnBeaconStore.ts +++ b/src/stores/OwnBeaconStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/OwnProfileStore.ts b/src/stores/OwnProfileStore.ts index be8c72aa23..ef721ee4aa 100644 --- a/src/stores/OwnProfileStore.ts +++ b/src/stores/OwnProfileStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/ReadyWatchingStore.ts b/src/stores/ReadyWatchingStore.ts index 922e8b8393..cb99cf1268 100644 --- a/src/stores/ReadyWatchingStore.ts +++ b/src/stores/ReadyWatchingStore.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2021, 2022 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/ReleaseAnnouncementStore.ts b/src/stores/ReleaseAnnouncementStore.ts index 37bfb474b9..05362dde5a 100644 --- a/src/stores/ReleaseAnnouncementStore.ts +++ b/src/stores/ReleaseAnnouncementStore.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/RoomScrollStateStore.ts b/src/stores/RoomScrollStateStore.ts index 21ffb03be6..b072200e02 100644 --- a/src/stores/RoomScrollStateStore.ts +++ b/src/stores/RoomScrollStateStore.ts @@ -1,7 +1,7 @@ /* Copyright 2017-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/RoomViewStore.tsx b/src/stores/RoomViewStore.tsx index 66644c06a1..822a6a9dd1 100644 --- a/src/stores/RoomViewStore.tsx +++ b/src/stores/RoomViewStore.tsx @@ -4,7 +4,7 @@ Copyright 2019-2022 The Matrix.org Foundation C.I.C. Copyright 2017, 2018 New Vector Ltd Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/SetupEncryptionStore.ts b/src/stores/SetupEncryptionStore.ts index bfa28c3cd2..3aa6ad1866 100644 --- a/src/stores/SetupEncryptionStore.ts +++ b/src/stores/SetupEncryptionStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/ThreepidInviteStore.ts b/src/stores/ThreepidInviteStore.ts index bdb1c8faa2..92fa7d5bd8 100644 --- a/src/stores/ThreepidInviteStore.ts +++ b/src/stores/ThreepidInviteStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/ToastStore.ts b/src/stores/ToastStore.ts index e2f9a61f3d..3ebb0d945c 100644 --- a/src/stores/ToastStore.ts +++ b/src/stores/ToastStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/TypingStore.ts b/src/stores/TypingStore.ts index f836bda045..26fd4967e7 100644 --- a/src/stores/TypingStore.ts +++ b/src/stores/TypingStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/UIStore.ts b/src/stores/UIStore.ts index c058cda8a3..0792bb206d 100644 --- a/src/stores/UIStore.ts +++ b/src/stores/UIStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/UserProfilesStore.ts b/src/stores/UserProfilesStore.ts index cc122498d8..eb3c25a309 100644 --- a/src/stores/UserProfilesStore.ts +++ b/src/stores/UserProfilesStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/VoiceRecordingStore.ts b/src/stores/VoiceRecordingStore.ts index 7cbb8ac120..b94301f62c 100644 --- a/src/stores/VoiceRecordingStore.ts +++ b/src/stores/VoiceRecordingStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/WidgetEchoStore.ts b/src/stores/WidgetEchoStore.ts index 255ce1932f..ef81ec10d7 100644 --- a/src/stores/WidgetEchoStore.ts +++ b/src/stores/WidgetEchoStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/WidgetStore.ts b/src/stores/WidgetStore.ts index 62aac7a429..8c69770930 100644 --- a/src/stores/WidgetStore.ts +++ b/src/stores/WidgetStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/local-echo/EchoChamber.ts b/src/stores/local-echo/EchoChamber.ts index 11292df9e9..1cc9bd981e 100644 --- a/src/stores/local-echo/EchoChamber.ts +++ b/src/stores/local-echo/EchoChamber.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/local-echo/EchoContext.ts b/src/stores/local-echo/EchoContext.ts index a51b5022ae..17ba5710d4 100644 --- a/src/stores/local-echo/EchoContext.ts +++ b/src/stores/local-echo/EchoContext.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/local-echo/EchoStore.ts b/src/stores/local-echo/EchoStore.ts index 956eacb929..c38995cd4e 100644 --- a/src/stores/local-echo/EchoStore.ts +++ b/src/stores/local-echo/EchoStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/local-echo/EchoTransaction.ts b/src/stores/local-echo/EchoTransaction.ts index 0293c0d548..421e334ad0 100644 --- a/src/stores/local-echo/EchoTransaction.ts +++ b/src/stores/local-echo/EchoTransaction.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/local-echo/GenericEchoChamber.ts b/src/stores/local-echo/GenericEchoChamber.ts index e287561fe3..3bda937d3c 100644 --- a/src/stores/local-echo/GenericEchoChamber.ts +++ b/src/stores/local-echo/GenericEchoChamber.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/local-echo/RoomEchoChamber.ts b/src/stores/local-echo/RoomEchoChamber.ts index 9298d5ffed..e318875226 100644 --- a/src/stores/local-echo/RoomEchoChamber.ts +++ b/src/stores/local-echo/RoomEchoChamber.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/local-echo/RoomEchoContext.ts b/src/stores/local-echo/RoomEchoContext.ts index 20eb0cf653..ae8573c922 100644 --- a/src/stores/local-echo/RoomEchoContext.ts +++ b/src/stores/local-echo/RoomEchoContext.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/notifications/ListNotificationState.ts b/src/stores/notifications/ListNotificationState.ts index 77bd174f09..f6af7d35c7 100644 --- a/src/stores/notifications/ListNotificationState.ts +++ b/src/stores/notifications/ListNotificationState.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/notifications/NotificationLevel.ts b/src/stores/notifications/NotificationLevel.ts index 7b370ef658..8d28e19503 100644 --- a/src/stores/notifications/NotificationLevel.ts +++ b/src/stores/notifications/NotificationLevel.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/notifications/NotificationState.ts b/src/stores/notifications/NotificationState.ts index 6f4044d57b..9c72c9fef0 100644 --- a/src/stores/notifications/NotificationState.ts +++ b/src/stores/notifications/NotificationState.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/notifications/RoomNotificationState.ts b/src/stores/notifications/RoomNotificationState.ts index 3a66a051ae..c4f677130d 100644 --- a/src/stores/notifications/RoomNotificationState.ts +++ b/src/stores/notifications/RoomNotificationState.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/notifications/RoomNotificationStateStore.ts b/src/stores/notifications/RoomNotificationStateStore.ts index 87fb276c10..c58125b0ba 100644 --- a/src/stores/notifications/RoomNotificationStateStore.ts +++ b/src/stores/notifications/RoomNotificationStateStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/notifications/SpaceNotificationState.ts b/src/stores/notifications/SpaceNotificationState.ts index ead72d15b4..e5aedf6317 100644 --- a/src/stores/notifications/SpaceNotificationState.ts +++ b/src/stores/notifications/SpaceNotificationState.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/notifications/StaticNotificationState.ts b/src/stores/notifications/StaticNotificationState.ts index b554d0483f..293c6f45e3 100644 --- a/src/stores/notifications/StaticNotificationState.ts +++ b/src/stores/notifications/StaticNotificationState.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/notifications/SummarizedNotificationState.ts b/src/stores/notifications/SummarizedNotificationState.ts index e859fd6070..0d223834e6 100644 --- a/src/stores/notifications/SummarizedNotificationState.ts +++ b/src/stores/notifications/SummarizedNotificationState.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/oidc/OidcClientStore.ts b/src/stores/oidc/OidcClientStore.ts index e0cc870234..f814b1a6cc 100644 --- a/src/stores/oidc/OidcClientStore.ts +++ b/src/stores/oidc/OidcClientStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/right-panel/RightPanelStore.ts b/src/stores/right-panel/RightPanelStore.ts index b4510e78f5..ea9b722071 100644 --- a/src/stores/right-panel/RightPanelStore.ts +++ b/src/stores/right-panel/RightPanelStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/right-panel/RightPanelStoreIPanelState.ts b/src/stores/right-panel/RightPanelStoreIPanelState.ts index f750de6791..1ee5f2a95d 100644 --- a/src/stores/right-panel/RightPanelStoreIPanelState.ts +++ b/src/stores/right-panel/RightPanelStoreIPanelState.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/right-panel/RightPanelStorePhases.ts b/src/stores/right-panel/RightPanelStorePhases.ts index 9e7a5697bf..ea47f2ba83 100644 --- a/src/stores/right-panel/RightPanelStorePhases.ts +++ b/src/stores/right-panel/RightPanelStorePhases.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/right-panel/action-handlers/View3pidInvite.ts b/src/stores/right-panel/action-handlers/View3pidInvite.ts index 0f6661819f..8a54c56c99 100644 --- a/src/stores/right-panel/action-handlers/View3pidInvite.ts +++ b/src/stores/right-panel/action-handlers/View3pidInvite.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/right-panel/action-handlers/index.ts b/src/stores/right-panel/action-handlers/index.ts index 287d3a9324..5a612f9830 100644 --- a/src/stores/right-panel/action-handlers/index.ts +++ b/src/stores/right-panel/action-handlers/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/Interface.ts b/src/stores/room-list/Interface.ts index bba230f7d4..f9e32b6f40 100644 --- a/src/stores/room-list/Interface.ts +++ b/src/stores/room-list/Interface.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/ListLayout.ts b/src/stores/room-list/ListLayout.ts index ff60309e08..e85703fa5f 100644 --- a/src/stores/room-list/ListLayout.ts +++ b/src/stores/room-list/ListLayout.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/MessagePreviewStore.ts b/src/stores/room-list/MessagePreviewStore.ts index 2577b2ba23..3f1614df70 100644 --- a/src/stores/room-list/MessagePreviewStore.ts +++ b/src/stores/room-list/MessagePreviewStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/RoomListLayoutStore.ts b/src/stores/room-list/RoomListLayoutStore.ts index ea85860554..90461a581c 100644 --- a/src/stores/room-list/RoomListLayoutStore.ts +++ b/src/stores/room-list/RoomListLayoutStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/RoomListStore.ts b/src/stores/room-list/RoomListStore.ts index 53377e0a01..0b179f7db5 100644 --- a/src/stores/room-list/RoomListStore.ts +++ b/src/stores/room-list/RoomListStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/SlidingRoomListStore.ts b/src/stores/room-list/SlidingRoomListStore.ts index 26d3291625..ba585f3218 100644 --- a/src/stores/room-list/SlidingRoomListStore.ts +++ b/src/stores/room-list/SlidingRoomListStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/SpaceWatcher.ts b/src/stores/room-list/SpaceWatcher.ts index c3fa57f706..1757637c70 100644 --- a/src/stores/room-list/SpaceWatcher.ts +++ b/src/stores/room-list/SpaceWatcher.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/algorithms/Algorithm.ts b/src/stores/room-list/algorithms/Algorithm.ts index c3450d70cf..2ae3a1ff99 100644 --- a/src/stores/room-list/algorithms/Algorithm.ts +++ b/src/stores/room-list/algorithms/Algorithm.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm.ts b/src/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm.ts index 829251a24f..492e9ed4e7 100644 --- a/src/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm.ts +++ b/src/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2018, 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/algorithms/list-ordering/NaturalAlgorithm.ts b/src/stores/room-list/algorithms/list-ordering/NaturalAlgorithm.ts index e6d743605f..f44b0e1aec 100644 --- a/src/stores/room-list/algorithms/list-ordering/NaturalAlgorithm.ts +++ b/src/stores/room-list/algorithms/list-ordering/NaturalAlgorithm.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/algorithms/list-ordering/OrderingAlgorithm.ts b/src/stores/room-list/algorithms/list-ordering/OrderingAlgorithm.ts index 67ee1ca084..5cf7631cfe 100644 --- a/src/stores/room-list/algorithms/list-ordering/OrderingAlgorithm.ts +++ b/src/stores/room-list/algorithms/list-ordering/OrderingAlgorithm.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/algorithms/list-ordering/index.ts b/src/stores/room-list/algorithms/list-ordering/index.ts index 7bd8441d9d..aae3242a09 100644 --- a/src/stores/room-list/algorithms/list-ordering/index.ts +++ b/src/stores/room-list/algorithms/list-ordering/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/algorithms/models.ts b/src/stores/room-list/algorithms/models.ts index 9c14e29c38..7cc9bd1c17 100644 --- a/src/stores/room-list/algorithms/models.ts +++ b/src/stores/room-list/algorithms/models.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/algorithms/tag-sorting/AlphabeticAlgorithm.ts b/src/stores/room-list/algorithms/tag-sorting/AlphabeticAlgorithm.ts index 17fecee262..77f530bad4 100644 --- a/src/stores/room-list/algorithms/tag-sorting/AlphabeticAlgorithm.ts +++ b/src/stores/room-list/algorithms/tag-sorting/AlphabeticAlgorithm.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/algorithms/tag-sorting/IAlgorithm.ts b/src/stores/room-list/algorithms/tag-sorting/IAlgorithm.ts index 4aec903922..eea3db1db3 100644 --- a/src/stores/room-list/algorithms/tag-sorting/IAlgorithm.ts +++ b/src/stores/room-list/algorithms/tag-sorting/IAlgorithm.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/algorithms/tag-sorting/ManualAlgorithm.ts b/src/stores/room-list/algorithms/tag-sorting/ManualAlgorithm.ts index 41a4422e0e..7dd2869506 100644 --- a/src/stores/room-list/algorithms/tag-sorting/ManualAlgorithm.ts +++ b/src/stores/room-list/algorithms/tag-sorting/ManualAlgorithm.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/algorithms/tag-sorting/RecentAlgorithm.ts b/src/stores/room-list/algorithms/tag-sorting/RecentAlgorithm.ts index d30703d288..2c6375e7df 100644 --- a/src/stores/room-list/algorithms/tag-sorting/RecentAlgorithm.ts +++ b/src/stores/room-list/algorithms/tag-sorting/RecentAlgorithm.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/algorithms/tag-sorting/index.ts b/src/stores/room-list/algorithms/tag-sorting/index.ts index 2536dbb41d..912ae5d167 100644 --- a/src/stores/room-list/algorithms/tag-sorting/index.ts +++ b/src/stores/room-list/algorithms/tag-sorting/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/filters/IFilterCondition.ts b/src/stores/room-list/filters/IFilterCondition.ts index 9600ed73fb..00248ff740 100644 --- a/src/stores/room-list/filters/IFilterCondition.ts +++ b/src/stores/room-list/filters/IFilterCondition.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/filters/SpaceFilterCondition.ts b/src/stores/room-list/filters/SpaceFilterCondition.ts index 8f652a35fb..7c4316ff21 100644 --- a/src/stores/room-list/filters/SpaceFilterCondition.ts +++ b/src/stores/room-list/filters/SpaceFilterCondition.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/filters/VisibilityProvider.ts b/src/stores/room-list/filters/VisibilityProvider.ts index bf8c515fc9..4332ba0f98 100644 --- a/src/stores/room-list/filters/VisibilityProvider.ts +++ b/src/stores/room-list/filters/VisibilityProvider.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2020 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/models.ts b/src/stores/room-list/models.ts index 50cecda665..78823cbc42 100644 --- a/src/stores/room-list/models.ts +++ b/src/stores/room-list/models.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/previews/IPreview.ts b/src/stores/room-list/previews/IPreview.ts index b737044f68..6defb8bfd8 100644 --- a/src/stores/room-list/previews/IPreview.ts +++ b/src/stores/room-list/previews/IPreview.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/previews/LegacyCallAnswerEventPreview.ts b/src/stores/room-list/previews/LegacyCallAnswerEventPreview.ts index 54c46e5541..eaf2de5e16 100644 --- a/src/stores/room-list/previews/LegacyCallAnswerEventPreview.ts +++ b/src/stores/room-list/previews/LegacyCallAnswerEventPreview.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/previews/LegacyCallHangupEvent.ts b/src/stores/room-list/previews/LegacyCallHangupEvent.ts index b213160b66..58487db650 100644 --- a/src/stores/room-list/previews/LegacyCallHangupEvent.ts +++ b/src/stores/room-list/previews/LegacyCallHangupEvent.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/previews/LegacyCallInviteEventPreview.ts b/src/stores/room-list/previews/LegacyCallInviteEventPreview.ts index 1b9f33b5b1..4b3d20e6db 100644 --- a/src/stores/room-list/previews/LegacyCallInviteEventPreview.ts +++ b/src/stores/room-list/previews/LegacyCallInviteEventPreview.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/previews/MessageEventPreview.ts b/src/stores/room-list/previews/MessageEventPreview.ts index 20631f1425..fe63ee1c1b 100644 --- a/src/stores/room-list/previews/MessageEventPreview.ts +++ b/src/stores/room-list/previews/MessageEventPreview.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/previews/PollStartEventPreview.ts b/src/stores/room-list/previews/PollStartEventPreview.ts index 7548cf12f7..09679335c4 100644 --- a/src/stores/room-list/previews/PollStartEventPreview.ts +++ b/src/stores/room-list/previews/PollStartEventPreview.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/previews/ReactionEventPreview.ts b/src/stores/room-list/previews/ReactionEventPreview.ts index 0aa0cdcd4d..cee18dda2b 100644 --- a/src/stores/room-list/previews/ReactionEventPreview.ts +++ b/src/stores/room-list/previews/ReactionEventPreview.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/previews/StickerEventPreview.ts b/src/stores/room-list/previews/StickerEventPreview.ts index 33bf1e6f6d..a368e675e3 100644 --- a/src/stores/room-list/previews/StickerEventPreview.ts +++ b/src/stores/room-list/previews/StickerEventPreview.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/previews/utils.ts b/src/stores/room-list/previews/utils.ts index 7857ad75a9..ffb1602829 100644 --- a/src/stores/room-list/previews/utils.ts +++ b/src/stores/room-list/previews/utils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/room-list/utils/roomMute.ts b/src/stores/room-list/utils/roomMute.ts index 9269cd1461..df3dbb5914 100644 --- a/src/stores/room-list/utils/roomMute.ts +++ b/src/stores/room-list/utils/roomMute.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/spaces/SpaceStore.ts b/src/stores/spaces/SpaceStore.ts index 8bed00e561..50aa7748a5 100644 --- a/src/stores/spaces/SpaceStore.ts +++ b/src/stores/spaces/SpaceStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/spaces/SpaceTreeLevelLayoutStore.ts b/src/stores/spaces/SpaceTreeLevelLayoutStore.ts index 59385a92e6..f32d685e2d 100644 --- a/src/stores/spaces/SpaceTreeLevelLayoutStore.ts +++ b/src/stores/spaces/SpaceTreeLevelLayoutStore.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/spaces/flattenSpaceHierarchy.ts b/src/stores/spaces/flattenSpaceHierarchy.ts index 2a3356a7c4..15d583617d 100644 --- a/src/stores/spaces/flattenSpaceHierarchy.ts +++ b/src/stores/spaces/flattenSpaceHierarchy.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/spaces/index.ts b/src/stores/spaces/index.ts index 184e116cf9..b8853d606e 100644 --- a/src/stores/spaces/index.ts +++ b/src/stores/spaces/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/widgets/ElementWidgetActions.ts b/src/stores/widgets/ElementWidgetActions.ts index ac1cee00ef..8e4142f77d 100644 --- a/src/stores/widgets/ElementWidgetActions.ts +++ b/src/stores/widgets/ElementWidgetActions.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2020-2022 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/widgets/ElementWidgetCapabilities.ts b/src/stores/widgets/ElementWidgetCapabilities.ts index c5db7f7772..1cad4e14f7 100644 --- a/src/stores/widgets/ElementWidgetCapabilities.ts +++ b/src/stores/widgets/ElementWidgetCapabilities.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2020 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/widgets/StopGapWidget.ts b/src/stores/widgets/StopGapWidget.ts index 0472b1664b..40e36473e3 100644 --- a/src/stores/widgets/StopGapWidget.ts +++ b/src/stores/widgets/StopGapWidget.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2020-2022 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/widgets/StopGapWidgetDriver.ts b/src/stores/widgets/StopGapWidgetDriver.ts index de7a71fa80..fa5a43f248 100644 --- a/src/stores/widgets/StopGapWidgetDriver.ts +++ b/src/stores/widgets/StopGapWidgetDriver.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2020-2023 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/widgets/WidgetLayoutStore.ts b/src/stores/widgets/WidgetLayoutStore.ts index 6e2a33687a..5e587c5487 100644 --- a/src/stores/widgets/WidgetLayoutStore.ts +++ b/src/stores/widgets/WidgetLayoutStore.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2021, 2022 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/widgets/WidgetMessagingStore.ts b/src/stores/widgets/WidgetMessagingStore.ts index 0388aeacb4..f73fd15c51 100644 --- a/src/stores/widgets/WidgetMessagingStore.ts +++ b/src/stores/widgets/WidgetMessagingStore.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2020 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/widgets/WidgetPermissionStore.ts b/src/stores/widgets/WidgetPermissionStore.ts index 6ee5f034c3..482704b65f 100644 --- a/src/stores/widgets/WidgetPermissionStore.ts +++ b/src/stores/widgets/WidgetPermissionStore.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2020 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/stores/widgets/types.ts b/src/stores/widgets/types.ts index 5627731c78..b91edd5c35 100644 --- a/src/stores/widgets/types.ts +++ b/src/stores/widgets/types.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/theme.ts b/src/theme.ts index d04e91ae69..de384021aa 100644 --- a/src/theme.ts +++ b/src/theme.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/toasts/AnalyticsToast.tsx b/src/toasts/AnalyticsToast.tsx index c9cd218b49..8ac0c4710a 100644 --- a/src/toasts/AnalyticsToast.tsx +++ b/src/toasts/AnalyticsToast.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/toasts/BulkUnverifiedSessionsToast.ts b/src/toasts/BulkUnverifiedSessionsToast.ts index 944ca9b728..9df70cfb9d 100644 --- a/src/toasts/BulkUnverifiedSessionsToast.ts +++ b/src/toasts/BulkUnverifiedSessionsToast.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/toasts/DesktopNotificationsToast.ts b/src/toasts/DesktopNotificationsToast.ts index ee801bdad8..8d88d209fb 100644 --- a/src/toasts/DesktopNotificationsToast.ts +++ b/src/toasts/DesktopNotificationsToast.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/toasts/IncomingCallToast.tsx b/src/toasts/IncomingCallToast.tsx index 58e6980733..197c70186c 100644 --- a/src/toasts/IncomingCallToast.tsx +++ b/src/toasts/IncomingCallToast.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/toasts/IncomingLegacyCallToast.tsx b/src/toasts/IncomingLegacyCallToast.tsx index bed46a0075..a8e9668198 100644 --- a/src/toasts/IncomingLegacyCallToast.tsx +++ b/src/toasts/IncomingLegacyCallToast.tsx @@ -5,7 +5,7 @@ Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/toasts/MobileGuideToast.ts b/src/toasts/MobileGuideToast.ts index 5b8a617ac5..566ea6aa93 100644 --- a/src/toasts/MobileGuideToast.ts +++ b/src/toasts/MobileGuideToast.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/toasts/ServerLimitToast.tsx b/src/toasts/ServerLimitToast.tsx index f2ce2fb057..d24f7c692c 100644 --- a/src/toasts/ServerLimitToast.tsx +++ b/src/toasts/ServerLimitToast.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/toasts/SetupEncryptionToast.ts b/src/toasts/SetupEncryptionToast.ts index 406b51cf16..ecbf99f4b2 100644 --- a/src/toasts/SetupEncryptionToast.ts +++ b/src/toasts/SetupEncryptionToast.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/toasts/UnverifiedSessionToast.tsx b/src/toasts/UnverifiedSessionToast.tsx index b7eb963dee..76d961233c 100644 --- a/src/toasts/UnverifiedSessionToast.tsx +++ b/src/toasts/UnverifiedSessionToast.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/toasts/UpdateToast.tsx b/src/toasts/UpdateToast.tsx index 786b626317..0abc95c066 100644 --- a/src/toasts/UpdateToast.tsx +++ b/src/toasts/UpdateToast.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/usercontent/index.ts b/src/usercontent/index.ts index ceedf5e27a..e780ea1ac1 100644 --- a/src/usercontent/index.ts +++ b/src/usercontent/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/AnimationUtils.ts b/src/utils/AnimationUtils.ts index 31bd9d184c..f88e0ce303 100644 --- a/src/utils/AnimationUtils.ts +++ b/src/utils/AnimationUtils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/AutoDiscoveryUtils.tsx b/src/utils/AutoDiscoveryUtils.tsx index 61e2f84f4d..efc8f285cf 100644 --- a/src/utils/AutoDiscoveryUtils.tsx +++ b/src/utils/AutoDiscoveryUtils.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/BrowserWorkarounds.ts b/src/utils/BrowserWorkarounds.ts index 77127183d7..8a83d67d03 100644 --- a/src/utils/BrowserWorkarounds.ts +++ b/src/utils/BrowserWorkarounds.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/DMRoomMap.ts b/src/utils/DMRoomMap.ts index 0b595b54db..77b4c65545 100644 --- a/src/utils/DMRoomMap.ts +++ b/src/utils/DMRoomMap.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2019 , 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/DecryptFile.ts b/src/utils/DecryptFile.ts index acf5f551e7..25ea583819 100644 --- a/src/utils/DecryptFile.ts +++ b/src/utils/DecryptFile.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2018 , 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/DialogOpener.ts b/src/utils/DialogOpener.ts index 721f8d5c92..c7b2212a21 100644 --- a/src/utils/DialogOpener.ts +++ b/src/utils/DialogOpener.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/DirectoryUtils.ts b/src/utils/DirectoryUtils.ts index f074dc3462..ff2407f256 100644 --- a/src/utils/DirectoryUtils.ts +++ b/src/utils/DirectoryUtils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/EditorStateTransfer.ts b/src/utils/EditorStateTransfer.ts index 908da8b8a3..e104a5244c 100644 --- a/src/utils/EditorStateTransfer.ts +++ b/src/utils/EditorStateTransfer.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/ErrorUtils.tsx b/src/utils/ErrorUtils.tsx index 630243e313..997dd56840 100644 --- a/src/utils/ErrorUtils.tsx +++ b/src/utils/ErrorUtils.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/EventRenderingUtils.ts b/src/utils/EventRenderingUtils.ts index ed8d4af101..0bef43df12 100644 --- a/src/utils/EventRenderingUtils.ts +++ b/src/utils/EventRenderingUtils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/EventUtils.ts b/src/utils/EventUtils.ts index d57cefa1b5..2ed3bceb0d 100644 --- a/src/utils/EventUtils.ts +++ b/src/utils/EventUtils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/Feedback.ts b/src/utils/Feedback.ts index ac21934971..2c2e55fb41 100644 --- a/src/utils/Feedback.ts +++ b/src/utils/Feedback.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/FileDownloader.ts b/src/utils/FileDownloader.ts index 19a159642b..749b781f0a 100644 --- a/src/utils/FileDownloader.ts +++ b/src/utils/FileDownloader.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/FileUtils.ts b/src/utils/FileUtils.ts index 2fb095d53c..6792ad254e 100644 --- a/src/utils/FileUtils.ts +++ b/src/utils/FileUtils.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner Copyright 2015-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/FixedRollingArray.ts b/src/utils/FixedRollingArray.ts index aef4c3f3e4..e702f252c9 100644 --- a/src/utils/FixedRollingArray.ts +++ b/src/utils/FixedRollingArray.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/FormattingUtils.ts b/src/utils/FormattingUtils.ts index d16ced944a..ae92cf6104 100644 --- a/src/utils/FormattingUtils.ts +++ b/src/utils/FormattingUtils.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/IDestroyable.ts b/src/utils/IDestroyable.ts index 6d9a8466f8..e5b9d19fbb 100644 --- a/src/utils/IDestroyable.ts +++ b/src/utils/IDestroyable.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/IdentityServerUtils.ts b/src/utils/IdentityServerUtils.ts index a7bd3d12be..fd3de6b2f4 100644 --- a/src/utils/IdentityServerUtils.ts +++ b/src/utils/IdentityServerUtils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/Image.ts b/src/utils/Image.ts index cb3b65169d..eed70bdf32 100644 --- a/src/utils/Image.ts +++ b/src/utils/Image.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2022 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/JSON.ts b/src/utils/JSON.ts index 815e5c0cb3..0d7493514a 100644 --- a/src/utils/JSON.ts +++ b/src/utils/JSON.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/KeyVerificationStateObserver.ts b/src/utils/KeyVerificationStateObserver.ts index 3dfc4f3a5c..64f50ab201 100644 --- a/src/utils/KeyVerificationStateObserver.ts +++ b/src/utils/KeyVerificationStateObserver.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/LazyValue.ts b/src/utils/LazyValue.ts index 5f2d97c0ef..fdd4ab78f8 100644 --- a/src/utils/LazyValue.ts +++ b/src/utils/LazyValue.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/LruCache.ts b/src/utils/LruCache.ts index d4ef27e6b5..bfff80d5d5 100644 --- a/src/utils/LruCache.ts +++ b/src/utils/LruCache.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/MarkedExecution.ts b/src/utils/MarkedExecution.ts index e20b66c973..b27481d516 100644 --- a/src/utils/MarkedExecution.ts +++ b/src/utils/MarkedExecution.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/MatrixGlob.ts b/src/utils/MatrixGlob.ts index 4150147293..d22e398381 100644 --- a/src/utils/MatrixGlob.ts +++ b/src/utils/MatrixGlob.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/MediaEventHelper.ts b/src/utils/MediaEventHelper.ts index ecb1250e28..118b5baadb 100644 --- a/src/utils/MediaEventHelper.ts +++ b/src/utils/MediaEventHelper.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/MegolmExportEncryption.ts b/src/utils/MegolmExportEncryption.ts index fab3c7f710..60d4a687cf 100644 --- a/src/utils/MegolmExportEncryption.ts +++ b/src/utils/MegolmExportEncryption.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/MessageDiffUtils.tsx b/src/utils/MessageDiffUtils.tsx index ff30b12cac..08af2379e6 100644 --- a/src/utils/MessageDiffUtils.tsx +++ b/src/utils/MessageDiffUtils.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 , 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/Mouse.ts b/src/utils/Mouse.ts index a2716c68d0..56fb8bfee7 100644 --- a/src/utils/Mouse.ts +++ b/src/utils/Mouse.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/MultiInviter.ts b/src/utils/MultiInviter.ts index b58663ebf0..1350eb94a4 100644 --- a/src/utils/MultiInviter.ts +++ b/src/utils/MultiInviter.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/NativeEventUtils.ts b/src/utils/NativeEventUtils.ts index 768e1baa52..eebd2fcb51 100644 --- a/src/utils/NativeEventUtils.ts +++ b/src/utils/NativeEventUtils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/PasswordScorer.ts b/src/utils/PasswordScorer.ts index 7e68ccfa4d..876461920c 100644 --- a/src/utils/PasswordScorer.ts +++ b/src/utils/PasswordScorer.ts @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/PhasedRolloutFeature.ts b/src/utils/PhasedRolloutFeature.ts index bf2c8ed810..dd94ee5c89 100644 --- a/src/utils/PhasedRolloutFeature.ts +++ b/src/utils/PhasedRolloutFeature.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/PinningUtils.ts b/src/utils/PinningUtils.ts index a06a7da06b..a1304598f7 100644 --- a/src/utils/PinningUtils.ts +++ b/src/utils/PinningUtils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/PreferredRoomVersions.ts b/src/utils/PreferredRoomVersions.ts index d6b3677005..d3dac76856 100644 --- a/src/utils/PreferredRoomVersions.ts +++ b/src/utils/PreferredRoomVersions.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/ReactUtils.tsx b/src/utils/ReactUtils.tsx index ee7469945a..2180aa81ae 100644 --- a/src/utils/ReactUtils.tsx +++ b/src/utils/ReactUtils.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/Reply.ts b/src/utils/Reply.ts index a1baffa2c9..fee65a7b55 100644 --- a/src/utils/Reply.ts +++ b/src/utils/Reply.ts @@ -3,7 +3,7 @@ * Copyright 2023 The Matrix.org Foundation C.I.C. * Copyright 2021 Šimon Brandner * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/ResizeNotifier.ts b/src/utils/ResizeNotifier.ts index 339c90b7ef..02b4848c2f 100644 --- a/src/utils/ResizeNotifier.ts +++ b/src/utils/ResizeNotifier.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/RoomUpgrade.ts b/src/utils/RoomUpgrade.ts index 18b136b709..8979b1f0c8 100644 --- a/src/utils/RoomUpgrade.ts +++ b/src/utils/RoomUpgrade.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/SearchInput.ts b/src/utils/SearchInput.ts index a186ed3e2a..34fd0575cd 100644 --- a/src/utils/SearchInput.ts +++ b/src/utils/SearchInput.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Boluwatife Omosowon -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/SessionLock.ts b/src/utils/SessionLock.ts index e3d9d5ecc8..861c87ead5 100644 --- a/src/utils/SessionLock.ts +++ b/src/utils/SessionLock.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/ShieldUtils.ts b/src/utils/ShieldUtils.ts index 2b50a93f4c..d1466609e4 100644 --- a/src/utils/ShieldUtils.ts +++ b/src/utils/ShieldUtils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/Singleflight.ts b/src/utils/Singleflight.ts index 2458183208..f34c268bbd 100644 --- a/src/utils/Singleflight.ts +++ b/src/utils/Singleflight.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/SnakedObject.ts b/src/utils/SnakedObject.ts index d5487a7b0c..b376d33e4b 100644 --- a/src/utils/SnakedObject.ts +++ b/src/utils/SnakedObject.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/SortMembers.ts b/src/utils/SortMembers.ts index f22c6e9234..2c76bb6ed4 100644 --- a/src/utils/SortMembers.ts +++ b/src/utils/SortMembers.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/StorageAccess.ts b/src/utils/StorageAccess.ts index bf6e559022..c8e97f92bc 100644 --- a/src/utils/StorageAccess.ts +++ b/src/utils/StorageAccess.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 , 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/StorageManager.ts b/src/utils/StorageManager.ts index e4b0e62799..3b63f0a636 100644 --- a/src/utils/StorageManager.ts +++ b/src/utils/StorageManager.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/Timer.ts b/src/utils/Timer.ts index 7db0476f7a..ee05e39b34 100644 --- a/src/utils/Timer.ts +++ b/src/utils/Timer.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/UrlUtils.ts b/src/utils/UrlUtils.ts index f76855f6ef..d256e655c2 100644 --- a/src/utils/UrlUtils.ts +++ b/src/utils/UrlUtils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/ValidatedServerConfig.ts b/src/utils/ValidatedServerConfig.ts index c5ab3d9149..a464514317 100644 --- a/src/utils/ValidatedServerConfig.ts +++ b/src/utils/ValidatedServerConfig.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/WellKnownUtils.ts b/src/utils/WellKnownUtils.ts index 26bf6c287b..5634a94b59 100644 --- a/src/utils/WellKnownUtils.ts +++ b/src/utils/WellKnownUtils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/Whenable.ts b/src/utils/Whenable.ts index 51e4bfff46..c584c4aa4c 100644 --- a/src/utils/Whenable.ts +++ b/src/utils/Whenable.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/WidgetUtils-types.ts b/src/utils/WidgetUtils-types.ts index 56515eeddb..734a4d002e 100644 --- a/src/utils/WidgetUtils-types.ts +++ b/src/utils/WidgetUtils-types.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017-2020 The Matrix.org Foundation C.I.C. Copyright 2019 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/WidgetUtils.ts b/src/utils/WidgetUtils.ts index e82b8b632d..d9de59e401 100644 --- a/src/utils/WidgetUtils.ts +++ b/src/utils/WidgetUtils.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017-2020 The Matrix.org Foundation C.I.C. Copyright 2019 Travis Ralston -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/arrays.ts b/src/utils/arrays.ts index da8157adce..25548ef78f 100644 --- a/src/utils/arrays.ts +++ b/src/utils/arrays.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/beacon/bounds.ts b/src/utils/beacon/bounds.ts index 7ce20182e0..a23e3367da 100644 --- a/src/utils/beacon/bounds.ts +++ b/src/utils/beacon/bounds.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/beacon/duration.ts b/src/utils/beacon/duration.ts index 2d5e4b5223..d967bb5217 100644 --- a/src/utils/beacon/duration.ts +++ b/src/utils/beacon/duration.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/beacon/geolocation.ts b/src/utils/beacon/geolocation.ts index f9d81c13c7..8fbc15c8ca 100644 --- a/src/utils/beacon/geolocation.ts +++ b/src/utils/beacon/geolocation.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/beacon/getShareableLocation.ts b/src/utils/beacon/getShareableLocation.ts index 01162d7399..4a141ec969 100644 --- a/src/utils/beacon/getShareableLocation.ts +++ b/src/utils/beacon/getShareableLocation.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/beacon/index.ts b/src/utils/beacon/index.ts index 7d95639995..19208f515e 100644 --- a/src/utils/beacon/index.ts +++ b/src/utils/beacon/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/beacon/timeline.ts b/src/utils/beacon/timeline.ts index af8def8ac9..25e0e9c008 100644 --- a/src/utils/beacon/timeline.ts +++ b/src/utils/beacon/timeline.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/beacon/useBeacon.ts b/src/utils/beacon/useBeacon.ts index a6d6ea9225..80fe14abcd 100644 --- a/src/utils/beacon/useBeacon.ts +++ b/src/utils/beacon/useBeacon.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/beacon/useLiveBeacons.ts b/src/utils/beacon/useLiveBeacons.ts index f465fd76d4..c99faeb72f 100644 --- a/src/utils/beacon/useLiveBeacons.ts +++ b/src/utils/beacon/useLiveBeacons.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/beacon/useOwnLiveBeacons.ts b/src/utils/beacon/useOwnLiveBeacons.ts index ff0890792c..37387fda98 100644 --- a/src/utils/beacon/useOwnLiveBeacons.ts +++ b/src/utils/beacon/useOwnLiveBeacons.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/blobs.ts b/src/utils/blobs.ts index 112bbfbcbd..70ba54a030 100644 --- a/src/utils/blobs.ts +++ b/src/utils/blobs.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/colour.ts b/src/utils/colour.ts index a96b68e12e..4069006083 100644 --- a/src/utils/colour.ts +++ b/src/utils/colour.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/connection.ts b/src/utils/connection.ts index c11d1def68..9c2866d305 100644 --- a/src/utils/connection.ts +++ b/src/utils/connection.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/createMatrixClient.ts b/src/utils/createMatrixClient.ts index 32274cdc44..ad156b8ab4 100644 --- a/src/utils/createMatrixClient.ts +++ b/src/utils/createMatrixClient.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import { diff --git a/src/utils/createVoiceMessageContent.ts b/src/utils/createVoiceMessageContent.ts index f7b638fbcc..eb40406dbc 100644 --- a/src/utils/createVoiceMessageContent.ts +++ b/src/utils/createVoiceMessageContent.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/crypto/deviceInfo.ts b/src/utils/crypto/deviceInfo.ts index 4392f7c583..dda634545d 100644 --- a/src/utils/crypto/deviceInfo.ts +++ b/src/utils/crypto/deviceInfo.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/crypto/index.ts b/src/utils/crypto/index.ts index f1b5c61073..d72702f8bd 100644 --- a/src/utils/crypto/index.ts +++ b/src/utils/crypto/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/crypto/shouldForceDisableEncryption.ts b/src/utils/crypto/shouldForceDisableEncryption.ts index 8a59d9313f..c30f58636e 100644 --- a/src/utils/crypto/shouldForceDisableEncryption.ts +++ b/src/utils/crypto/shouldForceDisableEncryption.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/crypto/shouldSkipSetupEncryption.ts b/src/utils/crypto/shouldSkipSetupEncryption.ts index d4dbb27d1b..c431833b76 100644 --- a/src/utils/crypto/shouldSkipSetupEncryption.ts +++ b/src/utils/crypto/shouldSkipSetupEncryption.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/device/clientInformation.ts b/src/utils/device/clientInformation.ts index 5e3f23018f..a8e2383bfd 100644 --- a/src/utils/device/clientInformation.ts +++ b/src/utils/device/clientInformation.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/device/dehydration.ts b/src/utils/device/dehydration.ts index b27b3c54c2..d87d43e13a 100644 --- a/src/utils/device/dehydration.ts +++ b/src/utils/device/dehydration.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/device/isDeviceVerified.ts b/src/utils/device/isDeviceVerified.ts index 1205225e7c..0eacb4d54e 100644 --- a/src/utils/device/isDeviceVerified.ts +++ b/src/utils/device/isDeviceVerified.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/device/parseUserAgent.ts b/src/utils/device/parseUserAgent.ts index 6dda013d09..de21b2e005 100644 --- a/src/utils/device/parseUserAgent.ts +++ b/src/utils/device/parseUserAgent.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/device/snoozeBulkUnverifiedDeviceReminder.ts b/src/utils/device/snoozeBulkUnverifiedDeviceReminder.ts index effc2a348b..e4c8b649a0 100644 --- a/src/utils/device/snoozeBulkUnverifiedDeviceReminder.ts +++ b/src/utils/device/snoozeBulkUnverifiedDeviceReminder.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/device/types.ts b/src/utils/device/types.ts index 1b652672a8..e79b0ea204 100644 --- a/src/utils/device/types.ts +++ b/src/utils/device/types.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/direct-messages.ts b/src/utils/direct-messages.ts index eee02f965e..ef80016962 100644 --- a/src/utils/direct-messages.ts +++ b/src/utils/direct-messages.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/dm/createDmLocalRoom.ts b/src/utils/dm/createDmLocalRoom.ts index 0a3d312368..60dbf216b0 100644 --- a/src/utils/dm/createDmLocalRoom.ts +++ b/src/utils/dm/createDmLocalRoom.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/dm/filterValidMDirect.ts b/src/utils/dm/filterValidMDirect.ts index 33fe922560..5c7593dd99 100644 --- a/src/utils/dm/filterValidMDirect.ts +++ b/src/utils/dm/filterValidMDirect.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/dm/findDMForUser.ts b/src/utils/dm/findDMForUser.ts index 0bdb23354d..b5e13aebaa 100644 --- a/src/utils/dm/findDMForUser.ts +++ b/src/utils/dm/findDMForUser.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/dm/findDMRoom.ts b/src/utils/dm/findDMRoom.ts index 466f8f2456..52c35ec084 100644 --- a/src/utils/dm/findDMRoom.ts +++ b/src/utils/dm/findDMRoom.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/dm/startDm.ts b/src/utils/dm/startDm.ts index bb72925c41..44b7b1d3d8 100644 --- a/src/utils/dm/startDm.ts +++ b/src/utils/dm/startDm.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/enums.ts b/src/utils/enums.ts index 0abc10da4b..f138ce4cac 100644 --- a/src/utils/enums.ts +++ b/src/utils/enums.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/event/getSenderName.ts b/src/utils/event/getSenderName.ts index bf87c71bde..450edd8f20 100644 --- a/src/utils/event/getSenderName.ts +++ b/src/utils/event/getSenderName.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/exportUtils/Exporter.ts b/src/utils/exportUtils/Exporter.ts index 37757d8752..3852443d1e 100644 --- a/src/utils/exportUtils/Exporter.ts +++ b/src/utils/exportUtils/Exporter.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/exportUtils/HtmlExport.tsx b/src/utils/exportUtils/HtmlExport.tsx index e5b4667fc2..9bd88dbd45 100644 --- a/src/utils/exportUtils/HtmlExport.tsx +++ b/src/utils/exportUtils/HtmlExport.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/exportUtils/JSONExport.ts b/src/utils/exportUtils/JSONExport.ts index cae450f743..bcd5c5cdc2 100644 --- a/src/utils/exportUtils/JSONExport.ts +++ b/src/utils/exportUtils/JSONExport.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/exportUtils/PlainTextExport.ts b/src/utils/exportUtils/PlainTextExport.ts index e36c57decc..48354d6f2a 100644 --- a/src/utils/exportUtils/PlainTextExport.ts +++ b/src/utils/exportUtils/PlainTextExport.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/exportUtils/exportCSS.ts b/src/utils/exportUtils/exportCSS.ts index dc21141d8b..ade56edb3e 100644 --- a/src/utils/exportUtils/exportCSS.ts +++ b/src/utils/exportUtils/exportCSS.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/exportUtils/exportCustomCSS.css b/src/utils/exportUtils/exportCustomCSS.css index b3fa8e81d3..fc94fef90b 100644 --- a/src/utils/exportUtils/exportCustomCSS.css +++ b/src/utils/exportUtils/exportCustomCSS.css @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/exportUtils/exportJS.js b/src/utils/exportUtils/exportJS.js index 61807b5596..bae73e4f3a 100644 --- a/src/utils/exportUtils/exportJS.js +++ b/src/utils/exportUtils/exportJS.js @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/exportUtils/exportUtils.ts b/src/utils/exportUtils/exportUtils.ts index caff440ca0..e765f91faf 100644 --- a/src/utils/exportUtils/exportUtils.ts +++ b/src/utils/exportUtils/exportUtils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/humanize.ts b/src/utils/humanize.ts index d1fcfa07ed..616ee93781 100644 --- a/src/utils/humanize.ts +++ b/src/utils/humanize.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/i18n-helpers.ts b/src/utils/i18n-helpers.ts index d02ecc061a..195d3afd7a 100644 --- a/src/utils/i18n-helpers.ts +++ b/src/utils/i18n-helpers.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/image-media.ts b/src/utils/image-media.ts index 5c013c7b1a..2192297bde 100644 --- a/src/utils/image-media.ts +++ b/src/utils/image-media.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/iterables.ts b/src/utils/iterables.ts index d6091f3f57..5afd1f284c 100644 --- a/src/utils/iterables.ts +++ b/src/utils/iterables.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2020 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/leave-behaviour.ts b/src/utils/leave-behaviour.ts index 016887b5cd..8924c3693b 100644 --- a/src/utils/leave-behaviour.ts +++ b/src/utils/leave-behaviour.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/local-room.ts b/src/utils/local-room.ts index e4e922688d..304471e93a 100644 --- a/src/utils/local-room.ts +++ b/src/utils/local-room.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/localRoom/isLocalRoom.ts b/src/utils/localRoom/isLocalRoom.ts index e73ba51edc..6888c9aafd 100644 --- a/src/utils/localRoom/isLocalRoom.ts +++ b/src/utils/localRoom/isLocalRoom.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/localRoom/isRoomReady.ts b/src/utils/localRoom/isRoomReady.ts index e31f6ae4fb..8d84f3abe8 100644 --- a/src/utils/localRoom/isRoomReady.ts +++ b/src/utils/localRoom/isRoomReady.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/location/LocationShareErrors.ts b/src/utils/location/LocationShareErrors.ts index 477c5e1b00..f4174ea5ac 100644 --- a/src/utils/location/LocationShareErrors.ts +++ b/src/utils/location/LocationShareErrors.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/location/findMapStyleUrl.ts b/src/utils/location/findMapStyleUrl.ts index 9e5a19d8aa..10915a9c33 100644 --- a/src/utils/location/findMapStyleUrl.ts +++ b/src/utils/location/findMapStyleUrl.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/location/index.ts b/src/utils/location/index.ts index cf71850b84..053c938d80 100644 --- a/src/utils/location/index.ts +++ b/src/utils/location/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/location/isSelfLocation.ts b/src/utils/location/isSelfLocation.ts index fbc7957228..17d9e9ea94 100644 --- a/src/utils/location/isSelfLocation.ts +++ b/src/utils/location/isSelfLocation.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/location/links.ts b/src/utils/location/links.ts index 0d10dc96eb..cf957af3e8 100644 --- a/src/utils/location/links.ts +++ b/src/utils/location/links.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/location/locationEventGeoUri.ts b/src/utils/location/locationEventGeoUri.ts index 1de85defaf..171952b07b 100644 --- a/src/utils/location/locationEventGeoUri.ts +++ b/src/utils/location/locationEventGeoUri.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/location/map.ts b/src/utils/location/map.ts index 22d11c2e30..22ceb998d5 100644 --- a/src/utils/location/map.ts +++ b/src/utils/location/map.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/location/parseGeoUri.ts b/src/utils/location/parseGeoUri.ts index 5187d970c1..85a4474be5 100644 --- a/src/utils/location/parseGeoUri.ts +++ b/src/utils/location/parseGeoUri.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/location/positionFailureMessage.ts b/src/utils/location/positionFailureMessage.ts index 44b88f48ae..cb53d931b7 100644 --- a/src/utils/location/positionFailureMessage.ts +++ b/src/utils/location/positionFailureMessage.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/location/useMap.ts b/src/utils/location/useMap.ts index 308aedc205..e859559a52 100644 --- a/src/utils/location/useMap.ts +++ b/src/utils/location/useMap.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/login.ts b/src/utils/login.ts index cc6a6e0adf..8f5d93ffae 100644 --- a/src/utils/login.ts +++ b/src/utils/login.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/maps.ts b/src/utils/maps.ts index ea6d4fb37a..48de6f8be3 100644 --- a/src/utils/maps.ts +++ b/src/utils/maps.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/media/requestMediaPermissions.tsx b/src/utils/media/requestMediaPermissions.tsx index 10a2fc0ca6..3b9e04ccd2 100644 --- a/src/utils/media/requestMediaPermissions.tsx +++ b/src/utils/media/requestMediaPermissions.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/membership.ts b/src/utils/membership.ts index 27d281a76e..79a1771e66 100644 --- a/src/utils/membership.ts +++ b/src/utils/membership.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/notifications.ts b/src/utils/notifications.ts index 31bd3d8e53..9119ef9bcb 100644 --- a/src/utils/notifications.ts +++ b/src/utils/notifications.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/numbers.ts b/src/utils/numbers.ts index 80d964b5a6..87e5ced83f 100644 --- a/src/utils/numbers.ts +++ b/src/utils/numbers.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/objects.ts b/src/utils/objects.ts index 65ce8d34f5..a919699eac 100644 --- a/src/utils/objects.ts +++ b/src/utils/objects.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/oidc/TokenRefresher.ts b/src/utils/oidc/TokenRefresher.ts index a41d3669a9..7c6848e39e 100644 --- a/src/utils/oidc/TokenRefresher.ts +++ b/src/utils/oidc/TokenRefresher.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/oidc/authorize.ts b/src/utils/oidc/authorize.ts index 7dcdc6e6ca..50c9e07228 100644 --- a/src/utils/oidc/authorize.ts +++ b/src/utils/oidc/authorize.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/oidc/error.ts b/src/utils/oidc/error.ts index 41c6fd4cc3..94313648a2 100644 --- a/src/utils/oidc/error.ts +++ b/src/utils/oidc/error.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/oidc/isUserRegistrationSupported.ts b/src/utils/oidc/isUserRegistrationSupported.ts index 4633f2a966..8c91ee543b 100644 --- a/src/utils/oidc/isUserRegistrationSupported.ts +++ b/src/utils/oidc/isUserRegistrationSupported.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/oidc/persistOidcSettings.ts b/src/utils/oidc/persistOidcSettings.ts index d508d0192c..6ca1295e03 100644 --- a/src/utils/oidc/persistOidcSettings.ts +++ b/src/utils/oidc/persistOidcSettings.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/oidc/registerClient.ts b/src/utils/oidc/registerClient.ts index 7d64969bd3..61ec4ee3f2 100644 --- a/src/utils/oidc/registerClient.ts +++ b/src/utils/oidc/registerClient.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/oidc/urls.ts b/src/utils/oidc/urls.ts index 9e95e81c34..fe364441a1 100644 --- a/src/utils/oidc/urls.ts +++ b/src/utils/oidc/urls.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/pages.ts b/src/utils/pages.ts index 83ed40895a..efa25c803e 100644 --- a/src/utils/pages.ts +++ b/src/utils/pages.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/permalinks/ElementPermalinkConstructor.ts b/src/utils/permalinks/ElementPermalinkConstructor.ts index 7240a0add5..37880d3499 100644 --- a/src/utils/permalinks/ElementPermalinkConstructor.ts +++ b/src/utils/permalinks/ElementPermalinkConstructor.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/permalinks/MatrixSchemePermalinkConstructor.ts b/src/utils/permalinks/MatrixSchemePermalinkConstructor.ts index beefc4f4f4..d6f42e3346 100644 --- a/src/utils/permalinks/MatrixSchemePermalinkConstructor.ts +++ b/src/utils/permalinks/MatrixSchemePermalinkConstructor.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/permalinks/MatrixToPermalinkConstructor.ts b/src/utils/permalinks/MatrixToPermalinkConstructor.ts index d5b51abfba..77b4830e19 100644 --- a/src/utils/permalinks/MatrixToPermalinkConstructor.ts +++ b/src/utils/permalinks/MatrixToPermalinkConstructor.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/permalinks/PermalinkConstructor.ts b/src/utils/permalinks/PermalinkConstructor.ts index 9868b4e0d3..296ae668fa 100644 --- a/src/utils/permalinks/PermalinkConstructor.ts +++ b/src/utils/permalinks/PermalinkConstructor.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/permalinks/Permalinks.ts b/src/utils/permalinks/Permalinks.ts index 9ecbf00b68..6441189497 100644 --- a/src/utils/permalinks/Permalinks.ts +++ b/src/utils/permalinks/Permalinks.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/permalinks/navigator.ts b/src/utils/permalinks/navigator.ts index 711bf9a1b0..053dec10c5 100644 --- a/src/utils/permalinks/navigator.ts +++ b/src/utils/permalinks/navigator.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/pillify.tsx b/src/utils/pillify.tsx index 1859e90fd6..efcc993746 100644 --- a/src/utils/pillify.tsx +++ b/src/utils/pillify.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ @@ -83,9 +83,8 @@ export function pillifyLinks( ); - pills.render(pill, pillContainer); - - node.parentNode?.replaceChild(pillContainer, node); + pills.render(pill, pillContainer, node); + node.replaceWith(pillContainer); // Pills within pills aren't going to go well, so move on pillified = true; @@ -147,8 +146,8 @@ export function pillifyLinks( ); - pills.render(pill, pillContainer); - roomNotifTextNode.parentNode?.replaceChild(pillContainer, roomNotifTextNode); + pills.render(pill, pillContainer, roomNotifTextNode); + roomNotifTextNode.replaceWith(pillContainer); } // Nothing else to do for a text node (and we don't need to advance // the loop pointer because we did it above) diff --git a/src/utils/presence.ts b/src/utils/presence.ts index 0930739bd5..798efdde5d 100644 --- a/src/utils/presence.ts +++ b/src/utils/presence.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/promise.ts b/src/utils/promise.ts index 58dfdc8cd9..919b925a5b 100644 --- a/src/utils/promise.ts +++ b/src/utils/promise.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/pushRules/monitorSyncedPushRules.ts b/src/utils/pushRules/monitorSyncedPushRules.ts index 346e96431e..fcc41aae82 100644 --- a/src/utils/pushRules/monitorSyncedPushRules.ts +++ b/src/utils/pushRules/monitorSyncedPushRules.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/pushRules/updatePushRuleActions.ts b/src/utils/pushRules/updatePushRuleActions.ts index 5e305a52c4..e7ce8f7e8e 100644 --- a/src/utils/pushRules/updatePushRuleActions.ts +++ b/src/utils/pushRules/updatePushRuleActions.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/react.tsx b/src/utils/react.tsx index b78f574fa9..435485214d 100644 --- a/src/utils/react.tsx +++ b/src/utils/react.tsx @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ @@ -15,7 +15,7 @@ import { createRoot, Root } from "react-dom/client"; export class ReactRootManager { private roots: Root[] = []; private rootElements: Element[] = []; - private revertElements: Array = []; + private revertElements: Array = []; public get elements(): Element[] { return this.rootElements; @@ -26,12 +26,13 @@ export class ReactRootManager { * @param children the React component to render * @param rootElement the root element to render the component into * @param revertElement the element to replace the root element with when unmounting + * needed to support double-rendering in React 18 Strict Dev mode */ - public render(children: ReactNode, rootElement: Element, revertElement?: Element): void { + public render(children: ReactNode, rootElement: Element, revertElement: Node | null): void { const root = createRoot(rootElement); this.roots.push(root); this.rootElements.push(rootElement); - this.revertElements.push(revertElement ?? null); + this.revertElements.push(revertElement); root.render(children); } diff --git a/src/utils/read-receipts.ts b/src/utils/read-receipts.ts index 2a52b0bb73..51a4d6705e 100644 --- a/src/utils/read-receipts.ts +++ b/src/utils/read-receipts.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/room/canInviteTo.ts b/src/utils/room/canInviteTo.ts index 89ce47a35b..3d0b0c8f50 100644 --- a/src/utils/room/canInviteTo.ts +++ b/src/utils/room/canInviteTo.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/room/getFunctionalMembers.ts b/src/utils/room/getFunctionalMembers.ts index 018e785427..f107fc0d1a 100644 --- a/src/utils/room/getFunctionalMembers.ts +++ b/src/utils/room/getFunctionalMembers.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/room/getJoinedNonFunctionalMembers.ts b/src/utils/room/getJoinedNonFunctionalMembers.ts index 855a87a2dc..b843498753 100644 --- a/src/utils/room/getJoinedNonFunctionalMembers.ts +++ b/src/utils/room/getJoinedNonFunctionalMembers.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/room/inviteToRoom.ts b/src/utils/room/inviteToRoom.ts index 10c84e9a9e..c7010ec947 100644 --- a/src/utils/room/inviteToRoom.ts +++ b/src/utils/room/inviteToRoom.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/room/placeCall.ts b/src/utils/room/placeCall.ts index 13b0de23c4..04043fc3d3 100644 --- a/src/utils/room/placeCall.ts +++ b/src/utils/room/placeCall.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite.ts b/src/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite.ts index 444bd0a303..4192f0af1a 100644 --- a/src/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite.ts +++ b/src/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/room/tagRoom.ts b/src/utils/room/tagRoom.ts index 8b8f99e991..7ed707d874 100644 --- a/src/utils/room/tagRoom.ts +++ b/src/utils/room/tagRoom.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/rooms.ts b/src/utils/rooms.ts index 96495735bd..d32e2e933f 100644 --- a/src/utils/rooms.ts +++ b/src/utils/rooms.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/sets.ts b/src/utils/sets.ts index d6b28a9e41..0d871f6b26 100644 --- a/src/utils/sets.ts +++ b/src/utils/sets.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/space.tsx b/src/utils/space.tsx index a1bf1b5bb2..9c3e0bc40c 100644 --- a/src/utils/space.tsx +++ b/src/utils/space.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/stringOrderField.ts b/src/utils/stringOrderField.ts index e50501344b..b6ba8410e3 100644 --- a/src/utils/stringOrderField.ts +++ b/src/utils/stringOrderField.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/strings.ts b/src/utils/strings.ts index e7c99adbb8..292c66cb03 100644 --- a/src/utils/strings.ts +++ b/src/utils/strings.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ /** diff --git a/src/utils/threepids.ts b/src/utils/threepids.ts index a53bce6bcc..5882c51c18 100644 --- a/src/utils/threepids.ts +++ b/src/utils/threepids.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/tokens/pickling.ts b/src/utils/tokens/pickling.ts index 5fc82c16a5..3284d3f9cf 100644 --- a/src/utils/tokens/pickling.ts +++ b/src/utils/tokens/pickling.ts @@ -5,7 +5,7 @@ Copyright 2018 New Vector Ltd Copyright 2016 Aviral Dasgupta Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/tokens/tokens.ts b/src/utils/tokens/tokens.ts index 901da3a9a8..a25117beb8 100644 --- a/src/utils/tokens/tokens.ts +++ b/src/utils/tokens/tokens.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/tooltipify.tsx b/src/utils/tooltipify.tsx index fc319b2024..26d43cf033 100644 --- a/src/utils/tooltipify.tsx +++ b/src/utils/tooltipify.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ @@ -66,7 +66,7 @@ export function tooltipifyLinks( ); - tooltips.render(tooltip, node); + tooltips.render(tooltip, node, null); } else if (node.childNodes?.length) { tooltipifyLinks(node.childNodes as NodeListOf, ignoredNodes, tooltips); } diff --git a/src/utils/units.ts b/src/utils/units.ts index d2ceb262bb..1c509ece4b 100644 --- a/src/utils/units.ts +++ b/src/utils/units.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/validate/index.ts b/src/utils/validate/index.ts index 946bb79575..367641232d 100644 --- a/src/utils/validate/index.ts +++ b/src/utils/validate/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/validate/numberInRange.ts b/src/utils/validate/numberInRange.ts index cbdabad547..ece657c9c7 100644 --- a/src/utils/validate/numberInRange.ts +++ b/src/utils/validate/numberInRange.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/utils/video-rooms.ts b/src/utils/video-rooms.ts index a0003d59d9..1da3414294 100644 --- a/src/utils/video-rooms.ts +++ b/src/utils/video-rooms.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/app.tsx b/src/vector/app.tsx index 426163db0b..2ae9e6fa03 100644 --- a/src/vector/app.tsx +++ b/src/vector/app.tsx @@ -6,7 +6,7 @@ Copyright 2018, 2019 New Vector Ltd Copyright 2017 Vector Creations Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/getconfig.ts b/src/vector/getconfig.ts index 4a137b0c38..1f2e4956f4 100644 --- a/src/vector/getconfig.ts +++ b/src/vector/getconfig.ts @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/index.ts b/src/vector/index.ts index 42b69af70e..c398c0b788 100644 --- a/src/vector/index.ts +++ b/src/vector/index.ts @@ -6,7 +6,7 @@ Copyright 2018, 2019 New Vector Ltd Copyright 2017 Vector Creations Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/init.tsx b/src/vector/init.tsx index a3d5624cb4..34f5b9fc08 100644 --- a/src/vector/init.tsx +++ b/src/vector/init.tsx @@ -4,7 +4,7 @@ Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2017 Vector Creations Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/jitsi/index.pcss b/src/vector/jitsi/index.pcss index 5bebaaccad..09299f1b7f 100644 --- a/src/vector/jitsi/index.pcss +++ b/src/vector/jitsi/index.pcss @@ -1,7 +1,7 @@ /* Copyright 2020-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/jitsi/index.ts b/src/vector/jitsi/index.ts index 84096dfaae..273e80488c 100644 --- a/src/vector/jitsi/index.ts +++ b/src/vector/jitsi/index.ts @@ -1,7 +1,7 @@ /* Copyright 2020-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/localstorage-fix.ts b/src/vector/localstorage-fix.ts index 31373d9c49..14b95aca78 100644 --- a/src/vector/localstorage-fix.ts +++ b/src/vector/localstorage-fix.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/mobile_guide/index.ts b/src/vector/mobile_guide/index.ts index 6f6602a6be..ae769039a8 100644 --- a/src/vector/mobile_guide/index.ts +++ b/src/vector/mobile_guide/index.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/platform/ElectronPlatform.tsx b/src/vector/platform/ElectronPlatform.tsx index ac6e7a7feb..6a6409ea42 100644 --- a/src/vector/platform/ElectronPlatform.tsx +++ b/src/vector/platform/ElectronPlatform.tsx @@ -6,7 +6,7 @@ Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2016 Aviral Dasgupta Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/platform/IPCManager.ts b/src/vector/platform/IPCManager.ts index 690deb6e3e..7d329b8b2c 100644 --- a/src/vector/platform/IPCManager.ts +++ b/src/vector/platform/IPCManager.ts @@ -1,7 +1,7 @@ /* Copyright 2022-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/platform/PWAPlatform.ts b/src/vector/platform/PWAPlatform.ts index 616eaf5c8c..5334c8e70f 100644 --- a/src/vector/platform/PWAPlatform.ts +++ b/src/vector/platform/PWAPlatform.ts @@ -1,7 +1,7 @@ /* Copyright 2020-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/platform/SeshatIndexManager.ts b/src/vector/platform/SeshatIndexManager.ts index e4ba4dea10..2f281812f6 100644 --- a/src/vector/platform/SeshatIndexManager.ts +++ b/src/vector/platform/SeshatIndexManager.ts @@ -1,7 +1,7 @@ /* Copyright 2022-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/platform/WebPlatform.ts b/src/vector/platform/WebPlatform.ts index bb573c89c0..ff575cb7b3 100644 --- a/src/vector/platform/WebPlatform.ts +++ b/src/vector/platform/WebPlatform.ts @@ -3,7 +3,7 @@ Copyright 2017-2024 New Vector Ltd. Copyright 2016 Aviral Dasgupta Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/rageshakesetup.ts b/src/vector/rageshakesetup.ts index d089ca3e4d..ef104e9a5b 100644 --- a/src/vector/rageshakesetup.ts +++ b/src/vector/rageshakesetup.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/routing.ts b/src/vector/routing.ts index 216f3ac63b..98da881736 100644 --- a/src/vector/routing.ts +++ b/src/vector/routing.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/vector/url_utils.ts b/src/vector/url_utils.ts index 6ac6a60c14..82430a10c8 100644 --- a/src/vector/url_utils.ts +++ b/src/vector/url_utils.ts @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/verification.ts b/src/verification.ts index 9f77496499..90dacbf6ac 100644 --- a/src/verification.ts +++ b/src/verification.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019, 2020 , 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/widgets/CapabilityText.tsx b/src/widgets/CapabilityText.tsx index 28ba117577..ea910c21c0 100644 --- a/src/widgets/CapabilityText.tsx +++ b/src/widgets/CapabilityText.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/widgets/Jitsi.ts b/src/widgets/Jitsi.ts index ba54eda5e1..e76e86157d 100644 --- a/src/widgets/Jitsi.ts +++ b/src/widgets/Jitsi.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/widgets/ManagedHybrid.ts b/src/widgets/ManagedHybrid.ts index a904bbab08..b4ef4cba8b 100644 --- a/src/widgets/ManagedHybrid.ts +++ b/src/widgets/ManagedHybrid.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/widgets/WidgetType.ts b/src/widgets/WidgetType.ts index 58b836a13d..7040de4cfe 100644 --- a/src/widgets/WidgetType.ts +++ b/src/widgets/WidgetType.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/workers/blurhash.worker.ts b/src/workers/blurhash.worker.ts index 00656ca810..9d9c2fbf52 100644 --- a/src/workers/blurhash.worker.ts +++ b/src/workers/blurhash.worker.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/workers/blurhashWorkerFactory.ts b/src/workers/blurhashWorkerFactory.ts index ab16ecb3fc..669ab0a084 100644 --- a/src/workers/blurhashWorkerFactory.ts +++ b/src/workers/blurhashWorkerFactory.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/workers/indexeddb.worker.ts b/src/workers/indexeddb.worker.ts index 5b71a08ef2..c712999d32 100644 --- a/src/workers/indexeddb.worker.ts +++ b/src/workers/indexeddb.worker.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/workers/indexeddbWorkerFactory.ts b/src/workers/indexeddbWorkerFactory.ts index 1d78d9fb35..3ff1e82bf8 100644 --- a/src/workers/indexeddbWorkerFactory.ts +++ b/src/workers/indexeddbWorkerFactory.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/workers/playback.worker.ts b/src/workers/playback.worker.ts index 45789ffba3..47479e6adb 100644 --- a/src/workers/playback.worker.ts +++ b/src/workers/playback.worker.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/workers/playbackWorkerFactory.ts b/src/workers/playbackWorkerFactory.ts index 4d1aedddc2..7986184b3c 100644 --- a/src/workers/playbackWorkerFactory.ts +++ b/src/workers/playbackWorkerFactory.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/src/workers/worker.ts b/src/workers/worker.ts index fa2a45c850..d96a53a324 100644 --- a/src/workers/worker.ts +++ b/src/workers/worker.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/@types/common.ts b/test/@types/common.ts index 865a34fd47..8203ff1dd3 100644 --- a/test/@types/common.ts +++ b/test/@types/common.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/CreateCrossSigning-test.ts b/test/CreateCrossSigning-test.ts index 85341b8bce..6863b0500e 100644 --- a/test/CreateCrossSigning-test.ts +++ b/test/CreateCrossSigning-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/app-tests/server-config-test.ts b/test/app-tests/server-config-test.ts index 7e04e6ca24..50a2de08a8 100644 --- a/test/app-tests/server-config-test.ts +++ b/test/app-tests/server-config-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Yorusaka Miyabi -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/app-tests/wrapper-test.tsx b/test/app-tests/wrapper-test.tsx index af42426f0a..47e2ad2ce1 100644 --- a/test/app-tests/wrapper-test.tsx +++ b/test/app-tests/wrapper-test.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Mikhail Aheichyk Copyright 2023 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx b/test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx index a589b55289..0e333da30a 100644 --- a/test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx +++ b/test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2018-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/globalSetup.ts b/test/globalSetup.ts index 36868124e5..c00ca3abf8 100644 --- a/test/globalSetup.ts +++ b/test/globalSetup.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/jest-mocks.ts b/test/jest-mocks.ts index 7241595c07..f742d14198 100644 --- a/test/jest-mocks.ts +++ b/test/jest-mocks.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/setup/mocks.ts b/test/setup/mocks.ts index 86c2f4bafc..ffc349293e 100644 --- a/test/setup/mocks.ts +++ b/test/setup/mocks.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/setup/setupConfig.ts b/test/setup/setupConfig.ts index 64f2f74843..c56a6444f4 100644 --- a/test/setup/setupConfig.ts +++ b/test/setup/setupConfig.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/setup/setupLanguage.ts b/test/setup/setupLanguage.ts index 1843f83241..347f38edfc 100644 --- a/test/setup/setupLanguage.ts +++ b/test/setup/setupLanguage.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/setup/setupManualMocks.ts b/test/setup/setupManualMocks.ts index 8064048baa..7c49b33e03 100644 --- a/test/setup/setupManualMocks.ts +++ b/test/setup/setupManualMocks.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/setupTests.ts b/test/setupTests.ts index f0067a5d23..5d1740f5f4 100644 --- a/test/setupTests.ts +++ b/test/setupTests.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/slowReporter.cjs b/test/slowReporter.cjs index 9c884c8114..e25938753c 100644 --- a/test/slowReporter.cjs +++ b/test/slowReporter.cjs @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/audio.ts b/test/test-utils/audio.ts index c0888ad2aa..5de94b529d 100644 --- a/test/test-utils/audio.ts +++ b/test/test-utils/audio.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/beacon.ts b/test/test-utils/beacon.ts index 538528cd51..aca294546f 100644 --- a/test/test-utils/beacon.ts +++ b/test/test-utils/beacon.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/call.ts b/test/test-utils/call.ts index df87fcaa55..04b46f1597 100644 --- a/test/test-utils/call.ts +++ b/test/test-utils/call.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/client.ts b/test/test-utils/client.ts index a2347f9058..f1b2cf967c 100644 --- a/test/test-utils/client.ts +++ b/test/test-utils/client.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/composer.ts b/test/test-utils/composer.ts index 9e970fca40..73a3d990cf 100644 --- a/test/test-utils/composer.ts +++ b/test/test-utils/composer.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/console.ts b/test/test-utils/console.ts index 16c9ecf83d..690357778b 100644 --- a/test/test-utils/console.ts +++ b/test/test-utils/console.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/date.ts b/test/test-utils/date.ts index d9c10ef972..00b187446b 100644 --- a/test/test-utils/date.ts +++ b/test/test-utils/date.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/events.ts b/test/test-utils/events.ts index ab5c372a1c..3e1ebadda6 100644 --- a/test/test-utils/events.ts +++ b/test/test-utils/events.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/index.ts b/test/test-utils/index.ts index 1486ade283..0fd5797b3f 100644 --- a/test/test-utils/index.ts +++ b/test/test-utils/index.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2016-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/jest-matrix-react.tsx b/test/test-utils/jest-matrix-react.tsx index 2aad5d45ff..765f84a5c9 100644 --- a/test/test-utils/jest-matrix-react.tsx +++ b/test/test-utils/jest-matrix-react.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/location.ts b/test/test-utils/location.ts index 1f09971734..0b558b5b8c 100644 --- a/test/test-utils/location.ts +++ b/test/test-utils/location.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/oidc.ts b/test/test-utils/oidc.ts index 1bacd5f3e5..72cdad04ef 100644 --- a/test/test-utils/oidc.ts +++ b/test/test-utils/oidc.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/platform.ts b/test/test-utils/platform.ts index 07a8087310..e360bb5e0c 100644 --- a/test/test-utils/platform.ts +++ b/test/test-utils/platform.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/poll.ts b/test/test-utils/poll.ts index 276730c2ff..b7fea58259 100644 --- a/test/test-utils/poll.ts +++ b/test/test-utils/poll.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/predictableRandom.ts b/test/test-utils/predictableRandom.ts index 10b2a38cb4..3e0c07ccdd 100644 --- a/test/test-utils/predictableRandom.ts +++ b/test/test-utils/predictableRandom.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/pushRules.ts b/test/test-utils/pushRules.ts index b0af6b7291..15796f8a09 100644 --- a/test/test-utils/pushRules.ts +++ b/test/test-utils/pushRules.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/relations.ts b/test/test-utils/relations.ts index e48715ca9b..1acf16af00 100644 --- a/test/test-utils/relations.ts +++ b/test/test-utils/relations.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/room.ts b/test/test-utils/room.ts index bfd1f9004c..21c82c9ae3 100644 --- a/test/test-utils/room.ts +++ b/test/test-utils/room.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/test-utils.ts b/test/test-utils/test-utils.ts index 39852f049e..b1bfe17aa6 100644 --- a/test/test-utils/test-utils.ts +++ b/test/test-utils/test-utils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/threads.ts b/test/test-utils/threads.ts index 83313b1b8d..12b0575ba7 100644 --- a/test/test-utils/threads.ts +++ b/test/test-utils/threads.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/utilities.ts b/test/test-utils/utilities.ts index 5285a840b2..e43f356161 100644 --- a/test/test-utils/utilities.ts +++ b/test/test-utils/utilities.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/test-utils/wrappers.tsx b/test/test-utils/wrappers.tsx index 1e324c9d7d..8b582ccf00 100644 --- a/test/test-utils/wrappers.tsx +++ b/test/test-utils/wrappers.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/Avatar-test.ts b/test/unit-tests/Avatar-test.ts index 1b3506bc18..c068b8e465 100644 --- a/test/unit-tests/Avatar-test.ts +++ b/test/unit-tests/Avatar-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/ContentMessages-test.ts b/test/unit-tests/ContentMessages-test.ts index 7e95973423..67ab582511 100644 --- a/test/unit-tests/ContentMessages-test.ts +++ b/test/unit-tests/ContentMessages-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/DecryptionFailureTracker-test.ts b/test/unit-tests/DecryptionFailureTracker-test.ts index 898816923f..adadcc3973 100644 --- a/test/unit-tests/DecryptionFailureTracker-test.ts +++ b/test/unit-tests/DecryptionFailureTracker-test.ts @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/DeviceListener-test.ts b/test/unit-tests/DeviceListener-test.ts index 1c8fe1a1c7..b63896c64d 100644 --- a/test/unit-tests/DeviceListener-test.ts +++ b/test/unit-tests/DeviceListener-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/HtmlUtils-test.tsx b/test/unit-tests/HtmlUtils-test.tsx index a13c04af03..e4fccb185b 100644 --- a/test/unit-tests/HtmlUtils-test.tsx +++ b/test/unit-tests/HtmlUtils-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/Image-test.ts b/test/unit-tests/Image-test.ts index 10285a5371..149ee0ff26 100644 --- a/test/unit-tests/Image-test.ts +++ b/test/unit-tests/Image-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/KeyBindingsManager-test.ts b/test/unit-tests/KeyBindingsManager-test.ts index 1d68abd446..91adfc0eff 100644 --- a/test/unit-tests/KeyBindingsManager-test.ts +++ b/test/unit-tests/KeyBindingsManager-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Clemens Zeidler -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/LegacyCallHandler-test.ts b/test/unit-tests/LegacyCallHandler-test.ts index 476d89a1f0..1aee2d2231 100644 --- a/test/unit-tests/LegacyCallHandler-test.ts +++ b/test/unit-tests/LegacyCallHandler-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/Lifecycle-test.ts b/test/unit-tests/Lifecycle-test.ts index 04c3459bdf..65dda6fec1 100644 --- a/test/unit-tests/Lifecycle-test.ts +++ b/test/unit-tests/Lifecycle-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/Markdown-test.ts b/test/unit-tests/Markdown-test.ts index 623061d182..4cfb165ea9 100644 --- a/test/unit-tests/Markdown-test.ts +++ b/test/unit-tests/Markdown-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/MatrixClientPeg-test.ts b/test/unit-tests/MatrixClientPeg-test.ts index 4653340574..c46edad55c 100644 --- a/test/unit-tests/MatrixClientPeg-test.ts +++ b/test/unit-tests/MatrixClientPeg-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/MediaDeviceHandler-test.ts b/test/unit-tests/MediaDeviceHandler-test.ts index e2e154abe1..975a3853db 100644 --- a/test/unit-tests/MediaDeviceHandler-test.ts +++ b/test/unit-tests/MediaDeviceHandler-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/Modal-test.ts b/test/unit-tests/Modal-test.ts index d122f2b855..d542fa3843 100644 --- a/test/unit-tests/Modal-test.ts +++ b/test/unit-tests/Modal-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/Notifier-test.ts b/test/unit-tests/Notifier-test.ts index 8ed3bdeeb3..3335b29787 100644 --- a/test/unit-tests/Notifier-test.ts +++ b/test/unit-tests/Notifier-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import { mocked, MockedObject } from "jest-mock"; diff --git a/test/unit-tests/PosthogAnalytics-test.ts b/test/unit-tests/PosthogAnalytics-test.ts index f754e3a80c..27552bbba6 100644 --- a/test/unit-tests/PosthogAnalytics-test.ts +++ b/test/unit-tests/PosthogAnalytics-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/PreferredRoomVersions-test.ts b/test/unit-tests/PreferredRoomVersions-test.ts index 8711494ac3..17d457632d 100644 --- a/test/unit-tests/PreferredRoomVersions-test.ts +++ b/test/unit-tests/PreferredRoomVersions-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/Reply-test.ts b/test/unit-tests/Reply-test.ts index d9e1b02a02..be354632d4 100644 --- a/test/unit-tests/Reply-test.ts +++ b/test/unit-tests/Reply-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/RoomNotifs-test.ts b/test/unit-tests/RoomNotifs-test.ts index 65089eba94..1452306de6 100644 --- a/test/unit-tests/RoomNotifs-test.ts +++ b/test/unit-tests/RoomNotifs-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/Rooms-test.ts b/test/unit-tests/Rooms-test.ts index 45424c6ec2..32b5513f82 100644 --- a/test/unit-tests/Rooms-test.ts +++ b/test/unit-tests/Rooms-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/ScalarAuthClient-test.ts b/test/unit-tests/ScalarAuthClient-test.ts index 9d117d70af..bbf29a8652 100644 --- a/test/unit-tests/ScalarAuthClient-test.ts +++ b/test/unit-tests/ScalarAuthClient-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/SdkConfig-test.ts b/test/unit-tests/SdkConfig-test.ts index 19d0eec9c3..5595a7d584 100644 --- a/test/unit-tests/SdkConfig-test.ts +++ b/test/unit-tests/SdkConfig-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/SecurityManager-test.ts b/test/unit-tests/SecurityManager-test.ts index 574549d8b2..4575223a50 100644 --- a/test/unit-tests/SecurityManager-test.ts +++ b/test/unit-tests/SecurityManager-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/SlashCommands-test.tsx b/test/unit-tests/SlashCommands-test.tsx index 9305f0956e..c2b3da7f2d 100644 --- a/test/unit-tests/SlashCommands-test.tsx +++ b/test/unit-tests/SlashCommands-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/SlidingSyncManager-test.ts b/test/unit-tests/SlidingSyncManager-test.ts index 18a914fc4d..66f4c48c25 100644 --- a/test/unit-tests/SlidingSyncManager-test.ts +++ b/test/unit-tests/SlidingSyncManager-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/SupportedBrowser-test.ts b/test/unit-tests/SupportedBrowser-test.ts index a116ab1f9f..d759ac4bd9 100644 --- a/test/unit-tests/SupportedBrowser-test.ts +++ b/test/unit-tests/SupportedBrowser-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/Terms-test.tsx b/test/unit-tests/Terms-test.tsx index b6c2564d02..9fc29bde9a 100644 --- a/test/unit-tests/Terms-test.tsx +++ b/test/unit-tests/Terms-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/TestSdkContext.ts b/test/unit-tests/TestSdkContext.ts index f60b083bef..1a8f9565a8 100644 --- a/test/unit-tests/TestSdkContext.ts +++ b/test/unit-tests/TestSdkContext.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/TextForEvent-test.ts b/test/unit-tests/TextForEvent-test.ts index cdef54a391..4dfccbb93e 100644 --- a/test/unit-tests/TextForEvent-test.ts +++ b/test/unit-tests/TextForEvent-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/TimezoneHandler-test.ts b/test/unit-tests/TimezoneHandler-test.ts index 7443212983..be7628712a 100644 --- a/test/unit-tests/TimezoneHandler-test.ts +++ b/test/unit-tests/TimezoneHandler-test.ts @@ -4,7 +4,7 @@ Copyright 2022 The Matrix.org Foundation C.I.C. Copyright 2017 Vector Creations Ltd Copyright 2015, 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/Unread-test.ts b/test/unit-tests/Unread-test.ts index 15d3dab8f5..9686760ddf 100644 --- a/test/unit-tests/Unread-test.ts +++ b/test/unit-tests/Unread-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/UserActivity-test.ts b/test/unit-tests/UserActivity-test.ts index 106541b460..0c3fd1ca49 100644 --- a/test/unit-tests/UserActivity-test.ts +++ b/test/unit-tests/UserActivity-test.ts @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/WorkerManager-test.ts b/test/unit-tests/WorkerManager-test.ts index 9b5dcecc77..f8d85fcda4 100644 --- a/test/unit-tests/WorkerManager-test.ts +++ b/test/unit-tests/WorkerManager-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts b/test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts index 9361a85d74..f53d578b67 100644 --- a/test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts +++ b/test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 Šimon Brandner Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/accessibility/LandmarkNavigation-test.tsx b/test/unit-tests/accessibility/LandmarkNavigation-test.tsx index 77a42fbd8a..ad160e8866 100644 --- a/test/unit-tests/accessibility/LandmarkNavigation-test.tsx +++ b/test/unit-tests/accessibility/LandmarkNavigation-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/accessibility/RovingTabIndex-test.tsx b/test/unit-tests/accessibility/RovingTabIndex-test.tsx index 520103bca1..e0efaf6b1b 100644 --- a/test/unit-tests/accessibility/RovingTabIndex-test.tsx +++ b/test/unit-tests/accessibility/RovingTabIndex-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020, 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/actions/handlers/viewUserDeviceSettings-test.ts b/test/unit-tests/actions/handlers/viewUserDeviceSettings-test.ts index eba8e12b0b..f76c5cee20 100644 --- a/test/unit-tests/actions/handlers/viewUserDeviceSettings-test.ts +++ b/test/unit-tests/actions/handlers/viewUserDeviceSettings-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx b/test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx index f6d9a59b51..cca6526582 100644 --- a/test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx +++ b/test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx @@ -1,7 +1,7 @@ /* * Copyright 2024 New Vector Ltd. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/async-components/dialogs/security/RecoveryMethodRemovedDialog-test.tsx b/test/unit-tests/async-components/dialogs/security/RecoveryMethodRemovedDialog-test.tsx index e351524427..ec5e714286 100644 --- a/test/unit-tests/async-components/dialogs/security/RecoveryMethodRemovedDialog-test.tsx +++ b/test/unit-tests/async-components/dialogs/security/RecoveryMethodRemovedDialog-test.tsx @@ -1,7 +1,7 @@ /* * Copyright 2024 New Vector Ltd. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/async-components/structures/ErrorView-test.tsx b/test/unit-tests/async-components/structures/ErrorView-test.tsx index 95cc75bcfa..da4ff9c8e0 100644 --- a/test/unit-tests/async-components/structures/ErrorView-test.tsx +++ b/test/unit-tests/async-components/structures/ErrorView-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/audio/Playback-test.ts b/test/unit-tests/audio/Playback-test.ts index 47b24b494a..0aeea5c832 100644 --- a/test/unit-tests/audio/Playback-test.ts +++ b/test/unit-tests/audio/Playback-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/audio/VoiceMessageRecording-test.ts b/test/unit-tests/audio/VoiceMessageRecording-test.ts index f76de28810..8cb1ac3afb 100644 --- a/test/unit-tests/audio/VoiceMessageRecording-test.ts +++ b/test/unit-tests/audio/VoiceMessageRecording-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/audio/VoiceRecording-test.ts b/test/unit-tests/audio/VoiceRecording-test.ts index 4a9b011592..eb14b9364a 100644 --- a/test/unit-tests/audio/VoiceRecording-test.ts +++ b/test/unit-tests/audio/VoiceRecording-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/autocomplete/EmojiProvider-test.ts b/test/unit-tests/autocomplete/EmojiProvider-test.ts index c78d25f0be..81fd832e64 100644 --- a/test/unit-tests/autocomplete/EmojiProvider-test.ts +++ b/test/unit-tests/autocomplete/EmojiProvider-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 Ryan Browne -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/autocomplete/QueryMatcher-test.ts b/test/unit-tests/autocomplete/QueryMatcher-test.ts index 9da49b653f..22ae71004c 100644 --- a/test/unit-tests/autocomplete/QueryMatcher-test.ts +++ b/test/unit-tests/autocomplete/QueryMatcher-test.ts @@ -1,7 +1,7 @@ /* Copyright 2018-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/autocomplete/RoomProvider-test.ts b/test/unit-tests/autocomplete/RoomProvider-test.ts index e76b256428..80b9251134 100644 --- a/test/unit-tests/autocomplete/RoomProvider-test.ts +++ b/test/unit-tests/autocomplete/RoomProvider-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/autocomplete/SpaceProvider-test.ts b/test/unit-tests/autocomplete/SpaceProvider-test.ts index 3dd45c4889..789a3bd4a6 100644 --- a/test/unit-tests/autocomplete/SpaceProvider-test.ts +++ b/test/unit-tests/autocomplete/SpaceProvider-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/AutocompleteInput-test.tsx b/test/unit-tests/components/structures/AutocompleteInput-test.tsx index da03e15ade..d34c521f97 100644 --- a/test/unit-tests/components/structures/AutocompleteInput-test.tsx +++ b/test/unit-tests/components/structures/AutocompleteInput-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/ContextMenu-test.ts b/test/unit-tests/components/structures/ContextMenu-test.ts index 9ce3d41325..ae9ff3a1ab 100644 --- a/test/unit-tests/components/structures/ContextMenu-test.ts +++ b/test/unit-tests/components/structures/ContextMenu-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/FilePanel-test.tsx b/test/unit-tests/components/structures/FilePanel-test.tsx index 25bdd99676..e81b15d95a 100644 --- a/test/unit-tests/components/structures/FilePanel-test.tsx +++ b/test/unit-tests/components/structures/FilePanel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/LargeLoader-test.tsx b/test/unit-tests/components/structures/LargeLoader-test.tsx index 6de7af6b84..889ec2f50d 100644 --- a/test/unit-tests/components/structures/LargeLoader-test.tsx +++ b/test/unit-tests/components/structures/LargeLoader-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/LeftPanel-test.tsx b/test/unit-tests/components/structures/LeftPanel-test.tsx index 0c74516c0a..93f014567c 100644 --- a/test/unit-tests/components/structures/LeftPanel-test.tsx +++ b/test/unit-tests/components/structures/LeftPanel-test.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Mikhail Aheichyk Copyright 2023 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts b/test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts index 5714505cf2..22fb5d300c 100644 --- a/test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts +++ b/test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/LoggedInView-test.tsx b/test/unit-tests/components/structures/LoggedInView-test.tsx index cb667f68c3..b4df9e2926 100644 --- a/test/unit-tests/components/structures/LoggedInView-test.tsx +++ b/test/unit-tests/components/structures/LoggedInView-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/MainSplit-test.tsx b/test/unit-tests/components/structures/MainSplit-test.tsx index 6853d9d1f5..1b9501ee27 100644 --- a/test/unit-tests/components/structures/MainSplit-test.tsx +++ b/test/unit-tests/components/structures/MainSplit-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/MatrixChat-test.tsx b/test/unit-tests/components/structures/MatrixChat-test.tsx index 006b315a9c..751a670fc0 100644 --- a/test/unit-tests/components/structures/MatrixChat-test.tsx +++ b/test/unit-tests/components/structures/MatrixChat-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx b/test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx index b8c3949619..e5ae9d9769 100644 --- a/test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx +++ b/test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/MessagePanel-test.tsx b/test/unit-tests/components/structures/MessagePanel-test.tsx index dbb83da312..c881823903 100644 --- a/test/unit-tests/components/structures/MessagePanel-test.tsx +++ b/test/unit-tests/components/structures/MessagePanel-test.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2021 , 2022 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/PictureInPictureDragger-test.tsx b/test/unit-tests/components/structures/PictureInPictureDragger-test.tsx index 7b2309b605..6cbf0842a9 100644 --- a/test/unit-tests/components/structures/PictureInPictureDragger-test.tsx +++ b/test/unit-tests/components/structures/PictureInPictureDragger-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/PipContainer-test.tsx b/test/unit-tests/components/structures/PipContainer-test.tsx index f573b0a0cd..06cad2a290 100644 --- a/test/unit-tests/components/structures/PipContainer-test.tsx +++ b/test/unit-tests/components/structures/PipContainer-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/ReleaseAnnouncement-test.tsx b/test/unit-tests/components/structures/ReleaseAnnouncement-test.tsx index ff1eff74eb..c68d755a3a 100644 --- a/test/unit-tests/components/structures/ReleaseAnnouncement-test.tsx +++ b/test/unit-tests/components/structures/ReleaseAnnouncement-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/RightPanel-test.tsx b/test/unit-tests/components/structures/RightPanel-test.tsx index ad29791ee9..a7d483df6b 100644 --- a/test/unit-tests/components/structures/RightPanel-test.tsx +++ b/test/unit-tests/components/structures/RightPanel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/RoomSearchView-test.tsx b/test/unit-tests/components/structures/RoomSearchView-test.tsx index 72ab58bf4a..56f19b830e 100644 --- a/test/unit-tests/components/structures/RoomSearchView-test.tsx +++ b/test/unit-tests/components/structures/RoomSearchView-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/RoomStatusBar-test.tsx b/test/unit-tests/components/structures/RoomStatusBar-test.tsx index ae84ac154e..5d130b0205 100644 --- a/test/unit-tests/components/structures/RoomStatusBar-test.tsx +++ b/test/unit-tests/components/structures/RoomStatusBar-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/RoomStatusBarUnsentMessages-test.tsx b/test/unit-tests/components/structures/RoomStatusBarUnsentMessages-test.tsx index 09d374e41e..d608cb0627 100644 --- a/test/unit-tests/components/structures/RoomStatusBarUnsentMessages-test.tsx +++ b/test/unit-tests/components/structures/RoomStatusBarUnsentMessages-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/RoomView-test.tsx b/test/unit-tests/components/structures/RoomView-test.tsx index 385204c01b..eabfe0c85c 100644 --- a/test/unit-tests/components/structures/RoomView-test.tsx +++ b/test/unit-tests/components/structures/RoomView-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/SpaceHierarchy-test.tsx b/test/unit-tests/components/structures/SpaceHierarchy-test.tsx index 1d2d913771..c2b71e304f 100644 --- a/test/unit-tests/components/structures/SpaceHierarchy-test.tsx +++ b/test/unit-tests/components/structures/SpaceHierarchy-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/SpaceRoomView-test.tsx b/test/unit-tests/components/structures/SpaceRoomView-test.tsx index fb24603283..156f2d1cdb 100644 --- a/test/unit-tests/components/structures/SpaceRoomView-test.tsx +++ b/test/unit-tests/components/structures/SpaceRoomView-test.tsx @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/TabbedView-test.tsx b/test/unit-tests/components/structures/TabbedView-test.tsx index 5c6c6b4271..9c30bc443a 100644 --- a/test/unit-tests/components/structures/TabbedView-test.tsx +++ b/test/unit-tests/components/structures/TabbedView-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/ThreadPanel-test.tsx b/test/unit-tests/components/structures/ThreadPanel-test.tsx index 20fc708103..c58194f0b9 100644 --- a/test/unit-tests/components/structures/ThreadPanel-test.tsx +++ b/test/unit-tests/components/structures/ThreadPanel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021-2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/ThreadView-test.tsx b/test/unit-tests/components/structures/ThreadView-test.tsx index ee4afff525..f67e2f28a3 100644 --- a/test/unit-tests/components/structures/ThreadView-test.tsx +++ b/test/unit-tests/components/structures/ThreadView-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/TimelinePanel-test.tsx b/test/unit-tests/components/structures/TimelinePanel-test.tsx index 46ccfd1b85..2e10f74a69 100644 --- a/test/unit-tests/components/structures/TimelinePanel-test.tsx +++ b/test/unit-tests/components/structures/TimelinePanel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/UploadBar-test.tsx b/test/unit-tests/components/structures/UploadBar-test.tsx index 6f6c038414..f992011530 100644 --- a/test/unit-tests/components/structures/UploadBar-test.tsx +++ b/test/unit-tests/components/structures/UploadBar-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/UserMenu-test.tsx b/test/unit-tests/components/structures/UserMenu-test.tsx index be79d61461..b6eb1bef5d 100644 --- a/test/unit-tests/components/structures/UserMenu-test.tsx +++ b/test/unit-tests/components/structures/UserMenu-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/ViewSource-test.tsx b/test/unit-tests/components/structures/ViewSource-test.tsx index 2cc195242f..0d14e52441 100644 --- a/test/unit-tests/components/structures/ViewSource-test.tsx +++ b/test/unit-tests/components/structures/ViewSource-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx b/test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx index 250decbdfc..1c9cd97ce2 100644 --- a/test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx +++ b/test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/auth/ForgotPassword-test.tsx b/test/unit-tests/components/structures/auth/ForgotPassword-test.tsx index d57c4c6e77..b55fd2c99c 100644 --- a/test/unit-tests/components/structures/auth/ForgotPassword-test.tsx +++ b/test/unit-tests/components/structures/auth/ForgotPassword-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/auth/Login-test.tsx b/test/unit-tests/components/structures/auth/Login-test.tsx index c0c52e489f..3b1a85b3e9 100644 --- a/test/unit-tests/components/structures/auth/Login-test.tsx +++ b/test/unit-tests/components/structures/auth/Login-test.tsx @@ -1,7 +1,7 @@ /* Copyright 2019-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/auth/LoginSplashView-test.tsx b/test/unit-tests/components/structures/auth/LoginSplashView-test.tsx index 2fcbcbb2b5..1758216730 100644 --- a/test/unit-tests/components/structures/auth/LoginSplashView-test.tsx +++ b/test/unit-tests/components/structures/auth/LoginSplashView-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/structures/auth/Registration-test.tsx b/test/unit-tests/components/structures/auth/Registration-test.tsx index bdc516b577..82ac0b666c 100644 --- a/test/unit-tests/components/structures/auth/Registration-test.tsx +++ b/test/unit-tests/components/structures/auth/Registration-test.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. Copyright 2019 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/Validation-test.ts b/test/unit-tests/components/views/Validation-test.ts index 381c6620c4..7682213d66 100644 --- a/test/unit-tests/components/views/Validation-test.ts +++ b/test/unit-tests/components/views/Validation-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/VerificationShowSas-test.tsx b/test/unit-tests/components/views/VerificationShowSas-test.tsx index b720c90d6b..3e29e2098c 100644 --- a/test/unit-tests/components/views/VerificationShowSas-test.tsx +++ b/test/unit-tests/components/views/VerificationShowSas-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx b/test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx index 419357e5c8..6c96aacb8e 100644 --- a/test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx +++ b/test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/audio_messages/SeekBar-test.tsx b/test/unit-tests/components/views/audio_messages/SeekBar-test.tsx index 2ea445b499..95aaa7ada8 100644 --- a/test/unit-tests/components/views/audio_messages/SeekBar-test.tsx +++ b/test/unit-tests/components/views/audio_messages/SeekBar-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/auth/AuthFooter-test.tsx b/test/unit-tests/components/views/auth/AuthFooter-test.tsx index f8d0d8fd5e..f92a304299 100644 --- a/test/unit-tests/components/views/auth/AuthFooter-test.tsx +++ b/test/unit-tests/components/views/auth/AuthFooter-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/auth/AuthHeaderLogo-test.tsx b/test/unit-tests/components/views/auth/AuthHeaderLogo-test.tsx index ce187805e4..706e4d5d39 100644 --- a/test/unit-tests/components/views/auth/AuthHeaderLogo-test.tsx +++ b/test/unit-tests/components/views/auth/AuthHeaderLogo-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/auth/AuthPage-test.tsx b/test/unit-tests/components/views/auth/AuthPage-test.tsx index 836b08f20b..543342661e 100644 --- a/test/unit-tests/components/views/auth/AuthPage-test.tsx +++ b/test/unit-tests/components/views/auth/AuthPage-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/auth/CountryDropdown-test.tsx b/test/unit-tests/components/views/auth/CountryDropdown-test.tsx index d443f6db5a..5f3ee8c908 100644 --- a/test/unit-tests/components/views/auth/CountryDropdown-test.tsx +++ b/test/unit-tests/components/views/auth/CountryDropdown-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx b/test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx index ee6375a1f6..41408edd19 100644 --- a/test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx +++ b/test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/auth/RegistrationToken-test.tsx b/test/unit-tests/components/views/auth/RegistrationToken-test.tsx index 7a01d5dc33..cf9f8268a0 100644 --- a/test/unit-tests/components/views/auth/RegistrationToken-test.tsx +++ b/test/unit-tests/components/views/auth/RegistrationToken-test.tsx @@ -4,7 +4,7 @@ Copyright 2022 The Matrix.org Foundation C.I.C. Copyright 2022 Callum Brown Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/avatars/DecoratedRoomAvatar-test.tsx b/test/unit-tests/components/views/avatars/DecoratedRoomAvatar-test.tsx index 1ef28a887f..c1c6a2ce98 100644 --- a/test/unit-tests/components/views/avatars/DecoratedRoomAvatar-test.tsx +++ b/test/unit-tests/components/views/avatars/DecoratedRoomAvatar-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/avatars/MemberAvatar-test.tsx b/test/unit-tests/components/views/avatars/MemberAvatar-test.tsx index 1c5bf3a44f..1239d7e5ad 100644 --- a/test/unit-tests/components/views/avatars/MemberAvatar-test.tsx +++ b/test/unit-tests/components/views/avatars/MemberAvatar-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/avatars/RoomAvatar-test.tsx b/test/unit-tests/components/views/avatars/RoomAvatar-test.tsx index 2c9db7b049..e3e8715cfb 100644 --- a/test/unit-tests/components/views/avatars/RoomAvatar-test.tsx +++ b/test/unit-tests/components/views/avatars/RoomAvatar-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/avatars/WithPresenceIndicator-test.tsx b/test/unit-tests/components/views/avatars/WithPresenceIndicator-test.tsx index e6a677861d..f5c26aa7ef 100644 --- a/test/unit-tests/components/views/avatars/WithPresenceIndicator-test.tsx +++ b/test/unit-tests/components/views/avatars/WithPresenceIndicator-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/beacon/BeaconListItem-test.tsx b/test/unit-tests/components/views/beacon/BeaconListItem-test.tsx index 406923a6be..f44a1d72db 100644 --- a/test/unit-tests/components/views/beacon/BeaconListItem-test.tsx +++ b/test/unit-tests/components/views/beacon/BeaconListItem-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/beacon/BeaconMarker-test.tsx b/test/unit-tests/components/views/beacon/BeaconMarker-test.tsx index 9852655e3d..625d61b1c3 100644 --- a/test/unit-tests/components/views/beacon/BeaconMarker-test.tsx +++ b/test/unit-tests/components/views/beacon/BeaconMarker-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/beacon/BeaconStatus-test.tsx b/test/unit-tests/components/views/beacon/BeaconStatus-test.tsx index 2cdb91de32..b5ebce9a07 100644 --- a/test/unit-tests/components/views/beacon/BeaconStatus-test.tsx +++ b/test/unit-tests/components/views/beacon/BeaconStatus-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx b/test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx index 0ad67a4b9b..2c879468d6 100644 --- a/test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx +++ b/test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/beacon/DialogSidebar-test.tsx b/test/unit-tests/components/views/beacon/DialogSidebar-test.tsx index 7ec495e65b..ca76d6fd59 100644 --- a/test/unit-tests/components/views/beacon/DialogSidebar-test.tsx +++ b/test/unit-tests/components/views/beacon/DialogSidebar-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx b/test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx index 03cc615307..aa83fefb9a 100644 --- a/test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx +++ b/test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx b/test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx index beaa314a21..055394f582 100644 --- a/test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx +++ b/test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx b/test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx index 2929b0adfa..e8fefe0571 100644 --- a/test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx +++ b/test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/beacon/ShareLatestLocation-test.tsx b/test/unit-tests/components/views/beacon/ShareLatestLocation-test.tsx index 6116023811..9c4b9da945 100644 --- a/test/unit-tests/components/views/beacon/ShareLatestLocation-test.tsx +++ b/test/unit-tests/components/views/beacon/ShareLatestLocation-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/beacon/StyledLiveBeaconIcon-test.tsx b/test/unit-tests/components/views/beacon/StyledLiveBeaconIcon-test.tsx index f4357bd5d9..30c2bf5d76 100644 --- a/test/unit-tests/components/views/beacon/StyledLiveBeaconIcon-test.tsx +++ b/test/unit-tests/components/views/beacon/StyledLiveBeaconIcon-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/beta/BetaCard-test.tsx b/test/unit-tests/components/views/beta/BetaCard-test.tsx index 5fe2025d78..42efb1cd34 100644 --- a/test/unit-tests/components/views/beta/BetaCard-test.tsx +++ b/test/unit-tests/components/views/beta/BetaCard-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/context_menus/ContextMenu-test.tsx b/test/unit-tests/components/views/context_menus/ContextMenu-test.tsx index 75f33e66dd..bbc4e4d112 100644 --- a/test/unit-tests/components/views/context_menus/ContextMenu-test.tsx +++ b/test/unit-tests/components/views/context_menus/ContextMenu-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx b/test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx index f895e517ba..1740963583 100644 --- a/test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx +++ b/test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx b/test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx index 142840fd5a..1cfc1a03f6 100644 --- a/test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx +++ b/test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx b/test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx index 7ef2062d87..10aade5b54 100644 --- a/test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx +++ b/test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx b/test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx index 42860e061e..8b8a565aa4 100644 --- a/test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx +++ b/test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/context_menus/ThreadListContextMenu-test.tsx b/test/unit-tests/components/views/context_menus/ThreadListContextMenu-test.tsx index c09b4986e8..0ef43d1b80 100644 --- a/test/unit-tests/components/views/context_menus/ThreadListContextMenu-test.tsx +++ b/test/unit-tests/components/views/context_menus/ThreadListContextMenu-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/context_menus/WidgetContextMenu-test.tsx b/test/unit-tests/components/views/context_menus/WidgetContextMenu-test.tsx index 1a83065632..37dd192525 100644 --- a/test/unit-tests/components/views/context_menus/WidgetContextMenu-test.tsx +++ b/test/unit-tests/components/views/context_menus/WidgetContextMenu-test.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Mikhail Aheichyk Copyright 2023 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx b/test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx index f5b0b1e074..cb877d8a11 100644 --- a/test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/AppDownloadDialog-test.tsx b/test/unit-tests/components/views/dialogs/AppDownloadDialog-test.tsx index 4ff9becc1d..ed329cfcdb 100644 --- a/test/unit-tests/components/views/dialogs/AppDownloadDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/AppDownloadDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx b/test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx index 3c39a6d91a..713d90a3ef 100644 --- a/test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx b/test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx index 547534d207..fd7b82c590 100644 --- a/test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/ConfirmRedactDialog-test.tsx b/test/unit-tests/components/views/dialogs/ConfirmRedactDialog-test.tsx index ed5b545ed5..9ba84b58e4 100644 --- a/test/unit-tests/components/views/dialogs/ConfirmRedactDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/ConfirmRedactDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/ConfirmUserActionDialog-test.tsx b/test/unit-tests/components/views/dialogs/ConfirmUserActionDialog-test.tsx index e1e3c7a2f7..cea4593080 100644 --- a/test/unit-tests/components/views/dialogs/ConfirmUserActionDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/ConfirmUserActionDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx b/test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx index 6add6cfc74..ad3dcd58e9 100644 --- a/test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx b/test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx index e203fdad54..89dde08393 100644 --- a/test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/ExportDialog-test.tsx b/test/unit-tests/components/views/dialogs/ExportDialog-test.tsx index 9d516759de..8417ffedb6 100644 --- a/test/unit-tests/components/views/dialogs/ExportDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/ExportDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/FeedbackDialog-test.tsx b/test/unit-tests/components/views/dialogs/FeedbackDialog-test.tsx index d7ee119010..8d54a86031 100644 --- a/test/unit-tests/components/views/dialogs/FeedbackDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/FeedbackDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx b/test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx index 7307417b07..9aa842ee2c 100644 --- a/test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Robin Townsend -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/IncomingSasDialog-test.tsx b/test/unit-tests/components/views/dialogs/IncomingSasDialog-test.tsx index d3e7c56d0d..644b4e0f8b 100644 --- a/test/unit-tests/components/views/dialogs/IncomingSasDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/IncomingSasDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx b/test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx index f99b5bd5b5..7354cde529 100644 --- a/test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/InviteDialog-test.tsx b/test/unit-tests/components/views/dialogs/InviteDialog-test.tsx index 7ed57a7d70..0a319cc845 100644 --- a/test/unit-tests/components/views/dialogs/InviteDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/InviteDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx b/test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx index 98f758ebbd..6c1315d5ac 100644 --- a/test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/ManageRestrictedJoinRuleDialog-test.tsx b/test/unit-tests/components/views/dialogs/ManageRestrictedJoinRuleDialog-test.tsx index 73bbe0bd7b..7321f36b7a 100644 --- a/test/unit-tests/components/views/dialogs/ManageRestrictedJoinRuleDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/ManageRestrictedJoinRuleDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/MessageEditHistoryDialog-test.tsx b/test/unit-tests/components/views/dialogs/MessageEditHistoryDialog-test.tsx index 0b63929c13..1969867bcd 100644 --- a/test/unit-tests/components/views/dialogs/MessageEditHistoryDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/MessageEditHistoryDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx b/test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx index 3ca2150013..73654cfc5f 100644 --- a/test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx b/test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx index c893dba45e..b4a4b6e756 100644 --- a/test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/ShareDialog-test.tsx b/test/unit-tests/components/views/dialogs/ShareDialog-test.tsx index c1d9883b7f..93beaec711 100644 --- a/test/unit-tests/components/views/dialogs/ShareDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/ShareDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx b/test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx index 54d21e147b..776aaff17d 100644 --- a/test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/UnpinAllDialog-test.tsx b/test/unit-tests/components/views/dialogs/UnpinAllDialog-test.tsx index 742bffcb08..9c736446fa 100644 --- a/test/unit-tests/components/views/dialogs/UnpinAllDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/UnpinAllDialog-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx b/test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx index 3bfafa394b..f0a3fdfb8b 100644 --- a/test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx @@ -1,7 +1,7 @@ /* * Copyright 2024 New Vector Ltd. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx b/test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx index 5dae500a89..c6c3eeb142 100644 --- a/test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/devtools/Event-test.tsx b/test/unit-tests/components/views/dialogs/devtools/Event-test.tsx index 60bf791912..330d52b0b1 100644 --- a/test/unit-tests/components/views/dialogs/devtools/Event-test.tsx +++ b/test/unit-tests/components/views/dialogs/devtools/Event-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/devtools/RoomNotifications-test.tsx b/test/unit-tests/components/views/dialogs/devtools/RoomNotifications-test.tsx index 9b600acc3b..eeaa7dbb1f 100644 --- a/test/unit-tests/components/views/dialogs/devtools/RoomNotifications-test.tsx +++ b/test/unit-tests/components/views/dialogs/devtools/RoomNotifications-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx b/test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx index 6e0542448b..b5f965cfa2 100644 --- a/test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2023 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx b/test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx index 814fe8a954..1da0bc7be8 100644 --- a/test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx b/test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx index df95482850..e4dc75062c 100644 --- a/test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx b/test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx index 57f374c252..f9dcc17737 100644 --- a/test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx b/test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx index c19010a089..4fc42f5893 100644 --- a/test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx @@ -1,9 +1,8 @@ /* * Copyright 2024 New Vector Ltd. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. - * */ import React from "react"; diff --git a/test/unit-tests/components/views/dialogs/spotlight/PublicRoomResultDetails-test.tsx b/test/unit-tests/components/views/dialogs/spotlight/PublicRoomResultDetails-test.tsx index db65363607..c5cda731be 100644 --- a/test/unit-tests/components/views/dialogs/spotlight/PublicRoomResultDetails-test.tsx +++ b/test/unit-tests/components/views/dialogs/spotlight/PublicRoomResultDetails-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/dialogs/spotlight/RoomResultContextMenus-test.tsx b/test/unit-tests/components/views/dialogs/spotlight/RoomResultContextMenus-test.tsx index d7cc2964f9..209ad32727 100644 --- a/test/unit-tests/components/views/dialogs/spotlight/RoomResultContextMenus-test.tsx +++ b/test/unit-tests/components/views/dialogs/spotlight/RoomResultContextMenus-test.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Mikhail Aheichyk Copyright 2023 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/AccessibleButton-test.tsx b/test/unit-tests/components/views/elements/AccessibleButton-test.tsx index 8d501b6ab4..0d30c5734f 100644 --- a/test/unit-tests/components/views/elements/AccessibleButton-test.tsx +++ b/test/unit-tests/components/views/elements/AccessibleButton-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/AppTile-test.tsx b/test/unit-tests/components/views/elements/AppTile-test.tsx index 12363f56f0..7a2acb3ace 100644 --- a/test/unit-tests/components/views/elements/AppTile-test.tsx +++ b/test/unit-tests/components/views/elements/AppTile-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx b/test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx index f647dfdaee..7fc739fafb 100644 --- a/test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx +++ b/test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/EffectsOverlay-test.tsx b/test/unit-tests/components/views/elements/EffectsOverlay-test.tsx index d17139511c..e2ccbc8724 100644 --- a/test/unit-tests/components/views/elements/EffectsOverlay-test.tsx +++ b/test/unit-tests/components/views/elements/EffectsOverlay-test.tsx @@ -1,9 +1,8 @@ /* * Copyright 2024 New Vector Ltd. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. - * */ import React from "react"; diff --git a/test/unit-tests/components/views/elements/EventListSummary-test.tsx b/test/unit-tests/components/views/elements/EventListSummary-test.tsx index 485a69289f..f1140352b8 100644 --- a/test/unit-tests/components/views/elements/EventListSummary-test.tsx +++ b/test/unit-tests/components/views/elements/EventListSummary-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/ExternalLink-test.tsx b/test/unit-tests/components/views/elements/ExternalLink-test.tsx index bdc1a9e7b3..012dae5477 100644 --- a/test/unit-tests/components/views/elements/ExternalLink-test.tsx +++ b/test/unit-tests/components/views/elements/ExternalLink-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/FacePile-test.tsx b/test/unit-tests/components/views/elements/FacePile-test.tsx index b9ff911df1..9ec71f45d8 100644 --- a/test/unit-tests/components/views/elements/FacePile-test.tsx +++ b/test/unit-tests/components/views/elements/FacePile-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/Field-test.tsx b/test/unit-tests/components/views/elements/Field-test.tsx index 9544559587..8db645bf85 100644 --- a/test/unit-tests/components/views/elements/Field-test.tsx +++ b/test/unit-tests/components/views/elements/Field-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/FilterDropdown-test.tsx b/test/unit-tests/components/views/elements/FilterDropdown-test.tsx index a1c30688a5..112d0ed650 100644 --- a/test/unit-tests/components/views/elements/FilterDropdown-test.tsx +++ b/test/unit-tests/components/views/elements/FilterDropdown-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/FilterTabGroup-test.tsx b/test/unit-tests/components/views/elements/FilterTabGroup-test.tsx index 5067b9b95d..49091d8017 100644 --- a/test/unit-tests/components/views/elements/FilterTabGroup-test.tsx +++ b/test/unit-tests/components/views/elements/FilterTabGroup-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/ImageView-test.tsx b/test/unit-tests/components/views/elements/ImageView-test.tsx index 4a23d847cb..e9ba7cdd69 100644 --- a/test/unit-tests/components/views/elements/ImageView-test.tsx +++ b/test/unit-tests/components/views/elements/ImageView-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/InfoTooltip-test.tsx b/test/unit-tests/components/views/elements/InfoTooltip-test.tsx index f4d80e179e..53b4c696c5 100644 --- a/test/unit-tests/components/views/elements/InfoTooltip-test.tsx +++ b/test/unit-tests/components/views/elements/InfoTooltip-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx b/test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx index 2877740bf8..6fccc36642 100644 --- a/test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx +++ b/test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/LearnMore-test.tsx b/test/unit-tests/components/views/elements/LearnMore-test.tsx index 00393759d7..959affc449 100644 --- a/test/unit-tests/components/views/elements/LearnMore-test.tsx +++ b/test/unit-tests/components/views/elements/LearnMore-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/MiniAvatarUploader-test.tsx b/test/unit-tests/components/views/elements/MiniAvatarUploader-test.tsx index cf6ed6ae62..5b451c44b4 100644 --- a/test/unit-tests/components/views/elements/MiniAvatarUploader-test.tsx +++ b/test/unit-tests/components/views/elements/MiniAvatarUploader-test.tsx @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/Pill-test.tsx b/test/unit-tests/components/views/elements/Pill-test.tsx index db075b3b6f..b2ea507790 100644 --- a/test/unit-tests/components/views/elements/Pill-test.tsx +++ b/test/unit-tests/components/views/elements/Pill-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/PollCreateDialog-test.tsx b/test/unit-tests/components/views/elements/PollCreateDialog-test.tsx index 0ee9096916..cf50181bb8 100644 --- a/test/unit-tests/components/views/elements/PollCreateDialog-test.tsx +++ b/test/unit-tests/components/views/elements/PollCreateDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/PowerSelector-test.tsx b/test/unit-tests/components/views/elements/PowerSelector-test.tsx index 72fbbaf09f..ef35cf75a0 100644 --- a/test/unit-tests/components/views/elements/PowerSelector-test.tsx +++ b/test/unit-tests/components/views/elements/PowerSelector-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/ProgressBar-test.tsx b/test/unit-tests/components/views/elements/ProgressBar-test.tsx index 4e95987f13..aedfebef3f 100644 --- a/test/unit-tests/components/views/elements/ProgressBar-test.tsx +++ b/test/unit-tests/components/views/elements/ProgressBar-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/QRCode-test.tsx b/test/unit-tests/components/views/elements/QRCode-test.tsx index c53390e610..ec688b286b 100644 --- a/test/unit-tests/components/views/elements/QRCode-test.tsx +++ b/test/unit-tests/components/views/elements/QRCode-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/ReplyChain-test.tsx b/test/unit-tests/components/views/elements/ReplyChain-test.tsx index 4eebcf67b9..38f5684eb7 100644 --- a/test/unit-tests/components/views/elements/ReplyChain-test.tsx +++ b/test/unit-tests/components/views/elements/ReplyChain-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/RoomFacePile-test.tsx b/test/unit-tests/components/views/elements/RoomFacePile-test.tsx index 8e934fb7e1..b21c3afc1b 100644 --- a/test/unit-tests/components/views/elements/RoomFacePile-test.tsx +++ b/test/unit-tests/components/views/elements/RoomFacePile-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/RoomTopic-test.tsx b/test/unit-tests/components/views/elements/RoomTopic-test.tsx index 0fe833fe4e..47bc39fdd7 100644 --- a/test/unit-tests/components/views/elements/RoomTopic-test.tsx +++ b/test/unit-tests/components/views/elements/RoomTopic-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/SearchWarning-test.tsx b/test/unit-tests/components/views/elements/SearchWarning-test.tsx index f0b1710685..117870d7e9 100644 --- a/test/unit-tests/components/views/elements/SearchWarning-test.tsx +++ b/test/unit-tests/components/views/elements/SearchWarning-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/SpellCheckLanguagesDropdown-test.tsx b/test/unit-tests/components/views/elements/SpellCheckLanguagesDropdown-test.tsx index e0c4af0392..66f37e2927 100644 --- a/test/unit-tests/components/views/elements/SpellCheckLanguagesDropdown-test.tsx +++ b/test/unit-tests/components/views/elements/SpellCheckLanguagesDropdown-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx b/test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx index bf6e37b535..1f8894457c 100644 --- a/test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx +++ b/test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/elements/SyntaxHighlight-test.tsx b/test/unit-tests/components/views/elements/SyntaxHighlight-test.tsx index 5fd169adac..5983e7b0f2 100644 --- a/test/unit-tests/components/views/elements/SyntaxHighlight-test.tsx +++ b/test/unit-tests/components/views/elements/SyntaxHighlight-test.tsx @@ -1,7 +1,7 @@ // Copyright 2024 New Vector Ltd. // Copyright 2023 The Matrix.org Foundation C.I.C. // -// SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +// SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial // Please see LICENSE files in the repository root for full details. import { render, waitFor } from "jest-matrix-react"; diff --git a/test/unit-tests/components/views/elements/crypto/VerificationQRCode-test.tsx b/test/unit-tests/components/views/elements/crypto/VerificationQRCode-test.tsx index a0db4bfdad..8e7acf742e 100644 --- a/test/unit-tests/components/views/elements/crypto/VerificationQRCode-test.tsx +++ b/test/unit-tests/components/views/elements/crypto/VerificationQRCode-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx b/test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx index e67334ca61..a7dcadc9f7 100644 --- a/test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx +++ b/test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx b/test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx index 4f08f63541..a0f9aa984f 100644 --- a/test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx +++ b/test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/location/LocationPicker-test.tsx b/test/unit-tests/components/views/location/LocationPicker-test.tsx index 16a40532b0..93acbdf18a 100644 --- a/test/unit-tests/components/views/location/LocationPicker-test.tsx +++ b/test/unit-tests/components/views/location/LocationPicker-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/location/LocationShareMenu-test.tsx b/test/unit-tests/components/views/location/LocationShareMenu-test.tsx index 84c5e91ea0..7f95b5564d 100644 --- a/test/unit-tests/components/views/location/LocationShareMenu-test.tsx +++ b/test/unit-tests/components/views/location/LocationShareMenu-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/location/LocationViewDialog-test.tsx b/test/unit-tests/components/views/location/LocationViewDialog-test.tsx index eb4eb6aa3c..1993215cf8 100644 --- a/test/unit-tests/components/views/location/LocationViewDialog-test.tsx +++ b/test/unit-tests/components/views/location/LocationViewDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/location/Map-test.tsx b/test/unit-tests/components/views/location/Map-test.tsx index 7771c6190a..eb45a536eb 100644 --- a/test/unit-tests/components/views/location/Map-test.tsx +++ b/test/unit-tests/components/views/location/Map-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/location/MapError-test.tsx b/test/unit-tests/components/views/location/MapError-test.tsx index 75597a253f..423a4645dc 100644 --- a/test/unit-tests/components/views/location/MapError-test.tsx +++ b/test/unit-tests/components/views/location/MapError-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/location/Marker-test.tsx b/test/unit-tests/components/views/location/Marker-test.tsx index 3b00c37e7f..e92738e9d4 100644 --- a/test/unit-tests/components/views/location/Marker-test.tsx +++ b/test/unit-tests/components/views/location/Marker-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/location/SmartMarker-test.tsx b/test/unit-tests/components/views/location/SmartMarker-test.tsx index 489d707fbf..d1280c7a74 100644 --- a/test/unit-tests/components/views/location/SmartMarker-test.tsx +++ b/test/unit-tests/components/views/location/SmartMarker-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/location/ZoomButtons-test.tsx b/test/unit-tests/components/views/location/ZoomButtons-test.tsx index ee4bdd596b..7e6fcb2eab 100644 --- a/test/unit-tests/components/views/location/ZoomButtons-test.tsx +++ b/test/unit-tests/components/views/location/ZoomButtons-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/location/shareLocation-test.ts b/test/unit-tests/components/views/location/shareLocation-test.ts index bdd0f7ab5c..498df43ee1 100644 --- a/test/unit-tests/components/views/location/shareLocation-test.ts +++ b/test/unit-tests/components/views/location/shareLocation-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/CallEvent-test.tsx b/test/unit-tests/components/views/messages/CallEvent-test.tsx index c76b2ec826..b092cf84f6 100644 --- a/test/unit-tests/components/views/messages/CallEvent-test.tsx +++ b/test/unit-tests/components/views/messages/CallEvent-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/DateSeparator-test.tsx b/test/unit-tests/components/views/messages/DateSeparator-test.tsx index 9b5b32cfca..3177fd513d 100644 --- a/test/unit-tests/components/views/messages/DateSeparator-test.tsx +++ b/test/unit-tests/components/views/messages/DateSeparator-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx b/test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx index 94495c4349..5d5e3badc4 100644 --- a/test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx +++ b/test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2023 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/DownloadActionButton-test.tsx b/test/unit-tests/components/views/messages/DownloadActionButton-test.tsx index 0d770a30d9..a0cbe2c620 100644 --- a/test/unit-tests/components/views/messages/DownloadActionButton-test.tsx +++ b/test/unit-tests/components/views/messages/DownloadActionButton-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/EncryptionEvent-test.tsx b/test/unit-tests/components/views/messages/EncryptionEvent-test.tsx index 5788daebc0..7ea9de76bc 100644 --- a/test/unit-tests/components/views/messages/EncryptionEvent-test.tsx +++ b/test/unit-tests/components/views/messages/EncryptionEvent-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/JumpToDatePicker-test.tsx b/test/unit-tests/components/views/messages/JumpToDatePicker-test.tsx index 971ec1ac29..1b5c4dbd21 100644 --- a/test/unit-tests/components/views/messages/JumpToDatePicker-test.tsx +++ b/test/unit-tests/components/views/messages/JumpToDatePicker-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx b/test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx index afff6b3730..f345b58a1c 100644 --- a/test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx +++ b/test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/MBeaconBody-test.tsx b/test/unit-tests/components/views/messages/MBeaconBody-test.tsx index b95a654106..6827d45df0 100644 --- a/test/unit-tests/components/views/messages/MBeaconBody-test.tsx +++ b/test/unit-tests/components/views/messages/MBeaconBody-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/MFileBody-test.tsx b/test/unit-tests/components/views/messages/MFileBody-test.tsx index e124e3a2ff..6d7f491bbe 100644 --- a/test/unit-tests/components/views/messages/MFileBody-test.tsx +++ b/test/unit-tests/components/views/messages/MFileBody-test.tsx @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/MImageBody-test.tsx b/test/unit-tests/components/views/messages/MImageBody-test.tsx index c15f2ea849..f9ba25d7a9 100644 --- a/test/unit-tests/components/views/messages/MImageBody-test.tsx +++ b/test/unit-tests/components/views/messages/MImageBody-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx b/test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx index 3ab9a98921..2f08a8bf93 100644 --- a/test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx +++ b/test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/MLocationBody-test.tsx b/test/unit-tests/components/views/messages/MLocationBody-test.tsx index 17fabc17d1..f0f7bae8a7 100644 --- a/test/unit-tests/components/views/messages/MLocationBody-test.tsx +++ b/test/unit-tests/components/views/messages/MLocationBody-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/MPollBody-test.tsx b/test/unit-tests/components/views/messages/MPollBody-test.tsx index 982fadad20..86849a1069 100644 --- a/test/unit-tests/components/views/messages/MPollBody-test.tsx +++ b/test/unit-tests/components/views/messages/MPollBody-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021, 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/MPollEndBody-test.tsx b/test/unit-tests/components/views/messages/MPollEndBody-test.tsx index 7bd2ad0a08..cc27c8a4d9 100644 --- a/test/unit-tests/components/views/messages/MPollEndBody-test.tsx +++ b/test/unit-tests/components/views/messages/MPollEndBody-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/MStickerBody-test.tsx b/test/unit-tests/components/views/messages/MStickerBody-test.tsx index e5fe3ef450..cf94a6d0c8 100644 --- a/test/unit-tests/components/views/messages/MStickerBody-test.tsx +++ b/test/unit-tests/components/views/messages/MStickerBody-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/MVideoBody-test.tsx b/test/unit-tests/components/views/messages/MVideoBody-test.tsx index 3f4289fea4..e445dc1711 100644 --- a/test/unit-tests/components/views/messages/MVideoBody-test.tsx +++ b/test/unit-tests/components/views/messages/MVideoBody-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/MessageActionBar-test.tsx b/test/unit-tests/components/views/messages/MessageActionBar-test.tsx index dda5b348a9..1f28f1d008 100644 --- a/test/unit-tests/components/views/messages/MessageActionBar-test.tsx +++ b/test/unit-tests/components/views/messages/MessageActionBar-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/MessageEvent-test.tsx b/test/unit-tests/components/views/messages/MessageEvent-test.tsx index 4ff574f752..63e00134fa 100644 --- a/test/unit-tests/components/views/messages/MessageEvent-test.tsx +++ b/test/unit-tests/components/views/messages/MessageEvent-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/MessageTimestamp-test.tsx b/test/unit-tests/components/views/messages/MessageTimestamp-test.tsx index 8d1348c0dd..8840cad1db 100644 --- a/test/unit-tests/components/views/messages/MessageTimestamp-test.tsx +++ b/test/unit-tests/components/views/messages/MessageTimestamp-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/PinnedMessageBadge-test.tsx b/test/unit-tests/components/views/messages/PinnedMessageBadge-test.tsx index 824e338563..884a78fd6c 100644 --- a/test/unit-tests/components/views/messages/PinnedMessageBadge-test.tsx +++ b/test/unit-tests/components/views/messages/PinnedMessageBadge-test.tsx @@ -1,9 +1,8 @@ /* * Copyright 2024 New Vector Ltd. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. - * */ import React from "react"; diff --git a/test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx b/test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx index c29dcd60a4..d00237e5d2 100644 --- a/test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx +++ b/test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Beeper -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx b/test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx index 3ed7d7eb2b..7b21f89584 100644 --- a/test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx +++ b/test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/TextualBody-test.tsx b/test/unit-tests/components/views/messages/TextualBody-test.tsx index 14b9453575..1e526e346b 100644 --- a/test/unit-tests/components/views/messages/TextualBody-test.tsx +++ b/test/unit-tests/components/views/messages/TextualBody-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/messages/shared/MediaProcessingError-test.tsx b/test/unit-tests/components/views/messages/shared/MediaProcessingError-test.tsx index 3767e7f985..dba0f28fa7 100644 --- a/test/unit-tests/components/views/messages/shared/MediaProcessingError-test.tsx +++ b/test/unit-tests/components/views/messages/shared/MediaProcessingError-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx b/test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx index 1e0f0a658c..55dcdda163 100644 --- a/test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx +++ b/test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx b/test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx index 7c4cc6009f..0bbacf9400 100644 --- a/test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx +++ b/test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx b/test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx index a1d833c2b5..492a86f679 100644 --- a/test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx +++ b/test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/right_panel/BaseCard-test.tsx b/test/unit-tests/components/views/right_panel/BaseCard-test.tsx index 72db04acf3..3764f53492 100644 --- a/test/unit-tests/components/views/right_panel/BaseCard-test.tsx +++ b/test/unit-tests/components/views/right_panel/BaseCard-test.tsx @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx b/test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx index 932d75dd0d..2b74276f28 100644 --- a/test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx +++ b/test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx b/test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx index a8f7c653f9..b63b84c7e6 100644 --- a/test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx +++ b/test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx b/test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx index 52e7b5a118..48ba88d88a 100644 --- a/test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx +++ b/test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/right_panel/UserInfo-test.tsx b/test/unit-tests/components/views/right_panel/UserInfo-test.tsx index 172b04a77c..db7af71c24 100644 --- a/test/unit-tests/components/views/right_panel/UserInfo-test.tsx +++ b/test/unit-tests/components/views/right_panel/UserInfo-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx b/test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx index 2adfc1eeb6..4d1252ac3a 100644 --- a/test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx +++ b/test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx b/test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx index 87065ba410..a6af82d94b 100644 --- a/test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx +++ b/test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx b/test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx index cbd5410599..fa4f34aa34 100644 --- a/test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx +++ b/test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx @@ -1,7 +1,7 @@ /* * Copyright 2024 New Vector Ltd. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/AppsDrawer-test.tsx b/test/unit-tests/components/views/rooms/AppsDrawer-test.tsx index bb989b0937..71e69bd91b 100644 --- a/test/unit-tests/components/views/rooms/AppsDrawer-test.tsx +++ b/test/unit-tests/components/views/rooms/AppsDrawer-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx b/test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx index d256c7c43e..b8864624e5 100644 --- a/test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx +++ b/test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx b/test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx index beac0c8e1d..cdc961f73c 100644 --- a/test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx +++ b/test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/EventTile-test.tsx b/test/unit-tests/components/views/rooms/EventTile-test.tsx index 93445efbe3..057d93ee51 100644 --- a/test/unit-tests/components/views/rooms/EventTile-test.tsx +++ b/test/unit-tests/components/views/rooms/EventTile-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/EventTile/EventTileThreadToolbar-test.tsx b/test/unit-tests/components/views/rooms/EventTile/EventTileThreadToolbar-test.tsx index 7281bd4a12..f08dbc4042 100644 --- a/test/unit-tests/components/views/rooms/EventTile/EventTileThreadToolbar-test.tsx +++ b/test/unit-tests/components/views/rooms/EventTile/EventTileThreadToolbar-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/ExtraTile-test.tsx b/test/unit-tests/components/views/rooms/ExtraTile-test.tsx index 70097a47ee..6330b5bbc8 100644 --- a/test/unit-tests/components/views/rooms/ExtraTile-test.tsx +++ b/test/unit-tests/components/views/rooms/ExtraTile-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/MemberList-test.tsx b/test/unit-tests/components/views/rooms/MemberList-test.tsx index 34c37d2ba5..d65a45fe91 100644 --- a/test/unit-tests/components/views/rooms/MemberList-test.tsx +++ b/test/unit-tests/components/views/rooms/MemberList-test.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/MemberTile-test.tsx b/test/unit-tests/components/views/rooms/MemberTile-test.tsx index cf829c2927..854099319d 100644 --- a/test/unit-tests/components/views/rooms/MemberTile-test.tsx +++ b/test/unit-tests/components/views/rooms/MemberTile-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2023 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/MessageComposer-test.tsx b/test/unit-tests/components/views/rooms/MessageComposer-test.tsx index 270d685a18..895b5f09a7 100644 --- a/test/unit-tests/components/views/rooms/MessageComposer-test.tsx +++ b/test/unit-tests/components/views/rooms/MessageComposer-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx b/test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx index c2f56dc968..fffb852ebf 100644 --- a/test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx +++ b/test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx b/test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx index a1cd452610..a5d598e1b4 100644 --- a/test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx +++ b/test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2015-2022 The Matrix.org Foundation C.I.C. Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx b/test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx index e4ff88c236..bcbb4ab712 100644 --- a/test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx +++ b/test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx b/test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx index 8f3b587913..4b335cb631 100644 --- a/test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx +++ b/test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx b/test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx index 5b2dddc73a..6628889dc7 100644 --- a/test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx +++ b/test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx b/test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx index a0725a5007..9031d238a8 100644 --- a/test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx +++ b/test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx b/test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx index 8717762e0d..66e0e32f38 100644 --- a/test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx +++ b/test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/PresenceLabel-test.tsx b/test/unit-tests/components/views/rooms/PresenceLabel-test.tsx index 88a0e346bf..a8af6f768c 100644 --- a/test/unit-tests/components/views/rooms/PresenceLabel-test.tsx +++ b/test/unit-tests/components/views/rooms/PresenceLabel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx b/test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx index 13500f9b1f..ec9884591f 100644 --- a/test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx +++ b/test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx b/test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx index f7dc843f39..68b7bc9799 100644 --- a/test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx +++ b/test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/RoomHeader-test.tsx b/test/unit-tests/components/views/rooms/RoomHeader-test.tsx index eb449b6891..633100eec4 100644 --- a/test/unit-tests/components/views/rooms/RoomHeader-test.tsx +++ b/test/unit-tests/components/views/rooms/RoomHeader-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx b/test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx index c77114fa96..a89058d730 100644 --- a/test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx +++ b/test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx b/test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx index c080fa8659..9a1466a261 100644 --- a/test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx +++ b/test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx b/test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx index 54a9177fbf..4f1ad97bca 100644 --- a/test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx +++ b/test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Nordeck IT + Consulting GmbH -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/RoomList-test.tsx b/test/unit-tests/components/views/rooms/RoomList-test.tsx index cb824bcdf9..4ee68deb21 100644 --- a/test/unit-tests/components/views/rooms/RoomList-test.tsx +++ b/test/unit-tests/components/views/rooms/RoomList-test.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Mikhail Aheichyk Copyright 2023 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/RoomListHeader-test.tsx b/test/unit-tests/components/views/rooms/RoomListHeader-test.tsx index c44c3a501b..ade08b8f95 100644 --- a/test/unit-tests/components/views/rooms/RoomListHeader-test.tsx +++ b/test/unit-tests/components/views/rooms/RoomListHeader-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx b/test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx index fb531bb3bd..112b088709 100644 --- a/test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx +++ b/test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx b/test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx index 4780a4652a..b80ce4bb5b 100644 --- a/test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx +++ b/test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx b/test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx index 0c720bf40e..6a46be2353 100644 --- a/test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx +++ b/test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/RoomTile-test.tsx b/test/unit-tests/components/views/rooms/RoomTile-test.tsx index c14c699699..e5169d9121 100644 --- a/test/unit-tests/components/views/rooms/RoomTile-test.tsx +++ b/test/unit-tests/components/views/rooms/RoomTile-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/SearchResultTile-test.tsx b/test/unit-tests/components/views/rooms/SearchResultTile-test.tsx index 358c36d2fb..c12aa15eae 100644 --- a/test/unit-tests/components/views/rooms/SearchResultTile-test.tsx +++ b/test/unit-tests/components/views/rooms/SearchResultTile-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx b/test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx index c372819ce2..ad0ec2afdf 100644 --- a/test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx +++ b/test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx b/test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx index 958ebf7d1f..60541cd30a 100644 --- a/test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx +++ b/test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx b/test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx index 9a70a88768..eef2526912 100644 --- a/test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx +++ b/test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/VoiceRecordComposerTile-test.tsx b/test/unit-tests/components/views/rooms/VoiceRecordComposerTile-test.tsx index a8d4b022a6..06d314b588 100644 --- a/test/unit-tests/components/views/rooms/VoiceRecordComposerTile-test.tsx +++ b/test/unit-tests/components/views/rooms/VoiceRecordComposerTile-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx b/test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx index 6b0051d703..05c7bc4608 100644 --- a/test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx +++ b/test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx b/test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx index c5c767b432..4cba44bd9c 100644 --- a/test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx +++ b/test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx b/test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx index f8e6427ea5..e0f9e2d8b4 100644 --- a/test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx +++ b/test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx b/test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx index b1f86990e1..f864f27de2 100644 --- a/test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx +++ b/test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx b/test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx index 059cf0967a..371960c800 100644 --- a/test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx +++ b/test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx b/test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx index ae9f8d8402..5886b501b4 100644 --- a/test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx +++ b/test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx b/test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx index a911bac3d4..e86488660e 100644 --- a/test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx +++ b/test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx b/test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx index 20dc961cf4..0564597877 100644 --- a/test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx +++ b/test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx b/test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx index 9224375104..06762b2c8f 100644 --- a/test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx +++ b/test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import React from "react"; diff --git a/test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx b/test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx index eac4d6d35e..c691756200 100644 --- a/test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx +++ b/test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import { IEventRelation, MatrixEvent } from "matrix-js-sdk/src/matrix"; diff --git a/test/unit-tests/components/views/rooms/wysiwyg_composer/utils.ts b/test/unit-tests/components/views/rooms/wysiwyg_composer/utils.ts index d367e3488a..cb72c90fb3 100644 --- a/test/unit-tests/components/views/rooms/wysiwyg_composer/utils.ts +++ b/test/unit-tests/components/views/rooms/wysiwyg_composer/utils.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts b/test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts index 8efc4df203..292314f87f 100644 --- a/test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts +++ b/test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts b/test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts index 68d23733e2..80b3adcb13 100644 --- a/test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts +++ b/test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts b/test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts index 43320b0444..867947bef9 100644 --- a/test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts +++ b/test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx b/test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx index 6863859787..875b5d9f19 100644 --- a/test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx +++ b/test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import React from "react"; diff --git a/test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx b/test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx index a285a98f3b..dacd2c52a5 100644 --- a/test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx +++ b/test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/AvatarSetting-test.tsx b/test/unit-tests/components/views/settings/AvatarSetting-test.tsx index 1b88c416bc..f6c4181b21 100644 --- a/test/unit-tests/components/views/settings/AvatarSetting-test.tsx +++ b/test/unit-tests/components/views/settings/AvatarSetting-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import React from "react"; diff --git a/test/unit-tests/components/views/settings/ChangePassword-test.tsx b/test/unit-tests/components/views/settings/ChangePassword-test.tsx index 75211647e0..6b4c58f1d1 100644 --- a/test/unit-tests/components/views/settings/ChangePassword-test.tsx +++ b/test/unit-tests/components/views/settings/ChangePassword-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx b/test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx index daa3570ed2..ee7c642587 100644 --- a/test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx +++ b/test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/CryptographyPanel-test.tsx b/test/unit-tests/components/views/settings/CryptographyPanel-test.tsx index 03b469fe76..3d36873473 100644 --- a/test/unit-tests/components/views/settings/CryptographyPanel-test.tsx +++ b/test/unit-tests/components/views/settings/CryptographyPanel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/EventIndexPanel-test.tsx b/test/unit-tests/components/views/settings/EventIndexPanel-test.tsx index 9859cc27fa..c154a3c2a8 100644 --- a/test/unit-tests/components/views/settings/EventIndexPanel-test.tsx +++ b/test/unit-tests/components/views/settings/EventIndexPanel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/FontScalingPanel-test.tsx b/test/unit-tests/components/views/settings/FontScalingPanel-test.tsx index 4e2ed5451a..fc8de6d631 100644 --- a/test/unit-tests/components/views/settings/FontScalingPanel-test.tsx +++ b/test/unit-tests/components/views/settings/FontScalingPanel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx b/test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx index 36dd664ac6..87cef69786 100644 --- a/test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx +++ b/test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx b/test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx index 2bebd04cc8..edcc915e4d 100644 --- a/test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx +++ b/test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx b/test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx index aafc7fe8a4..5d3f1709e2 100644 --- a/test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx +++ b/test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/Notifications-test.tsx b/test/unit-tests/components/views/settings/Notifications-test.tsx index e3d9716901..c4b893920d 100644 --- a/test/unit-tests/components/views/settings/Notifications-test.tsx +++ b/test/unit-tests/components/views/settings/Notifications-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx b/test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx index 052898debb..d94587f0f3 100644 --- a/test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx +++ b/test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx b/test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx index 63490bf915..78d59c07f1 100644 --- a/test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx +++ b/test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx b/test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx index 54c2aff979..bab908c75e 100644 --- a/test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx +++ b/test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/SettingsFieldset-test.tsx b/test/unit-tests/components/views/settings/SettingsFieldset-test.tsx index 3049a1fb32..6e9242f06e 100644 --- a/test/unit-tests/components/views/settings/SettingsFieldset-test.tsx +++ b/test/unit-tests/components/views/settings/SettingsFieldset-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx b/test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx index 2eafcc7ada..354fd44b9d 100644 --- a/test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx +++ b/test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/UserProfileSettings-test.tsx b/test/unit-tests/components/views/settings/UserProfileSettings-test.tsx index 98b321a26d..0c80cd6f5d 100644 --- a/test/unit-tests/components/views/settings/UserProfileSettings-test.tsx +++ b/test/unit-tests/components/views/settings/UserProfileSettings-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx b/test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx index 3cddfea9d1..6ba46ed528 100644 --- a/test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx +++ b/test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx b/test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx index acdaf22976..d963acf76b 100644 --- a/test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx +++ b/test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx b/test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx index 218bda0df8..765621eee5 100644 --- a/test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx +++ b/test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx b/test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx index 423c0575d8..5cb4d95f71 100644 --- a/test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx +++ b/test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/DeviceSecurityCard-test.tsx b/test/unit-tests/components/views/settings/devices/DeviceSecurityCard-test.tsx index 5716155d03..010c2e98fc 100644 --- a/test/unit-tests/components/views/settings/devices/DeviceSecurityCard-test.tsx +++ b/test/unit-tests/components/views/settings/devices/DeviceSecurityCard-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx b/test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx index 0e87c298fc..a868b45f27 100644 --- a/test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx +++ b/test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx b/test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx index 242a778682..525620fb11 100644 --- a/test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx +++ b/test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx b/test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx index bdfcb4a0c2..8ffb9889e6 100644 --- a/test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx +++ b/test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx b/test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx index 38d2b9ad8a..3318a13e6a 100644 --- a/test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx +++ b/test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx b/test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx index 1a7b0e006b..f2c7e9d138 100644 --- a/test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx +++ b/test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx b/test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx index 98a0657eae..7b50ae0278 100644 --- a/test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx +++ b/test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx b/test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx index 2a16c793a2..9120ff4f66 100644 --- a/test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx +++ b/test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx b/test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx index edaf7b39d1..ebbc359889 100644 --- a/test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx +++ b/test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx b/test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx index e970ebbb03..437d711100 100644 --- a/test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx +++ b/test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx b/test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx index f7c8510656..44d624f621 100644 --- a/test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx +++ b/test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx b/test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx index af602a83e5..9aeaa5afcd 100644 --- a/test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx +++ b/test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/devices/filter-test.ts b/test/unit-tests/components/views/settings/devices/filter-test.ts index 9a354eb3b5..bf131ac788 100644 --- a/test/unit-tests/components/views/settings/devices/filter-test.ts +++ b/test/unit-tests/components/views/settings/devices/filter-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx b/test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx index 65b1e67f94..404735f63a 100644 --- a/test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx +++ b/test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx b/test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx index 2507aa173f..24441689a2 100644 --- a/test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx +++ b/test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx b/test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx index 428954e78c..9f921552cf 100644 --- a/test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx +++ b/test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/shared/SettingsSubsectionHeading-test.tsx b/test/unit-tests/components/views/settings/shared/SettingsSubsectionHeading-test.tsx index b1c36542ad..cdf1fd9e88 100644 --- a/test/unit-tests/components/views/settings/shared/SettingsSubsectionHeading-test.tsx +++ b/test/unit-tests/components/views/settings/shared/SettingsSubsectionHeading-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/SettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/SettingsTab-test.tsx index a1257ef9dc..ff4d781e48 100644 --- a/test/unit-tests/components/views/settings/tabs/SettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/SettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx index b6d62973c7..b19424f192 100644 --- a/test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/room/BridgeSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/room/BridgeSettingsTab-test.tsx index af04ba410d..298d4502c3 100644 --- a/test/unit-tests/components/views/settings/tabs/room/BridgeSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/room/BridgeSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx index abb78bfcda..47e9565329 100644 --- a/test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx index 4527cbe2e3..c5fa2d8fe4 100644 --- a/test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Nordeck IT + Consulting GmbH -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx index 75a1a7b955..6d3d688112 100644 --- a/test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx index 5fc10714e6..bb5300fc03 100644 --- a/test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx index c6e0124249..8e244999ad 100644 --- a/test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx index b36f9cfdf1..18ad320b02 100644 --- a/test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/user/AppearanceUserSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/user/AppearanceUserSettingsTab-test.tsx index 9933fba648..81ea635609 100644 --- a/test/unit-tests/components/views/settings/tabs/user/AppearanceUserSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/user/AppearanceUserSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/user/KeyboardUserSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/user/KeyboardUserSettingsTab-test.tsx index d7855dcea1..0af6d82386 100644 --- a/test/unit-tests/components/views/settings/tabs/user/KeyboardUserSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/user/KeyboardUserSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx index 155256cbe6..d9d7cb48b1 100644 --- a/test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/user/MjolnirUserSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/user/MjolnirUserSettingsTab-test.tsx index e21c1cbcc4..53671bfbd5 100644 --- a/test/unit-tests/components/views/settings/tabs/user/MjolnirUserSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/user/MjolnirUserSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx index 0f44278893..edecef24bb 100644 --- a/test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/user/SecurityUserSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/user/SecurityUserSettingsTab-test.tsx index 27403919b6..65c1bf1d48 100644 --- a/test/unit-tests/components/views/settings/tabs/user/SecurityUserSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/user/SecurityUserSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import { render } from "jest-matrix-react"; diff --git a/test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx b/test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx index 2f65776ef0..030f769de2 100644 --- a/test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx index c19d62b9a6..e1c7e4a327 100644 --- a/test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx b/test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx index 50fcf41931..1c8ff6f267 100644 --- a/test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx +++ b/test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx b/test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx index 36f8ef44df..c06847e700 100644 --- a/test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx +++ b/test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx b/test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx index fae530f112..af3fe770ff 100644 --- a/test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx +++ b/test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx b/test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx index 502176d684..842db5ace7 100644 --- a/test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx +++ b/test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/spaces/SpacePanel-test.tsx b/test/unit-tests/components/views/spaces/SpacePanel-test.tsx index 1d1ebc194f..3331de9334 100644 --- a/test/unit-tests/components/views/spaces/SpacePanel-test.tsx +++ b/test/unit-tests/components/views/spaces/SpacePanel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx b/test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx index 28314f97b2..f16651abd9 100644 --- a/test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx +++ b/test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx b/test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx index 1e44fa6a0a..98dc9723ab 100644 --- a/test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx +++ b/test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx b/test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx index dfc9d0943a..ecbe550d60 100644 --- a/test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx +++ b/test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx b/test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx index c277392426..f8e32289e9 100644 --- a/test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx +++ b/test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/toasts/GenericToast-test.tsx b/test/unit-tests/components/views/toasts/GenericToast-test.tsx index 51e75cc54c..5947dcdbc6 100644 --- a/test/unit-tests/components/views/toasts/GenericToast-test.tsx +++ b/test/unit-tests/components/views/toasts/GenericToast-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx b/test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx index 8ee44ed499..1f22da8d75 100644 --- a/test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx +++ b/test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/typography/Caption-test.tsx b/test/unit-tests/components/views/typography/Caption-test.tsx index c2adfa8059..dde1a3977b 100644 --- a/test/unit-tests/components/views/typography/Caption-test.tsx +++ b/test/unit-tests/components/views/typography/Caption-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/typography/Heading-test.tsx b/test/unit-tests/components/views/typography/Heading-test.tsx index 22138e3e81..a309755384 100644 --- a/test/unit-tests/components/views/typography/Heading-test.tsx +++ b/test/unit-tests/components/views/typography/Heading-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/user-onboarding/UserOnboardingList-test.tsx b/test/unit-tests/components/views/user-onboarding/UserOnboardingList-test.tsx index a51491a39f..f5a693cda3 100644 --- a/test/unit-tests/components/views/user-onboarding/UserOnboardingList-test.tsx +++ b/test/unit-tests/components/views/user-onboarding/UserOnboardingList-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/user-onboarding/UserOnboardingPage-test.tsx b/test/unit-tests/components/views/user-onboarding/UserOnboardingPage-test.tsx index 4999a84746..03eefcfde5 100644 --- a/test/unit-tests/components/views/user-onboarding/UserOnboardingPage-test.tsx +++ b/test/unit-tests/components/views/user-onboarding/UserOnboardingPage-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/voip/CallView-test.tsx b/test/unit-tests/components/views/voip/CallView-test.tsx index d47c5cffa4..cb1cc6ffb1 100644 --- a/test/unit-tests/components/views/voip/CallView-test.tsx +++ b/test/unit-tests/components/views/voip/CallView-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/voip/DialPad-test.tsx b/test/unit-tests/components/views/voip/DialPad-test.tsx index ca6859644a..664f53bdee 100644 --- a/test/unit-tests/components/views/voip/DialPad-test.tsx +++ b/test/unit-tests/components/views/voip/DialPad-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/voip/LegacyCallView/LegacyCallViewButtons-test.tsx b/test/unit-tests/components/views/voip/LegacyCallView/LegacyCallViewButtons-test.tsx index a3bc0e987f..b01f40b090 100644 --- a/test/unit-tests/components/views/voip/LegacyCallView/LegacyCallViewButtons-test.tsx +++ b/test/unit-tests/components/views/voip/LegacyCallView/LegacyCallViewButtons-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/components/views/voip/VideoFeed-test.tsx b/test/unit-tests/components/views/voip/VideoFeed-test.tsx index 0e78fc6b96..d9a396d664 100644 --- a/test/unit-tests/components/views/voip/VideoFeed-test.tsx +++ b/test/unit-tests/components/views/voip/VideoFeed-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/contexts/SdkContext-test.ts b/test/unit-tests/contexts/SdkContext-test.ts index 340fabdd3d..0ccf638aa2 100644 --- a/test/unit-tests/contexts/SdkContext-test.ts +++ b/test/unit-tests/contexts/SdkContext-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/contexts/ToastContext-test.ts b/test/unit-tests/contexts/ToastContext-test.ts index 5e650dc972..1124dec7a2 100644 --- a/test/unit-tests/contexts/ToastContext-test.ts +++ b/test/unit-tests/contexts/ToastContext-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/createRoom-test.ts b/test/unit-tests/createRoom-test.ts index b654cb314b..f3dc57fed4 100644 --- a/test/unit-tests/createRoom-test.ts +++ b/test/unit-tests/createRoom-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/customisations/Media-test.ts b/test/unit-tests/customisations/Media-test.ts index 1fda2381d1..d7b3b681dc 100644 --- a/test/unit-tests/customisations/Media-test.ts +++ b/test/unit-tests/customisations/Media-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/dispatcher/dispatcher-test.ts b/test/unit-tests/dispatcher/dispatcher-test.ts index 101c118b25..711fad2b5e 100644 --- a/test/unit-tests/dispatcher/dispatcher-test.ts +++ b/test/unit-tests/dispatcher/dispatcher-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/editor/caret-test.ts b/test/unit-tests/editor/caret-test.ts index bd4850723f..fd56404731 100644 --- a/test/unit-tests/editor/caret-test.ts +++ b/test/unit-tests/editor/caret-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/editor/deserialize-test.ts b/test/unit-tests/editor/deserialize-test.ts index 25208c5521..b5b8dc1b9f 100644 --- a/test/unit-tests/editor/deserialize-test.ts +++ b/test/unit-tests/editor/deserialize-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import { MatrixEvent } from "matrix-js-sdk/src/matrix"; diff --git a/test/unit-tests/editor/diff-test.ts b/test/unit-tests/editor/diff-test.ts index c3f4d6fd81..f5ec0db29e 100644 --- a/test/unit-tests/editor/diff-test.ts +++ b/test/unit-tests/editor/diff-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/editor/history-test.ts b/test/unit-tests/editor/history-test.ts index 94f665e7ec..2ae284d0d8 100644 --- a/test/unit-tests/editor/history-test.ts +++ b/test/unit-tests/editor/history-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/editor/mock.ts b/test/unit-tests/editor/mock.ts index 5a1809e232..e49a4558a4 100644 --- a/test/unit-tests/editor/mock.ts +++ b/test/unit-tests/editor/mock.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/editor/model-test.ts b/test/unit-tests/editor/model-test.ts index 16cdcb6458..5d548ce7fc 100644 --- a/test/unit-tests/editor/model-test.ts +++ b/test/unit-tests/editor/model-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/editor/operations-test.ts b/test/unit-tests/editor/operations-test.ts index a3b61d6f00..d0dc1e837d 100644 --- a/test/unit-tests/editor/operations-test.ts +++ b/test/unit-tests/editor/operations-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2020 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/editor/parts-test.ts b/test/unit-tests/editor/parts-test.ts index d5cdf33bac..6a8db13641 100644 --- a/test/unit-tests/editor/parts-test.ts +++ b/test/unit-tests/editor/parts-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/editor/position-test.ts b/test/unit-tests/editor/position-test.ts index 103cfb748f..6f1928e05c 100644 --- a/test/unit-tests/editor/position-test.ts +++ b/test/unit-tests/editor/position-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/editor/range-test.ts b/test/unit-tests/editor/range-test.ts index 55b39d20d8..c4e7dc05fb 100644 --- a/test/unit-tests/editor/range-test.ts +++ b/test/unit-tests/editor/range-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/editor/roundtrip-test.ts b/test/unit-tests/editor/roundtrip-test.ts index 7420df90f8..dfce37472f 100644 --- a/test/unit-tests/editor/roundtrip-test.ts +++ b/test/unit-tests/editor/roundtrip-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/editor/serialize-test.ts b/test/unit-tests/editor/serialize-test.ts index 8920bf1747..3162f1464a 100644 --- a/test/unit-tests/editor/serialize-test.ts +++ b/test/unit-tests/editor/serialize-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/email-test.ts b/test/unit-tests/email-test.ts index 6efcde67c1..f02566d271 100644 --- a/test/unit-tests/email-test.ts +++ b/test/unit-tests/email-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/events/EventTileFactory-test.ts b/test/unit-tests/events/EventTileFactory-test.ts index 8a7d09c434..eee94791fc 100644 --- a/test/unit-tests/events/EventTileFactory-test.ts +++ b/test/unit-tests/events/EventTileFactory-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/events/RelationsHelper-test.ts b/test/unit-tests/events/RelationsHelper-test.ts index 48776d2fb0..fa693a8953 100644 --- a/test/unit-tests/events/RelationsHelper-test.ts +++ b/test/unit-tests/events/RelationsHelper-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/events/forward/getForwardableEvent-test.ts b/test/unit-tests/events/forward/getForwardableEvent-test.ts index c2669ff003..346fb09318 100644 --- a/test/unit-tests/events/forward/getForwardableEvent-test.ts +++ b/test/unit-tests/events/forward/getForwardableEvent-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/events/location/getShareableLocationEvent-test.ts b/test/unit-tests/events/location/getShareableLocationEvent-test.ts index 8eb430b0aa..ceea748302 100644 --- a/test/unit-tests/events/location/getShareableLocationEvent-test.ts +++ b/test/unit-tests/events/location/getShareableLocationEvent-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/favicon-test.ts b/test/unit-tests/favicon-test.ts index 25a482bb6c..8972861773 100644 --- a/test/unit-tests/favicon-test.ts +++ b/test/unit-tests/favicon-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx b/test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx index 885c827e15..26698af058 100644 --- a/test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx +++ b/test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/hooks/useDebouncedCallback-test.tsx b/test/unit-tests/hooks/useDebouncedCallback-test.tsx index ca09ecef20..5d0e03b930 100644 --- a/test/unit-tests/hooks/useDebouncedCallback-test.tsx +++ b/test/unit-tests/hooks/useDebouncedCallback-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/hooks/useLatestResult-test.tsx b/test/unit-tests/hooks/useLatestResult-test.tsx index 0286c3dd6c..5a70d2148c 100644 --- a/test/unit-tests/hooks/useLatestResult-test.tsx +++ b/test/unit-tests/hooks/useLatestResult-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/hooks/useNotificationSettings-test.tsx b/test/unit-tests/hooks/useNotificationSettings-test.tsx index b2f9cad33b..b05c868a12 100644 --- a/test/unit-tests/hooks/useNotificationSettings-test.tsx +++ b/test/unit-tests/hooks/useNotificationSettings-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/hooks/useProfileInfo-test.tsx b/test/unit-tests/hooks/useProfileInfo-test.tsx index 0f1c77af0f..e42dcb1858 100644 --- a/test/unit-tests/hooks/useProfileInfo-test.tsx +++ b/test/unit-tests/hooks/useProfileInfo-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/hooks/usePublicRoomDirectory-test.tsx b/test/unit-tests/hooks/usePublicRoomDirectory-test.tsx index 8e8789d2ac..980c8b2aa1 100644 --- a/test/unit-tests/hooks/usePublicRoomDirectory-test.tsx +++ b/test/unit-tests/hooks/usePublicRoomDirectory-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/hooks/useRoomMembers-test.tsx b/test/unit-tests/hooks/useRoomMembers-test.tsx index b8b589690b..df572ead08 100644 --- a/test/unit-tests/hooks/useRoomMembers-test.tsx +++ b/test/unit-tests/hooks/useRoomMembers-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/hooks/useSlidingSyncRoomSearch-test.tsx b/test/unit-tests/hooks/useSlidingSyncRoomSearch-test.tsx index ff5304bf1a..f8c33ac16b 100644 --- a/test/unit-tests/hooks/useSlidingSyncRoomSearch-test.tsx +++ b/test/unit-tests/hooks/useSlidingSyncRoomSearch-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/hooks/useUnreadNotifications-test.ts b/test/unit-tests/hooks/useUnreadNotifications-test.ts index 6f5ef96b89..6776efa7c0 100644 --- a/test/unit-tests/hooks/useUnreadNotifications-test.ts +++ b/test/unit-tests/hooks/useUnreadNotifications-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/hooks/useUserDirectory-test.tsx b/test/unit-tests/hooks/useUserDirectory-test.tsx index 1f8863143a..a2a8f62e31 100644 --- a/test/unit-tests/hooks/useUserDirectory-test.tsx +++ b/test/unit-tests/hooks/useUserDirectory-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/hooks/useUserOnboardingTasks-test.tsx b/test/unit-tests/hooks/useUserOnboardingTasks-test.tsx index f710862023..c20a75e910 100644 --- a/test/unit-tests/hooks/useUserOnboardingTasks-test.tsx +++ b/test/unit-tests/hooks/useUserOnboardingTasks-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/hooks/useWindowWidth-test.ts b/test/unit-tests/hooks/useWindowWidth-test.ts index 99e4cce127..9ddc9750e2 100644 --- a/test/unit-tests/hooks/useWindowWidth-test.ts +++ b/test/unit-tests/hooks/useWindowWidth-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/integrations/IntegrationManagers-test.ts b/test/unit-tests/integrations/IntegrationManagers-test.ts index f13d57db94..e094926e4e 100644 --- a/test/unit-tests/integrations/IntegrationManagers-test.ts +++ b/test/unit-tests/integrations/IntegrationManagers-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/languageHandler-test.tsx b/test/unit-tests/languageHandler-test.tsx index 90360ed56e..1969c857cc 100644 --- a/test/unit-tests/languageHandler-test.tsx +++ b/test/unit-tests/languageHandler-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/linkify-matrix-test.ts b/test/unit-tests/linkify-matrix-test.ts index 50edff2535..70a6e18b3b 100644 --- a/test/unit-tests/linkify-matrix-test.ts +++ b/test/unit-tests/linkify-matrix-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/models/Call-test.ts b/test/unit-tests/models/Call-test.ts index b675100ae9..0da3e60ad8 100644 --- a/test/unit-tests/models/Call-test.ts +++ b/test/unit-tests/models/Call-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/models/LocalRoom-test.ts b/test/unit-tests/models/LocalRoom-test.ts index 9b12ac5985..b5398c00ae 100644 --- a/test/unit-tests/models/LocalRoom-test.ts +++ b/test/unit-tests/models/LocalRoom-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/models/notificationsettings/NotificationSettings-test.ts b/test/unit-tests/models/notificationsettings/NotificationSettings-test.ts index 98d72e3238..68bc6a5a4c 100644 --- a/test/unit-tests/models/notificationsettings/NotificationSettings-test.ts +++ b/test/unit-tests/models/notificationsettings/NotificationSettings-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/modules/AppModule-test.ts b/test/unit-tests/modules/AppModule-test.ts index 6294fc5061..af79abd752 100644 --- a/test/unit-tests/modules/AppModule-test.ts +++ b/test/unit-tests/modules/AppModule-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/modules/MockModule.ts b/test/unit-tests/modules/MockModule.ts index 799c22e884..f699f68dea 100644 --- a/test/unit-tests/modules/MockModule.ts +++ b/test/unit-tests/modules/MockModule.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/modules/ModuleComponents-test.tsx b/test/unit-tests/modules/ModuleComponents-test.tsx index a885e2f99d..8723dd5135 100644 --- a/test/unit-tests/modules/ModuleComponents-test.tsx +++ b/test/unit-tests/modules/ModuleComponents-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/modules/ModuleRunner-test.ts b/test/unit-tests/modules/ModuleRunner-test.ts index 178863259a..69a3baf9f0 100644 --- a/test/unit-tests/modules/ModuleRunner-test.ts +++ b/test/unit-tests/modules/ModuleRunner-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/modules/ProxiedModuleApi-test.tsx b/test/unit-tests/modules/ProxiedModuleApi-test.tsx index 9a93a3c76c..34c3c534dd 100644 --- a/test/unit-tests/modules/ProxiedModuleApi-test.tsx +++ b/test/unit-tests/modules/ProxiedModuleApi-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/notifications/ContentRules-test.ts b/test/unit-tests/notifications/ContentRules-test.ts index d73e2503aa..16bd082156 100644 --- a/test/unit-tests/notifications/ContentRules-test.ts +++ b/test/unit-tests/notifications/ContentRules-test.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/notifications/PushRuleVectorState-test.ts b/test/unit-tests/notifications/PushRuleVectorState-test.ts index 66c3d10871..d495752a68 100644 --- a/test/unit-tests/notifications/PushRuleVectorState-test.ts +++ b/test/unit-tests/notifications/PushRuleVectorState-test.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. Copyright 2016 OpenMarket Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/settings/SettingsStore-test.ts b/test/unit-tests/settings/SettingsStore-test.ts index 044b5ec764..74da89bde2 100644 --- a/test/unit-tests/settings/SettingsStore-test.ts +++ b/test/unit-tests/settings/SettingsStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/settings/controllers/AnalyticsController-test.ts b/test/unit-tests/settings/controllers/AnalyticsController-test.ts index 7b0f7b7b5f..fb7d4a5613 100644 --- a/test/unit-tests/settings/controllers/AnalyticsController-test.ts +++ b/test/unit-tests/settings/controllers/AnalyticsController-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/settings/controllers/DeviceIsolationModeController-test.ts b/test/unit-tests/settings/controllers/DeviceIsolationModeController-test.ts index cc39a71d2d..dc1829a05f 100644 --- a/test/unit-tests/settings/controllers/DeviceIsolationModeController-test.ts +++ b/test/unit-tests/settings/controllers/DeviceIsolationModeController-test.ts @@ -1,6 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/settings/controllers/FallbackIceServerController-test.ts b/test/unit-tests/settings/controllers/FallbackIceServerController-test.ts index 632ee81bce..7d98f6087b 100644 --- a/test/unit-tests/settings/controllers/FallbackIceServerController-test.ts +++ b/test/unit-tests/settings/controllers/FallbackIceServerController-test.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/settings/controllers/FontSizeController-test.ts b/test/unit-tests/settings/controllers/FontSizeController-test.ts index 64868c7afd..e9dc3ee942 100644 --- a/test/unit-tests/settings/controllers/FontSizeController-test.ts +++ b/test/unit-tests/settings/controllers/FontSizeController-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/settings/controllers/IncompatibleController-test.ts b/test/unit-tests/settings/controllers/IncompatibleController-test.ts index 61a0be49cd..3025a8142e 100644 --- a/test/unit-tests/settings/controllers/IncompatibleController-test.ts +++ b/test/unit-tests/settings/controllers/IncompatibleController-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts b/test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts index ebf4fbae15..8dd74c4de5 100644 --- a/test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts +++ b/test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/settings/controllers/SystemFontController-test.ts b/test/unit-tests/settings/controllers/SystemFontController-test.ts index 24a0f45563..13212ce650 100644 --- a/test/unit-tests/settings/controllers/SystemFontController-test.ts +++ b/test/unit-tests/settings/controllers/SystemFontController-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/settings/controllers/ThemeController-test.ts b/test/unit-tests/settings/controllers/ThemeController-test.ts index 1e5065bf35..c8eb607898 100644 --- a/test/unit-tests/settings/controllers/ThemeController-test.ts +++ b/test/unit-tests/settings/controllers/ThemeController-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/settings/enums/ImageSize-test.ts b/test/unit-tests/settings/enums/ImageSize-test.ts index fdd4b525ac..0d4990978b 100644 --- a/test/unit-tests/settings/enums/ImageSize-test.ts +++ b/test/unit-tests/settings/enums/ImageSize-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts b/test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts index ca22952737..7b86e08517 100644 --- a/test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts +++ b/test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts b/test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts index 43e4ffe037..8c3b1a7435 100644 --- a/test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts +++ b/test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/settings/watchers/FontWatcher-test.tsx b/test/unit-tests/settings/watchers/FontWatcher-test.tsx index ae56d0e4d6..e208498449 100644 --- a/test/unit-tests/settings/watchers/FontWatcher-test.tsx +++ b/test/unit-tests/settings/watchers/FontWatcher-test.tsx @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 r00ster91 Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/settings/watchers/ThemeWatcher-test.tsx b/test/unit-tests/settings/watchers/ThemeWatcher-test.tsx index 2af530361e..3e094e0711 100644 --- a/test/unit-tests/settings/watchers/ThemeWatcher-test.tsx +++ b/test/unit-tests/settings/watchers/ThemeWatcher-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/ActiveWidgetStore-test.ts b/test/unit-tests/stores/ActiveWidgetStore-test.ts index 0447621d04..394ac4b743 100644 --- a/test/unit-tests/stores/ActiveWidgetStore-test.ts +++ b/test/unit-tests/stores/ActiveWidgetStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/AutoRageshakeStore-test.ts b/test/unit-tests/stores/AutoRageshakeStore-test.ts index ca26cb8d5d..cbfd40b7f4 100644 --- a/test/unit-tests/stores/AutoRageshakeStore-test.ts +++ b/test/unit-tests/stores/AutoRageshakeStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/BreadcrumbsStore-test.ts b/test/unit-tests/stores/BreadcrumbsStore-test.ts index 6419d00302..a73a2f6095 100644 --- a/test/unit-tests/stores/BreadcrumbsStore-test.ts +++ b/test/unit-tests/stores/BreadcrumbsStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/InitialCryptoSetupStore-test.ts b/test/unit-tests/stores/InitialCryptoSetupStore-test.ts index 8cfae4d699..32f63edd68 100644 --- a/test/unit-tests/stores/InitialCryptoSetupStore-test.ts +++ b/test/unit-tests/stores/InitialCryptoSetupStore-test.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/LifecycleStore-test.ts b/test/unit-tests/stores/LifecycleStore-test.ts index 468e27a500..4c4b7a3a5d 100644 --- a/test/unit-tests/stores/LifecycleStore-test.ts +++ b/test/unit-tests/stores/LifecycleStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/MemberListStore-test.ts b/test/unit-tests/stores/MemberListStore-test.ts index 470087031a..c61bb90425 100644 --- a/test/unit-tests/stores/MemberListStore-test.ts +++ b/test/unit-tests/stores/MemberListStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/OwnBeaconStore-test.ts b/test/unit-tests/stores/OwnBeaconStore-test.ts index 9a668b7bf8..bd35d03765 100644 --- a/test/unit-tests/stores/OwnBeaconStore-test.ts +++ b/test/unit-tests/stores/OwnBeaconStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/OwnProfileStore-test.ts b/test/unit-tests/stores/OwnProfileStore-test.ts index 290df8113d..57234091d0 100644 --- a/test/unit-tests/stores/OwnProfileStore-test.ts +++ b/test/unit-tests/stores/OwnProfileStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx b/test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx index 919ff22d92..61cfa93f42 100644 --- a/test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx +++ b/test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/RoomNotificationStateStore-test.ts b/test/unit-tests/stores/RoomNotificationStateStore-test.ts index 15c36f8b3d..7787b28b68 100644 --- a/test/unit-tests/stores/RoomNotificationStateStore-test.ts +++ b/test/unit-tests/stores/RoomNotificationStateStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/RoomViewStore-test.ts b/test/unit-tests/stores/RoomViewStore-test.ts index 782bb79738..dc18d68cbd 100644 --- a/test/unit-tests/stores/RoomViewStore-test.ts +++ b/test/unit-tests/stores/RoomViewStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017-2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/SetupEncryptionStore-test.ts b/test/unit-tests/stores/SetupEncryptionStore-test.ts index b0bc3a73d8..0609dbe66f 100644 --- a/test/unit-tests/stores/SetupEncryptionStore-test.ts +++ b/test/unit-tests/stores/SetupEncryptionStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/SpaceStore-test.ts b/test/unit-tests/stores/SpaceStore-test.ts index b5f4ddef4f..27ec09b856 100644 --- a/test/unit-tests/stores/SpaceStore-test.ts +++ b/test/unit-tests/stores/SpaceStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/ToastStore-test.ts b/test/unit-tests/stores/ToastStore-test.ts index cb42f1e093..8332cc823d 100644 --- a/test/unit-tests/stores/ToastStore-test.ts +++ b/test/unit-tests/stores/ToastStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/TypingStore-test.ts b/test/unit-tests/stores/TypingStore-test.ts index 2249b4ff2d..af055a32f9 100644 --- a/test/unit-tests/stores/TypingStore-test.ts +++ b/test/unit-tests/stores/TypingStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/UserProfilesStore-test.ts b/test/unit-tests/stores/UserProfilesStore-test.ts index 0bf4a559c7..8dec46e93b 100644 --- a/test/unit-tests/stores/UserProfilesStore-test.ts +++ b/test/unit-tests/stores/UserProfilesStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/VoiceRecordingStore-test.ts b/test/unit-tests/stores/VoiceRecordingStore-test.ts index 5cdb92f423..8b0ba3d065 100644 --- a/test/unit-tests/stores/VoiceRecordingStore-test.ts +++ b/test/unit-tests/stores/VoiceRecordingStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/WidgetLayoutStore-test.ts b/test/unit-tests/stores/WidgetLayoutStore-test.ts index b2a2ddde64..5697cac331 100644 --- a/test/unit-tests/stores/WidgetLayoutStore-test.ts +++ b/test/unit-tests/stores/WidgetLayoutStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/notifications/NotificationColor-test.ts b/test/unit-tests/stores/notifications/NotificationColor-test.ts index 529fb12518..f6ad12829b 100644 --- a/test/unit-tests/stores/notifications/NotificationColor-test.ts +++ b/test/unit-tests/stores/notifications/NotificationColor-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/notifications/RoomNotificationState-test.ts b/test/unit-tests/stores/notifications/RoomNotificationState-test.ts index 396bb06ec6..88847b42e8 100644 --- a/test/unit-tests/stores/notifications/RoomNotificationState-test.ts +++ b/test/unit-tests/stores/notifications/RoomNotificationState-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/oidc/OidcClientStore-test.ts b/test/unit-tests/stores/oidc/OidcClientStore-test.ts index c7e9476437..8de1d9dad1 100644 --- a/test/unit-tests/stores/oidc/OidcClientStore-test.ts +++ b/test/unit-tests/stores/oidc/OidcClientStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/right-panel/RightPanelStore-test.ts b/test/unit-tests/stores/right-panel/RightPanelStore-test.ts index 27c4d730a9..1897649cee 100644 --- a/test/unit-tests/stores/right-panel/RightPanelStore-test.ts +++ b/test/unit-tests/stores/right-panel/RightPanelStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/right-panel/action-handlers/View3pidInvite-test.ts b/test/unit-tests/stores/right-panel/action-handlers/View3pidInvite-test.ts index 9503bb4ae3..757c1b93b4 100644 --- a/test/unit-tests/stores/right-panel/action-handlers/View3pidInvite-test.ts +++ b/test/unit-tests/stores/right-panel/action-handlers/View3pidInvite-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/room-list/MessagePreviewStore-test.ts b/test/unit-tests/stores/room-list/MessagePreviewStore-test.ts index 861b6dcd11..864fa6c2b4 100644 --- a/test/unit-tests/stores/room-list/MessagePreviewStore-test.ts +++ b/test/unit-tests/stores/room-list/MessagePreviewStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/room-list/RoomListStore-test.ts b/test/unit-tests/stores/room-list/RoomListStore-test.ts index e8aad47a7b..a84ea341bc 100644 --- a/test/unit-tests/stores/room-list/RoomListStore-test.ts +++ b/test/unit-tests/stores/room-list/RoomListStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/room-list/SlidingRoomListStore-test.ts b/test/unit-tests/stores/room-list/SlidingRoomListStore-test.ts index 4b0753ad66..40d8cbbc65 100644 --- a/test/unit-tests/stores/room-list/SlidingRoomListStore-test.ts +++ b/test/unit-tests/stores/room-list/SlidingRoomListStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import { mocked } from "jest-mock"; diff --git a/test/unit-tests/stores/room-list/SpaceWatcher-test.ts b/test/unit-tests/stores/room-list/SpaceWatcher-test.ts index 619b92d4aa..62686c7d3b 100644 --- a/test/unit-tests/stores/room-list/SpaceWatcher-test.ts +++ b/test/unit-tests/stores/room-list/SpaceWatcher-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/room-list/algorithms/Algorithm-test.ts b/test/unit-tests/stores/room-list/algorithms/Algorithm-test.ts index 9a4a518b1d..07a668624c 100644 --- a/test/unit-tests/stores/room-list/algorithms/Algorithm-test.ts +++ b/test/unit-tests/stores/room-list/algorithms/Algorithm-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts b/test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts index e0e06bbaf7..42fe0ca3dd 100644 --- a/test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts +++ b/test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts b/test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts index 7c40f90ef8..5573157b14 100644 --- a/test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts +++ b/test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts b/test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts index 799e196c2a..cf0fd59cd4 100644 --- a/test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts +++ b/test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts b/test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts index 09ea979198..f0a27c43a1 100644 --- a/test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts +++ b/test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts b/test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts index 078f774e48..0ccb70c308 100644 --- a/test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts +++ b/test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts b/test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts index ec97cdd20e..78539d14fb 100644 --- a/test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts +++ b/test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/room-list/previews/PollStartEventPreview-test.ts b/test/unit-tests/stores/room-list/previews/PollStartEventPreview-test.ts index 1d6c5fa310..2b09294c61 100644 --- a/test/unit-tests/stores/room-list/previews/PollStartEventPreview-test.ts +++ b/test/unit-tests/stores/room-list/previews/PollStartEventPreview-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts b/test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts index 7a7ce9e2b3..8e01460abf 100644 --- a/test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts +++ b/test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/room-list/utils/roomMute-test.ts b/test/unit-tests/stores/room-list/utils/roomMute-test.ts index 8c6728772e..9e6009e52a 100644 --- a/test/unit-tests/stores/room-list/utils/roomMute-test.ts +++ b/test/unit-tests/stores/room-list/utils/roomMute-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/widgets/StopGapWidget-test.ts b/test/unit-tests/stores/widgets/StopGapWidget-test.ts index 1416711017..f767c96a02 100644 --- a/test/unit-tests/stores/widgets/StopGapWidget-test.ts +++ b/test/unit-tests/stores/widgets/StopGapWidget-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts b/test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts index f5c0c5fe23..e484d0cc33 100644 --- a/test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts +++ b/test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts b/test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts index cca97bdbc6..1dc9936d89 100644 --- a/test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts +++ b/test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/submit-rageshake-test.ts b/test/unit-tests/submit-rageshake-test.ts index c21e27f88e..44e4e3b517 100644 --- a/test/unit-tests/submit-rageshake-test.ts +++ b/test/unit-tests/submit-rageshake-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/theme-test.ts b/test/unit-tests/theme-test.ts index d2895cbd89..6c2f247e4e 100644 --- a/test/unit-tests/theme-test.ts +++ b/test/unit-tests/theme-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/toasts/IncomingCallToast-test.tsx b/test/unit-tests/toasts/IncomingCallToast-test.tsx index 28ca15943f..2d035c94dd 100644 --- a/test/unit-tests/toasts/IncomingCallToast-test.tsx +++ b/test/unit-tests/toasts/IncomingCallToast-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx b/test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx index 796fb07eac..4b766c6a08 100644 --- a/test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx +++ b/test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import { render } from "jest-matrix-react"; diff --git a/test/unit-tests/toasts/SetupEncryptionToast-test.tsx b/test/unit-tests/toasts/SetupEncryptionToast-test.tsx index 5ce3fab9ae..8917587cc1 100644 --- a/test/unit-tests/toasts/SetupEncryptionToast-test.tsx +++ b/test/unit-tests/toasts/SetupEncryptionToast-test.tsx @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/toasts/UnverifiedSessionToast-test.tsx b/test/unit-tests/toasts/UnverifiedSessionToast-test.tsx index 8b68b3e378..14cacb4629 100644 --- a/test/unit-tests/toasts/UnverifiedSessionToast-test.tsx +++ b/test/unit-tests/toasts/UnverifiedSessionToast-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/useTopic-test.tsx b/test/unit-tests/useTopic-test.tsx index 81afaae985..093bd82658 100644 --- a/test/unit-tests/useTopic-test.tsx +++ b/test/unit-tests/useTopic-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/AnimationUtils-test.ts b/test/unit-tests/utils/AnimationUtils-test.ts index 97a1840dec..196285973a 100644 --- a/test/unit-tests/utils/AnimationUtils-test.ts +++ b/test/unit-tests/utils/AnimationUtils-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/AutoDiscoveryUtils-test.tsx b/test/unit-tests/utils/AutoDiscoveryUtils-test.tsx index 6d60a2fa5f..a49707e310 100644 --- a/test/unit-tests/utils/AutoDiscoveryUtils-test.tsx +++ b/test/unit-tests/utils/AutoDiscoveryUtils-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/DMRoomMap-test.ts b/test/unit-tests/utils/DMRoomMap-test.ts index a59c410373..d8c44da954 100644 --- a/test/unit-tests/utils/DMRoomMap-test.ts +++ b/test/unit-tests/utils/DMRoomMap-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/DateUtils-test.ts b/test/unit-tests/utils/DateUtils-test.ts index 2007c8a05a..edf7fee481 100644 --- a/test/unit-tests/utils/DateUtils-test.ts +++ b/test/unit-tests/utils/DateUtils-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 Šimon Brandner -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/ErrorUtils-test.ts b/test/unit-tests/utils/ErrorUtils-test.ts index 0a61bb053f..f3ede81eb7 100644 --- a/test/unit-tests/utils/ErrorUtils-test.ts +++ b/test/unit-tests/utils/ErrorUtils-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/EventUtils-test.ts b/test/unit-tests/utils/EventUtils-test.ts index c7828c3a2f..94f1c6d262 100644 --- a/test/unit-tests/utils/EventUtils-test.ts +++ b/test/unit-tests/utils/EventUtils-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/Feedback-test.ts b/test/unit-tests/utils/Feedback-test.ts index 249b55b2b1..a0e04df2e8 100644 --- a/test/unit-tests/utils/Feedback-test.ts +++ b/test/unit-tests/utils/Feedback-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/FileUtils-test.ts b/test/unit-tests/utils/FileUtils-test.ts index 0b77aa2317..c15c58fd87 100644 --- a/test/unit-tests/utils/FileUtils-test.ts +++ b/test/unit-tests/utils/FileUtils-test.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/FixedRollingArray-test.ts b/test/unit-tests/utils/FixedRollingArray-test.ts index 7e01c310ac..51b4748a82 100644 --- a/test/unit-tests/utils/FixedRollingArray-test.ts +++ b/test/unit-tests/utils/FixedRollingArray-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/FormattingUtils-test.tsx b/test/unit-tests/utils/FormattingUtils-test.tsx index 794086a62a..1b5aedda53 100644 --- a/test/unit-tests/utils/FormattingUtils-test.tsx +++ b/test/unit-tests/utils/FormattingUtils-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/LruCache-test.ts b/test/unit-tests/utils/LruCache-test.ts index 177527ba46..3090c22ace 100644 --- a/test/unit-tests/utils/LruCache-test.ts +++ b/test/unit-tests/utils/LruCache-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/MegolmExportEncryption-test.ts b/test/unit-tests/utils/MegolmExportEncryption-test.ts index 416f5f9bed..0d963ec11a 100644 --- a/test/unit-tests/utils/MegolmExportEncryption-test.ts +++ b/test/unit-tests/utils/MegolmExportEncryption-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/MessageDiffUtils-test.tsx b/test/unit-tests/utils/MessageDiffUtils-test.tsx index 5094ffc45c..08ac1d5209 100644 --- a/test/unit-tests/utils/MessageDiffUtils-test.tsx +++ b/test/unit-tests/utils/MessageDiffUtils-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/MultiInviter-test.ts b/test/unit-tests/utils/MultiInviter-test.ts index 774b882c02..15d1fc2dbb 100644 --- a/test/unit-tests/utils/MultiInviter-test.ts +++ b/test/unit-tests/utils/MultiInviter-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/PhasedRolloutFeature-test.ts b/test/unit-tests/utils/PhasedRolloutFeature-test.ts index 013189c872..3e4a75a1b2 100644 --- a/test/unit-tests/utils/PhasedRolloutFeature-test.ts +++ b/test/unit-tests/utils/PhasedRolloutFeature-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/PinningUtils-test.ts b/test/unit-tests/utils/PinningUtils-test.ts index 537c31dd63..59436ce48d 100644 --- a/test/unit-tests/utils/PinningUtils-test.ts +++ b/test/unit-tests/utils/PinningUtils-test.ts @@ -2,7 +2,7 @@ * Copyright 2024 New Vector Ltd. * Copyright 2024 The Matrix.org Foundation C.I.C. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/SearchInput-test.ts b/test/unit-tests/utils/SearchInput-test.ts index fa09e79c2a..79786601a5 100644 --- a/test/unit-tests/utils/SearchInput-test.ts +++ b/test/unit-tests/utils/SearchInput-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 Boluwatife Omosowon -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import { mocked } from "jest-mock"; diff --git a/test/unit-tests/utils/SessionLock-test.ts b/test/unit-tests/utils/SessionLock-test.ts index 9bb5c05a6b..fb3ab7e6ea 100644 --- a/test/unit-tests/utils/SessionLock-test.ts +++ b/test/unit-tests/utils/SessionLock-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/ShieldUtils-test.ts b/test/unit-tests/utils/ShieldUtils-test.ts index 7b29aa44c3..02c69444dc 100644 --- a/test/unit-tests/utils/ShieldUtils-test.ts +++ b/test/unit-tests/utils/ShieldUtils-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/Singleflight-test.ts b/test/unit-tests/utils/Singleflight-test.ts index 7da5c8d351..58e15f2060 100644 --- a/test/unit-tests/utils/Singleflight-test.ts +++ b/test/unit-tests/utils/Singleflight-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/SnakedObject-test.ts b/test/unit-tests/utils/SnakedObject-test.ts index b1d7c16b9b..d0195aef39 100644 --- a/test/unit-tests/utils/SnakedObject-test.ts +++ b/test/unit-tests/utils/SnakedObject-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/StorageAccess-test.ts b/test/unit-tests/utils/StorageAccess-test.ts index 6a20827d68..73a5454bae 100644 --- a/test/unit-tests/utils/StorageAccess-test.ts +++ b/test/unit-tests/utils/StorageAccess-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/StorageManager-test.ts b/test/unit-tests/utils/StorageManager-test.ts index d028784e9d..99713e7b86 100644 --- a/test/unit-tests/utils/StorageManager-test.ts +++ b/test/unit-tests/utils/StorageManager-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2024 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/UrlUtils-test.ts b/test/unit-tests/utils/UrlUtils-test.ts index e99dbf8059..649b7ab7cf 100644 --- a/test/unit-tests/utils/UrlUtils-test.ts +++ b/test/unit-tests/utils/UrlUtils-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/WidgetUtils-test.ts b/test/unit-tests/utils/WidgetUtils-test.ts index fd900b9898..b9c7e95f9d 100644 --- a/test/unit-tests/utils/WidgetUtils-test.ts +++ b/test/unit-tests/utils/WidgetUtils-test.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 Oliver Sand Copyright 2022 Nordeck IT + Consulting GmbH. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/arrays-test.ts b/test/unit-tests/utils/arrays-test.ts index 7e440d3ee5..93cf56d3b9 100644 --- a/test/unit-tests/utils/arrays-test.ts +++ b/test/unit-tests/utils/arrays-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/beacon/bounds-test.ts b/test/unit-tests/utils/beacon/bounds-test.ts index 133e86f83b..b517a4910d 100644 --- a/test/unit-tests/utils/beacon/bounds-test.ts +++ b/test/unit-tests/utils/beacon/bounds-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/beacon/duration-test.ts b/test/unit-tests/utils/beacon/duration-test.ts index 044af296c7..da17d6cbb4 100644 --- a/test/unit-tests/utils/beacon/duration-test.ts +++ b/test/unit-tests/utils/beacon/duration-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/beacon/geolocation-test.ts b/test/unit-tests/utils/beacon/geolocation-test.ts index a1a71155de..f509434772 100644 --- a/test/unit-tests/utils/beacon/geolocation-test.ts +++ b/test/unit-tests/utils/beacon/geolocation-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/beacon/timeline-test.ts b/test/unit-tests/utils/beacon/timeline-test.ts index 01748cd146..0c7306bf4f 100644 --- a/test/unit-tests/utils/beacon/timeline-test.ts +++ b/test/unit-tests/utils/beacon/timeline-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/colour-test.ts b/test/unit-tests/utils/colour-test.ts index 52490f82a3..7ba966e25e 100644 --- a/test/unit-tests/utils/colour-test.ts +++ b/test/unit-tests/utils/colour-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 Emmanuel Ezeka -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/connection-test.ts b/test/unit-tests/utils/connection-test.ts index b8f10bb222..f39c5164e4 100644 --- a/test/unit-tests/utils/connection-test.ts +++ b/test/unit-tests/utils/connection-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/createVoiceMessageContent-test.ts b/test/unit-tests/utils/createVoiceMessageContent-test.ts index c37c4d1bd0..6790104fc6 100644 --- a/test/unit-tests/utils/createVoiceMessageContent-test.ts +++ b/test/unit-tests/utils/createVoiceMessageContent-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/crypto/deviceInfo-test.ts b/test/unit-tests/utils/crypto/deviceInfo-test.ts index 0e1094d485..a5348781fd 100644 --- a/test/unit-tests/utils/crypto/deviceInfo-test.ts +++ b/test/unit-tests/utils/crypto/deviceInfo-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts b/test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts index a15184028e..f4a3048f51 100644 --- a/test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts +++ b/test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/device/clientInformation-test.ts b/test/unit-tests/utils/device/clientInformation-test.ts index 78f7627c5f..c85dbba4e6 100644 --- a/test/unit-tests/utils/device/clientInformation-test.ts +++ b/test/unit-tests/utils/device/clientInformation-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/device/parseUserAgent-test.ts b/test/unit-tests/utils/device/parseUserAgent-test.ts index efebae0abd..26cdb22a37 100644 --- a/test/unit-tests/utils/device/parseUserAgent-test.ts +++ b/test/unit-tests/utils/device/parseUserAgent-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts b/test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts index b726e84ead..268176df29 100644 --- a/test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts +++ b/test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/direct-messages-test.ts b/test/unit-tests/utils/direct-messages-test.ts index ce6dc7805a..cebb80db95 100644 --- a/test/unit-tests/utils/direct-messages-test.ts +++ b/test/unit-tests/utils/direct-messages-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/dm/createDmLocalRoom-test.ts b/test/unit-tests/utils/dm/createDmLocalRoom-test.ts index 0dca0daa01..f42804489d 100644 --- a/test/unit-tests/utils/dm/createDmLocalRoom-test.ts +++ b/test/unit-tests/utils/dm/createDmLocalRoom-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/dm/filterValidMDirect-test.ts b/test/unit-tests/utils/dm/filterValidMDirect-test.ts index 4eb450a43f..ee21ed338a 100644 --- a/test/unit-tests/utils/dm/filterValidMDirect-test.ts +++ b/test/unit-tests/utils/dm/filterValidMDirect-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/dm/findDMForUser-test.ts b/test/unit-tests/utils/dm/findDMForUser-test.ts index 55abd07460..1e12eebcd1 100644 --- a/test/unit-tests/utils/dm/findDMForUser-test.ts +++ b/test/unit-tests/utils/dm/findDMForUser-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/dm/findDMRoom-test.ts b/test/unit-tests/utils/dm/findDMRoom-test.ts index c21d935554..17efd31d9c 100644 --- a/test/unit-tests/utils/dm/findDMRoom-test.ts +++ b/test/unit-tests/utils/dm/findDMRoom-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/enums-test.ts b/test/unit-tests/utils/enums-test.ts index 2596659c17..b431e2de3e 100644 --- a/test/unit-tests/utils/enums-test.ts +++ b/test/unit-tests/utils/enums-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/export-test.tsx b/test/unit-tests/utils/export-test.tsx index e8231a3998..3ff63da4b3 100644 --- a/test/unit-tests/utils/export-test.tsx +++ b/test/unit-tests/utils/export-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/exportUtils/HTMLExport-test.ts b/test/unit-tests/utils/exportUtils/HTMLExport-test.ts index d169b55a7c..e2ee0b670e 100644 --- a/test/unit-tests/utils/exportUtils/HTMLExport-test.ts +++ b/test/unit-tests/utils/exportUtils/HTMLExport-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022, 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/exportUtils/JSONExport-test.ts b/test/unit-tests/utils/exportUtils/JSONExport-test.ts index 2f01018727..0dcf49059d 100644 --- a/test/unit-tests/utils/exportUtils/JSONExport-test.ts +++ b/test/unit-tests/utils/exportUtils/JSONExport-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/exportUtils/PlainTextExport-test.ts b/test/unit-tests/utils/exportUtils/PlainTextExport-test.ts index 563c060dff..4b28c5bfb4 100644 --- a/test/unit-tests/utils/exportUtils/PlainTextExport-test.ts +++ b/test/unit-tests/utils/exportUtils/PlainTextExport-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/exportUtils/exportCSS-test.ts b/test/unit-tests/utils/exportUtils/exportCSS-test.ts index 28e49e81fa..0cf154e9be 100644 --- a/test/unit-tests/utils/exportUtils/exportCSS-test.ts +++ b/test/unit-tests/utils/exportUtils/exportCSS-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/i18n-helpers-test.ts b/test/unit-tests/utils/i18n-helpers-test.ts index 68c94fb9f9..04e7212264 100644 --- a/test/unit-tests/utils/i18n-helpers-test.ts +++ b/test/unit-tests/utils/i18n-helpers-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/iterables-test.ts b/test/unit-tests/utils/iterables-test.ts index 6ff175b95a..963f6efd82 100644 --- a/test/unit-tests/utils/iterables-test.ts +++ b/test/unit-tests/utils/iterables-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/leave-behaviour-test.ts b/test/unit-tests/utils/leave-behaviour-test.ts index 996c53ed05..f42fc07233 100644 --- a/test/unit-tests/utils/leave-behaviour-test.ts +++ b/test/unit-tests/utils/leave-behaviour-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/local-room-test.ts b/test/unit-tests/utils/local-room-test.ts index 2789bf65a3..91219dcb58 100644 --- a/test/unit-tests/utils/local-room-test.ts +++ b/test/unit-tests/utils/local-room-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/localRoom/isLocalRoom-test.ts b/test/unit-tests/utils/localRoom/isLocalRoom-test.ts index 016da52b40..2d11f4e523 100644 --- a/test/unit-tests/utils/localRoom/isLocalRoom-test.ts +++ b/test/unit-tests/utils/localRoom/isLocalRoom-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/localRoom/isRoomReady-test.ts b/test/unit-tests/utils/localRoom/isRoomReady-test.ts index aff645aa04..2effc7c6a9 100644 --- a/test/unit-tests/utils/localRoom/isRoomReady-test.ts +++ b/test/unit-tests/utils/localRoom/isRoomReady-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/location/isSelfLocation-test.ts b/test/unit-tests/utils/location/isSelfLocation-test.ts index 5115468f32..6cccc63f72 100644 --- a/test/unit-tests/utils/location/isSelfLocation-test.ts +++ b/test/unit-tests/utils/location/isSelfLocation-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/location/locationEventGeoUri-test.ts b/test/unit-tests/utils/location/locationEventGeoUri-test.ts index c48478c8ec..c1c77f2844 100644 --- a/test/unit-tests/utils/location/locationEventGeoUri-test.ts +++ b/test/unit-tests/utils/location/locationEventGeoUri-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/location/map-test.ts b/test/unit-tests/utils/location/map-test.ts index b6f9012c6c..c2dcf75118 100644 --- a/test/unit-tests/utils/location/map-test.ts +++ b/test/unit-tests/utils/location/map-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/location/parseGeoUri-test.ts b/test/unit-tests/utils/location/parseGeoUri-test.ts index 565133b775..608ed52ba0 100644 --- a/test/unit-tests/utils/location/parseGeoUri-test.ts +++ b/test/unit-tests/utils/location/parseGeoUri-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/location/positionFailureMessage-test.ts b/test/unit-tests/utils/location/positionFailureMessage-test.ts index 3936d9cea1..f3eeacb83e 100644 --- a/test/unit-tests/utils/location/positionFailureMessage-test.ts +++ b/test/unit-tests/utils/location/positionFailureMessage-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/login-test.ts b/test/unit-tests/utils/login-test.ts index f09152f4e2..b1f488c29f 100644 --- a/test/unit-tests/utils/login-test.ts +++ b/test/unit-tests/utils/login-test.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/maps-test.ts b/test/unit-tests/utils/maps-test.ts index 426381bd3e..619766e679 100644 --- a/test/unit-tests/utils/maps-test.ts +++ b/test/unit-tests/utils/maps-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/media/requestMediaPermissions-test.tsx b/test/unit-tests/utils/media/requestMediaPermissions-test.tsx index 0683ad1b67..a4cc3b7685 100644 --- a/test/unit-tests/utils/media/requestMediaPermissions-test.tsx +++ b/test/unit-tests/utils/media/requestMediaPermissions-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/membership-test.ts b/test/unit-tests/utils/membership-test.ts index 92daf230ff..c63dbe9074 100644 --- a/test/unit-tests/utils/membership-test.ts +++ b/test/unit-tests/utils/membership-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/notifications-test.ts b/test/unit-tests/utils/notifications-test.ts index 2432d477a9..eeec145a36 100644 --- a/test/unit-tests/utils/notifications-test.ts +++ b/test/unit-tests/utils/notifications-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/numbers-test.ts b/test/unit-tests/utils/numbers-test.ts index 4b29cc66b0..1de68ce499 100644 --- a/test/unit-tests/utils/numbers-test.ts +++ b/test/unit-tests/utils/numbers-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/objects-test.ts b/test/unit-tests/utils/objects-test.ts index ddae6d2365..48d5ca84fe 100644 --- a/test/unit-tests/utils/objects-test.ts +++ b/test/unit-tests/utils/objects-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/oidc/TokenRefresher-test.ts b/test/unit-tests/utils/oidc/TokenRefresher-test.ts index d318f45e50..643f61faac 100644 --- a/test/unit-tests/utils/oidc/TokenRefresher-test.ts +++ b/test/unit-tests/utils/oidc/TokenRefresher-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/oidc/authorize-test.ts b/test/unit-tests/utils/oidc/authorize-test.ts index 30faa269c5..72c42fab37 100644 --- a/test/unit-tests/utils/oidc/authorize-test.ts +++ b/test/unit-tests/utils/oidc/authorize-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/oidc/persistOidcSettings-test.ts b/test/unit-tests/utils/oidc/persistOidcSettings-test.ts index e3971f24d6..4ffbfd43b2 100644 --- a/test/unit-tests/utils/oidc/persistOidcSettings-test.ts +++ b/test/unit-tests/utils/oidc/persistOidcSettings-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/oidc/registerClient-test.ts b/test/unit-tests/utils/oidc/registerClient-test.ts index a90997598b..0c6a41bc36 100644 --- a/test/unit-tests/utils/oidc/registerClient-test.ts +++ b/test/unit-tests/utils/oidc/registerClient-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/permalinks/MatrixSchemePermalinkConstructor-test.ts b/test/unit-tests/utils/permalinks/MatrixSchemePermalinkConstructor-test.ts index bdebde4a2e..514ff7bdb7 100644 --- a/test/unit-tests/utils/permalinks/MatrixSchemePermalinkConstructor-test.ts +++ b/test/unit-tests/utils/permalinks/MatrixSchemePermalinkConstructor-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts b/test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts index b03e242ca5..92f005d0d9 100644 --- a/test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts +++ b/test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/permalinks/Permalinks-test.ts b/test/unit-tests/utils/permalinks/Permalinks-test.ts index 6e1b4dcdd0..c961ff2646 100644 --- a/test/unit-tests/utils/permalinks/Permalinks-test.ts +++ b/test/unit-tests/utils/permalinks/Permalinks-test.ts @@ -3,7 +3,7 @@ Copyright 2024 New Vector Ltd. Copyright 2019-2022 The Matrix.org Foundation C.I.C. Copyright 2018 New Vector Ltd -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/pillify-test.tsx b/test/unit-tests/utils/pillify-test.tsx index 3fc25a2192..4cca311c57 100644 --- a/test/unit-tests/utils/pillify-test.tsx +++ b/test/unit-tests/utils/pillify-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/promise-test.ts b/test/unit-tests/utils/promise-test.ts index 343a46d7ed..5761c8f881 100644 --- a/test/unit-tests/utils/promise-test.ts +++ b/test/unit-tests/utils/promise-test.ts @@ -1,9 +1,8 @@ /* * Copyright 2024 New Vector Ltd. * - * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only + * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial * Please see LICENSE files in the repository root for full details. - * */ import { batch } from "../../../src/utils/promise.ts"; diff --git a/test/unit-tests/utils/room/canInviteTo-test.ts b/test/unit-tests/utils/room/canInviteTo-test.ts index f22a08fc68..2340c667dd 100644 --- a/test/unit-tests/utils/room/canInviteTo-test.ts +++ b/test/unit-tests/utils/room/canInviteTo-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts b/test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts index 19cac7b6da..bd31269d33 100644 --- a/test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts +++ b/test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts b/test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts index 8d8ac50f83..4f910f9283 100644 --- a/test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts +++ b/test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/room/inviteToRoom-test.ts b/test/unit-tests/utils/room/inviteToRoom-test.ts index b419ac399d..bee74e2d1b 100644 --- a/test/unit-tests/utils/room/inviteToRoom-test.ts +++ b/test/unit-tests/utils/room/inviteToRoom-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts b/test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts index d879c10e71..290dc8cf6c 100644 --- a/test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts +++ b/test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/room/tagRoom-test.ts b/test/unit-tests/utils/room/tagRoom-test.ts index 1bfb722509..41dc9ef115 100644 --- a/test/unit-tests/utils/room/tagRoom-test.ts +++ b/test/unit-tests/utils/room/tagRoom-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/rooms-test.ts b/test/unit-tests/utils/rooms-test.ts index c3f9245f7a..7f90b32fae 100644 --- a/test/unit-tests/utils/rooms-test.ts +++ b/test/unit-tests/utils/rooms-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/sets-test.ts b/test/unit-tests/utils/sets-test.ts index 1fecccd4fb..20889aa611 100644 --- a/test/unit-tests/utils/sets-test.ts +++ b/test/unit-tests/utils/sets-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/stringOrderField-test.ts b/test/unit-tests/utils/stringOrderField-test.ts index 84f29aed6a..e5c5c5f050 100644 --- a/test/unit-tests/utils/stringOrderField-test.ts +++ b/test/unit-tests/utils/stringOrderField-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/threepids-test.ts b/test/unit-tests/utils/threepids-test.ts index 3270431cbd..01b580abb0 100644 --- a/test/unit-tests/utils/threepids-test.ts +++ b/test/unit-tests/utils/threepids-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/tooltipify-test.tsx b/test/unit-tests/utils/tooltipify-test.tsx index faac68ff9d..459cf2d2bf 100644 --- a/test/unit-tests/utils/tooltipify-test.tsx +++ b/test/unit-tests/utils/tooltipify-test.tsx @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/utils/validate/numberInRange-test.ts b/test/unit-tests/utils/validate/numberInRange-test.ts index ca52a7c332..d62045ac68 100644 --- a/test/unit-tests/utils/validate/numberInRange-test.ts +++ b/test/unit-tests/utils/validate/numberInRange-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/vector/getconfig-test.ts b/test/unit-tests/vector/getconfig-test.ts index cba19d5ae6..9a2cfbd3c3 100644 --- a/test/unit-tests/vector/getconfig-test.ts +++ b/test/unit-tests/vector/getconfig-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/vector/init-test.ts b/test/unit-tests/vector/init-test.ts index 65b2ddac1c..7f7d760360 100644 --- a/test/unit-tests/vector/init-test.ts +++ b/test/unit-tests/vector/init-test.ts @@ -1,7 +1,7 @@ /* Copyright 2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/vector/platform/ElectronPlatform-test.ts b/test/unit-tests/vector/platform/ElectronPlatform-test.ts index f6c2008de8..2633d15b14 100644 --- a/test/unit-tests/vector/platform/ElectronPlatform-test.ts +++ b/test/unit-tests/vector/platform/ElectronPlatform-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/vector/platform/PWAPlatform-test.ts b/test/unit-tests/vector/platform/PWAPlatform-test.ts index 8e1eb0e9cb..3ab3e97415 100644 --- a/test/unit-tests/vector/platform/PWAPlatform-test.ts +++ b/test/unit-tests/vector/platform/PWAPlatform-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/vector/platform/WebPlatform-test.ts b/test/unit-tests/vector/platform/WebPlatform-test.ts index 93a6a07eb6..b47f2d5537 100644 --- a/test/unit-tests/vector/platform/WebPlatform-test.ts +++ b/test/unit-tests/vector/platform/WebPlatform-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/vector/routing-test.ts b/test/unit-tests/vector/routing-test.ts index 8a1238a14f..09b2df1d12 100644 --- a/test/unit-tests/vector/routing-test.ts +++ b/test/unit-tests/vector/routing-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/vector/url_utils-test.ts b/test/unit-tests/vector/url_utils-test.ts index f440834c6c..242ca9ace9 100644 --- a/test/unit-tests/vector/url_utils-test.ts +++ b/test/unit-tests/vector/url_utils-test.ts @@ -1,7 +1,7 @@ /* Copyright 2020-2024 New Vector Ltd. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ diff --git a/test/unit-tests/widgets/ManagedHybrid-test.ts b/test/unit-tests/widgets/ManagedHybrid-test.ts index b07178ce4f..53a4c302c3 100644 --- a/test/unit-tests/widgets/ManagedHybrid-test.ts +++ b/test/unit-tests/widgets/ManagedHybrid-test.ts @@ -2,7 +2,7 @@ Copyright 2024 New Vector Ltd. Copyright 2023 The Matrix.org Foundation C.I.C. -SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only +SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */