aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-01-24 18:12:41 +0100
committermetamuffin <metamuffin@disroot.org>2024-01-24 18:47:29 +0100
commit27f4c3ff8f21282eac98583e2e1c41f7fec1f946 (patch)
tree0bfe258313bdbf7efa901e384d28c14b8805e866 /web
parent7323709537c6ff14136cd79fb07606cd79391758 (diff)
downloadjellything-27f4c3ff8f21282eac98583e2e1c41f7fec1f946.tar
jellything-27f4c3ff8f21282eac98583e2e1c41f7fec1f946.tar.bz2
jellything-27f4c3ff8f21282eac98583e2e1c41f7fec1f946.tar.zst
update year
Diffstat (limited to 'web')
-rw-r--r--web/script/backbutton.ts2
m---------web/script/jshelper0
-rw-r--r--web/script/main.ts2
-rw-r--r--web/script/player/download.ts2
-rw-r--r--web/script/player/jhls.d.ts2
-rw-r--r--web/script/player/mediacaps.ts2
-rw-r--r--web/script/player/mod.ts2
-rw-r--r--web/script/player/player.ts2
-rw-r--r--web/script/player/popup.ts2
-rw-r--r--web/script/player/profiles.ts2
-rw-r--r--web/script/player/track.ts2
-rw-r--r--web/script/transition.ts2
-rw-r--r--web/style/forms.css2
-rw-r--r--web/style/js-player.css2
-rw-r--r--web/style/js-transition.css2
-rw-r--r--web/style/layout.css2
-rw-r--r--web/style/navbar.css2
-rw-r--r--web/style/nodecard.css2
-rw-r--r--web/style/nodepage.css2
-rw-r--r--web/style/player.css2
-rw-r--r--web/style/props.css2
-rw-r--r--web/style/themes.css2
22 files changed, 21 insertions, 21 deletions
diff --git a/web/script/backbutton.ts b/web/script/backbutton.ts
index 27a7ac2..debf495 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
*/
/// <reference lib="dom" />
import { e } from "./jshelper/mod.ts";
diff --git a/web/script/jshelper b/web/script/jshelper
-Subproject 95603bb2d1ff60dea7c9c9b70d2aec0768c7be2
+Subproject a1795c9d8c0c88caa65a340a786fe432ce95ee5
diff --git a/web/script/main.ts b/web/script/main.ts
index 0b4bdbd..eede963 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 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 2549600..e394ba3 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 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 2be6999..9030a88 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
*/
export interface JhlsTrackIndex {
diff --git a/web/script/player/mediacaps.ts b/web/script/player/mediacaps.ts
index 2c58c48..77a210e 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 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 4a21480..3294540 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 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 ea45e9a..677dbc8 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 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 441f8d1..d300a5c 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
*/
/// <reference lib="dom" />
diff --git a/web/script/player/profiles.ts b/web/script/player/profiles.ts
index f7fd121..726e4ba 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
*/
/// <reference lib="dom" />
import { OVar } from "../jshelper/mod.ts";
diff --git a/web/script/player/track.ts b/web/script/player/track.ts
index ef4a862..d0b7f2a 100644
--- a/web/script/player/track.ts
+++ b/web/script/player/track.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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
*/
/// <reference lib="dom" />
import { JhlsTrackIndex, SourceTrack, TimeRange } from "./jhls.d.ts";
diff --git a/web/script/transition.ts b/web/script/transition.ts
index 04f19f9..42dda80 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
*/
/// <reference lib="dom" />
diff --git a/web/style/forms.css b/web/style/forms.css
index 5927b4c..fca6648 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
Copyright (C) 2023 tpart
*/
input {
diff --git a/web/style/js-player.css b/web/style/js-player.css
index 98e0f7c..26545ed 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
*/
.jsp {
diff --git a/web/style/js-transition.css b/web/style/js-transition.css
index 6de9005..be9d34a 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
*/
@keyframes jst-fadein {
from {
diff --git a/web/style/layout.css b/web/style/layout.css
index 0c2f25b..e7bf91e 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
Copyright (C) 2023 tpart
*/
@font-face {
diff --git a/web/style/navbar.css b/web/style/navbar.css
index 1cffb9e..d001292 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
*/
nav {
user-select: none;
diff --git a/web/style/nodecard.css b/web/style/nodecard.css
index 3ed89da..ab25dd3 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
Copyright (C) 2023 tpart
*/
.card {
diff --git a/web/style/nodepage.css b/web/style/nodepage.css
index 121a397..67642e8 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
Copyright (C) 2023 tpart
*/
.backdrop {
diff --git a/web/style/player.css b/web/style/player.css
index 3a96182..b3e8760 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
Copyright (C) 2023 tpart
*/
diff --git a/web/style/props.css b/web/style/props.css
index 6afc19d..b2f37d3 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
*/
.props p {
diff --git a/web/style/themes.css b/web/style/themes.css
index e3d210c..62305cd 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) 2023 metamuffin <metamuffin.org>
+ Copyright (C) 2024 metamuffin <metamuffin.org>
*/
body {
--video-brackground: black;