From 1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Tue, 6 Jan 2026 02:53:56 +0100 Subject: Update copyright year --- server/build.rs | 2 +- server/src/api.rs | 2 +- server/src/compat/jellyfin/mod.rs | 2 +- server/src/compat/jellyfin/models.rs | 2 +- server/src/compat/mod.rs | 2 +- server/src/compat/youtube.rs | 2 +- server/src/config.rs | 2 +- server/src/helper/accept.rs | 2 +- server/src/helper/asset.rs | 2 +- server/src/helper/cache.rs | 2 +- server/src/helper/cors.rs | 2 +- server/src/helper/filter_sort.rs | 2 +- server/src/helper/language.rs | 2 +- server/src/helper/mod.rs | 2 +- server/src/helper/node_id.rs | 2 +- server/src/helper/session.rs | 2 +- server/src/logic/mod.rs | 2 +- server/src/logic/stream.rs | 2 +- server/src/logic/userdata.rs | 2 +- server/src/main.rs | 2 +- server/src/routes.rs | 2 +- server/src/ui/account/mod.rs | 2 +- server/src/ui/account/settings.rs | 2 +- server/src/ui/admin/import.rs | 2 +- server/src/ui/admin/log.rs | 2 +- server/src/ui/admin/mod.rs | 2 +- server/src/ui/admin/user.rs | 2 +- server/src/ui/assets.rs | 2 +- server/src/ui/error.rs | 2 +- server/src/ui/home.rs | 2 +- server/src/ui/items.rs | 2 +- server/src/ui/mod.rs | 2 +- server/src/ui/node.rs | 2 +- server/src/ui/player.rs | 2 +- server/src/ui/search.rs | 2 +- server/src/ui/stats.rs | 2 +- server/src/ui/style.rs | 2 +- 37 files changed, 37 insertions(+), 37 deletions(-) (limited to 'server') diff --git a/server/build.rs b/server/build.rs index f2bc0b8..6949c9b 100644 --- a/server/build.rs +++ b/server/build.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ #![feature(exit_status_error)] use std::process::{Command, Stdio}; diff --git a/server/src/api.rs b/server/src/api.rs index 2cfdbbd..00a8f1d 100644 --- a/server/src/api.rs +++ b/server/src/api.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use super::ui::error::MyResult; use crate::helper::{accept::AcceptJson, language::AcceptLanguage, A}; diff --git a/server/src/compat/jellyfin/mod.rs b/server/src/compat/jellyfin/mod.rs index b18d304..7978f3b 100644 --- a/server/src/compat/jellyfin/mod.rs +++ b/server/src/compat/jellyfin/mod.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ pub mod models; diff --git a/server/src/compat/jellyfin/models.rs b/server/src/compat/jellyfin/models.rs index 9dbad9c..0a41461 100644 --- a/server/src/compat/jellyfin/models.rs +++ b/server/src/compat/jellyfin/models.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use serde::{Deserialize, Serialize}; use serde_json::Value; diff --git a/server/src/compat/mod.rs b/server/src/compat/mod.rs index a7b8c0d..85fb566 100644 --- a/server/src/compat/mod.rs +++ b/server/src/compat/mod.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ pub mod jellyfin; pub mod youtube; diff --git a/server/src/compat/youtube.rs b/server/src/compat/youtube.rs index 5bbcf77..ef9e09d 100644 --- a/server/src/compat/youtube.rs +++ b/server/src/compat/youtube.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::{helper::A, ui::error::MyResult}; use anyhow::anyhow; diff --git a/server/src/config.rs b/server/src/config.rs index 93278fc..f552306 100644 --- a/server/src/config.rs +++ b/server/src/config.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use anyhow::{Context, Result, anyhow}; diff --git a/server/src/helper/accept.rs b/server/src/helper/accept.rs index 11210d1..cbbc843 100644 --- a/server/src/helper/accept.rs +++ b/server/src/helper/accept.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use rocket::{ http::MediaType, diff --git a/server/src/helper/asset.rs b/server/src/helper/asset.rs index 244aa70..ac58687 100644 --- a/server/src/helper/asset.rs +++ b/server/src/helper/asset.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::helper::A; diff --git a/server/src/helper/cache.rs b/server/src/helper/cache.rs index 93743e7..a943de8 100644 --- a/server/src/helper/cache.rs +++ b/server/src/helper/cache.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use log::debug; diff --git a/server/src/helper/cors.rs b/server/src/helper/cors.rs index ca513e3..875b1e5 100644 --- a/server/src/helper/cors.rs +++ b/server/src/helper/cors.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use rocket::{ diff --git a/server/src/helper/filter_sort.rs b/server/src/helper/filter_sort.rs index fa96662..7d66b38 100644 --- a/server/src/helper/filter_sort.rs +++ b/server/src/helper/filter_sort.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use super::A; diff --git a/server/src/helper/language.rs b/server/src/helper/language.rs index a441919..e106e12 100644 --- a/server/src/helper/language.rs +++ b/server/src/helper/language.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use jellyui::locale::Language; use rocket::{ diff --git a/server/src/helper/mod.rs b/server/src/helper/mod.rs index cf592d7..f52fcac 100644 --- a/server/src/helper/mod.rs +++ b/server/src/helper/mod.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ pub mod accept; pub mod cache; diff --git a/server/src/helper/node_id.rs b/server/src/helper/node_id.rs index f891d62..5c2e52a 100644 --- a/server/src/helper/node_id.rs +++ b/server/src/helper/node_id.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use super::A; diff --git a/server/src/helper/session.rs b/server/src/helper/session.rs index 1417df0..61f6d66 100644 --- a/server/src/helper/session.rs +++ b/server/src/helper/session.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use super::A; use crate::ui::error::MyError; diff --git a/server/src/logic/mod.rs b/server/src/logic/mod.rs index a7991f7..24d58f8 100644 --- a/server/src/logic/mod.rs +++ b/server/src/logic/mod.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ pub mod playersync; pub mod stream; diff --git a/server/src/logic/stream.rs b/server/src/logic/stream.rs index 782cbcc..36d2ec1 100644 --- a/server/src/logic/stream.rs +++ b/server/src/logic/stream.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::{helper::A, ui::error::MyError}; use anyhow::{anyhow, Result}; diff --git a/server/src/logic/userdata.rs b/server/src/logic/userdata.rs index 52c3688..2dd3a85 100644 --- a/server/src/logic/userdata.rs +++ b/server/src/logic/userdata.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::{helper::A, ui::error::MyResult}; use jellycommon::{ diff --git a/server/src/main.rs b/server/src/main.rs index 13de7e3..058fdc3 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ #![feature(int_roundings, str_as_str, duration_constructors)] #![allow(clippy::needless_borrows_for_generic_args)] diff --git a/server/src/routes.rs b/server/src/routes.rs index ed31407..c169d5e 100644 --- a/server/src/routes.rs +++ b/server/src/routes.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::CONF; use crate::logic::playersync::{PlayersyncChannels, r_playersync}; diff --git a/server/src/ui/account/mod.rs b/server/src/ui/account/mod.rs index 8296e95..d731f0f 100644 --- a/server/src/ui/account/mod.rs +++ b/server/src/ui/account/mod.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ pub mod settings; diff --git a/server/src/ui/account/settings.rs b/server/src/ui/account/settings.rs index d31c4ba..491e82e 100644 --- a/server/src/ui/account/settings.rs +++ b/server/src/ui/account/settings.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use super::format_form_error; use crate::{ diff --git a/server/src/ui/admin/import.rs b/server/src/ui/admin/import.rs index b6bb858..52add7f 100644 --- a/server/src/ui/admin/import.rs +++ b/server/src/ui/admin/import.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use std::time::Duration; diff --git a/server/src/ui/admin/log.rs b/server/src/ui/admin/log.rs index 0a0e5ca..ef84704 100644 --- a/server/src/ui/admin/log.rs +++ b/server/src/ui/admin/log.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::{ helper::{A, RequestInfo}, diff --git a/server/src/ui/admin/mod.rs b/server/src/ui/admin/mod.rs index 03f01c1..0cc226b 100644 --- a/server/src/ui/admin/mod.rs +++ b/server/src/ui/admin/mod.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ pub mod import; pub mod log; diff --git a/server/src/ui/admin/user.rs b/server/src/ui/admin/user.rs index 4df5e80..3d56f46 100644 --- a/server/src/ui/admin/user.rs +++ b/server/src/ui/admin/user.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::{helper::RequestInfo, ui::error::MyResult}; use anyhow::Context; diff --git a/server/src/ui/assets.rs b/server/src/ui/assets.rs index 494638c..738d1de 100644 --- a/server/src/ui/assets.rs +++ b/server/src/ui/assets.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use super::error::MyResult; use crate::helper::{A, cache::CacheControlImage}; diff --git a/server/src/ui/error.rs b/server/src/ui/error.rs index 9e9f7e5..d94639a 100644 --- a/server/src/ui/error.rs +++ b/server/src/ui/error.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::CONF; use jellyui::{error::ErrorPage, locale::Language, render_page, scaffold::RenderInfo}; diff --git a/server/src/ui/home.rs b/server/src/ui/home.rs index 9e11900..db57880 100644 --- a/server/src/ui/home.rs +++ b/server/src/ui/home.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use super::error::MyResult; diff --git a/server/src/ui/items.rs b/server/src/ui/items.rs index ace948f..bf99ef2 100644 --- a/server/src/ui/items.rs +++ b/server/src/ui/items.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use super::error::MyError; use crate::helper::{accept::Accept, filter_sort::ANodeFilterSort, RequestInfo}; diff --git a/server/src/ui/mod.rs b/server/src/ui/mod.rs index e6da485..aca6c33 100644 --- a/server/src/ui/mod.rs +++ b/server/src/ui/mod.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::{ helper::{language::AcceptLanguage, A}, diff --git a/server/src/ui/node.rs b/server/src/ui/node.rs index a6c0cc2..4b452f3 100644 --- a/server/src/ui/node.rs +++ b/server/src/ui/node.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use super::error::MyResult; use crate::helper::{filter_sort::ANodeFilterSort, RequestInfo, A}; diff --git a/server/src/ui/player.rs b/server/src/ui/player.rs index 091169b..7b69aab 100644 --- a/server/src/ui/player.rs +++ b/server/src/ui/player.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use super::error::MyResult; use crate::{ diff --git a/server/src/ui/search.rs b/server/src/ui/search.rs index 567f000..47c39c8 100644 --- a/server/src/ui/search.rs +++ b/server/src/ui/search.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use super::error::MyResult; use crate::helper::RequestInfo; diff --git a/server/src/ui/stats.rs b/server/src/ui/stats.rs index ff02e33..0c5d2cd 100644 --- a/server/src/ui/stats.rs +++ b/server/src/ui/stats.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use super::error::MyError; use crate::helper::RequestInfo; diff --git a/server/src/ui/style.rs b/server/src/ui/style.rs index 77f0fe1..4d458c9 100644 --- a/server/src/ui/style.rs +++ b/server/src/ui/style.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin Copyright (C) 2023 tpart */ use rocket::{ -- cgit v1.3