Add copyright header to source code files
Copyright notice as per https://reuse.software/spec/#format-of-copyright-notices Fixes #134
This commit is contained in:
		| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| """This package provides Mirage's backend side that can interact with the UI. | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import asyncio | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| """Custom exception definitions.""" | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| """HTML and Markdown processing tools.""" | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| """Matrix client to interact with a homeserver and other related classes.""" | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| """Matrix media downloading, caching and retrieval.""" | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| """Provide classes related to data models shared between Python and QML.""" | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| from typing import ( | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| """`ModelItem` subclasses definitions.""" | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import itertools | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| from dataclasses import dataclass, field | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| from collections import UserDict | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| from typing import TYPE_CHECKING, Any, Dict, Optional | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| from dataclasses import asdict | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import asyncio | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| from dataclasses import dataclass, field | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| from dataclasses import dataclass, field | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| # WARNING: make sure to not top-level import the media_cache module here, | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import asyncio | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| """QPL (Qt Property Language) theme files to QML converter. | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| """User data and configuration files definitions.""" | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| # Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| # SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| """Various utilities that are used throughout the package.""" | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| // The Clipboard class exposes system clipboard management and retrieval | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| #ifndef CLIPBOARD_IMAGE_PROVIDER_H | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| PositiveButton { | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| NegativeButton { | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick.Layouts 1.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| GroupButton { | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| GroupButton { | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| GroupButton { | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick.Controls 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick.Controls 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage> | ||||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||||
|  | ||||
| import QtQuick 2.12 | ||||
|   | ||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user
	