Skip to content

Commit 6d04d2e

Browse files
sync: from linuxdeepin/dde-session-shell
Synchronize source files from linuxdeepin/dde-session-shell. Source-pull-request: linuxdeepin/dde-session-shell#20
1 parent 6bd4bc0 commit 6d04d2e

File tree

12 files changed

+2317
-10
lines changed

12 files changed

+2317
-10
lines changed

.reuse/dep5

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,18 @@ Files: README.md README.zh_CN.md
88
Copyright: None
99
License: CC-BY-4.0
1010

11+
# cmake
12+
Files: cmake/*.in cmake/*.cmake
13+
Copyright: None
14+
License: CC0-1.0
15+
1116
# xml2cpp
1217
Files: src/global_util/dbus/*
1318
Copyright: The Qt Company Ltd.
1419
License: CC0-1.0
1520

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

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

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

LICENSES/GPL-3.0-or-later.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GNU GENERAL PUBLIC LICENSE
22
Version 3, 29 June 2007
33

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

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

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

216216
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.
217217

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

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

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

228228
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”.
229229

230-
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/>.
230+
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/>.
231231

232-
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>.
232+
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>.

plugins/examples/login-plugins/login-udcp/qss/udcp_mfa_login_widget.qss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
3+
*
4+
* SPDX-License-Identifier: GPL-3.0-or-later
5+
*/
6+
17
QPushButton#sendButton {
28
background-color: rgba(255, 255, 255, 76);
39
color: white;

src/pam-inhibit-autologin/pam_inhibit_autologin.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2011 - 2025 UnionTech Software Technology Co., Ltd.
2+
//
3+
// SPDX-License-Identifier: GPL-3.0-or-later
4+
15
#include <security/pam_ext.h>
26
#include <security/pam_modules.h>
37
#include <security/_pam_types.h>

src/session-widgets/fullmanagedauthwidget.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
2+
//
3+
// SPDX-License-Identifier: GPL-3.0-or-later
4+
15
#ifndef FULLMANAGEDAUTHWIDGET_H
26
#define FULLMANAGEDAUTHWIDGET_H
37

src/widgets/abstractfullbackgroundinterface.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2011 - 2022 UnionTech Software Technology Co., Ltd.
2+
//
3+
// SPDX-License-Identifier: GPL-3.0-or-later
4+
15
#ifndef ABSTRACTFULLBACKGROUND_H
26
#define ABSTRACTFULLBACKGROUND_H
37

src/widgets/popupwindow.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// SPDX-FileCopyrightText: 2011 - 2022 UnionTech Software Technology Co., Ltd.
1+
// SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
22
//
3-
// SPDX-License-Identifier: LGPL-3.0-or-later
3+
// SPDX-License-Identifier: GPL-3.0-or-later
44

55
#include "popupwindow.h"
66

src/widgets/popupwindow.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// SPDX-FileCopyrightText: 2011 - 2022 UnionTech Software Technology Co., Ltd.
1+
// SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
22
//
3-
// SPDX-License-Identifier: LGPL-3.0-or-later
3+
// SPDX-License-Identifier: GPL-3.0-or-later
44

55
#ifndef POPUPWINDOW_H
66
#define POPUPWINDOW_H

0 commit comments

Comments
 (0)