From df9c1fed2a0caf69a68ce0a3df7d304ae5c49e9b Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 3 Jan 2023 16:55:26 +0000 Subject: [PATCH 1/2] Fix copyright headers This is an Element project (in the vector-im repo) so the Copyright should be for New Vector: it was incorrectly attributed to the foundation for some files (and some files were missing headers). --- src/@types/global.d.ts | 2 +- src/@types/modules.d.ts | 16 ++++++++++++++++ src/Avatar.tsx | 16 ++++++++++++++++ src/FullScreenView.tsx | 16 ++++++++++++++++ src/Header.tsx | 16 ++++++++++++++++ src/IndexedDBWorker.ts | 16 ++++++++++++++++ src/LazyEventEmitter.ts | 2 +- src/Menu.tsx | 16 ++++++++++++++++ src/PosthogAnalytics.ts | 2 +- src/PosthogEvents.ts | 2 +- src/UserMenu.tsx | 16 ++++++++++++++++ src/UserMenuContainer.tsx | 16 ++++++++++++++++ src/auth/generateRandomName.ts | 2 +- src/auth/useInteractiveLogin.ts | 2 +- src/auth/useInteractiveRegistration.ts | 2 +- src/auth/useRecaptcha.ts | 2 +- src/auth/useRegisterPasswordlessUser.ts | 2 +- src/button/Button.tsx | 2 +- src/button/CopyButton.tsx | 2 +- src/button/LinkButton.tsx | 2 +- src/button/index.ts | 2 +- src/config/ConfigOptions.ts | 16 ++++++++++++++++ src/form/Form.tsx | 2 +- src/home/CallList.tsx | 2 +- src/home/CallTypeDropdown.tsx | 2 +- src/home/JoinExistingCallModal.tsx | 2 +- src/home/RegisteredView.tsx | 2 +- src/home/UnauthenticatedView.tsx | 2 +- src/home/useGroupCallRooms.ts | 2 +- src/initializer.tsx | 2 +- src/input/AvatarInputField.tsx | 2 +- src/input/Input.tsx | 2 +- src/input/SelectInput.tsx | 2 +- src/input/Toggle.tsx | 2 +- src/matrix-utils.ts | 16 ++++++++++++++++ src/media-utils.ts | 2 +- src/popover/Popover.tsx | 2 +- src/popover/PopoverMenu.tsx | 2 +- src/profile/ProfileModal.tsx | 2 +- src/profile/useProfile.ts | 2 +- src/room/AudioPreview.tsx | 2 +- src/room/CallEndedView.tsx | 2 +- src/room/FeedbackModal.tsx | 2 +- src/room/GridLayoutMenu.tsx | 2 +- src/room/GroupCallInspector.tsx | 2 +- src/room/GroupCallLoader.tsx | 2 +- src/room/GroupCallView.tsx | 2 +- src/room/InCallView.tsx | 2 +- src/room/InviteModal.tsx | 2 +- src/room/LobbyView.tsx | 2 +- src/room/OverflowMenu.tsx | 2 +- src/room/PTTButton.tsx | 2 +- src/room/PTTCallView.tsx | 2 +- src/room/PTTFeed.tsx | 2 +- src/room/RageshakeRequestModal.tsx | 2 +- src/room/RoomAuthView.tsx | 2 +- src/room/RoomRedirect.tsx | 2 +- src/room/Timer.tsx | 2 +- src/room/VideoPreview.tsx | 2 +- src/room/useGroupCall.ts | 2 +- src/room/useLoadGroupCall.ts | 2 +- src/room/usePTT.ts | 2 +- src/room/usePageUnload.ts | 2 +- src/room/useSentryGroupCallHandler.ts | 2 +- src/settings/SettingsModal.tsx | 2 +- src/settings/rageshake.ts | 18 +++++++++++++++++- src/settings/submit-rageshake.ts | 2 +- src/settings/useMediaHandler.tsx | 18 +++++++++++++++++- src/sound/PTTClips.tsx | 2 +- src/sound/usePttSounds.ts | 2 +- src/tabs/Tabs.stories.tsx | 2 +- src/tabs/Tabs.tsx | 2 +- src/typography/Typography.stories.tsx | 2 +- src/typography/Typography.tsx | 2 +- src/useLocationNavigation.ts | 16 ++++++++++++++++ src/usePageFocusStyle.ts | 16 ++++++++++++++++ src/video-grid/VideoGrid.stories.tsx | 2 +- src/video-grid/VideoGrid.tsx | 2 +- src/video-grid/VideoTile.tsx | 2 +- src/video-grid/VideoTileContainer.tsx | 2 +- src/video-grid/useCallFeed.ts | 2 +- src/video-grid/useMediaStream.ts | 2 +- src/video-grid/useRoomMemberName.ts | 2 +- 83 files changed, 295 insertions(+), 71 deletions(-) diff --git a/src/@types/global.d.ts b/src/@types/global.d.ts index bd3cf39e..ed7609e0 100644 --- a/src/@types/global.d.ts +++ b/src/@types/global.d.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/@types/modules.d.ts b/src/@types/modules.d.ts index b1f45c78..071d0369 100644 --- a/src/@types/modules.d.ts +++ b/src/@types/modules.d.ts @@ -1,2 +1,18 @@ +/* +Copyright 2022 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. +*/ + /// /// diff --git a/src/Avatar.tsx b/src/Avatar.tsx index a4aa826d..a6d151f6 100644 --- a/src/Avatar.tsx +++ b/src/Avatar.tsx @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + import React, { useMemo, CSSProperties } from "react"; import classNames from "classnames"; import { MatrixClient } from "matrix-js-sdk/src/client"; diff --git a/src/FullScreenView.tsx b/src/FullScreenView.tsx index d3a1caf8..774e55a9 100644 --- a/src/FullScreenView.tsx +++ b/src/FullScreenView.tsx @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + import React, { ReactNode, useCallback, useEffect } from "react"; import { useLocation } from "react-router-dom"; import classNames from "classnames"; diff --git a/src/Header.tsx b/src/Header.tsx index 9be8c806..7ccf8666 100644 --- a/src/Header.tsx +++ b/src/Header.tsx @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + import classNames from "classnames"; import React, { HTMLAttributes, ReactNode, useCallback, useRef } from "react"; import { Link } from "react-router-dom"; diff --git a/src/IndexedDBWorker.ts b/src/IndexedDBWorker.ts index a9ddecde..43f65dfe 100644 --- a/src/IndexedDBWorker.ts +++ b/src/IndexedDBWorker.ts @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + import { IndexedDBStoreWorker } from "matrix-js-sdk/src/indexeddb-worker"; // eslint-disable-next-line @typescript-eslint/no-explicit-any diff --git a/src/LazyEventEmitter.ts b/src/LazyEventEmitter.ts index bbe68c75..121eebf6 100644 --- a/src/LazyEventEmitter.ts +++ b/src/LazyEventEmitter.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/Menu.tsx b/src/Menu.tsx index 82159bd2..0a995afa 100644 --- a/src/Menu.tsx +++ b/src/Menu.tsx @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + import React, { Key, useRef, useState } from "react"; import { AriaMenuOptions, useMenu, useMenuItem } from "@react-aria/menu"; import { TreeState, useTreeState } from "@react-stately/tree"; diff --git a/src/PosthogAnalytics.ts b/src/PosthogAnalytics.ts index 9e5b2456..f0155146 100644 --- a/src/PosthogAnalytics.ts +++ b/src/PosthogAnalytics.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 The Matrix.org Foundation C.I.C. +Copyright 2022 The 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. diff --git a/src/PosthogEvents.ts b/src/PosthogEvents.ts index c30cc3d4..8d867338 100644 --- a/src/PosthogEvents.ts +++ b/src/PosthogEvents.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 The Matrix.org Foundation C.I.C. +Copyright 2022 The 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. diff --git a/src/UserMenu.tsx b/src/UserMenu.tsx index fac4a867..36cad0de 100644 --- a/src/UserMenu.tsx +++ b/src/UserMenu.tsx @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + import React, { useCallback, useMemo } from "react"; import { Item } from "@react-stately/collections"; import { useLocation } from "react-router-dom"; diff --git a/src/UserMenuContainer.tsx b/src/UserMenuContainer.tsx index 437d3b73..e2c57cae 100644 --- a/src/UserMenuContainer.tsx +++ b/src/UserMenuContainer.tsx @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + import React, { useCallback } from "react"; import { useHistory, useLocation } from "react-router-dom"; diff --git a/src/auth/generateRandomName.ts b/src/auth/generateRandomName.ts index 2232d356..543704a8 100644 --- a/src/auth/generateRandomName.ts +++ b/src/auth/generateRandomName.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/auth/useInteractiveLogin.ts b/src/auth/useInteractiveLogin.ts index 4db466e6..81b923f9 100644 --- a/src/auth/useInteractiveLogin.ts +++ b/src/auth/useInteractiveLogin.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/auth/useInteractiveRegistration.ts b/src/auth/useInteractiveRegistration.ts index bfc7b2a6..156842b0 100644 --- a/src/auth/useInteractiveRegistration.ts +++ b/src/auth/useInteractiveRegistration.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/auth/useRecaptcha.ts b/src/auth/useRecaptcha.ts index 50d23c8c..ef3c7c26 100644 --- a/src/auth/useRecaptcha.ts +++ b/src/auth/useRecaptcha.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/auth/useRegisterPasswordlessUser.ts b/src/auth/useRegisterPasswordlessUser.ts index 73189471..04781405 100644 --- a/src/auth/useRegisterPasswordlessUser.ts +++ b/src/auth/useRegisterPasswordlessUser.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/button/Button.tsx b/src/button/Button.tsx index 80220ff8..78b8299b 100644 --- a/src/button/Button.tsx +++ b/src/button/Button.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/button/CopyButton.tsx b/src/button/CopyButton.tsx index 281d3cb5..7453e458 100644 --- a/src/button/CopyButton.tsx +++ b/src/button/CopyButton.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/button/LinkButton.tsx b/src/button/LinkButton.tsx index 1aaf5411..e918965b 100644 --- a/src/button/LinkButton.tsx +++ b/src/button/LinkButton.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/button/index.ts b/src/button/index.ts index fb2cf8ce..cbbbb0ca 100644 --- a/src/button/index.ts +++ b/src/button/index.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/config/ConfigOptions.ts b/src/config/ConfigOptions.ts index e799d59d..e46ffece 100644 --- a/src/config/ConfigOptions.ts +++ b/src/config/ConfigOptions.ts @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + export interface ConfigOptions { /** * The Posthog endpoint to which analytics data will be sent. diff --git a/src/form/Form.tsx b/src/form/Form.tsx index 55dadaed..beea4c86 100644 --- a/src/form/Form.tsx +++ b/src/form/Form.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/home/CallList.tsx b/src/home/CallList.tsx index 55819616..b2a7774d 100644 --- a/src/home/CallList.tsx +++ b/src/home/CallList.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/home/CallTypeDropdown.tsx b/src/home/CallTypeDropdown.tsx index 5ee4ec24..991c528b 100644 --- a/src/home/CallTypeDropdown.tsx +++ b/src/home/CallTypeDropdown.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/home/JoinExistingCallModal.tsx b/src/home/JoinExistingCallModal.tsx index b04c6ae5..0beae60e 100644 --- a/src/home/JoinExistingCallModal.tsx +++ b/src/home/JoinExistingCallModal.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/home/RegisteredView.tsx b/src/home/RegisteredView.tsx index af72e319..4f96c42e 100644 --- a/src/home/RegisteredView.tsx +++ b/src/home/RegisteredView.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/home/UnauthenticatedView.tsx b/src/home/UnauthenticatedView.tsx index a84a7b2b..089156cf 100644 --- a/src/home/UnauthenticatedView.tsx +++ b/src/home/UnauthenticatedView.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/home/useGroupCallRooms.ts b/src/home/useGroupCallRooms.ts index b4011e52..fcbe67ff 100644 --- a/src/home/useGroupCallRooms.ts +++ b/src/home/useGroupCallRooms.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/initializer.tsx b/src/initializer.tsx index 63b90fca..3de39de5 100644 --- a/src/initializer.tsx +++ b/src/initializer.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/input/AvatarInputField.tsx b/src/input/AvatarInputField.tsx index a9778396..aec4880f 100644 --- a/src/input/AvatarInputField.tsx +++ b/src/input/AvatarInputField.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/input/Input.tsx b/src/input/Input.tsx index acec7d3c..bfc17d74 100644 --- a/src/input/Input.tsx +++ b/src/input/Input.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/input/SelectInput.tsx b/src/input/SelectInput.tsx index e3c47741..dcce2d39 100644 --- a/src/input/SelectInput.tsx +++ b/src/input/SelectInput.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/input/Toggle.tsx b/src/input/Toggle.tsx index 6b1a6b63..19fe7572 100644 --- a/src/input/Toggle.tsx +++ b/src/input/Toggle.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/matrix-utils.ts b/src/matrix-utils.ts index 2d124a01..3e01d162 100644 --- a/src/matrix-utils.ts +++ b/src/matrix-utils.ts @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + import { IndexedDBStore } from "matrix-js-sdk/src/store/indexeddb"; import { MemoryStore } from "matrix-js-sdk/src/store/memory"; import { IndexedDBCryptoStore } from "matrix-js-sdk/src/crypto/store/indexeddb-crypto-store"; diff --git a/src/media-utils.ts b/src/media-utils.ts index 492f951e..382360b0 100644 --- a/src/media-utils.ts +++ b/src/media-utils.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/popover/Popover.tsx b/src/popover/Popover.tsx index b02fb587..d2e32006 100644 --- a/src/popover/Popover.tsx +++ b/src/popover/Popover.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/popover/PopoverMenu.tsx b/src/popover/PopoverMenu.tsx index 2b4555e4..543042ee 100644 --- a/src/popover/PopoverMenu.tsx +++ b/src/popover/PopoverMenu.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/profile/ProfileModal.tsx b/src/profile/ProfileModal.tsx index 28fc9977..adb1e2bd 100644 --- a/src/profile/ProfileModal.tsx +++ b/src/profile/ProfileModal.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/profile/useProfile.ts b/src/profile/useProfile.ts index a05cebf7..9f880795 100644 --- a/src/profile/useProfile.ts +++ b/src/profile/useProfile.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/AudioPreview.tsx b/src/room/AudioPreview.tsx index 8d6f164d..8c7459de 100644 --- a/src/room/AudioPreview.tsx +++ b/src/room/AudioPreview.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/CallEndedView.tsx b/src/room/CallEndedView.tsx index b78b800d..7543d669 100644 --- a/src/room/CallEndedView.tsx +++ b/src/room/CallEndedView.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/FeedbackModal.tsx b/src/room/FeedbackModal.tsx index db0f34f6..537132c8 100644 --- a/src/room/FeedbackModal.tsx +++ b/src/room/FeedbackModal.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/GridLayoutMenu.tsx b/src/room/GridLayoutMenu.tsx index 081af4e4..b1bd31bd 100644 --- a/src/room/GridLayoutMenu.tsx +++ b/src/room/GridLayoutMenu.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/GroupCallInspector.tsx b/src/room/GroupCallInspector.tsx index 279a5825..32579285 100644 --- a/src/room/GroupCallInspector.tsx +++ b/src/room/GroupCallInspector.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/GroupCallLoader.tsx b/src/room/GroupCallLoader.tsx index f0ee28f3..4af3dc39 100644 --- a/src/room/GroupCallLoader.tsx +++ b/src/room/GroupCallLoader.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/GroupCallView.tsx b/src/room/GroupCallView.tsx index 27b907c1..d52261d7 100644 --- a/src/room/GroupCallView.tsx +++ b/src/room/GroupCallView.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/InCallView.tsx b/src/room/InCallView.tsx index 85d99206..232d001d 100644 --- a/src/room/InCallView.tsx +++ b/src/room/InCallView.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/InviteModal.tsx b/src/room/InviteModal.tsx index 75ea5acb..a7f7ba52 100644 --- a/src/room/InviteModal.tsx +++ b/src/room/InviteModal.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/LobbyView.tsx b/src/room/LobbyView.tsx index aae3f243..a1a69618 100644 --- a/src/room/LobbyView.tsx +++ b/src/room/LobbyView.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/OverflowMenu.tsx b/src/room/OverflowMenu.tsx index 3b7ebce6..0920f2d4 100644 --- a/src/room/OverflowMenu.tsx +++ b/src/room/OverflowMenu.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/PTTButton.tsx b/src/room/PTTButton.tsx index e083759b..abc02c68 100644 --- a/src/room/PTTButton.tsx +++ b/src/room/PTTButton.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/PTTCallView.tsx b/src/room/PTTCallView.tsx index d1c41e0e..08836d09 100644 --- a/src/room/PTTCallView.tsx +++ b/src/room/PTTCallView.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/PTTFeed.tsx b/src/room/PTTFeed.tsx index 9d0177ba..49a40e0d 100644 --- a/src/room/PTTFeed.tsx +++ b/src/room/PTTFeed.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/RageshakeRequestModal.tsx b/src/room/RageshakeRequestModal.tsx index a6257aee..21d9215e 100644 --- a/src/room/RageshakeRequestModal.tsx +++ b/src/room/RageshakeRequestModal.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/RoomAuthView.tsx b/src/room/RoomAuthView.tsx index 5ee74e19..11b20b8e 100644 --- a/src/room/RoomAuthView.tsx +++ b/src/room/RoomAuthView.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/RoomRedirect.tsx b/src/room/RoomRedirect.tsx index f52abf6b..0c4cbe21 100644 --- a/src/room/RoomRedirect.tsx +++ b/src/room/RoomRedirect.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/Timer.tsx b/src/room/Timer.tsx index 8dd5694d..924c1d67 100644 --- a/src/room/Timer.tsx +++ b/src/room/Timer.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/VideoPreview.tsx b/src/room/VideoPreview.tsx index 07aa95e8..0e92cc5d 100644 --- a/src/room/VideoPreview.tsx +++ b/src/room/VideoPreview.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/useGroupCall.ts b/src/room/useGroupCall.ts index 1704f0a2..7921e42c 100644 --- a/src/room/useGroupCall.ts +++ b/src/room/useGroupCall.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/useLoadGroupCall.ts b/src/room/useLoadGroupCall.ts index 5b2a9763..363739aa 100644 --- a/src/room/useLoadGroupCall.ts +++ b/src/room/useLoadGroupCall.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/usePTT.ts b/src/room/usePTT.ts index 847a1aa8..71d7d4e6 100644 --- a/src/room/usePTT.ts +++ b/src/room/usePTT.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/usePageUnload.ts b/src/room/usePageUnload.ts index d36f4913..271704ae 100644 --- a/src/room/usePageUnload.ts +++ b/src/room/usePageUnload.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/room/useSentryGroupCallHandler.ts b/src/room/useSentryGroupCallHandler.ts index 4afb7f72..188a2934 100644 --- a/src/room/useSentryGroupCallHandler.ts +++ b/src/room/useSentryGroupCallHandler.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/settings/SettingsModal.tsx b/src/settings/SettingsModal.tsx index b93f9150..106ef9e0 100644 --- a/src/settings/SettingsModal.tsx +++ b/src/settings/SettingsModal.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/settings/rageshake.ts b/src/settings/rageshake.ts index 72b50681..42441d1c 100644 --- a/src/settings/rageshake.ts +++ b/src/settings/rageshake.ts @@ -1,8 +1,24 @@ +/* +Copyright 2022 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. +*/ + /* eslint-disable @typescript-eslint/ban-ts-comment */ /* Copyright 2017 OpenMarket Ltd Copyright 2018 New Vector Ltd -Copyright 2019 The Matrix.org Foundation C.I.C. +Copyright 2019 The 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. diff --git a/src/settings/submit-rageshake.ts b/src/settings/submit-rageshake.ts index 8a77004c..d2a9ccfd 100644 --- a/src/settings/submit-rageshake.ts +++ b/src/settings/submit-rageshake.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/settings/useMediaHandler.tsx b/src/settings/useMediaHandler.tsx index 345c0acb..ce3953ef 100644 --- a/src/settings/useMediaHandler.tsx +++ b/src/settings/useMediaHandler.tsx @@ -1,6 +1,22 @@ +/* +Copyright 2022 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. +*/ + /* eslint-disable @typescript-eslint/ban-ts-comment */ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/sound/PTTClips.tsx b/src/sound/PTTClips.tsx index 9a72098d..29331025 100644 --- a/src/sound/PTTClips.tsx +++ b/src/sound/PTTClips.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/sound/usePttSounds.ts b/src/sound/usePttSounds.ts index 9f6e31d9..28f6a124 100644 --- a/src/sound/usePttSounds.ts +++ b/src/sound/usePttSounds.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/tabs/Tabs.stories.tsx b/src/tabs/Tabs.stories.tsx index 1ee94281..acc92c35 100644 --- a/src/tabs/Tabs.stories.tsx +++ b/src/tabs/Tabs.stories.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/tabs/Tabs.tsx b/src/tabs/Tabs.tsx index 2ba7c7c2..81cc9319 100644 --- a/src/tabs/Tabs.tsx +++ b/src/tabs/Tabs.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/typography/Typography.stories.tsx b/src/typography/Typography.stories.tsx index a400166c..4174d937 100644 --- a/src/typography/Typography.stories.tsx +++ b/src/typography/Typography.stories.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/typography/Typography.tsx b/src/typography/Typography.tsx index 4d8ac288..bc67377c 100644 --- a/src/typography/Typography.tsx +++ b/src/typography/Typography.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/useLocationNavigation.ts b/src/useLocationNavigation.ts index 81ecdbcd..33115a3f 100644 --- a/src/useLocationNavigation.ts +++ b/src/useLocationNavigation.ts @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + import { useEffect } from "react"; import { useHistory } from "react-router-dom"; diff --git a/src/usePageFocusStyle.ts b/src/usePageFocusStyle.ts index 542cffdb..f433d3db 100644 --- a/src/usePageFocusStyle.ts +++ b/src/usePageFocusStyle.ts @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + import { useEffect } from "react"; import { useFocusVisible } from "@react-aria/interactions"; diff --git a/src/video-grid/VideoGrid.stories.tsx b/src/video-grid/VideoGrid.stories.tsx index 17d5541b..859e593f 100644 --- a/src/video-grid/VideoGrid.stories.tsx +++ b/src/video-grid/VideoGrid.stories.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/video-grid/VideoGrid.tsx b/src/video-grid/VideoGrid.tsx index 8cfa3d78..9ae0030f 100644 --- a/src/video-grid/VideoGrid.tsx +++ b/src/video-grid/VideoGrid.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/video-grid/VideoTile.tsx b/src/video-grid/VideoTile.tsx index a7792c6f..8695a7c4 100644 --- a/src/video-grid/VideoTile.tsx +++ b/src/video-grid/VideoTile.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/video-grid/VideoTileContainer.tsx b/src/video-grid/VideoTileContainer.tsx index 10f65c72..c573b0b7 100644 --- a/src/video-grid/VideoTileContainer.tsx +++ b/src/video-grid/VideoTileContainer.tsx @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/video-grid/useCallFeed.ts b/src/video-grid/useCallFeed.ts index 229df3cb..9485b3b6 100644 --- a/src/video-grid/useCallFeed.ts +++ b/src/video-grid/useCallFeed.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/video-grid/useMediaStream.ts b/src/video-grid/useMediaStream.ts index 23140f81..259ede7b 100644 --- a/src/video-grid/useMediaStream.ts +++ b/src/video-grid/useMediaStream.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/video-grid/useRoomMemberName.ts b/src/video-grid/useRoomMemberName.ts index 5824f4fd..9c1d5cb8 100644 --- a/src/video-grid/useRoomMemberName.ts +++ b/src/video-grid/useRoomMemberName.ts @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. From 1830acbddfde16bbeafc82489200d5b9b0067948 Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 3 Jan 2023 16:58:38 +0000 Subject: [PATCH 2/2] Fix copyright pt. 2: CSS files --- src/Avatar.module.css | 16 ++++++++++++++++ src/Facepile.module.css | 16 ++++++++++++++++ src/FullScreenView.module.css | 16 ++++++++++++++++ src/Header.module.css | 16 ++++++++++++++++ src/ListBox.module.css | 16 ++++++++++++++++ src/Menu.module.css | 16 ++++++++++++++++ src/Modal.module.css | 16 ++++++++++++++++ src/Tooltip.module.css | 16 ++++++++++++++++ src/UserMenu.module.css | 16 ++++++++++++++++ src/auth/LoginPage.module.css | 16 ++++++++++++++++ src/form/Form.module.css | 16 ++++++++++++++++ src/home/CallList.module.css | 16 ++++++++++++++++ src/home/CallTypeDropdown.module.css | 16 ++++++++++++++++ src/home/JoinExistingCallModal.module.css | 16 ++++++++++++++++ src/home/RegisteredView.module.css | 16 ++++++++++++++++ src/home/UnauthenticatedView.module.css | 16 ++++++++++++++++ src/home/common.module.css | 16 ++++++++++++++++ src/input/AvatarInputField.module.css | 16 ++++++++++++++++ src/input/Input.module.css | 16 ++++++++++++++++ src/input/SelectInput.module.css | 16 ++++++++++++++++ src/input/Toggle.module.css | 16 ++++++++++++++++ src/popover/Popover.module.css | 16 ++++++++++++++++ src/popover/PopoverMenu.module.css | 16 ++++++++++++++++ src/profile/ProfileModal.module.css | 16 ++++++++++++++++ src/room/AudioPreview.module.css | 16 ++++++++++++++++ src/room/GroupCallInspector.module.css | 16 ++++++++++++++++ src/room/InviteModal.module.css | 16 ++++++++++++++++ src/room/PTTButton.module.css | 16 ++++++++++++++++ src/room/PTTCallView.module.css | 16 ++++++++++++++++ src/room/PTTFeed.module.css | 16 ++++++++++++++++ src/room/RoomAuthView.module.css | 16 ++++++++++++++++ src/room/VideoPreview.module.css | 16 ++++++++++++++++ src/settings/SettingsModal.module.css | 16 ++++++++++++++++ src/sound/PTTClips.module.css | 2 +- src/tabs/Tabs.module.css | 16 ++++++++++++++++ src/typography/Typography.module.css | 16 ++++++++++++++++ src/usePageFocusStyle.module.css | 16 ++++++++++++++++ src/video-grid/VideoGrid.module.css | 16 ++++++++++++++++ src/video-grid/VideoTile.module.css | 16 ++++++++++++++++ src/video-grid/VideoTileSettingsModal.module.css | 16 ++++++++++++++++ 40 files changed, 625 insertions(+), 1 deletion(-) diff --git a/src/Avatar.module.css b/src/Avatar.module.css index 70ccd9b1..46fc214e 100644 --- a/src/Avatar.module.css +++ b/src/Avatar.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .avatar { position: relative; color: var(--primary-content); diff --git a/src/Facepile.module.css b/src/Facepile.module.css index c716988e..3b9befe1 100644 --- a/src/Facepile.module.css +++ b/src/Facepile.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .facepile { width: 100%; position: relative; diff --git a/src/FullScreenView.module.css b/src/FullScreenView.module.css index 9d8fc665..18774c37 100644 --- a/src/FullScreenView.module.css +++ b/src/FullScreenView.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .page { position: relative; display: flex; diff --git a/src/Header.module.css b/src/Header.module.css index 857a73b6..a5aacc7f 100644 --- a/src/Header.module.css +++ b/src/Header.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .header { position: relative; display: flex; diff --git a/src/ListBox.module.css b/src/ListBox.module.css index 2b9cc2da..08556689 100644 --- a/src/ListBox.module.css +++ b/src/ListBox.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .listBox { margin: 0; padding: 0; diff --git a/src/Menu.module.css b/src/Menu.module.css index 110dd477..43029ada 100644 --- a/src/Menu.module.css +++ b/src/Menu.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .menu { width: 100%; padding: 0; diff --git a/src/Modal.module.css b/src/Modal.module.css index 2def854d..30c8af04 100644 --- a/src/Modal.module.css +++ b/src/Modal.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .modalOverlay { position: fixed; z-index: 100; diff --git a/src/Tooltip.module.css b/src/Tooltip.module.css index 8d7a8773..be62ec8d 100644 --- a/src/Tooltip.module.css +++ b/src/Tooltip.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .tooltip { background-color: var(--system); flex-direction: row; diff --git a/src/UserMenu.module.css b/src/UserMenu.module.css index 06e817c7..5ffe77df 100644 --- a/src/UserMenu.module.css +++ b/src/UserMenu.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .menuIcon { width: 24px; height: 24px; diff --git a/src/auth/LoginPage.module.css b/src/auth/LoginPage.module.css index 4a798d7e..19c1e18c 100644 --- a/src/auth/LoginPage.module.css +++ b/src/auth/LoginPage.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .logo { max-width: 300px; margin: 80px 0; diff --git a/src/form/Form.module.css b/src/form/Form.module.css index c1f7262a..7e35d37a 100644 --- a/src/form/Form.module.css +++ b/src/form/Form.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .form { display: flex; flex-direction: column; diff --git a/src/home/CallList.module.css b/src/home/CallList.module.css index d8ff4a6b..0a581e46 100644 --- a/src/home/CallList.module.css +++ b/src/home/CallList.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .callTileSpacer, .callTile { width: 329px; diff --git a/src/home/CallTypeDropdown.module.css b/src/home/CallTypeDropdown.module.css index 82074be2..6641fea0 100644 --- a/src/home/CallTypeDropdown.module.css +++ b/src/home/CallTypeDropdown.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .label { margin-bottom: 0; } diff --git a/src/home/JoinExistingCallModal.module.css b/src/home/JoinExistingCallModal.module.css index 86bfe1be..fcc06d57 100644 --- a/src/home/JoinExistingCallModal.module.css +++ b/src/home/JoinExistingCallModal.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .buttons { margin-bottom: 0; } diff --git a/src/home/RegisteredView.module.css b/src/home/RegisteredView.module.css index 3f6b0bf2..ae43b5bc 100644 --- a/src/home/RegisteredView.module.css +++ b/src/home/RegisteredView.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .form { padding: 0 24px; justify-content: center; diff --git a/src/home/UnauthenticatedView.module.css b/src/home/UnauthenticatedView.module.css index f336ef16..bad173ea 100644 --- a/src/home/UnauthenticatedView.module.css +++ b/src/home/UnauthenticatedView.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .footer { display: flex; flex-direction: column; diff --git a/src/home/common.module.css b/src/home/common.module.css index 13eac142..5a7cf350 100644 --- a/src/home/common.module.css +++ b/src/home/common.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .container { display: flex; min-height: calc(100% - 64px); diff --git a/src/input/AvatarInputField.module.css b/src/input/AvatarInputField.module.css index 3f08c2f6..14620425 100644 --- a/src/input/AvatarInputField.module.css +++ b/src/input/AvatarInputField.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .avatarInputField { display: flex; flex-direction: column; diff --git a/src/input/Input.module.css b/src/input/Input.module.css index b9c7c7af..60b69936 100644 --- a/src/input/Input.module.css +++ b/src/input/Input.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .fieldRow { display: flex; margin-bottom: 32px; diff --git a/src/input/SelectInput.module.css b/src/input/SelectInput.module.css index afa0ce44..727ede0a 100644 --- a/src/input/SelectInput.module.css +++ b/src/input/SelectInput.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .selectInput { position: relative; display: inline-block; diff --git a/src/input/Toggle.module.css b/src/input/Toggle.module.css index ad59ce0e..cae97be9 100644 --- a/src/input/Toggle.module.css +++ b/src/input/Toggle.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .toggle { align-items: center; margin-bottom: 20px; diff --git a/src/popover/Popover.module.css b/src/popover/Popover.module.css index f96f1e2c..47e8c502 100644 --- a/src/popover/Popover.module.css +++ b/src/popover/Popover.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .popover { display: flex; flex-direction: column; diff --git a/src/popover/PopoverMenu.module.css b/src/popover/PopoverMenu.module.css index f0efdc94..5c874384 100644 --- a/src/popover/PopoverMenu.module.css +++ b/src/popover/PopoverMenu.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .popoverMenuTrigger { position: relative; display: inline-block; diff --git a/src/profile/ProfileModal.module.css b/src/profile/ProfileModal.module.css index 6ca1acfe..268fa932 100644 --- a/src/profile/ProfileModal.module.css +++ b/src/profile/ProfileModal.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .avatarFieldRow { justify-content: center; } diff --git a/src/room/AudioPreview.module.css b/src/room/AudioPreview.module.css index 3ed24d8f..cf5e9c90 100644 --- a/src/room/AudioPreview.module.css +++ b/src/room/AudioPreview.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .preview { margin: 20px 0; padding: 24px 20px; diff --git a/src/room/GroupCallInspector.module.css b/src/room/GroupCallInspector.module.css index 74dc8e99..71097214 100644 --- a/src/room/GroupCallInspector.module.css +++ b/src/room/GroupCallInspector.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .inspector { background-color: var(--system); } diff --git a/src/room/InviteModal.module.css b/src/room/InviteModal.module.css index c7936d53..75ae26a9 100644 --- a/src/room/InviteModal.module.css +++ b/src/room/InviteModal.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .inviteModal { max-width: 413px; } diff --git a/src/room/PTTButton.module.css b/src/room/PTTButton.module.css index c01ed45f..cf21af23 100644 --- a/src/room/PTTButton.module.css +++ b/src/room/PTTButton.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .pttButton { width: 100vw; aspect-ratio: 1; diff --git a/src/room/PTTCallView.module.css b/src/room/PTTCallView.module.css index 834840c0..2a35db58 100644 --- a/src/room/PTTCallView.module.css +++ b/src/room/PTTCallView.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .pttCallView { position: relative; display: flex; diff --git a/src/room/PTTFeed.module.css b/src/room/PTTFeed.module.css index 9d126bfe..033fb430 100644 --- a/src/room/PTTFeed.module.css +++ b/src/room/PTTFeed.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .audioFeed { display: none; } diff --git a/src/room/RoomAuthView.module.css b/src/room/RoomAuthView.module.css index 48aa50fb..539d739c 100644 --- a/src/room/RoomAuthView.module.css +++ b/src/room/RoomAuthView.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .form { padding: 0 24px; justify-content: center; diff --git a/src/room/VideoPreview.module.css b/src/room/VideoPreview.module.css index 55865bd3..19277974 100644 --- a/src/room/VideoPreview.module.css +++ b/src/room/VideoPreview.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .preview { position: relative; min-height: 280px; diff --git a/src/settings/SettingsModal.module.css b/src/settings/SettingsModal.module.css index 8efb0eaf..7eb39159 100644 --- a/src/settings/SettingsModal.module.css +++ b/src/settings/SettingsModal.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .settingsModal { width: 774px; height: 480px; diff --git a/src/sound/PTTClips.module.css b/src/sound/PTTClips.module.css index cd680f5b..6b88643c 100644 --- a/src/sound/PTTClips.module.css +++ b/src/sound/PTTClips.module.css @@ -1,5 +1,5 @@ /* -Copyright 2022 Matrix.org Foundation C.I.C. +Copyright 2022 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. diff --git a/src/tabs/Tabs.module.css b/src/tabs/Tabs.module.css index 4da87591..bad7a0e6 100644 --- a/src/tabs/Tabs.module.css +++ b/src/tabs/Tabs.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .tabContainer { display: flex; flex: 1; diff --git a/src/typography/Typography.module.css b/src/typography/Typography.module.css index 451f2d99..ec7df469 100644 --- a/src/typography/Typography.module.css +++ b/src/typography/Typography.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .caption { font-size: var(--font-size-caption); line-height: var(--font-size-body); diff --git a/src/usePageFocusStyle.module.css b/src/usePageFocusStyle.module.css index f54eff61..7e92738a 100644 --- a/src/usePageFocusStyle.module.css +++ b/src/usePageFocusStyle.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .hideFocus * { outline: none !important; } diff --git a/src/video-grid/VideoGrid.module.css b/src/video-grid/VideoGrid.module.css index 9fbe074c..df6e4fa7 100644 --- a/src/video-grid/VideoGrid.module.css +++ b/src/video-grid/VideoGrid.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .videoGrid { position: relative; overflow: hidden; diff --git a/src/video-grid/VideoTile.module.css b/src/video-grid/VideoTile.module.css index 94f53a7d..d6f6e066 100644 --- a/src/video-grid/VideoTile.module.css +++ b/src/video-grid/VideoTile.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .videoTile { position: absolute; will-change: transform, width, height, opacity, box-shadow; diff --git a/src/video-grid/VideoTileSettingsModal.module.css b/src/video-grid/VideoTileSettingsModal.module.css index f1cdb509..9a6ed55f 100644 --- a/src/video-grid/VideoTileSettingsModal.module.css +++ b/src/video-grid/VideoTileSettingsModal.module.css @@ -1,3 +1,19 @@ +/* +Copyright 2022 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. +*/ + .videoTileSettingsModal { width: 700px; height: 316px;