Переглянути джерело

Update copyright year

tags/v1.8.0
Xerbo 1 рік тому
джерело
коміт
5e82eaf503
Не вдалося знайти GPG ключ що відповідає даному підпису Ідентифікатор GPG ключа: 34103F6D8F11CEB0
11 змінених файлів з 12 додано та 12 видалено
  1. +1
    -1
      README.md
  2. +1
    -1
      src/apt.h
  3. +1
    -1
      src/color.c
  4. +2
    -2
      src/common.h
  5. +1
    -1
      src/dsp.c
  6. +1
    -1
      src/filter.c
  7. +1
    -1
      src/filter.h
  8. +1
    -1
      src/image.c
  9. +1
    -1
      src/main.c
  10. +1
    -1
      src/pngio.c
  11. +1
    -1
      src/satcal.h

+ 1
- 1
README.md Переглянути файл

@@ -1,6 +1,6 @@
![Aptdec logo](textlogo.png) ![Aptdec logo](textlogo.png)


Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-2020
Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-20222


![x86 Release](https://github.com/Xerbo/aptdec/workflows/x86%20Release/badge.svg?branch=master) ![x86 Release](https://github.com/Xerbo/aptdec/workflows/x86%20Release/badge.svg?branch=master)
![x86 Debug](https://github.com/Xerbo/aptdec/workflows/x86%20Debug/badge.svg?branch=devel) ![x86 Debug](https://github.com/Xerbo/aptdec/workflows/x86%20Debug/badge.svg?branch=devel)


+ 1
- 1
src/apt.h Переглянути файл

@@ -1,6 +1,6 @@
/* /*
* This file is part of Aptdec. * This file is part of Aptdec.
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-2020
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-20222
* Copyright (c) 2021 Jon Beniston (M7RCE) * Copyright (c) 2021 Jon Beniston (M7RCE)
* *
* Aptdec is free software: you can redistribute it and/or modify * Aptdec is free software: you can redistribute it and/or modify


+ 1
- 1
src/color.c Переглянути файл

@@ -1,6 +1,6 @@
/* /*
* This file is part of Aptdec. * This file is part of Aptdec.
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-2020
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-20222
* *
* Aptdec is free software: you can redistribute it and/or modify * Aptdec is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by


+ 2
- 2
src/common.h Переглянути файл

@@ -1,6 +1,6 @@
/* /*
* This file is part of Aptdec. * This file is part of Aptdec.
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-2020
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-20222
* *
* Aptdec is free software: you can redistribute it and/or modify * Aptdec is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@@ -18,7 +18,7 @@
*/ */


// Constants // Constants
#define VERSION "Aptdec; (c) 2004-2009 Thierry Leconte F4DWV, Xerbo (xerbo@protonmail.com) 2019-2020"
#define VERSION "Aptdec; (c) 2004-2009 Thierry Leconte F4DWV, Xerbo (xerbo@protonmail.com) 2019-20222"


// Useful macros // Useful macros
#define CLIP(v, lo, hi) (v > hi ? hi : (v > lo ? v : lo)) #define CLIP(v, lo, hi) (v > hi ? hi : (v > lo ? v : lo))


+ 1
- 1
src/dsp.c Переглянути файл

@@ -1,6 +1,6 @@
/* /*
* This file is part of Aptdec. * This file is part of Aptdec.
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-2020
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-20222
* *
* Aptdec is free software: you can redistribute it and/or modify * Aptdec is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by


+ 1
- 1
src/filter.c Переглянути файл

@@ -1,6 +1,6 @@
/* /*
* This file is part of Aptdec. * This file is part of Aptdec.
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-2020
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-20222
* *
* Aptdec is free software: you can redistribute it and/or modify * Aptdec is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by


+ 1
- 1
src/filter.h Переглянути файл

@@ -1,6 +1,6 @@
/* /*
* This file is part of Aptdec. * This file is part of Aptdec.
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-2020
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-20222
* *
* Aptdec is free software: you can redistribute it and/or modify * Aptdec is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by


+ 1
- 1
src/image.c Переглянути файл

@@ -1,6 +1,6 @@
/* /*
* This file is part of Aptdec. * This file is part of Aptdec.
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-2020
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-20222
* *
* Aptdec is free software: you can redistribute it and/or modify * Aptdec is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by


+ 1
- 1
src/main.c Переглянути файл

@@ -1,6 +1,6 @@
/* /*
* This file is part of Aptdec. * This file is part of Aptdec.
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-2020
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-20222
* *
* Aptdec is free software: you can redistribute it and/or modify * Aptdec is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by


+ 1
- 1
src/pngio.c Переглянути файл

@@ -1,6 +1,6 @@
/* /*
* This file is part of Aptdec. * This file is part of Aptdec.
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-2020
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-20222
* *
* Aptdec is free software: you can redistribute it and/or modify * Aptdec is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by


+ 1
- 1
src/satcal.h Переглянути файл

@@ -1,6 +1,6 @@
/* /*
* This file is part of Aptdec. * This file is part of Aptdec.
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-2020
* Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-20222
* *
* Aptdec is free software: you can redistribute it and/or modify * Aptdec is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by


Завантаження…
Відмінити
Зберегти