Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,18 @@ Files: README.md README.zh_CN.md
Copyright: None
License: CC-BY-4.0

# cmake
Files: cmake/*.in cmake/*.cmake
Copyright: None
License: CC0-1.0

# xml2cpp
Files: src/global_util/dbus/*
Copyright: The Qt Company Ltd.
License: CC0-1.0

# Project file
Files: *.pro *.qrc *CMakeLists.txt *.cmake qt-theme.ini files/* scripts/* src/lightdm-deepin-greeter/deepin-greeter
Files: *.pro *.qrc *CMakeLists.txt *.cmake qt-theme.ini files/* scripts/* src/lightdm-deepin-greeter/deepin-greeter .project
Copyright: None
License: CC0-1.0

Expand All @@ -24,7 +29,7 @@ Copyright: UnionTech Software Technology Co., Ltd.
License: GPL-3.0-or-later

# png svg
Files: src/widgets/img/* misc/images/* src/session-widgets/img/*
Files: src/widgets/img/* misc/images/* src/session-widgets/img/* plugins/examples/login-plugins/login-udcp/images/*
Copyright: UnionTech Software Technology Co., Ltd.
License: GPL-3.0-or-later

Expand Down
8 changes: 4 additions & 4 deletions LICENSES/GPL-3.0-or-later.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007

Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>
Copyright © 2007 Free Software Foundation, Inc. <https://fsf.org/>

Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.

Expand Down Expand Up @@ -215,7 +215,7 @@ To do so, attach the following notices to the program. It is safest to attach th

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

Expand All @@ -227,6 +227,6 @@ If the program does terminal interaction, make it output a short notice like thi

The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”.

You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <http://www.gnu.org/licenses/>.
You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <https://www.gnu.org/licenses/>.

The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>.
The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <https://www.gnu.org/philosophy/why-not-lgpl.html>.
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/

QPushButton#sendButton {
background-color: rgba(255, 255, 255, 76);
color: white;
Expand Down
4 changes: 4 additions & 0 deletions src/pam-inhibit-autologin/pam_inhibit_autologin.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
// SPDX-FileCopyrightText: 2011 - 2025 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later

#include <security/pam_ext.h>

Check warning on line 5 in src/pam-inhibit-autologin/pam_inhibit_autologin.c

View workflow job for this annotation

GitHub Actions / cppcheck

Include file: <security/pam_ext.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <security/pam_modules.h>

Check warning on line 6 in src/pam-inhibit-autologin/pam_inhibit_autologin.c

View workflow job for this annotation

GitHub Actions / cppcheck

Include file: <security/pam_modules.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <security/_pam_types.h>

Check warning on line 7 in src/pam-inhibit-autologin/pam_inhibit_autologin.c

View workflow job for this annotation

GitHub Actions / cppcheck

Include file: <security/_pam_types.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <sys/syslog.h>
#include <stdlib.h>
#include <stdio.h>
Expand Down
4 changes: 4 additions & 0 deletions src/session-widgets/fullmanagedauthwidget.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later

#ifndef FULLMANAGEDAUTHWIDGET_H
#define FULLMANAGEDAUTHWIDGET_H

Expand Down
4 changes: 4 additions & 0 deletions src/widgets/abstractfullbackgroundinterface.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2011 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later

#ifndef ABSTRACTFULLBACKGROUND_H
#define ABSTRACTFULLBACKGROUND_H

Expand Down
4 changes: 2 additions & 2 deletions src/widgets/popupwindow.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-FileCopyrightText: 2011 - 2022 UnionTech Software Technology Co., Ltd.
// SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: GPL-3.0-or-later

#include "popupwindow.h"

Expand Down
4 changes: 2 additions & 2 deletions src/widgets/popupwindow.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-FileCopyrightText: 2011 - 2022 UnionTech Software Technology Co., Ltd.
// SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: GPL-3.0-or-later

#ifndef POPUPWINDOW_H
#define POPUPWINDOW_H
Expand Down