Skip to content

Commit

Permalink
cleanup: Add and update license headers
Browse files Browse the repository at this point in the history
In ExmUtils, ExmComment and ExmApplication.
  • Loading branch information
oscfdezdz committed Nov 23, 2024
1 parent 68c3d9b commit 848757a
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 6 deletions.
10 changes: 6 additions & 4 deletions src/exm-application.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* exm-application.c
*
* Copyright 2022 Matthew Jakeman
* Copyright 2022-2024 Matthew Jakeman <[email protected]>
*
* 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
Expand All @@ -14,6 +14,8 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/

#include "exm-config.h"
Expand Down Expand Up @@ -180,19 +182,19 @@ exm_application_show_about (GSimpleAction *action,
adw_about_dialog_set_comments (ADW_ABOUT_DIALOG (about_dialog), _("Browse, install, and manage GNOME Shell Extensions."));
adw_about_dialog_set_developers (ADW_ABOUT_DIALOG (about_dialog), authors);
adw_about_dialog_set_translator_credits (ADW_ABOUT_DIALOG (about_dialog), _("translator-credits"));
adw_about_dialog_set_copyright (ADW_ABOUT_DIALOG (about_dialog), "© 2022 Matthew Jakeman");
adw_about_dialog_set_copyright (ADW_ABOUT_DIALOG (about_dialog), "© 2022-2024 Matthew Jakeman");

#if WITH_BACKTRACE
adw_about_dialog_add_legal_section (ADW_ABOUT_DIALOG (about_dialog),
"libbacktrace",
"Copyright (C) 2012-2016 Free Software Foundation, Inc.",
"© 2012-2016 Free Software Foundation, Inc.",
GTK_LICENSE_BSD_3,
NULL);
#endif

adw_about_dialog_add_legal_section (ADW_ABOUT_DIALOG (about_dialog),
"blueprint",
"Copyright (C) 2021 James Westman",
"© 2021 James Westman",
GTK_LICENSE_LGPL_3_0,
NULL);

Expand Down
2 changes: 1 addition & 1 deletion src/exm-utils.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* exm-utils.c
*
* Copyright 2022 Matthew Jakeman <[email protected]>
* Copyright 2022-2024 Matthew Jakeman <[email protected]>
*
* 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
Expand Down
2 changes: 1 addition & 1 deletion src/exm-utils.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* exm-utils.h
*
* Copyright 2022 Matthew Jakeman <[email protected]>
* Copyright 2022-2024 Matthew Jakeman <[email protected]>
*
* 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
Expand Down
20 changes: 20 additions & 0 deletions src/web/model/exm-comment.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/* exm-comment.c
*
* Copyright 2022-2024 Matthew Jakeman <[email protected]>
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/

#include "exm-comment.h"

#include "exm-utils.h"
Expand Down

0 comments on commit 848757a

Please sign in to comment.