Просмотр исходного кода

Update copyright year

tags/v1.8.0
Xerbo 1 год назад
Родитель
Сommit
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)

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 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.
* 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)
*
* 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.
* 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
* 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.
* 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
* it under the terms of the GNU General Public License as published by
@@ -18,7 +18,7 @@
*/

// 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
#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.
* 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
* 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.
* 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
* 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.
* 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
* 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.
* 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
* 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.
* 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
* 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.
* 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
* 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.
* 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
* it under the terms of the GNU General Public License as published by


Загрузка…
Отмена
Сохранить