Skip to content

Commit 37aabe8

Browse files
committed
Update license
1 parent 1474eea commit 37aabe8

10 files changed

+318
-40
lines changed

Diff for: ImageFormats/CutReader.cs

+14-5
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,20 @@
88
Decodes all CUT images that I've found in the wild. If you find
99
one that it fails to decode, let me know!
1010
11-
Copyright 2013 by Warren Galyen
12-
You may use this source code in your application(s) free of charge,
13-
as long as attribution is given to me (Warren Galyen) and my URL
14-
(https://mechanikadesign.com) in your application's "about" box and/or
15-
documentation.
11+
Copyright 2013-2020 by Warren Galyen
12+
https://www.mechanikadesign.com
13+
14+
Licensed under the Apache License, Version 2.0 (the "License");
15+
you may not use this file except in compliance with the License.
16+
You may obtain a copy of the License at
17+
18+
http://www.apache.org/licenses/LICENSE-2.0
19+
20+
Unless required by applicable law or agreed to in writing, software
21+
distributed under the License is distributed on an "AS IS" BASIS,
22+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23+
See the License for the specific language governing permissions and
24+
limitations under the License.
1625
1726
*/
1827

Diff for: ImageFormats/DicomReader.cs

+14-5
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,20 @@
88
Decoder for DICOM images. May not decode all variations of DICOM
99
images, since the specification is very broad.
1010
11-
Copyright 2013 by Warren Galyen
12-
You may use this source code in your application(s) free of charge,
13-
as long as attribution is given to me (Warren Galyen) and my URL
14-
(https://mechanikadesign.com) in your application's "about" box and/or
15-
documentation.
11+
Copyright 2013-2020 by Warren Galyen
12+
https://www.mechanikadesign.com
13+
14+
Licensed under the Apache License, Version 2.0 (the "License");
15+
you may not use this file except in compliance with the License.
16+
You may obtain a copy of the License at
17+
18+
http://www.apache.org/licenses/LICENSE-2.0
19+
20+
Unless required by applicable law or agreed to in writing, software
21+
distributed under the License is distributed on an "AS IS" BASIS,
22+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23+
See the License for the specific language governing permissions and
24+
limitations under the License.
1625
1726
*/
1827

Diff for: ImageFormats/FormMain.cs

+13-5
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,20 @@ This is a test application that tests the ImageFormats class library
1010
included with this project. Refer to the individual source code
1111
files for each image type for more information.
1212
13-
Copyright 2013 by Warren Galyen.
14-
You may use this source code in your application(s) free of charge,
15-
as long as attribution is given to me (Warren Galyen) and my URL
16-
(http://mechanikadesign.com) in your application's "about" box and/or
17-
documentation.
13+
Copyright 2013-2020 by Warren Galyen
14+
https://www.mechanikadesign.com
1815
16+
Licensed under the Apache License, Version 2.0 (the "License");
17+
you may not use this file except in compliance with the License.
18+
You may obtain a copy of the License at
19+
20+
http://www.apache.org/licenses/LICENSE-2.0
21+
22+
Unless required by applicable law or agreed to in writing, software
23+
distributed under the License is distributed on an "AS IS" BASIS,
24+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25+
See the License for the specific language governing permissions and
26+
limitations under the License.
1927
*/
2028

2129
namespace ImageViewer

Diff for: ImageFormats/PcxReader.cs

+14-5
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,20 @@ Supports pretty much the full PCX specification (all bit
1010
I've found in the wild. If you find one that it fails to decode,
1111
let me know!
1212
13-
Copyright 2013 by Warren Galyen
14-
You may use this source code in your application(s) free of charge,
15-
as long as attribution is given to me (Warren Galyen) and my URL
16-
(https://mechanikadesign.com) in your application's "about" box and/or
17-
documentation.
13+
Copyright 2013-2020 by Warren Galyen
14+
https://www.mechanikadesign.com
15+
16+
Licensed under the Apache License, Version 2.0 (the "License");
17+
you may not use this file except in compliance with the License.
18+
You may obtain a copy of the License at
19+
20+
http://www.apache.org/licenses/LICENSE-2.0
21+
22+
Unless required by applicable law or agreed to in writing, software
23+
distributed under the License is distributed on an "AS IS" BASIS,
24+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25+
See the License for the specific language governing permissions and
26+
limitations under the License.
1827
1928
*/
2029

Diff for: ImageFormats/PnmReader.cs

+14-5
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,20 @@ Supports pretty much the full range of Netpbm images.
1111
I've found in the wild. If you find one that it fails to decode,
1212
let me know!
1313
14-
Copyright 2013 by Warren Galyen
15-
You may use this source code in your application(s) free of charge,
16-
as long as attribution is given to me (Warren Galyen) and my URL
17-
(https://mechanikadesign.com) in your application's "about" box and/or
18-
documentation.
14+
Copyright 2013-2020 by Warren Galyen
15+
https://www.mechanikadesign.com
16+
17+
Licensed under the Apache License, Version 2.0 (the "License");
18+
you may not use this file except in compliance with the License.
19+
You may obtain a copy of the License at
20+
21+
http://www.apache.org/licenses/LICENSE-2.0
22+
23+
Unless required by applicable law or agreed to in writing, software
24+
distributed under the License is distributed on an "AS IS" BASIS,
25+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
26+
See the License for the specific language governing permissions and
27+
limitations under the License.
1928
2029
*/
2130

Diff for: ImageFormats/RasReader.cs

+14-5
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,20 @@ Supports pretty much the full Sun Raster specification (all bit
1010
I've found in the wild. If you find one that it fails to decode,
1111
let me know!
1212
13-
Copyright 2013 by Warren Galyen
14-
You may use this source code in your application(s) free of charge,
15-
as long as attribution is given to me (Warren Galyen) and my URL
16-
(https://mechanikadesign.com) in your application's "about" box and/or
17-
documentation.
13+
Copyright 2013-2020 by Warren Galyen
14+
https://www.mechanikadesign.com
15+
16+
Licensed under the Apache License, Version 2.0 (the "License");
17+
you may not use this file except in compliance with the License.
18+
You may obtain a copy of the License at
19+
20+
http://www.apache.org/licenses/LICENSE-2.0
21+
22+
Unless required by applicable law or agreed to in writing, software
23+
distributed under the License is distributed on an "AS IS" BASIS,
24+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25+
See the License for the specific language governing permissions and
26+
limitations under the License.
1827
1928
*/
2029

Diff for: ImageFormats/SgiReader.cs

+14-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,20 @@
99
Decodes all SGI images that I've found in the wild. If you find
1010
one that it fails to decode, let me know!
1111
12-
Copyright 2013 by Warren Galyen
13-
You may use this source code in your application(s) free of charge,
14-
as long as attribution is given to me (Warren Galyen) and my URL
15-
(https://mechanikadesign.com) in your application's "about" box and/or
16-
documentation.
12+
Copyright 2013-2020 by Warren Galyen
13+
https://www.mechanikadesign.com
14+
15+
Licensed under the Apache License, Version 2.0 (the "License");
16+
you may not use this file except in compliance with the License.
17+
You may obtain a copy of the License at
18+
19+
http://www.apache.org/licenses/LICENSE-2.0
20+
21+
Unless required by applicable law or agreed to in writing, software
22+
distributed under the License is distributed on an "AS IS" BASIS,
23+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24+
See the License for the specific language governing permissions and
25+
limitations under the License.
1726
1827
*/
1928

Diff for: ImageFormats/TgaReader.cs

+14-5
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,20 @@ Supports pretty much the full Targa specification (all bit
1010
I've found in the wild. If you find one that it fails to decode,
1111
let me know!
1212
13-
Copyright 2013 by Warren Galyen
14-
You may use this source code in your application(s) free of charge,
15-
as long as attribution is given to me (Warren Galyen) and my URL
16-
(https://mechanikadesign.com) in your application's "about" box and/or
17-
documentation.
13+
Copyright 2013-2020 by Warren Galyen
14+
https://www.mechanikadesign.com
15+
16+
Licensed under the Apache License, Version 2.0 (the "License");
17+
you may not use this file except in compliance with the License.
18+
You may obtain a copy of the License at
19+
20+
http://www.apache.org/licenses/LICENSE-2.0
21+
22+
Unless required by applicable law or agreed to in writing, software
23+
distributed under the License is distributed on an "AS IS" BASIS,
24+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25+
See the License for the specific language governing permissions and
26+
limitations under the License.
1827
1928
*/
2029

0 commit comments

Comments
 (0)