From 713edfb4cf7d0fd8288e61f7bcc49b7f794896b5 Mon Sep 17 00:00:00 2001 From: emma Date: Tue, 28 Apr 2026 00:58:33 -0600 Subject: [PATCH] assets: adds license notices to all files --- assets/res/arctica.css | 14 +++++++++++++- assets/res/martian.css | 12 ++++++++++++ assets/res/mint-dark.css | 13 +++++++++++++ assets/res/mint.css | 13 +++++++++++++ assets/res/style.css | 20 ++++++++++++++++++++ assets/templates/repo/repo.html | 21 +++++++++++++++++++++ assets/templates/repo/tickets.html | 21 +++++++++++++++++++++ 7 files changed, 113 insertions(+), 1 deletion(-) diff --git a/assets/res/arctica.css b/assets/res/arctica.css index f83f690..088b8bb 100644 --- a/assets/res/arctica.css +++ b/assets/res/arctica.css @@ -1,4 +1,16 @@ -/* martian theme */ +/* + * Copyright (c) 2022 Sasha Koshka + * SPDX-License-Identifier: FSFAP + * + * This file is part of Mintee. + * + * Copying and distribution of this file, with or without modification, are + * permitted in any medium without royalty provided the copyright notice and + * this notice are preserved. This file is offered as-is, without any + * warranty. + */ + +/* arctica theme */ :root { --glass: url("frost.webp"), #24293370; --background: #242933; diff --git a/assets/res/martian.css b/assets/res/martian.css index 5feb9c5..a8eab29 100644 --- a/assets/res/martian.css +++ b/assets/res/martian.css @@ -1,3 +1,15 @@ +/* + * Copyright (c) 2022 Sasha Koshka + * SPDX-License-Identifier: FSFAP + * + * This file is part of Mintee. + * + * Copying and distribution of this file, with or without modification, are + * permitted in any medium without royalty provided the copyright notice and + * this notice are preserved. This file is offered as-is, without any + * warranty. + */ + /* martian theme */ :root { --glass: url("frost.webp"), hsla(0, 20%, 7%, 0.5); diff --git a/assets/res/mint-dark.css b/assets/res/mint-dark.css index be67921..cbee56c 100644 --- a/assets/res/mint-dark.css +++ b/assets/res/mint-dark.css @@ -1,3 +1,16 @@ +/* + * Copyright (c) 2022 Sasha Koshka + * SPDX-License-Identifier: FSFAP + * + * This file is part of Mintee. + * + * Copying and distribution of this file, with or without modification, are + * permitted in any medium without royalty provided the copyright notice and + * this notice are preserved. This file is offered as-is, without any + * warranty. + */ + + /* mint theme */ :root { --glass: url("frost.webp"), #33333377; diff --git a/assets/res/mint.css b/assets/res/mint.css index 2a68f81..85a56ef 100644 --- a/assets/res/mint.css +++ b/assets/res/mint.css @@ -1,3 +1,16 @@ +/* + * Copyright (c) 2022, 2025 Sasha Koshka + * Copyright (c) 2026 Emma Tebibyte + * SPDX-License-Identifier: FSFAP + * + * This file is part of Mintee. + * + * Copying and distribution of this file, with or without modification, are + * permitted in any medium without royalty provided the copyright notice and + * this notice are preserved. This file is offered as-is, without any + * warranty. + */ + @import url("/res/mint-dark.css") (prefers-color-scheme: dark); @media (prefers-color-scheme: light) { diff --git a/assets/res/style.css b/assets/res/style.css index b578ffc..8e6d040 100644 --- a/assets/res/style.css +++ b/assets/res/style.css @@ -1,3 +1,23 @@ +/* + * Copyright (c) 2022 Sasha Koshka + * SPDX-License-Identifier: AGPL-3.0-or-later + * + * This file is part of Mintee. + * + * Mintee 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. + * + * Mintee 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 Mintee. If not, see https://www.gnu.org/licenses/. + */ + * { box-sizing: border-box; scrollbar-color: var(--accent) transparent; diff --git a/assets/templates/repo/repo.html b/assets/templates/repo/repo.html index adc04a8..4d32c53 100644 --- a/assets/templates/repo/repo.html +++ b/assets/templates/repo/repo.html @@ -1,5 +1,26 @@ {% extends "base.html" %} +{# + Copyright (c) 2022 Sasha Koshka + Copyright (c) 2023,2025 Emma Tebibyte + SPDX-License-Identifier: AGPL-3.0-or-later + + This file is part of Mintee. + + Mintee 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. + + Mintee 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 Mintee. If not, see https://www.gnu.org/licenses/. +#} + {% block page %}code{% endblock page %} {% block breadcrumbs %} diff --git a/assets/templates/repo/tickets.html b/assets/templates/repo/tickets.html index fe4a0ff..e1965ec 100644 --- a/assets/templates/repo/tickets.html +++ b/assets/templates/repo/tickets.html @@ -1,5 +1,26 @@ {% extends "base.html" %} +{# + Copyright (c) 2025 Sasha Koshka + SPDX-License-Identifier: AGPL-3.0-or-later + + This file is part of Mintee. + + Mintee 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. + + Mintee 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 Mintee. If not, see https://www.gnu.org/licenses/. +#} + + {% block page %}tickets{% endblock page %} {% block content %}