Skip to content

Commit

Permalink
Add copyright header to source code files
Browse files Browse the repository at this point in the history
  • Loading branch information
mirukana committed Sep 23, 2020
1 parent 17a8e1c commit 4dc5c9a
Show file tree
Hide file tree
Showing 211 changed files with 211 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/backend/__init__.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
1 change: 1 addition & 0 deletions src/backend/backend.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
# SPDX-License-Identifier: LGPL-3.0-or-later

import asyncio
Expand Down
1 change: 1 addition & 0 deletions src/backend/errors.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
# SPDX-License-Identifier: LGPL-3.0-or-later

"""Custom exception definitions."""
Expand Down
1 change: 1 addition & 0 deletions src/backend/html_markdown.py
Original file line number Diff line number Diff line change
@@ -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."""
Expand Down
1 change: 1 addition & 0 deletions src/backend/matrix_client.py
Original file line number Diff line number Diff line change
@@ -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."""
Expand Down
1 change: 1 addition & 0 deletions src/backend/media_cache.py
Original file line number Diff line number Diff line change
@@ -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."""
Expand Down
1 change: 1 addition & 0 deletions src/backend/models/__init__.py
Original file line number Diff line number Diff line change
@@ -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."""
Expand Down
1 change: 1 addition & 0 deletions src/backend/models/filters.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
# SPDX-License-Identifier: LGPL-3.0-or-later

from typing import (
Expand Down
1 change: 1 addition & 0 deletions src/backend/models/items.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
# SPDX-License-Identifier: LGPL-3.0-or-later

"""`ModelItem` subclasses definitions."""
Expand Down
1 change: 1 addition & 0 deletions src/backend/models/model.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
# SPDX-License-Identifier: LGPL-3.0-or-later

import itertools
Expand Down
1 change: 1 addition & 0 deletions src/backend/models/model_item.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/backend/models/model_store.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/backend/models/proxy.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/backend/models/special_models.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/backend/nio_callbacks.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
# SPDX-License-Identifier: LGPL-3.0-or-later

import asyncio
Expand Down
1 change: 1 addition & 0 deletions src/backend/presence.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/backend/pyotherside_events.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/backend/qml_bridge.py
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
1 change: 1 addition & 0 deletions src/backend/sso_server.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
# SPDX-License-Identifier: LGPL-3.0-or-later

import asyncio
Expand Down
1 change: 1 addition & 0 deletions src/backend/theme_parser.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
1 change: 1 addition & 0 deletions src/backend/user_files.py
Original file line number Diff line number Diff line change
@@ -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."""
Expand Down
1 change: 1 addition & 0 deletions src/backend/utils.py
Original file line number Diff line number Diff line change
@@ -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."""
Expand Down
1 change: 1 addition & 0 deletions src/clipboard.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/clipboard_image_provider.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/AutoDirectionLayout.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/Buttons/ApplyButton.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
// SPDX-License-Identifier: LGPL-3.0-or-later

PositiveButton {
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/Buttons/CancelButton.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
// SPDX-License-Identifier: LGPL-3.0-or-later

NegativeButton {
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/Buttons/GroupButton.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/Buttons/MiddleButton.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
// SPDX-License-Identifier: LGPL-3.0-or-later

GroupButton {
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/Buttons/NegativeButton.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
// SPDX-License-Identifier: LGPL-3.0-or-later

GroupButton {
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/Buttons/PositiveButton.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
// SPDX-License-Identifier: LGPL-3.0-or-later

GroupButton {
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HAvatar.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HBottomFocusLine.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HBox.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HBusyIndicator.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HButton.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HButtonBackground.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HButtonContent.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HCheckBox.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HCircleProgressBar.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HColorAnimation.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HColumnLayout.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HColumnPage.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HDrawer.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HFlickable.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HFlickableColumnPage.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HFlow.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HGridLayout.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HGridView.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HIcon.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HImage.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HKineticScrollingDisabler.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HLabel.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HLabeledItem.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HListView.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HLoader.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HMenu.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HMenuItem.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HMenuItemPopupSpawner.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HMenuSeparator.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HMxcImage.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HNoticePage.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HNumberAnimation.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HPage.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HPauseAnimation.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HPopup.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HProgressBar.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HQtObject.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HRepeater.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HRoomAvatar.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HRowLayout.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HScrollBar.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HScrollView.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HSelectableLabel.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HShortcut.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HSlider.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HSpacer.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HStackView.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HSwipeView.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/gui/Base/HTabBar.qml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading

0 comments on commit 4dc5c9a

Please sign in to comment.