diff options
author | metamuffin <metamuffin@disroot.org> | 2023-09-08 16:41:32 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-09-08 16:41:32 +0200 |
commit | 27537295e6dc260632e68c38cc2df54649c1036c (patch) | |
tree | b2c64bbfa97a18ff67c1b2810d9c993027f0d9f8 /client-web/source/sw | |
parent | 2130fa3c1d705ce76d88cb49ee6baa4028267577 (diff) | |
download | keks-meet-27537295e6dc260632e68c38cc2df54649c1036c.tar keks-meet-27537295e6dc260632e68c38cc2df54649c1036c.tar.bz2 keks-meet-27537295e6dc260632e68c38cc2df54649c1036c.tar.zst |
update copyright contact info
Diffstat (limited to 'client-web/source/sw')
-rw-r--r-- | client-web/source/sw/client.ts | 6 | ||||
-rw-r--r-- | client-web/source/sw/download.ts | 5 | ||||
-rw-r--r-- | client-web/source/sw/protocol.ts | 6 | ||||
-rw-r--r-- | client-web/source/sw/worker.ts | 2 |
4 files changed, 14 insertions, 5 deletions
diff --git a/client-web/source/sw/client.ts b/client-web/source/sw/client.ts index c4537f7..431e601 100644 --- a/client-web/source/sw/client.ts +++ b/client-web/source/sw/client.ts @@ -1,7 +1,7 @@ /* -This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet) -which is licensed under the GNU Affero General Public License (version 3); see /COPYING. -Copyright (C) 2023 metamuffin <metamuffin@disroot.org> + This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2023 metamuffin <metamuffin.org> */ /// <reference lib="dom" /> // deno-lint-ignore-file no-unused-vars prefer-const diff --git a/client-web/source/sw/download.ts b/client-web/source/sw/download.ts index 02c5e1a..1db99b3 100644 --- a/client-web/source/sw/download.ts +++ b/client-web/source/sw/download.ts @@ -1,3 +1,8 @@ +/* + This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2023 metamuffin <metamuffin.org> +*/ export const streams = new Map<string, { readable: ReadableStream, size: number }>() export function handle_download_request(path: string, event: FetchEvent) { diff --git a/client-web/source/sw/protocol.ts b/client-web/source/sw/protocol.ts index 7cca220..620c732 100644 --- a/client-web/source/sw/protocol.ts +++ b/client-web/source/sw/protocol.ts @@ -1,4 +1,8 @@ - +/* + This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2023 metamuffin <metamuffin.org> +*/ export interface SWMessage { download?: { path: string, size: number } check_version?: boolean, diff --git a/client-web/source/sw/worker.ts b/client-web/source/sw/worker.ts index ed8f7b6..e6b196e 100644 --- a/client-web/source/sw/worker.ts +++ b/client-web/source/sw/worker.ts @@ -1,7 +1,7 @@ /* This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2023 metamuffin <metamuffin@disroot.org> + Copyright (C) 2023 metamuffin <metamuffin.org> */ /// <reference no-default-lib="true"/> /// <reference lib="esnext" /> |