[all] copyright: refresh copyright notice for .nsi and .rc files

This commit is contained in:
Quantum 2021-07-21 03:37:10 -04:00 committed by Geoffrey McRae
parent 08293c8721
commit e58506f1a5
3 changed files with 40 additions and 20 deletions

View File

@ -1,23 +1,23 @@
/* /**
Looking Glass - KVM FrameRelay (KVMFR) Client * Looking Glass
Copyright (C) 2017-2020 Geoffrey McRae <geoff@hostfission.com> * Copyright (C) 2017-2021 The Looking Glass Authors
https://looking-glass.hostfission.com * https://looking-glass.io
*
This program is free software; you can redistribute it and/or modify it under * This program is free software; you can redistribute it and/or modify it
the terms of the GNU General Public License as published by the Free Software * under the terms of the GNU General Public License as published by the Free
Foundation; either version 2 of the License, or (at your option) any later * Software Foundation; either version 2 of the License, or (at your option)
version. * any later version.
*
This program is distributed in the hope that it will be useful, but WITHOUT ANY * This program is distributed in the hope that it will be useful, but WITHOUT
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
PARTICULAR PURPOSE. See the GNU General Public License for more details. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
You should have received a copy of the GNU General Public License along with *
this program; if not, write to the Free Software Foundation, Inc., 59 Temple * You should have received a copy of the GNU General Public License along
Place, Suite 330, Boston, MA 02111-1307 USA * with this program; if not, write to the Free Software Foundation, Inc., 59
* Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
;Include ;Include
!include "MUI2.nsh" !include "MUI2.nsh"
!include "FileFunc.nsh" !include "FileFunc.nsh"

View File

@ -1,3 +1,23 @@
/**
* Looking Glass
* Copyright (C) 2017-2021 The Looking Glass Authors
* https://looking-glass.io
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc., 59
* Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "winuser.h" #include "winuser.h"
#include "winver.h" #include "winver.h"
#include "version.h" #include "version.h"

View File

@ -7,7 +7,7 @@ import re
import subprocess import subprocess
PROJECT = os.path.dirname(__file__) PROJECT = os.path.dirname(__file__)
EXTENSIONS = ('.c', '.cpp', '.h') EXTENSIONS = ('.c', '.cpp', '.h', '.nsi', '.rc')
START_YEAR = 2017 START_YEAR = 2017
CURRENT_YEAR = datetime.date.today().year CURRENT_YEAR = datetime.date.today().year