Git commit 13f7b6cdb7b754fd30e1058ed1a321f69081ebb1 by George Florea Bănuș. Committed on 19/07/2021 at 11:34. Pushed by georgefb into branch 'master'.
Add missing license headers M +6 -0 Messages.sh M +6 -0 doc/CMakeLists.txt M +6 -0 doc/index.docbook M +6 -0 src/global.cpp M +6 -0 src/global.h M +6 -0 src/models/customcommandsmodel.cpp M +6 -0 src/models/customcommandsmodel.h https://invent.kde.org/multimedia/haruna/commit/13f7b6cdb7b754fd30e1058ed1a321f69081ebb1 diff --git a/Messages.sh b/Messages.sh index 1a1ee3e..5709ea0 100644 --- a/Messages.sh +++ b/Messages.sh @@ -1,2 +1,8 @@ #! /usr/bin/env bash +# +# SPDX-FileCopyrightText: 2021 George Florea Bănuș <[email protected]> +# +# SPDX-License-Identifier: GPL-3.0-or-later +# + $XGETTEXT `find . \( -name \*.cpp -o -name \*.h -o -name \*.qml \)` -o $podir/haruna.pot diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index cec8b3d..129e2ed 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -1,3 +1,9 @@ +# +# SPDX-FileCopyrightText: 2021 George Florea Bănuș <[email protected]> +# +# SPDX-License-Identifier: GPL-3.0-or-later +# + if (KF5DocTools_FOUND) KDOCTOOLS_CREATE_HANDBOOK( index.docbook diff --git a/doc/index.docbook b/doc/index.docbook index 1e129a7..b344b5a 100644 --- a/doc/index.docbook +++ b/doc/index.docbook @@ -7,6 +7,12 @@ <!ENTITY % English "INCLUDE"> ]> +<!-- + SPDX-FileCopyrightText: 2021 George Florea Bănuș <[email protected]> + + SPDX-License-Identifier: GPL-3.0-or-later + --> + <book id="haruna" lang="&language;"> <bookinfo> diff --git a/src/global.cpp b/src/global.cpp index f5af7a9..8cf691c 100644 --- a/src/global.cpp +++ b/src/global.cpp @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2021 George Florea Bănuș <[email protected]> + * + * SPDX-License-Identifier: GPL-3.0-or-later + */ + #include "global.h" #include "_debug.h" diff --git a/src/global.h b/src/global.h index c1a1409..d31c0ea 100644 --- a/src/global.h +++ b/src/global.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2021 George Florea Bănuș <[email protected]> + * + * SPDX-License-Identifier: GPL-3.0-or-later + */ + #ifndef GLOBALS_H #define GLOBALS_H diff --git a/src/models/customcommandsmodel.cpp b/src/models/customcommandsmodel.cpp index 906442c..ca55ba4 100644 --- a/src/models/customcommandsmodel.cpp +++ b/src/models/customcommandsmodel.cpp @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2021 George Florea Bănuș <[email protected]> + * + * SPDX-License-Identifier: GPL-3.0-or-later + */ + #include "customcommandsmodel.h" #include "_debug.h" diff --git a/src/models/customcommandsmodel.h b/src/models/customcommandsmodel.h index 4c6ce0e..b13a8cb 100644 --- a/src/models/customcommandsmodel.h +++ b/src/models/customcommandsmodel.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2021 George Florea Bănuș <[email protected]> + * + * SPDX-License-Identifier: GPL-3.0-or-later + */ + #ifndef CUSTOMCOMMANDSMODEL_H #define CUSTOMCOMMANDSMODEL_H
