Skip to content

Commit ccbacce

Browse files
committed
Add COPYING file (GPLv3).
Add copyright and license in file headers.
1 parent 485c19e commit ccbacce

File tree

6 files changed

+764
-8
lines changed

6 files changed

+764
-8
lines changed

COPYING

+674
Large diffs are not rendered by default.

colortemp.c

+18-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
1-
/* colortemp.c */
2-
/* Copyright (c) 2009, Jon Lund Steffensen <[email protected]> */
1+
/* colortemp.c -- X color temperature adjustment source
2+
This file is part of Redshift.
3+
4+
Redshift is free software: you can redistribute it and/or modify
5+
it under the terms of the GNU General Public License as published by
6+
the Free Software Foundation, either version 3 of the License, or
7+
(at your option) any later version.
8+
9+
Redshift is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
GNU General Public License for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with Redshift. If not, see <http://www.gnu.org/licenses/>.
16+
17+
Copyright (c) 2009 Jon Lund Steffensen <[email protected]>
18+
*/
319

420
#include <stdio.h>
521
#include <stdlib.h>

colortemp.h

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1-
/* colortemp.h */
1+
/* colortemp.h -- X color temperature adjustment header
2+
This file is part of Redshift.
3+
4+
Redshift is free software: you can redistribute it and/or modify
5+
it under the terms of the GNU General Public License as published by
6+
the Free Software Foundation, either version 3 of the License, or
7+
(at your option) any later version.
8+
9+
Redshift is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
GNU General Public License for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with Redshift. If not, see <http://www.gnu.org/licenses/>.
16+
17+
Copyright (c) 2009 Jon Lund Steffensen <[email protected]>
18+
*/
219

320
#ifndef _COLORTEMP_H
421
#define _COLORTEMP_H

redshift.c

+18-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
1-
/* redshift.c */
2-
/* Copyright (c) 2009, Jon Lund Steffensen <[email protected]> */
1+
/* redshift.c -- Main program source
2+
This file is part of Redshift.
3+
4+
Redshift is free software: you can redistribute it and/or modify
5+
it under the terms of the GNU General Public License as published by
6+
the Free Software Foundation, either version 3 of the License, or
7+
(at your option) any later version.
8+
9+
Redshift is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
GNU General Public License for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with Redshift. If not, see <http://www.gnu.org/licenses/>.
16+
17+
Copyright (c) 2009 Jon Lund Steffensen <[email protected]>
18+
*/
319

420
#include <stdio.h>
521
#include <stdlib.h>

solar.c

+18-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
1-
/* solar.c */
2-
/* Copyright (c) 2009, Jon Lund Steffensen <[email protected]> */
1+
/* solar.c -- Solar position source
2+
This file is part of Redshift.
3+
4+
Redshift is free software: you can redistribute it and/or modify
5+
it under the terms of the GNU General Public License as published by
6+
the Free Software Foundation, either version 3 of the License, or
7+
(at your option) any later version.
8+
9+
Redshift is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
GNU General Public License for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with Redshift. If not, see <http://www.gnu.org/licenses/>.
16+
17+
Copyright (c) 2009 Jon Lund Steffensen <[email protected]>
18+
*/
319

420
/* Ported from javascript code by U.S. Department of Commerce,
521
National Oceanic & Atmospheric Administration:

solar.h

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1-
/* solar.h */
1+
/* solar.h -- Solar position header
2+
This file is part of Redshift.
3+
4+
Redshift is free software: you can redistribute it and/or modify
5+
it under the terms of the GNU General Public License as published by
6+
the Free Software Foundation, either version 3 of the License, or
7+
(at your option) any later version.
8+
9+
Redshift is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
GNU General Public License for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with Redshift. If not, see <http://www.gnu.org/licenses/>.
16+
17+
Copyright (c) 2009 Jon Lund Steffensen <[email protected]>
18+
*/
219

320
#ifndef _SOLAR_H
421
#define _SOLAR_H

0 commit comments

Comments
 (0)