From 8aee3f8174058cc82a60a6f19e1321d1a8559b81 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Mon, 8 Apr 2024 11:10:39 +0100 Subject: [PATCH] Add some missing copyright notices --- src/definitions.js | 18 ++++++++++++++++++ src/services/ThemeService.js | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/src/definitions.js b/src/definitions.js index 8bca70ef9..872e6315a 100644 --- a/src/definitions.js +++ b/src/definitions.js @@ -1,3 +1,21 @@ +/** + * Copyright (C) 2024 Puter Technologies Inc. + * + * This file is part of Puter. + * + * Puter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ export class Service { // }; diff --git a/src/services/ThemeService.js b/src/services/ThemeService.js index 57e2a20c3..afd6c8414 100644 --- a/src/services/ThemeService.js +++ b/src/services/ThemeService.js @@ -1,3 +1,21 @@ +/** + * Copyright (C) 2024 Puter Technologies Inc. + * + * This file is part of Puter. + * + * Puter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ import UIAlert from "../UI/UIAlert.js"; import { Service } from "../definitions.js";