aboutsummaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2026-01-06 02:53:56 +0100
committermetamuffin <metamuffin@disroot.org>2026-01-06 02:53:56 +0100
commit1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0 (patch)
treed17dc16bb14772c184c1b539f51e548bc8e452d0 /server
parentbb7aa0604d1928ec435e97f6e58521597bc61c3b (diff)
downloadjellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar
jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar.bz2
jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar.zst
Update copyright year
Diffstat (limited to 'server')
-rw-r--r--server/build.rs2
-rw-r--r--server/src/api.rs2
-rw-r--r--server/src/compat/jellyfin/mod.rs2
-rw-r--r--server/src/compat/jellyfin/models.rs2
-rw-r--r--server/src/compat/mod.rs2
-rw-r--r--server/src/compat/youtube.rs2
-rw-r--r--server/src/config.rs2
-rw-r--r--server/src/helper/accept.rs2
-rw-r--r--server/src/helper/asset.rs2
-rw-r--r--server/src/helper/cache.rs2
-rw-r--r--server/src/helper/cors.rs2
-rw-r--r--server/src/helper/filter_sort.rs2
-rw-r--r--server/src/helper/language.rs2
-rw-r--r--server/src/helper/mod.rs2
-rw-r--r--server/src/helper/node_id.rs2
-rw-r--r--server/src/helper/session.rs2
-rw-r--r--server/src/logic/mod.rs2
-rw-r--r--server/src/logic/stream.rs2
-rw-r--r--server/src/logic/userdata.rs2
-rw-r--r--server/src/main.rs2
-rw-r--r--server/src/routes.rs2
-rw-r--r--server/src/ui/account/mod.rs2
-rw-r--r--server/src/ui/account/settings.rs2
-rw-r--r--server/src/ui/admin/import.rs2
-rw-r--r--server/src/ui/admin/log.rs2
-rw-r--r--server/src/ui/admin/mod.rs2
-rw-r--r--server/src/ui/admin/user.rs2
-rw-r--r--server/src/ui/assets.rs2
-rw-r--r--server/src/ui/error.rs2
-rw-r--r--server/src/ui/home.rs2
-rw-r--r--server/src/ui/items.rs2
-rw-r--r--server/src/ui/mod.rs2
-rw-r--r--server/src/ui/node.rs2
-rw-r--r--server/src/ui/player.rs2
-rw-r--r--server/src/ui/search.rs2
-rw-r--r--server/src/ui/stats.rs2
-rw-r--r--server/src/ui/style.rs2
37 files changed, 37 insertions, 37 deletions
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
#![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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
#![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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
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 <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
Copyright (C) 2023 tpart
*/
use rocket::{