aboutsummaryrefslogtreecommitdiff
path: root/web/script
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/script
parent7323709537c6ff14136cd79fb07606cd79391758 (diff)
downloadjellything-27f4c3ff8f21282eac98583e2e1c41f7fec1f946.tar
jellything-27f4c3ff8f21282eac98583e2e1c41f7fec1f946.tar.bz2
jellything-27f4c3ff8f21282eac98583e2e1c41f7fec1f946.tar.zst
update year
Diffstat (limited to 'web/script')
-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
12 files changed, 11 insertions, 11 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" />