Skip to content

Commit 71d1b8b

Browse files
authored
Merge pull request #877 from mathoudebine/dev/copyright
2 parents 3ed18e0 + 3a44c01 commit 71d1b8b

30 files changed

+127
-66
lines changed

COPYRIGHT

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Copyright (C) 2021 Matthieu Houdebine (mathoudebine)
2+
3+
This project is licensed under the GNU General Public License v3.0 or later.
4+
See https://www.gnu.org/licenses/gpl-3.0.html for details.

configure.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#!/usr/bin/env python
2+
# SPDX-License-Identifier: GPL-3.0-or-later
3+
#
24
# turing-smart-screen-python - a Python system monitor and library for USB-C displays like Turing Smart Screen or XuanFang
35
# https://github.com/mathoudebine/turing-smart-screen-python/
4-
5-
# Copyright (C) 2021-2023 Matthieu Houdebine (mathoudebine)
6+
#
7+
# Copyright (C) 2021 Matthieu Houdebine (mathoudebine)
68
#
79
# This program is free software: you can redistribute it and/or modify
810
# it under the terms of the GNU General Public License as published by

external/LibreHardwareMonitor/test_librehardwaremonitor.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-License-Identifier: GPL-3.0-or-later
2+
#
13
# Use this file to display all hardware & sensors available from LibreHardwareMonitor on your computer
24
# Windows only - needs administrative rights
35
import ctypes

library/config.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
# SPDX-License-Identifier: GPL-3.0-or-later
2+
#
13
# turing-smart-screen-python - a Python system monitor and library for USB-C displays like Turing Smart Screen or XuanFang
24
# https://github.com/mathoudebine/turing-smart-screen-python/
3-
4-
# Copyright (C) 2021-2023 Matthieu Houdebine (mathoudebine)
5-
# Copyright (C) 2022-2023 Rollbacke
6-
# Copyright (C) 2022-2023 Ebag333
5+
#
6+
# Copyright (C) 2021 Matthieu Houdebine (mathoudebine)
7+
# Copyright (C) 2022 Rollbacke
8+
# Copyright (C) 2022 Ebag333
79
#
810
# This program is free software: you can redistribute it and/or modify
911
# it under the terms of the GNU General Public License as published by

library/display.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
# SPDX-License-Identifier: GPL-3.0-or-later
2+
#
13
# turing-smart-screen-python - a Python system monitor and library for USB-C displays like Turing Smart Screen or XuanFang
24
# https://github.com/mathoudebine/turing-smart-screen-python/
3-
4-
# Copyright (C) 2021-2023 Matthieu Houdebine (mathoudebine)
5+
#
6+
# Copyright (C) 2021 Matthieu Houdebine (mathoudebine)
57
#
68
# This program is free software: you can redistribute it and/or modify
79
# it under the terms of the GNU General Public License as published by

library/lcd/color.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: GPL-3.0-or-later
12
from typing import Union, Tuple
23

34
from PIL import ImageColor

library/lcd/lcd_comm.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
# SPDX-License-Identifier: GPL-3.0-or-later
2+
#
13
# turing-smart-screen-python - a Python system monitor and library for USB-C displays like Turing Smart Screen or XuanFang
24
# https://github.com/mathoudebine/turing-smart-screen-python/
3-
4-
# Copyright (C) 2021-2023 Matthieu Houdebine (mathoudebine)
5+
#
6+
# Copyright (C) 2021 Matthieu Houdebine (mathoudebine)
57
#
68
# This program is free software: you can redistribute it and/or modify
79
# it under the terms of the GNU General Public License as published by

library/lcd/lcd_comm_rev_a.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
# SPDX-License-Identifier: GPL-3.0-or-later
2+
#
13
# turing-smart-screen-python - a Python system monitor and library for USB-C displays like Turing Smart Screen or XuanFang
24
# https://github.com/mathoudebine/turing-smart-screen-python/
3-
4-
# Copyright (C) 2021-2023 Matthieu Houdebine (mathoudebine)
5+
#
6+
# Copyright (C) 2021 Matthieu Houdebine (mathoudebine)
57
#
68
# This program is free software: you can redistribute it and/or modify
79
# it under the terms of the GNU General Public License as published by

library/lcd/lcd_comm_rev_b.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
# SPDX-License-Identifier: GPL-3.0-or-later
2+
#
13
# turing-smart-screen-python - a Python system monitor and library for USB-C displays like Turing Smart Screen or XuanFang
24
# https://github.com/mathoudebine/turing-smart-screen-python/
3-
4-
# Copyright (C) 2021-2023 Matthieu Houdebine (mathoudebine)
5-
# Copyright (C) 2022-2023 Charles Ferguson (gerph)
5+
#
6+
# Copyright (C) 2021 Matthieu Houdebine (mathoudebine)
7+
# Copyright (C) 2022 Charles Ferguson (gerph)
68
#
79
# This program is free software: you can redistribute it and/or modify
810
# it under the terms of the GNU General Public License as published by

library/lcd/lcd_comm_rev_c.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
# SPDX-License-Identifier: GPL-3.0-or-later
2+
#
13
# turing-smart-screen-python - a Python system monitor and library for USB-C displays like Turing Smart Screen or XuanFang
24
# https://github.com/mathoudebine/turing-smart-screen-python/
3-
4-
# Copyright (C) 2021-2023 Matthieu Houdebine (mathoudebine)
5-
# Copyright (C) 2023-2023 Alex W. Baulé (alexwbaule)
6-
# Copyright (C) 2023-2023 Arthur Ferrai (arthurferrai)
5+
#
6+
# Copyright (C) 2021 Matthieu Houdebine (mathoudebine)
7+
# Copyright (C) 2023 Alex W. Baulé (alexwbaule)
8+
# Copyright (C) 2023 Arthur Ferrai (arthurferrai)
79
#
810
# This program is free software: you can redistribute it and/or modify
911
# it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)