diff options
91 files changed, 93 insertions, 91 deletions
@@ -1,5 +1,5 @@ Jellything media streaming software -Copyright (C) 2024 metamuffin +Copyright (C) 2025 metamuffin Copyright (C) 2023 tpart This program is free software: you can redistribute it and/or modify diff --git a/base/src/cache.rs b/base/src/cache.rs index 5ded6f8..7888042 100644 --- a/base/src/cache.rs +++ b/base/src/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::CONF; use anyhow::{anyhow, Context}; diff --git a/base/src/database.rs b/base/src/database.rs index a6bcdf7..0195209 100644 --- a/base/src/database.rs +++ b/base/src/database.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::Context; use bincode::{Decode, Encode}; diff --git a/base/src/federation.rs b/base/src/federation.rs index 662a7ac..879ce96 100644 --- a/base/src/federation.rs +++ b/base/src/federation.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::SECRETS; use anyhow::anyhow; diff --git a/base/src/lib.rs b/base/src/lib.rs index 1ffaa10..cf28d85 100644 --- a/base/src/lib.rs +++ b/base/src/lib.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ pub mod assetfed; pub mod cache; diff --git a/base/src/permission.rs b/base/src/permission.rs index 11668a2..9dc8ffe 100644 --- a/base/src/permission.rs +++ b/base/src/permission.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::CONF; use anyhow::anyhow; diff --git a/client/src/lib.rs b/client/src/lib.rs index 191db7a..5da718d 100644 --- a/client/src/lib.rs +++ b/client/src/lib.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::Result; use jellycommon::user::CreateSessionParams; diff --git a/common/src/config.rs b/common/src/config.rs index 9aeefe6..467a2ec 100644 --- a/common/src/config.rs +++ b/common/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::{jhls::EncodingProfile, user::PermissionSet}; diff --git a/common/src/helpers.rs b/common/src/helpers.rs index 54f5479..18b8e2b 100644 --- a/common/src/helpers.rs +++ b/common/src/helpers.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use std::ops::Deref; diff --git a/common/src/seek_index.rs b/common/src/seek_index.rs index d58cd15..20cf394 100644 --- a/common/src/seek_index.rs +++ b/common/src/seek_index.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use bincode::{Decode, Encode}; diff --git a/common/src/stream.rs b/common/src/stream.rs index 3314cb0..3e227e1 100644 --- a/common/src/stream.rs +++ b/common/src/stream.rs @@ -2,7 +2,7 @@ use bincode::{Decode, Encode}; /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ #[cfg(feature = "rocket")] use rocket::{FromForm, FromFormField, UriDisplayQuery}; diff --git a/common/src/user.rs b/common/src/user.rs index 7ea8f1f..bc75c20 100644 --- a/common/src/user.rs +++ b/common/src/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::{stream::StreamFormat, user}; use bincode::{Decode, Encode}; diff --git a/ebml_derive/src/lib.rs b/ebml_derive/src/lib.rs index fdf04e8..bc632a3 100644 --- a/ebml_derive/src/lib.rs +++ b/ebml_derive/src/lib.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use proc_macro::{token_stream, Delimiter, Span, TokenStream, TokenTree}; use quote::quote; diff --git a/import/src/infojson.rs b/import/src/infojson.rs index 8704fef..f4c028b 100644 --- a/import/src/infojson.rs +++ b/import/src/infojson.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::Context; diff --git a/import/src/lib.rs b/import/src/lib.rs index df23f7e..c3daf7b 100644 --- a/import/src/lib.rs +++ b/import/src/lib.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ pub mod infojson; pub mod tmdb; diff --git a/import/src/tmdb.rs b/import/src/tmdb.rs index 9828b8d..787ba5b 100644 --- a/import/src/tmdb.rs +++ b/import/src/tmdb.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::{anyhow, bail, Context}; use bincode::{Decode, Encode}; diff --git a/import/src/trakt.rs b/import/src/trakt.rs index 19c50bc..f37eb74 100644 --- a/import/src/trakt.rs +++ b/import/src/trakt.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use bincode::{Decode, Encode}; use jellybase::cache::async_cache_memory; diff --git a/matroska/src/bin/mkvdump.rs b/matroska/src/bin/mkvdump.rs index c40e325..923e48f 100644 --- a/matroska/src/bin/mkvdump.rs +++ b/matroska/src/bin/mkvdump.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use jellymatroska::{matroska::MatroskaTag, read::EbmlReader}; use std::{fs::File, io::BufReader}; diff --git a/matroska/src/block.rs b/matroska/src/block.rs index 6cf9891..51bea84 100644 --- a/matroska/src/block.rs +++ b/matroska/src/block.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::{ read::ReadExt, diff --git a/matroska/src/error.rs b/matroska/src/error.rs index 11cd82a..d2bbcbf 100644 --- a/matroska/src/error.rs +++ b/matroska/src/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use thiserror::Error; diff --git a/matroska/src/lib.rs b/matroska/src/lib.rs index 7e4121b..1098ca6 100644 --- a/matroska/src/lib.rs +++ b/matroska/src/lib.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ pub mod block; pub mod error; diff --git a/matroska/src/matroska.rs b/matroska/src/matroska.rs index 937fca7..50e12b9 100644 --- a/matroska/src/matroska.rs +++ b/matroska/src/matroska.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use ebml_derive::define_ebml; diff --git a/matroska/src/read.rs b/matroska/src/read.rs index 42fbd73..c3d06fa 100644 --- a/matroska/src/read.rs +++ b/matroska/src/read.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::{error::Error, matroska::MatroskaTag, size::EbmlSize, Master, Result}; use log::{debug, warn}; diff --git a/matroska/src/size.rs b/matroska/src/size.rs index 3027e0a..7ef0de9 100644 --- a/matroska/src/size.rs +++ b/matroska/src/size.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum EbmlSize { diff --git a/matroska/src/unflatten.rs b/matroska/src/unflatten.rs index b559598..a9bc5cc 100644 --- a/matroska/src/unflatten.rs +++ b/matroska/src/unflatten.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::{matroska::MatroskaTag, Master, Result}; diff --git a/matroska/src/write.rs b/matroska/src/write.rs index 1ec8564..5d2f9fb 100644 --- a/matroska/src/write.rs +++ b/matroska/src/write.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::{error::Error, matroska::MatroskaTag, size::EbmlSize, Master, Result}; use log::debug; diff --git a/remuxer/src/extract.rs b/remuxer/src/extract.rs index a9b4835..364d33c 100644 --- a/remuxer/src/extract.rs +++ b/remuxer/src/extract.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::seek_index::get_seek_index; use anyhow::{anyhow, bail}; diff --git a/remuxer/src/fragment.rs b/remuxer/src/fragment.rs index 55992db..3cd122e 100644 --- a/remuxer/src/fragment.rs +++ b/remuxer/src/fragment.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::{ diff --git a/remuxer/src/lib.rs b/remuxer/src/lib.rs index 192375b..7f5ad1c 100644 --- a/remuxer/src/lib.rs +++ b/remuxer/src/lib.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ pub mod extract; pub mod fragment; diff --git a/remuxer/src/metadata.rs b/remuxer/src/metadata.rs index 47b12f0..3e14821 100644 --- a/remuxer/src/metadata.rs +++ b/remuxer/src/metadata.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::{anyhow, bail, Context, Result}; use bincode::{Decode, Encode}; diff --git a/remuxer/src/remux.rs b/remuxer/src/remux.rs index b5ecfed..ef49620 100644 --- a/remuxer/src/remux.rs +++ b/remuxer/src/remux.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::{ ebml_header, ebml_track_entry, seek_index::get_seek_index, diff --git a/remuxer/src/seek_index.rs b/remuxer/src/seek_index.rs index 7008696..581ed9a 100644 --- a/remuxer/src/seek_index.rs +++ b/remuxer/src/seek_index.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::{Context, Result}; use jellybase::cache::cache_memory; diff --git a/remuxer/src/segment_extractor.rs b/remuxer/src/segment_extractor.rs index ca9e90f..42c85f5 100644 --- a/remuxer/src/segment_extractor.rs +++ b/remuxer/src/segment_extractor.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::{anyhow, bail, Result}; use jellymatroska::{block::Block, read::EbmlReader, Master, MatroskaTag}; diff --git a/remuxer/src/trim_writer.rs b/remuxer/src/trim_writer.rs index 2aea0d8..ad400c1 100644 --- a/remuxer/src/trim_writer.rs +++ b/remuxer/src/trim_writer.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::anyhow; use log::{trace, warn}; diff --git a/server/build.rs b/server/build.rs index 9f10db9..f2bc0b8 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ #![feature(exit_status_error)] use std::process::{Command, Stdio}; diff --git a/server/src/main.rs b/server/src/main.rs index dae2da4..cc7ba5f 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ #![feature(int_roundings, let_chains)] #![allow(clippy::needless_borrows_for_generic_args)] diff --git a/server/src/routes/api/mod.rs b/server/src/routes/api/mod.rs index f7d1846..4bd5fa9 100644 --- a/server/src/routes/api/mod.rs +++ b/server/src/routes/api/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::ui::{ account::{login_logic, session::AdminSession}, diff --git a/server/src/routes/mod.rs b/server/src/routes/mod.rs index 45dd89a..0853ef9 100644 --- a/server/src/routes/mod.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use self::playersync::{r_streamsync, PlayersyncChannels}; use crate::{database::DataAcid, routes::ui::error::MyResult}; diff --git a/server/src/routes/stream.rs b/server/src/routes/stream.rs index 3500ee4..d057aa7 100644 --- a/server/src/routes/stream.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::ui::{account::session::Session, error::MyError}; use crate::database::DataAcid; diff --git a/server/src/routes/ui/account/mod.rs b/server/src/routes/ui/account/mod.rs index 144b1e0..d73cf4c 100644 --- a/server/src/routes/ui/account/mod.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ pub mod session; pub mod settings; diff --git a/server/src/routes/ui/account/session/guard.rs b/server/src/routes/ui/account/session/guard.rs index 9e0bbfe..6a9bdaf 100644 --- a/server/src/routes/ui/account/session/guard.rs +++ b/server/src/routes/ui/account/session/guard.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::{AdminSession, Session}; use crate::{database::DataAcid, routes::ui::error::MyError}; diff --git a/server/src/routes/ui/account/session/mod.rs b/server/src/routes/ui/account/session/mod.rs index 7236c63..cb06255 100644 --- a/server/src/routes/ui/account/session/mod.rs +++ b/server/src/routes/ui/account/session/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use chrono::{DateTime, Utc}; use jellycommon::user::{PermissionSet, User}; diff --git a/server/src/routes/ui/account/session/token.rs b/server/src/routes/ui/account/session/token.rs index 1d191ec..3ada0ec 100644 --- a/server/src/routes/ui/account/session/token.rs +++ b/server/src/routes/ui/account/session/token.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::SessionData; use aes_gcm_siv::{ diff --git a/server/src/routes/ui/account/settings.rs b/server/src/routes/ui/account/settings.rs index 7d54d75..24e90de 100644 --- a/server/src/routes/ui/account/settings.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::{format_form_error, hash_password}; use crate::{ diff --git a/server/src/routes/ui/admin/log.rs b/server/src/routes/ui/admin/log.rs index b123ada..cc34dbc 100644 --- a/server/src/routes/ui/admin/log.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::{ routes::ui::{ diff --git a/server/src/routes/ui/admin/mod.rs b/server/src/routes/ui/admin/mod.rs index 6e19373..1fba6c0 100644 --- a/server/src/routes/ui/admin/mod.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ pub mod log; pub mod user; diff --git a/server/src/routes/ui/admin/user.rs b/server/src/routes/ui/admin/user.rs index 26c1837..524f849 100644 --- a/server/src/routes/ui/admin/user.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::{ database::DataAcid, diff --git a/server/src/routes/ui/assets.rs b/server/src/routes/ui/assets.rs index aeb4eff..7eb8e98 100644 --- a/server/src/routes/ui/assets.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::routes::ui::{account::session::Session, error::MyResult, CacheControlFile}; use anyhow::{anyhow, Context}; diff --git a/server/src/routes/ui/browser.rs b/server/src/routes/ui/browser.rs index 4faf40b..9a5fb6c 100644 --- a/server/src/routes/ui/browser.rs +++ b/server/src/routes/ui/browser.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::{ account::session::Session, diff --git a/server/src/routes/ui/error.rs b/server/src/routes/ui/error.rs index ba1dc88..67924e2 100644 --- a/server/src/routes/ui/error.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::layout::{DynLayoutPage, LayoutPage}; use crate::{routes::ui::account::rocket_uri_macro_r_account_login, uri}; diff --git a/server/src/routes/ui/home.rs b/server/src/routes/ui/home.rs index 6f70644..8eacfde 100644 --- a/server/src/routes/ui/home.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::{account::session::Session, layout::LayoutPage, node::NodeCard}; use crate::{ diff --git a/server/src/routes/ui/layout.rs b/server/src/routes/ui/layout.rs index 9f9038c..a1931dd 100644 --- a/server/src/routes/ui/layout.rs +++ b/server/src/routes/ui/layout.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::{ routes::ui::{ diff --git a/server/src/routes/ui/mod.rs b/server/src/routes/ui/mod.rs index c5062a3..812e2d1 100644 --- a/server/src/routes/ui/mod.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use log::debug; use markup::Render; diff --git a/server/src/routes/ui/node.rs b/server/src/routes/ui/node.rs index 88f71b7..3307d50 100644 --- a/server/src/routes/ui/node.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::{ assets::{ diff --git a/server/src/routes/ui/player.rs b/server/src/routes/ui/player.rs index c5232e1..178cbba 100644 --- a/server/src/routes/ui/player.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::{ account::session::{token, Session}, diff --git a/server/src/routes/ui/style.rs b/server/src/routes/ui/style.rs index a185704..a719b67 100644 --- a/server/src/routes/ui/style.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> Copyright (C) 2023 tpart */ use rocket::{ diff --git a/server/src/routes/userdata.rs b/server/src/routes/userdata.rs index 22e20b7..cf6b0af 100644 --- a/server/src/routes/userdata.rs +++ b/server/src/routes/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::ui::{account::session::Session, error::MyResult, node::DatabaseNodeUserDataExt}; use crate::routes::ui::node::rocket_uri_macro_r_library_node; diff --git a/stream/src/fragment.rs b/stream/src/fragment.rs index 4b4fd44..17e7633 100644 --- a/stream/src/fragment.rs +++ b/stream/src/fragment.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::{anyhow, bail, Result}; use jellybase::{permission::PermissionSetExt, CONF}; diff --git a/stream/src/hls.rs b/stream/src/hls.rs index 894d1b6..2203ee8 100644 --- a/stream/src/hls.rs +++ b/stream/src/hls.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::{anyhow, Result}; diff --git a/stream/src/jhls.rs b/stream/src/jhls.rs index ea5cbfc..b0de837 100644 --- a/stream/src/jhls.rs +++ b/stream/src/jhls.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::{anyhow, Result}; use jellybase::{permission::PermissionSetExt, CONF}; diff --git a/stream/src/lib.rs b/stream/src/lib.rs index f4cbbf6..14d3a4c 100644 --- a/stream/src/lib.rs +++ b/stream/src/lib.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ #![feature(iterator_try_collect)] pub mod fragment; diff --git a/stream/src/webvtt.rs b/stream/src/webvtt.rs index d5b2f9a..4065e1b 100644 --- a/stream/src/webvtt.rs +++ b/stream/src/webvtt.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::{anyhow, Context, Result}; use jellybase::{cache::async_cache_memory, CONF}; diff --git a/tool/src/add.rs b/tool/src/add.rs index 59342da..368743e 100644 --- a/tool/src/add.rs +++ b/tool/src/add.rs @@ -122,7 +122,9 @@ pub async fn add(action: Action) -> anyhow::Result<()> { }); // TODO - drop((id, library_path, trakt_kind)); + let _ = id; + let _ = library_path; + let _ = trakt_kind; // let mut sources = Vec::new(); // sources.push(ImportSource::Trakt { diff --git a/tool/src/main.rs b/tool/src/main.rs index 828ad9d..0a0e84e 100644 --- a/tool/src/main.rs +++ b/tool/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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::anyhow; diff --git a/tool/src/migrate.rs b/tool/src/migrate.rs index fe369d4..ed70104 100644 --- a/tool/src/migrate.rs +++ b/tool/src/migrate.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::cli::{Action, MigrateMode}; use anyhow::{bail, Context}; diff --git a/transcoder/src/fragment.rs b/transcoder/src/fragment.rs index ecb73d5..4b72eaf 100644 --- a/transcoder/src/fragment.rs +++ b/transcoder/src/fragment.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::LOCAL_VIDEO_TRANSCODING_TASKS; diff --git a/transcoder/src/image.rs b/transcoder/src/image.rs index fda3129..cce5437 100644 --- a/transcoder/src/image.rs +++ b/transcoder/src/image.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::LOCAL_IMAGE_TRANSCODING_TASKS; use anyhow::Context; diff --git a/transcoder/src/lib.rs b/transcoder/src/lib.rs index 585c939..1cf5d0d 100644 --- a/transcoder/src/lib.rs +++ b/transcoder/src/lib.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ #![feature(exit_status_error)] diff --git a/transcoder/src/subtitles.rs b/transcoder/src/subtitles.rs index db23d5b..d7e7b29 100644 --- a/transcoder/src/subtitles.rs +++ b/transcoder/src/subtitles.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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::{anyhow, bail, Context}; use jellycommon::jhls::SubtitleCue; diff --git a/web/script/backbutton.ts b/web/script/backbutton.ts index debf495..b3faee9 100644 --- a/web/script/backbutton.ts +++ b/web/script/backbutton.ts @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ /// <reference lib="dom" /> import { e } from "./jshelper/mod.ts"; diff --git a/web/script/main.ts b/web/script/main.ts index ee08bf3..6d335ee 100644 --- a/web/script/main.ts +++ b/web/script/main.ts @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ /// <reference lib="dom" /> import "./player/mod.ts" diff --git a/web/script/player/download.ts b/web/script/player/download.ts index fa3bf1b..18f1e8d 100644 --- a/web/script/player/download.ts +++ b/web/script/player/download.ts @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ /// <reference lib="dom" /> import { OVar } from "../jshelper/mod.ts"; diff --git a/web/script/player/jhls.d.ts b/web/script/player/jhls.d.ts index 73c1e3c..b3b223d 100644 --- a/web/script/player/jhls.d.ts +++ b/web/script/player/jhls.d.ts @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ export interface JhlsTrackIndex { diff --git a/web/script/player/mediacaps.ts b/web/script/player/mediacaps.ts index fb82f65..61ad398 100644 --- a/web/script/player/mediacaps.ts +++ b/web/script/player/mediacaps.ts @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ /// <reference lib="dom" /> import { EncodingProfile, SourceTrack, SourceTrackKind } from "./jhls.d.ts"; diff --git a/web/script/player/mod.ts b/web/script/player/mod.ts index c0c0a3a..093f806 100644 --- a/web/script/player/mod.ts +++ b/web/script/player/mod.ts @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ /// <reference lib="dom" /> import { OVar, show } from "../jshelper/mod.ts"; diff --git a/web/script/player/player.ts b/web/script/player/player.ts index a9ff072..5226128 100644 --- a/web/script/player/player.ts +++ b/web/script/player/player.ts @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ /// <reference lib="dom" /> import { OVar, e } from "../jshelper/mod.ts"; diff --git a/web/script/player/popup.ts b/web/script/player/popup.ts index dde7ed6..695d8e0 100644 --- a/web/script/player/popup.ts +++ b/web/script/player/popup.ts @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ /// <reference lib="dom" /> diff --git a/web/script/player/profiles.ts b/web/script/player/profiles.ts index 021834c..5402721 100644 --- a/web/script/player/profiles.ts +++ b/web/script/player/profiles.ts @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ /// <reference lib="dom" /> import { OVar } from "../jshelper/mod.ts"; diff --git a/web/script/player/sync.ts b/web/script/player/sync.ts index cc027f1..29a7c80 100644 --- a/web/script/player/sync.ts +++ b/web/script/player/sync.ts @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ /// <reference lib="dom" /> import { OVar, e } from "../jshelper/mod.ts"; diff --git a/web/script/player/track/mod.ts b/web/script/player/track/mod.ts index e165df6..0c7c1c0 100644 --- a/web/script/player/track/mod.ts +++ b/web/script/player/track/mod.ts @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ /// <reference lib="dom" /> import { TimeRange } from "../jhls.d.ts"; diff --git a/web/script/transition.ts b/web/script/transition.ts index a118c71..e1d2cab 100644 --- a/web/script/transition.ts +++ b/web/script/transition.ts @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ /// <reference lib="dom" /> diff --git a/web/style/forms.css b/web/style/forms.css index fa2ec67..694504a 100644 --- a/web/style/forms.css +++ b/web/style/forms.css @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> Copyright (C) 2023 tpart */ input { diff --git a/web/style/js-player.css b/web/style/js-player.css index 1dd4126..c9a48e9 100644 --- a/web/style/js-player.css +++ b/web/style/js-player.css @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ .jsp { diff --git a/web/style/js-transition.css b/web/style/js-transition.css index 067fefc..75e1f41 100644 --- a/web/style/js-transition.css +++ b/web/style/js-transition.css @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ @keyframes jst-fadein { from { diff --git a/web/style/layout.css b/web/style/layout.css index fb3da7c..9f63c53 100644 --- a/web/style/layout.css +++ b/web/style/layout.css @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> Copyright (C) 2023 tpart */ @font-face { diff --git a/web/style/navbar.css b/web/style/navbar.css index d001292..77b91f3 100644 --- a/web/style/navbar.css +++ b/web/style/navbar.css @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ nav { user-select: none; diff --git a/web/style/nodecard.css b/web/style/nodecard.css index 918a87d..4fd039e 100644 --- a/web/style/nodecard.css +++ b/web/style/nodecard.css @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> Copyright (C) 2023 tpart */ diff --git a/web/style/nodepage.css b/web/style/nodepage.css index c6cf981..fcc8bcb 100644 --- a/web/style/nodepage.css +++ b/web/style/nodepage.css @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> Copyright (C) 2023 tpart */ .backdrop { diff --git a/web/style/player.css b/web/style/player.css index 45cb58a..d0ebc02 100644 --- a/web/style/player.css +++ b/web/style/player.css @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> Copyright (C) 2023 tpart */ diff --git a/web/style/props.css b/web/style/props.css index b2f37d3..f4b1fec 100644 --- a/web/style/props.css +++ b/web/style/props.css @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ .props p { diff --git a/web/style/themes.css b/web/style/themes.css index b18c618..8d1d92a 100644 --- a/web/style/themes.css +++ b/web/style/themes.css @@ -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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ body { --video-brackground: black; |