From e58506f1a59f14205bdc7b4c37a2112e2e0985ff Mon Sep 17 00:00:00 2001 From: Quantum Date: Wed, 21 Jul 2021 03:37:10 -0400 Subject: [PATCH] [all] copyright: refresh copyright notice for .nsi and .rc files --- host/platform/Windows/installer.nsi | 38 ++++++++++++++--------------- host/platform/Windows/resource.rc | 20 +++++++++++++++ refresh-copyright | 2 +- 3 files changed, 40 insertions(+), 20 deletions(-) diff --git a/host/platform/Windows/installer.nsi b/host/platform/Windows/installer.nsi index cc849a1e..4a493258 100644 --- a/host/platform/Windows/installer.nsi +++ b/host/platform/Windows/installer.nsi @@ -1,22 +1,22 @@ -/* -Looking Glass - KVM FrameRelay (KVMFR) Client -Copyright (C) 2017-2020 Geoffrey McRae -https://looking-glass.hostfission.com - -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 -*/ - +/** + * 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 !include "MUI2.nsh" diff --git a/host/platform/Windows/resource.rc b/host/platform/Windows/resource.rc index 773bf571..ca2801c4 100644 --- a/host/platform/Windows/resource.rc +++ b/host/platform/Windows/resource.rc @@ -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 "winver.h" #include "version.h" diff --git a/refresh-copyright b/refresh-copyright index 9a1a6946..052d91dd 100755 --- a/refresh-copyright +++ b/refresh-copyright @@ -7,7 +7,7 @@ import re import subprocess PROJECT = os.path.dirname(__file__) -EXTENSIONS = ('.c', '.cpp', '.h') +EXTENSIONS = ('.c', '.cpp', '.h', '.nsi', '.rc') START_YEAR = 2017 CURRENT_YEAR = datetime.date.today().year